/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}
.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}



:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}


/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}




.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}


.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0;max-width:100%;resize:none;height:18px;vertical-align:bottom;font-family:sans-serif;overflow:hidden;word-break:keep-all}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px;position:relative}.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right:25px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;position:absolute;right:0;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:inline-block;margin-left:5px;margin-top:5px;padding:0;padding-left:20px;position:relative;max-width:100%;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px;position:absolute;left:0;top:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}

.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xs,.container-xsm,.container-xxl{--bs-gutter-x:30px;--bs-gutter-y:0;margin-left:auto;margin-right:auto;padding-left:15px;padding-left:calc(var(--bs-gutter-x)*.5);padding-right:15px;padding-right:calc(var(--bs-gutter-x)*.5);width:100%}.container{max-width:92%}@media(min-width:390px){.container,.container-xsm{max-width:360px}}@media(min-width:576px){.container,.container-sm,.container-xsm{max-width:540px}}@media(min-width:768px){.container,.container-md,.container-sm,.container-xsm{max-width:720px}}@media(min-width:1023px){.container,.container-lg,.container-md,.container-sm,.container-xsm{max-width:960px}}@media(min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xsm{max-width:1200px}}@media(min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xsm,.container-xxl{max-width:1330px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-xsm:390px;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:1023px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px;--bs-breakpoint-wide:1800px}.row{--bs-gutter-x:30px;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-left:-15px;margin-left:calc(var(--bs-gutter-x)*-.5);margin-right:-15px;margin-right:calc(var(--bs-gutter-x)*-.5);margin-top:0;margin-top:calc(var(--bs-gutter-y)*-1)}.row>*{box-sizing:border-box;flex-shrink:0;margin-top:var(--bs-gutter-y);max-width:100%;padding-left:calc(var(--bs-gutter-x)*.5);padding-right:calc(var(--bs-gutter-x)*.5);width:100%}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media(min-width:390px){.col-xsm{flex:1 0 0%}.row-cols-xsm-auto>*{flex:0 0 auto;width:auto}.row-cols-xsm-1>*{flex:0 0 auto;width:100%}.row-cols-xsm-2>*{flex:0 0 auto;width:50%}.row-cols-xsm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xsm-4>*{flex:0 0 auto;width:25%}.row-cols-xsm-5>*{flex:0 0 auto;width:20%}.row-cols-xsm-6>*{flex:0 0 auto;width:16.6666666667%}.col-xsm-auto{flex:0 0 auto;width:auto}.col-xsm-1{flex:0 0 auto;width:8.33333333%}.col-xsm-2{flex:0 0 auto;width:16.66666667%}.col-xsm-3{flex:0 0 auto;width:25%}.col-xsm-4{flex:0 0 auto;width:33.33333333%}.col-xsm-5{flex:0 0 auto;width:41.66666667%}.col-xsm-6{flex:0 0 auto;width:50%}.col-xsm-7{flex:0 0 auto;width:58.33333333%}.col-xsm-8{flex:0 0 auto;width:66.66666667%}.col-xsm-9{flex:0 0 auto;width:75%}.col-xsm-10{flex:0 0 auto;width:83.33333333%}.col-xsm-11{flex:0 0 auto;width:91.66666667%}.col-xsm-12{flex:0 0 auto;width:100%}.offset-xsm-0{margin-left:0}.offset-xsm-1{margin-left:8.33333333%}.offset-xsm-2{margin-left:16.66666667%}.offset-xsm-3{margin-left:25%}.offset-xsm-4{margin-left:33.33333333%}.offset-xsm-5{margin-left:41.66666667%}.offset-xsm-6{margin-left:50%}.offset-xsm-7{margin-left:58.33333333%}.offset-xsm-8{margin-left:66.66666667%}.offset-xsm-9{margin-left:75%}.offset-xsm-10{margin-left:83.33333333%}.offset-xsm-11{margin-left:91.66666667%}.g-xsm-0,.gx-xsm-0{--bs-gutter-x:0}.g-xsm-0,.gy-xsm-0{--bs-gutter-y:0}.g-xsm-1,.gx-xsm-1{--bs-gutter-x:0.25rem}.g-xsm-1,.gy-xsm-1{--bs-gutter-y:0.25rem}.g-xsm-2,.gx-xsm-2{--bs-gutter-x:0.5rem}.g-xsm-2,.gy-xsm-2{--bs-gutter-y:0.5rem}.g-xsm-3,.gx-xsm-3{--bs-gutter-x:1rem}.g-xsm-3,.gy-xsm-3{--bs-gutter-y:1rem}.g-xsm-4,.gx-xsm-4{--bs-gutter-x:1.5rem}.g-xsm-4,.gy-xsm-4{--bs-gutter-y:1.5rem}.g-xsm-5,.gx-xsm-5{--bs-gutter-x:3rem}.g-xsm-5,.gy-xsm-5{--bs-gutter-y:3rem}}@media(min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media(min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media(min-width:1023px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media(min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media(min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}@media(min-width:1800px){.col-wide{flex:1 0 0%}.row-cols-wide-auto>*{flex:0 0 auto;width:auto}.row-cols-wide-1>*{flex:0 0 auto;width:100%}.row-cols-wide-2>*{flex:0 0 auto;width:50%}.row-cols-wide-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-wide-4>*{flex:0 0 auto;width:25%}.row-cols-wide-5>*{flex:0 0 auto;width:20%}.row-cols-wide-6>*{flex:0 0 auto;width:16.6666666667%}.col-wide-auto{flex:0 0 auto;width:auto}.col-wide-1{flex:0 0 auto;width:8.33333333%}.col-wide-2{flex:0 0 auto;width:16.66666667%}.col-wide-3{flex:0 0 auto;width:25%}.col-wide-4{flex:0 0 auto;width:33.33333333%}.col-wide-5{flex:0 0 auto;width:41.66666667%}.col-wide-6{flex:0 0 auto;width:50%}.col-wide-7{flex:0 0 auto;width:58.33333333%}.col-wide-8{flex:0 0 auto;width:66.66666667%}.col-wide-9{flex:0 0 auto;width:75%}.col-wide-10{flex:0 0 auto;width:83.33333333%}.col-wide-11{flex:0 0 auto;width:91.66666667%}.col-wide-12{flex:0 0 auto;width:100%}.offset-wide-0{margin-left:0}.offset-wide-1{margin-left:8.33333333%}.offset-wide-2{margin-left:16.66666667%}.offset-wide-3{margin-left:25%}.offset-wide-4{margin-left:33.33333333%}.offset-wide-5{margin-left:41.66666667%}.offset-wide-6{margin-left:50%}.offset-wide-7{margin-left:58.33333333%}.offset-wide-8{margin-left:66.66666667%}.offset-wide-9{margin-left:75%}.offset-wide-10{margin-left:83.33333333%}.offset-wide-11{margin-left:91.66666667%}.g-wide-0,.gx-wide-0{--bs-gutter-x:0}.g-wide-0,.gy-wide-0{--bs-gutter-y:0}.g-wide-1,.gx-wide-1{--bs-gutter-x:0.25rem}.g-wide-1,.gy-wide-1{--bs-gutter-y:0.25rem}.g-wide-2,.gx-wide-2{--bs-gutter-x:0.5rem}.g-wide-2,.gy-wide-2{--bs-gutter-y:0.5rem}.g-wide-3,.gx-wide-3{--bs-gutter-x:1rem}.g-wide-3,.gy-wide-3{--bs-gutter-y:1rem}.g-wide-4,.gx-wide-4{--bs-gutter-x:1.5rem}.g-wide-4,.gy-wide-4{--bs-gutter-y:1.5rem}.g-wide-5,.gx-wide-5{--bs-gutter-x:3rem}.g-wide-5,.gy-wide-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-bottom:0!important;margin-top:0!important}.my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.my-3{margin-bottom:1rem!important;margin-top:1rem!important}.my-4{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.my-5{margin-bottom:3rem!important;margin-top:3rem!important}.my-auto{margin-bottom:auto!important;margin-top:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}.py-0{padding-bottom:0!important;padding-top:0!important}.py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.py-3{padding-bottom:1rem!important;padding-top:1rem!important}.py-4{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.py-5{padding-bottom:3rem!important;padding-top:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}@media(min-width:390px){.d-xsm-inline{display:inline!important}.d-xsm-inline-block{display:inline-block!important}.d-xsm-block{display:block!important}.d-xsm-grid{display:grid!important}.d-xsm-inline-grid{display:inline-grid!important}.d-xsm-table{display:table!important}.d-xsm-table-row{display:table-row!important}.d-xsm-table-cell{display:table-cell!important}.d-xsm-flex{display:flex!important}.d-xsm-inline-flex{display:inline-flex!important}.d-xsm-none{display:none!important}.flex-xsm-fill{flex:1 1 auto!important}.flex-xsm-row{flex-direction:row!important}.flex-xsm-column{flex-direction:column!important}.flex-xsm-row-reverse{flex-direction:row-reverse!important}.flex-xsm-column-reverse{flex-direction:column-reverse!important}.flex-xsm-grow-0{flex-grow:0!important}.flex-xsm-grow-1{flex-grow:1!important}.flex-xsm-shrink-0{flex-shrink:0!important}.flex-xsm-shrink-1{flex-shrink:1!important}.flex-xsm-wrap{flex-wrap:wrap!important}.flex-xsm-nowrap{flex-wrap:nowrap!important}.flex-xsm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xsm-start{justify-content:flex-start!important}.justify-content-xsm-end{justify-content:flex-end!important}.justify-content-xsm-center{justify-content:center!important}.justify-content-xsm-between{justify-content:space-between!important}.justify-content-xsm-around{justify-content:space-around!important}.justify-content-xsm-evenly{justify-content:space-evenly!important}.align-items-xsm-start{align-items:flex-start!important}.align-items-xsm-end{align-items:flex-end!important}.align-items-xsm-center{align-items:center!important}.align-items-xsm-baseline{align-items:baseline!important}.align-items-xsm-stretch{align-items:stretch!important}.align-content-xsm-start{align-content:flex-start!important}.align-content-xsm-end{align-content:flex-end!important}.align-content-xsm-center{align-content:center!important}.align-content-xsm-between{align-content:space-between!important}.align-content-xsm-around{align-content:space-around!important}.align-content-xsm-stretch{align-content:stretch!important}.align-self-xsm-auto{align-self:auto!important}.align-self-xsm-start{align-self:flex-start!important}.align-self-xsm-end{align-self:flex-end!important}.align-self-xsm-center{align-self:center!important}.align-self-xsm-baseline{align-self:baseline!important}.align-self-xsm-stretch{align-self:stretch!important}.order-xsm-first{order:-1!important}.order-xsm-0{order:0!important}.order-xsm-1{order:1!important}.order-xsm-2{order:2!important}.order-xsm-3{order:3!important}.order-xsm-4{order:4!important}.order-xsm-5{order:5!important}.order-xsm-last{order:6!important}.m-xsm-0{margin:0!important}.m-xsm-1{margin:.25rem!important}.m-xsm-2{margin:.5rem!important}.m-xsm-3{margin:1rem!important}.m-xsm-4{margin:1.5rem!important}.m-xsm-5{margin:3rem!important}.m-xsm-auto{margin:auto!important}.mx-xsm-0{margin-left:0!important;margin-right:0!important}.mx-xsm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xsm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xsm-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xsm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xsm-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xsm-auto{margin-left:auto!important;margin-right:auto!important}.my-xsm-0{margin-bottom:0!important;margin-top:0!important}.my-xsm-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.my-xsm-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.my-xsm-3{margin-bottom:1rem!important;margin-top:1rem!important}.my-xsm-4{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.my-xsm-5{margin-bottom:3rem!important;margin-top:3rem!important}.my-xsm-auto{margin-bottom:auto!important;margin-top:auto!important}.mt-xsm-0{margin-top:0!important}.mt-xsm-1{margin-top:.25rem!important}.mt-xsm-2{margin-top:.5rem!important}.mt-xsm-3{margin-top:1rem!important}.mt-xsm-4{margin-top:1.5rem!important}.mt-xsm-5{margin-top:3rem!important}.mt-xsm-auto{margin-top:auto!important}.me-xsm-0{margin-right:0!important}.me-xsm-1{margin-right:.25rem!important}.me-xsm-2{margin-right:.5rem!important}.me-xsm-3{margin-right:1rem!important}.me-xsm-4{margin-right:1.5rem!important}.me-xsm-5{margin-right:3rem!important}.me-xsm-auto{margin-right:auto!important}.mb-xsm-0{margin-bottom:0!important}.mb-xsm-1{margin-bottom:.25rem!important}.mb-xsm-2{margin-bottom:.5rem!important}.mb-xsm-3{margin-bottom:1rem!important}.mb-xsm-4{margin-bottom:1.5rem!important}.mb-xsm-5{margin-bottom:3rem!important}.mb-xsm-auto{margin-bottom:auto!important}.ms-xsm-0{margin-left:0!important}.ms-xsm-1{margin-left:.25rem!important}.ms-xsm-2{margin-left:.5rem!important}.ms-xsm-3{margin-left:1rem!important}.ms-xsm-4{margin-left:1.5rem!important}.ms-xsm-5{margin-left:3rem!important}.ms-xsm-auto{margin-left:auto!important}.p-xsm-0{padding:0!important}.p-xsm-1{padding:.25rem!important}.p-xsm-2{padding:.5rem!important}.p-xsm-3{padding:1rem!important}.p-xsm-4{padding:1.5rem!important}.p-xsm-5{padding:3rem!important}.px-xsm-0{padding-left:0!important;padding-right:0!important}.px-xsm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xsm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xsm-3{padding-left:1rem!important;padding-right:1rem!important}.px-xsm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xsm-5{padding-left:3rem!important;padding-right:3rem!important}.py-xsm-0{padding-bottom:0!important;padding-top:0!important}.py-xsm-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.py-xsm-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.py-xsm-3{padding-bottom:1rem!important;padding-top:1rem!important}.py-xsm-4{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.py-xsm-5{padding-bottom:3rem!important;padding-top:3rem!important}.pt-xsm-0{padding-top:0!important}.pt-xsm-1{padding-top:.25rem!important}.pt-xsm-2{padding-top:.5rem!important}.pt-xsm-3{padding-top:1rem!important}.pt-xsm-4{padding-top:1.5rem!important}.pt-xsm-5{padding-top:3rem!important}.pe-xsm-0{padding-right:0!important}.pe-xsm-1{padding-right:.25rem!important}.pe-xsm-2{padding-right:.5rem!important}.pe-xsm-3{padding-right:1rem!important}.pe-xsm-4{padding-right:1.5rem!important}.pe-xsm-5{padding-right:3rem!important}.pb-xsm-0{padding-bottom:0!important}.pb-xsm-1{padding-bottom:.25rem!important}.pb-xsm-2{padding-bottom:.5rem!important}.pb-xsm-3{padding-bottom:1rem!important}.pb-xsm-4{padding-bottom:1.5rem!important}.pb-xsm-5{padding-bottom:3rem!important}.ps-xsm-0{padding-left:0!important}.ps-xsm-1{padding-left:.25rem!important}.ps-xsm-2{padding-left:.5rem!important}.ps-xsm-3{padding-left:1rem!important}.ps-xsm-4{padding-left:1.5rem!important}.ps-xsm-5{padding-left:3rem!important}}@media(min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-5{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-bottom:0!important;margin-top:0!important}.my-sm-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.my-sm-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.my-sm-3{margin-bottom:1rem!important;margin-top:1rem!important}.my-sm-4{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.my-sm-5{margin-bottom:3rem!important;margin-top:3rem!important}.my-sm-auto{margin-bottom:auto!important;margin-top:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:1rem!important;padding-right:1rem!important}.px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-5{padding-left:3rem!important;padding-right:3rem!important}.py-sm-0{padding-bottom:0!important;padding-top:0!important}.py-sm-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.py-sm-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.py-sm-3{padding-bottom:1rem!important;padding-top:1rem!important}.py-sm-4{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.py-sm-5{padding-bottom:3rem!important;padding-top:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}}@media(min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:1rem!important;margin-right:1rem!important}.mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-5{margin-left:3rem!important;margin-right:3rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-bottom:0!important;margin-top:0!important}.my-md-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.my-md-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.my-md-3{margin-bottom:1rem!important;margin-top:1rem!important}.my-md-4{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.my-md-5{margin-bottom:3rem!important;margin-top:3rem!important}.my-md-auto{margin-bottom:auto!important;margin-top:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:1rem!important;padding-right:1rem!important}.px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-5{padding-left:3rem!important;padding-right:3rem!important}.py-md-0{padding-bottom:0!important;padding-top:0!important}.py-md-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.py-md-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.py-md-3{padding-bottom:1rem!important;padding-top:1rem!important}.py-md-4{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.py-md-5{padding-bottom:3rem!important;padding-top:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}}@media(min-width:1023px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-5{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-bottom:0!important;margin-top:0!important}.my-lg-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.my-lg-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.my-lg-3{margin-bottom:1rem!important;margin-top:1rem!important}.my-lg-4{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.my-lg-5{margin-bottom:3rem!important;margin-top:3rem!important}.my-lg-auto{margin-bottom:auto!important;margin-top:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:1rem!important;padding-right:1rem!important}.px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-5{padding-left:3rem!important;padding-right:3rem!important}.py-lg-0{padding-bottom:0!important;padding-top:0!important}.py-lg-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.py-lg-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.py-lg-3{padding-bottom:1rem!important;padding-top:1rem!important}.py-lg-4{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.py-lg-5{padding-bottom:3rem!important;padding-top:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}}@media(min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-bottom:0!important;margin-top:0!important}.my-xl-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.my-xl-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.my-xl-3{margin-bottom:1rem!important;margin-top:1rem!important}.my-xl-4{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.my-xl-5{margin-bottom:3rem!important;margin-top:3rem!important}.my-xl-auto{margin-bottom:auto!important;margin-top:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xl-0{padding-bottom:0!important;padding-top:0!important}.py-xl-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.py-xl-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.py-xl-3{padding-bottom:1rem!important;padding-top:1rem!important}.py-xl-4{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.py-xl-5{padding-bottom:3rem!important;padding-top:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}}@media(min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-bottom:0!important;margin-top:0!important}.my-xxl-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.my-xxl-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.my-xxl-3{margin-bottom:1rem!important;margin-top:1rem!important}.my-xxl-4{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.my-xxl-5{margin-bottom:3rem!important;margin-top:3rem!important}.my-xxl-auto{margin-bottom:auto!important;margin-top:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xxl-0{padding-bottom:0!important;padding-top:0!important}.py-xxl-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.py-xxl-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.py-xxl-3{padding-bottom:1rem!important;padding-top:1rem!important}.py-xxl-4{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.py-xxl-5{padding-bottom:3rem!important;padding-top:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}}@media(min-width:1800px){.d-wide-inline{display:inline!important}.d-wide-inline-block{display:inline-block!important}.d-wide-block{display:block!important}.d-wide-grid{display:grid!important}.d-wide-inline-grid{display:inline-grid!important}.d-wide-table{display:table!important}.d-wide-table-row{display:table-row!important}.d-wide-table-cell{display:table-cell!important}.d-wide-flex{display:flex!important}.d-wide-inline-flex{display:inline-flex!important}.d-wide-none{display:none!important}.flex-wide-fill{flex:1 1 auto!important}.flex-wide-row{flex-direction:row!important}.flex-wide-column{flex-direction:column!important}.flex-wide-row-reverse{flex-direction:row-reverse!important}.flex-wide-column-reverse{flex-direction:column-reverse!important}.flex-wide-grow-0{flex-grow:0!important}.flex-wide-grow-1{flex-grow:1!important}.flex-wide-shrink-0{flex-shrink:0!important}.flex-wide-shrink-1{flex-shrink:1!important}.flex-wide-wrap{flex-wrap:wrap!important}.flex-wide-nowrap{flex-wrap:nowrap!important}.flex-wide-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-wide-start{justify-content:flex-start!important}.justify-content-wide-end{justify-content:flex-end!important}.justify-content-wide-center{justify-content:center!important}.justify-content-wide-between{justify-content:space-between!important}.justify-content-wide-around{justify-content:space-around!important}.justify-content-wide-evenly{justify-content:space-evenly!important}.align-items-wide-start{align-items:flex-start!important}.align-items-wide-end{align-items:flex-end!important}.align-items-wide-center{align-items:center!important}.align-items-wide-baseline{align-items:baseline!important}.align-items-wide-stretch{align-items:stretch!important}.align-content-wide-start{align-content:flex-start!important}.align-content-wide-end{align-content:flex-end!important}.align-content-wide-center{align-content:center!important}.align-content-wide-between{align-content:space-between!important}.align-content-wide-around{align-content:space-around!important}.align-content-wide-stretch{align-content:stretch!important}.align-self-wide-auto{align-self:auto!important}.align-self-wide-start{align-self:flex-start!important}.align-self-wide-end{align-self:flex-end!important}.align-self-wide-center{align-self:center!important}.align-self-wide-baseline{align-self:baseline!important}.align-self-wide-stretch{align-self:stretch!important}.order-wide-first{order:-1!important}.order-wide-0{order:0!important}.order-wide-1{order:1!important}.order-wide-2{order:2!important}.order-wide-3{order:3!important}.order-wide-4{order:4!important}.order-wide-5{order:5!important}.order-wide-last{order:6!important}.m-wide-0{margin:0!important}.m-wide-1{margin:.25rem!important}.m-wide-2{margin:.5rem!important}.m-wide-3{margin:1rem!important}.m-wide-4{margin:1.5rem!important}.m-wide-5{margin:3rem!important}.m-wide-auto{margin:auto!important}.mx-wide-0{margin-left:0!important;margin-right:0!important}.mx-wide-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-wide-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-wide-3{margin-left:1rem!important;margin-right:1rem!important}.mx-wide-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-wide-5{margin-left:3rem!important;margin-right:3rem!important}.mx-wide-auto{margin-left:auto!important;margin-right:auto!important}.my-wide-0{margin-bottom:0!important;margin-top:0!important}.my-wide-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.my-wide-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.my-wide-3{margin-bottom:1rem!important;margin-top:1rem!important}.my-wide-4{margin-bottom:1.5rem!important;margin-top:1.5rem!important}.my-wide-5{margin-bottom:3rem!important;margin-top:3rem!important}.my-wide-auto{margin-bottom:auto!important;margin-top:auto!important}.mt-wide-0{margin-top:0!important}.mt-wide-1{margin-top:.25rem!important}.mt-wide-2{margin-top:.5rem!important}.mt-wide-3{margin-top:1rem!important}.mt-wide-4{margin-top:1.5rem!important}.mt-wide-5{margin-top:3rem!important}.mt-wide-auto{margin-top:auto!important}.me-wide-0{margin-right:0!important}.me-wide-1{margin-right:.25rem!important}.me-wide-2{margin-right:.5rem!important}.me-wide-3{margin-right:1rem!important}.me-wide-4{margin-right:1.5rem!important}.me-wide-5{margin-right:3rem!important}.me-wide-auto{margin-right:auto!important}.mb-wide-0{margin-bottom:0!important}.mb-wide-1{margin-bottom:.25rem!important}.mb-wide-2{margin-bottom:.5rem!important}.mb-wide-3{margin-bottom:1rem!important}.mb-wide-4{margin-bottom:1.5rem!important}.mb-wide-5{margin-bottom:3rem!important}.mb-wide-auto{margin-bottom:auto!important}.ms-wide-0{margin-left:0!important}.ms-wide-1{margin-left:.25rem!important}.ms-wide-2{margin-left:.5rem!important}.ms-wide-3{margin-left:1rem!important}.ms-wide-4{margin-left:1.5rem!important}.ms-wide-5{margin-left:3rem!important}.ms-wide-auto{margin-left:auto!important}.p-wide-0{padding:0!important}.p-wide-1{padding:.25rem!important}.p-wide-2{padding:.5rem!important}.p-wide-3{padding:1rem!important}.p-wide-4{padding:1.5rem!important}.p-wide-5{padding:3rem!important}.px-wide-0{padding-left:0!important;padding-right:0!important}.px-wide-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-wide-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-wide-3{padding-left:1rem!important;padding-right:1rem!important}.px-wide-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-wide-5{padding-left:3rem!important;padding-right:3rem!important}.py-wide-0{padding-bottom:0!important;padding-top:0!important}.py-wide-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.py-wide-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.py-wide-3{padding-bottom:1rem!important;padding-top:1rem!important}.py-wide-4{padding-bottom:1.5rem!important;padding-top:1.5rem!important}.py-wide-5{padding-bottom:3rem!important;padding-top:3rem!important}.pt-wide-0{padding-top:0!important}.pt-wide-1{padding-top:.25rem!important}.pt-wide-2{padding-top:.5rem!important}.pt-wide-3{padding-top:1rem!important}.pt-wide-4{padding-top:1.5rem!important}.pt-wide-5{padding-top:3rem!important}.pe-wide-0{padding-right:0!important}.pe-wide-1{padding-right:.25rem!important}.pe-wide-2{padding-right:.5rem!important}.pe-wide-3{padding-right:1rem!important}.pe-wide-4{padding-right:1.5rem!important}.pe-wide-5{padding-right:3rem!important}.pb-wide-0{padding-bottom:0!important}.pb-wide-1{padding-bottom:.25rem!important}.pb-wide-2{padding-bottom:.5rem!important}.pb-wide-3{padding-bottom:1rem!important}.pb-wide-4{padding-bottom:1.5rem!important}.pb-wide-5{padding-bottom:3rem!important}.ps-wide-0{padding-left:0!important}.ps-wide-1{padding-left:.25rem!important}.ps-wide-2{padding-left:.5rem!important}.ps-wide-3{padding-left:1rem!important}.ps-wide-4{padding-left:1.5rem!important}.ps-wide-5{padding-left:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}@font-face{font-display:swap;font-family:Outfit;font-style:normal;font-weight:400;src:url(../fonts/Outfit-Regular.eot);src:url(../fonts/Outfit-Regular.eot?#iefix) format("embedded-opentype"),url(../fonts/Outfit-Regular.woff2) format("woff2"),url(../fonts/Outfit-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Outfit;font-style:normal;font-weight:600;src:url(../fonts/Outfit-SemiBold.eot);src:url(../fonts/Outfit-SemiBold.eot?#iefix) format("embedded-opentype"),url(../fonts/Outfit-SemiBold.woff2) format("woff2"),url(../fonts/Outfit-SemiBold.woff) format("woff")}@font-face{font-display:swap;font-family:Outfit;font-style:normal;font-weight:700;src:url(../fonts/Outfit-Bold.eot);src:url(../fonts/Outfit-Bold.eot?#iefix) format("embedded-opentype"),url(../fonts/Outfit-Bold.woff2) format("woff2"),url(../fonts/Outfit-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Newsreader;font-style:normal;font-weight:400;src:url(../fonts/Newsreader14pt-Regular.eot);src:url(../fonts/Newsreader14pt-Regular.eot?#iefix) format("embedded-opentype"),url(../fonts/Newsreader14pt-Regular.woff2) format("woff2"),url(../fonts/Newsreader14pt-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Newsreader;font-style:normal;font-weight:700;src:url(../fonts/Newsreader14pt-Bold.eot);src:url(../fonts/Newsreader14pt-Bold.eot?#iefix) format("embedded-opentype"),url(../fonts/Newsreader14pt-Bold.woff2) format("woff2"),url(../fonts/Newsreader14pt-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Newsreader;font-style:italic;font-weight:500;src:url(../fonts/Newsreader14pt-MediumItalic.eot);src:url(../fonts/Newsreader14pt-MediumItalic.eot?#iefix) format("embedded-opentype"),url(../fonts/Newsreader14pt-MediumItalic.woff2) format("woff2"),url(../fonts/Newsreader14pt-MediumItalic.woff) format("woff")}html:root{--current-breakpoint:"sm"}@media(min-width:768px){html:root{--current-breakpoint:"md"}}@media(min-width:1023px){html:root{--current-breakpoint:"lg"}}@media(min-width:1200px){html:root{--current-breakpoint:"xl"}}@media(min-width:1400px){html:root{--current-breakpoint:"xxl"}}@media(min-width:1800px){html:root{--current-breakpoint:"wide"}}body,html{-webkit-font-smoothing:antialiased;background-color:#fff;font-family:Outfit,sans-serif;margin:0;overflow-x:hidden;scroll-behavior:smooth;text-rendering:optimizeLegibility}body{scroll-padding-top:7.5rem}*{box-sizing:border-box}dd,dl,dt,h1,h2,h3,h4,h5,h6,ol,p,ul{margin:0;padding:0}p{font-size:1.125rem}ol,ul{list-style-type:none}address{font-style:normal}a{color:#000;-webkit-text-decoration:none;text-decoration:none;transition:color .2s ease-in-out}a:hover{color:#5daa2b}button{-webkit-tap-highlight-color:rgba(0,0,0,0);cursor:pointer}button:focus{outline:none}blockquote{margin:0}cite{font-style:inherit}picture img{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}@media(max-width:1022.98px){.cky-revisit-bottom-left{bottom:5rem!important}}.otgs-development-site-front-end{display:none}.swiper-button-next svg,.swiper-button-prev svg{height:auto;width:auto}.u-h{display:none!important}.u-tu{text-transform:uppercase}.u-vh{clip:rect(0 0 0 0);border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.u-vh.focusable:active,.u-vh.focusable:focus{clip:auto;-webkit-clip-path:none;clip-path:none;height:auto;margin:0;overflow:visible;position:static;white-space:inherit;width:auto}.u-invisible{visibility:hidden}.l-section{padding:3.125rem 0}@media(min-width:1023px){.l-section{padding:6.25rem 0}}.l-space{padding:0 1.25rem}@media(min-width:1023px){.l-space{padding:0 2.5rem}}.l-container{margin:0 auto;max-width:114.375rem}.a-title-old{color:#2c2c2c;font-family:Newsreader,serif;font-size:2rem;font-weight:400;line-height:1.3}.a-title-old span{color:#5daa2b;font-style:italic}.a-title-old__alt span{color:#2f8ec9}@media(min-width:1023px){.a-title-old{font-size:2.25rem}}.a-title--h1{font-family:Newsreader,serif;font-size:2.875rem;font-weight:400;line-height:1.125}.a-title--h2{font-size:2.5rem}.a-title--h2,.a-title--h3{font-family:Newsreader,serif;font-weight:400;line-height:1.25}.a-title--h3{font-size:2rem}.a-title--h4{font-size:1.625rem}.a-title--h4,.a-title--h5{font-family:Newsreader,serif;font-weight:400;line-height:1.25}.a-title--h5{font-size:1.25rem}@media(min-width:1023px){.a-title--h1{font-size:5rem}.a-title--h2{font-size:4rem}.a-title--h3{font-size:3rem}.a-title--h4{font-size:2.25rem}.a-title--h5{font-size:1.5625rem}}.a-lead{color:#a8a8a8;font-size:.9375rem;letter-spacing:.02em;line-height:1.8;text-transform:uppercase}.a-link{color:#2f3b4a;display:block;font-size:1rem;font-weight:600;line-height:1.875;padding-bottom:.5625rem;position:relative;transition:color .3s ease;width:-moz-fit-content;width:fit-content}.a-link:after{background-color:#2f3b4a;bottom:0;content:"";height:.0625rem;left:0;position:absolute;right:0}.a-link:hover{color:#8faec0}.a-spinner{height:6.25rem;margin:6.25rem auto;position:relative;width:6.25rem}.a-spinner__wrapper{background-color:hsla(0,0%,100%,.6);display:none;height:100%;left:0;position:absolute;top:0;width:100%;z-index:99}.a-spinner__wrapper--active{display:block}.a-spinner__item{height:100%;left:0;position:absolute;top:0;width:100%}.a-spinner__item:before{animation:sk-circleBounceDelay 1.2s ease-in-out infinite both;background-color:#0c2d48;border-radius:100%;content:"";display:block;height:20%;margin:0 auto;width:20%}.a-spinner2{transform:rotate(30deg)}.a-spinner2:before{animation-delay:-1.1s}.a-spinner3{transform:rotate(60deg)}.a-spinner3:before{animation-delay:-1s}.a-spinner4{transform:rotate(90deg)}.a-spinner4:before{animation-delay:-.9s}.a-spinner5{transform:rotate(120deg)}.a-spinner5:before{animation-delay:-.8s}.a-spinner6{transform:rotate(150deg)}.a-spinner6:before{animation-delay:-.7s}.a-spinner7{transform:rotate(180deg)}.a-spinner7:before{animation-delay:-.6s}.a-spinner8{transform:rotate(210deg)}.a-spinner8:before{animation-delay:-.5s}.a-spinner9{transform:rotate(240deg)}.a-spinner9:before{animation-delay:-.4s}.a-spinner10{transform:rotate(270deg)}.a-spinner10:before{animation-delay:-.3s}.a-spinner11{transform:rotate(300deg)}.a-spinner11:before{animation-delay:-.2s}.a-spinner12{transform:rotate(330deg)}.a-spinner12:before{animation-delay:-.1s}@keyframes sk-circleBounceDelay{0%,80%,to{transform:scale(0)}40%{transform:scale(1)}}.a-text{font-size:1rem;line-height:1.66667}@media(min-width:1023px){.a-text{font-size:1.125rem}}.a-button{align-items:center;background-color:#8faec0;border:none;color:#f0f7ff;cursor:pointer;display:flex;font-size:1.125rem;font-style:normal;font-weight:600;justify-content:center;line-height:1.66;padding:1.25rem;position:relative;transition:background-color .3s ease;width:100%}.a-button:hover{background-color:#2f3b4a}@media(min-width:1023px){.a-button{width:-moz-fit-content;width:fit-content}}.m-tile{background:#f5f5f5;border-radius:1.25rem;display:block;overflow:hidden;transition:background-color .3s ease-in-out,box-shadow .3s ease-in-out}.m-tile__img{cursor:pointer;height:15.625rem}.m-tile__img img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.m-tile__content{height:calc(100% - 250px);padding:1.875rem 1.25rem}.m-tile__top{display:flex;flex-wrap:wrap;gap:.625rem}.m-tile__top:not(:last-child){margin-bottom:1rem}.m-tile__title{color:rgba(44,44,44,.7);cursor:pointer;display:block;font-family:Newsreader,serif;font-size:1.625rem;font-weight:400;line-height:1.3;transition:color .3s ease-in-out}@media(max-width:1022.98px){.m-tile__title{font-size:1.5rem}}.m-tile__title:not(:last-child){margin-bottom:1.0625rem}.m-tile__text{border-top:.0625rem solid #d1d1d1;color:#656565;cursor:pointer;font-size:.9375rem;font-style:normal;line-height:1.8;padding-top:.375rem}.m-tile__cat{border:.0625rem solid #5daa2b;border-radius:1.25rem;color:#5daa2b;cursor:pointer;display:block;font-size:.875rem;font-weight:400;letter-spacing:.28px;line-height:1.2;padding:.3125rem .9375rem;text-transform:capitalize;transition:color .3s ease-in-out,background-color .3s ease-in-out}.m-tile__cat:hover{background-color:#5daa2b;color:#fff}.m-tile__date{align-items:center;color:#a8a8a8;display:flex;font-size:.9375rem;font-weight:500;gap:.3125rem;justify-content:center;line-height:1.8;text-transform:uppercase}.m-tile__icon{transform:translateY(.1875rem)}.m-tile:hover{background:#fff;box-shadow:0 0 1.1875rem .375rem rgba(0,0,0,.3)}.m-tile:hover .m-tile__title{color:#5daa2b}@media(min-width:1023px){.m-tile__img{height:19.375rem}.m-tile__content{height:calc(100% - 310px);padding:2.5rem 1.9375rem}}.m-find{background-color:#656565;background-image:url(../img/bg-rel.jpg);background-position:50%;background-repeat:no-repeat;background-size:cover;border-radius:1.25rem;position:relative;width:100%}.m-find:after{background:rgba(12,45,72,.8);border-radius:1.25rem;bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:1}.m-find__wrapper{position:relative;z-index:2}.m-find__content{padding:1.25rem}.m-find__text{color:#fff;font-family:Newsreader,serif;font-size:2.25rem;font-weight:400;line-height:1.3}@media(max-width:1022.98px){.m-find__text{font-size:1.5rem}}.m-find__text:not(:last-child){margin-bottom:.6875rem}.m-find__images{display:none}@media(min-width:1023px){.m-find__wrapper{display:flex;justify-content:space-between}.m-find__content{padding:2.6875rem 1.25rem 2.6875rem 3.125rem;width:50%}.m-find__images{display:flex;justify-content:space-between;width:45.5%}.m-find__images img{height:65%;width:32%}.m-find__images img:first-child{align-self:flex-end;border-top-left-radius:1.25rem;border-top-right-radius:1.25rem}.m-find__images img:nth-child(2){align-self:flex-start;border-bottom-left-radius:1.25rem;border-bottom-right-radius:1.25rem}.m-find__images img:nth-child(3){align-self:flex-end;border-bottom-right-radius:1.25rem;border-top-left-radius:1.25rem;height:78%;width:28.5%}}.m-text{color:#2f3b4a;font-size:1rem;line-height:1.66667}@media(min-width:1023px){.m-text{font-size:1.125rem}}.m-text p{color:#2f3b4a;font-size:1rem;line-height:1.66667}.m-text p:not(:last-child){margin-bottom:1.25rem}.m-text a{color:#8faec0}.m-text a:hover{color:#2f3b4a}.m-text ul{list-style-type:disc;padding-left:1.375rem}.m-text ul:not(:last-child){margin-bottom:1.25rem}.m-text ul li{color:#2f3b4a;font-size:1rem;line-height:1.66667}.m-text ol{list-style-type:decimal;padding-left:1.375rem}.m-text ol:not(:last-child){margin-bottom:1.25rem}.m-text ol li{color:#2f3b4a;font-size:1rem;line-height:1.66667}.m-text h2{font-size:1.75rem}.m-text h3{font-size:1.5625rem}.m-text h4{font-size:1.375rem}.m-text h5{font-size:1.25rem}.m-text h6{font-size:1.125rem}.m-text h2,.m-text h3,.m-text h4,.m-text h5,.m-text h6{color:#2f3b4a;font-family:Newsreader,serif;font-weight:400;line-height:1.25}.m-text h2 b,.m-text h2 strong,.m-text h3 b,.m-text h3 strong,.m-text h4 b,.m-text h4 strong,.m-text h5 b,.m-text h5 strong,.m-text h6 b,.m-text h6 strong{font-weight:400}.m-text h2:not(:first-child),.m-text h3:not(:first-child),.m-text h4:not(:first-child),.m-text h5:not(:first-child),.m-text h6:not(:first-child){margin-top:1.875rem}.m-text h2:not(:last-child),.m-text h3:not(:last-child),.m-text h4:not(:last-child),.m-text h5:not(:last-child),.m-text h6:not(:last-child){margin-bottom:1.25rem}@media(min-width:576px){.m-text img.alignleft{float:left;margin-right:.9375rem}.m-text img.alignright{float:right;margin-left:.9375rem}}.m-text .wp-block-media-text .wp-block-media-text__content{padding:0}.m-text .wp-block-image:not(:last-child),.m-text .wp-block-media-text .wp-block-media-text__media:not(:last-child),.m-text .wp-block-media-text.is-stacked-on-mobile:not(:last-child){margin-bottom:1.25rem}.m-text figcaption{color:#2f3b4a;font-size:.875rem}.m-text .wp-block-gallery.has-nested-images figure.wp-block-image{position:relative}.m-text .wp-block-gallery.has-nested-images figure.wp-block-image figcaption{align-items:center;background:#fff;bottom:1.25rem;color:#2f3b4a;display:flex;font-size:.875rem;justify-content:center;left:auto;margin-top:0;max-width:calc(100% - 40px);min-height:3rem;padding:.3125rem 1.875rem;position:absolute;right:1.25rem;width:-moz-fit-content;width:fit-content}@media(min-width:1023px){.m-text h2{font-size:2.25rem}.m-text h3{font-size:2rem}.m-text h4{font-size:1.875rem}.m-text h5{font-size:1.5625rem}.m-text h6{font-size:1.375rem}.m-text h2:not(:first-child),.m-text h3:not(:first-child),.m-text h4:not(:first-child),.m-text h5:not(:first-child),.m-text h6:not(:first-child){margin-top:2.5rem}.m-text h2:not(:last-child),.m-text h3:not(:last-child),.m-text h4:not(:last-child),.m-text h5:not(:last-child),.m-text h6:not(:last-child){margin-bottom:1.875rem}.m-text p{font-size:1.125rem}.m-text p:not(:last-child){margin-bottom:1.875rem}.m-text li{font-size:1.125rem!important}}.m-arrow{align-items:center;color:#fff;display:flex;font-size:.9375rem;font-weight:600;gap:1.875rem;letter-spacing:.02em;text-transform:uppercase}.m-lang .wpml-ls{padding:0}.m-lang .wpml-ls ul{align-items:center;display:flex;justify-content:center}.m-lang .wpml-ls ul li a{color:#fff;cursor:pointer;font-size:.875rem;padding:0;transition:color .3s ease}.m-lang .wpml-ls ul li a:hover{color:hsla(0,0%,100%,.4)}.m-lang .wpml-ls ul li:not(:last-child){margin-right:.625rem}.m-lang .wpml-ls ul li.wpml-ls-current-language a{color:#b7b7b7!important;pointer-events:none}@media(min-width:1023px){.m-lang .wpml-ls li a:not(:last-child){margin-right:.625rem}}.m-modal{align-items:center;background-color:rgba(0,0,0,.6);bottom:0;display:none;justify-content:center;left:0;overflow:auto;padding:1.875rem 1.25rem;position:fixed;right:0;top:0;z-index:1000000}.m-modal__container{background:#fff;margin:auto;max-width:56.25rem;position:relative}.m-modal__img{height:12.5rem;width:100%}.m-modal__img img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.m-modal__img--pc{display:none}.m-modal__button{background-color:#0c2d48;border:.0625rem solid #0c2d48;color:#fff;min-height:2.8125rem;padding:.3125rem 1.25rem;transition:background-color .3s ease-in-out,color .3s ease-in-out;width:-moz-fit-content;width:fit-content}.m-modal__button:hover{background-color:#fff;color:#0c2d48}.m-modal__content{background:#fff;padding:1.125rem}.m-modal__title{font-family:Newsreader,serif;font-size:1.5625rem;font-weight:700;margin-bottom:1.25rem}.m-modal__text{margin-bottom:1.5625rem}.m-modal__text ol,.m-modal__text p,.m-modal__text ul{font-size:1rem}.m-modal__text ol:not(:last-child),.m-modal__text p:not(:last-child),.m-modal__text ul:not(:last-child){margin-bottom:.9375rem}.m-modal__text a{color:#ff9600;font-size:1rem}.m-modal__text ul{list-style-type:disc;padding-left:1.25rem}.m-modal__text ol{list-style-type:decimal;padding-left:1.25rem}.m-modal__text li{line-height:1.3}.m-modal__text li:before{content:none!important}.m-modal__close{background-color:#fff;border:.0625rem solid #000;border-radius:6.25rem;cursor:pointer;height:1.25rem;position:absolute;right:0;top:0;transform:translate(50%,-50%);width:1.25rem}.m-modal__close:after,.m-modal__close:before{background-color:#000;content:"";height:70%;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%) rotate(45deg);width:.125rem}.m-modal__close:before{transform:translate(-50%,-50%) rotate(-45deg)}@media(min-width:1023px){.m-modal{padding:2.8125rem}.m-modal__close{height:1.5625rem;width:1.5625rem}.m-modal__container{display:flex}.m-modal__img{height:auto;width:40%}.m-modal__img--mobile{display:none}.m-modal__img--pc{display:block}.m-modal__content{padding:1.875rem;width:60%}.m-modal__title{font-size:2.5rem}}.m-widget{align-items:stretch;background-color:#fff;display:flex}.m-widget__wrapper{border-right:.0625rem solid #d9d9d9;cursor:pointer;display:flex;flex-direction:column;justify-content:center;min-width:10.625rem;padding:1.25rem}.m-widget__wrapper--s2{padding:0}.m-widget__wrapper--s2 .m-widget__title{padding:1.25rem 1.25rem 0}.m-widget__wrapper--s2 .m-widget__select .select2-container,.m-widget__wrapper--s2 .m-widget__select select.js-select:not(.select2-hidden-accessible){padding:0 1.25rem 1.25rem}.m-widget__title{color:#98a4af;display:block;font-size:.875rem;line-height:normal;text-transform:uppercase}.m-widget__el p{color:#2f3b4a;font-size:1.125rem;line-height:1.66;padding:0 1.25rem 0 0;position:relative}.m-widget__el p:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%278%27 fill=%27none%27%3E%3Cpath d=%27M11.414 1.414 5.707 7.121 0 1.414 1.414 0l4.293 4.293L10 0l1.414 1.414Z%27 fill=%27%232F3B4A%27/%3E%3C/svg%3E") 50%/contain no-repeat;content:"";display:block;height:.5rem;position:absolute;right:0;top:50%;transform:translateY(-25%);width:.75rem}.m-widget__select select.js-select:not(.select2-hidden-accessible){-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;color:#2f3b4a;font-family:Outfit,sans-serif;font-size:1.125rem;line-height:1.66;width:100%}.m-widget__select .select2-container--default .select2-selection--single{background-color:transparent;border:none;position:relative}.m-widget__select .select2-container--default .select2-selection--single .select2-selection__arrow{height:.5rem;top:50%;transform:translateY(-25%);width:.75rem}.m-widget__select .select2-container--default .select2-selection--single .select2-selection__arrow b{display:none}.m-widget__select .select2-container--default .select2-selection--single .select2-selection__arrow:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%278%27 fill=%27none%27%3E%3Cpath d=%27M11.414 1.414 5.707 7.121 0 1.414 1.414 0l4.293 4.293L10 0l1.414 1.414Z%27 fill=%27%232F3B4A%27/%3E%3C/svg%3E") 50%/contain no-repeat;content:"";display:block;height:.5rem;width:.75rem}.m-widget__select .select2-container--default .select2-selection--single .select2-selection__rendered{color:#2f3b4a;font-size:1.125rem;line-height:1.66;padding:0 1.25rem 0 0}.m-widget__select .select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection__placeholder{color:#2f3b4a;font-size:1.125rem;line-height:1.66}.m-widget__button{align-items:center;background-color:#8faec0;border:none;color:#f0f7ff;cursor:pointer;display:flex;font-size:1.125rem;font-style:normal;font-weight:600;justify-content:center;line-height:1.66;padding:1.25rem;position:relative;transition:background-color .3s ease}.m-widget__button:hover{background-color:#2f3b4a}.m-widget__info{background-color:rgba(0,0,0,.5);bottom:0;color:#fff;display:block;font-size:.875rem;left:50%;line-height:normal;padding:1.25rem;pointer-events:none;position:absolute;text-align:center;transform:translate(-50%,calc(100% + 14px));white-space:nowrap;z-index:2}.m-widget__info:before{border-bottom:.875rem solid rgba(0,0,0,.5);border-left:.75rem solid transparent;border-right:.75rem solid transparent;content:"";height:0;left:50%;position:absolute;top:0;transform:translate(-50%,-100%);width:0}.m-footer{border-top:.0625rem solid #babfc4;padding-bottom:1.25rem;padding-top:1.25rem}.m-footer__title{color:#fff;font-size:1.125rem;font-weight:600;line-height:1.66667;margin-bottom:1.25rem;text-transform:uppercase}.m-footer__link{align-items:center;color:#f0f7ff;display:flex;font-size:1rem;font-weight:400;line-height:1.875;transition:color .3s ease-in-out;width:100%}.m-footer__link:hover{color:#8faec0}.m-footer__link:not(.m-footer__link--alt){padding-left:0;position:relative}.m-footer__link:not(.m-footer__link--alt):before{color:#69788a;content:"→";margin-right:.3125rem}.m-footer__top:not(:last-child){margin-bottom:1.25rem}.m-footer__button{align-items:center;color:#fff;cursor:pointer;display:flex;font-size:1rem;transition:color .3s ease-in-out}.m-footer__button svg{margin-left:.625rem;transition:transform .3s ease-in-out}.m-footer__button svg path{transition:fill .3s ease-in-out}.m-footer__button:hover{color:#8faec0}.m-footer__button:hover svg path{fill:#8faec0}.m-footer__button.--open svg{transform:rotate(180deg)}.m-footer__bottom{padding-top:1.25rem}@media(max-width:767.98px){.m-footer__col:not(:last-child),.m-footer__item:not(:last-child){margin-bottom:1.25rem}}@media(min-width:768px){.m-footer__list,.m-footer__top{display:flex;flex-wrap:wrap;gap:1.25rem}.m-footer__col,.m-footer__item,.m-footer__list{width:100%}.m-footer__col--small,.m-footer__col:not(.m-footer__col--small) .m-footer__item{width:calc(50% - 10px)}.m-footer__bottom{display:flex;flex-wrap:wrap;gap:1.25rem}}@media(min-width:1023px){.m-footer{padding-bottom:2.5rem;padding-top:2.5rem}.m-footer__top:not(:last-child){margin-bottom:2.5rem}.m-footer__top{gap:2.5rem}.m-footer__col{width:calc(50% - 20px)}.m-footer__col--small{width:calc(25% - 30px)}.m-footer__col:not(.m-footer__col--small) .m-footer__item{width:calc(50% - 20px)}.m-footer__bottom{gap:2.5rem}.m-footer__list{gap:1.25rem 2.5rem}}.o-header{border-bottom:.0625rem solid hsla(0,0%,100%,.4);display:flex;height:7.5rem;justify-content:space-between;left:0;position:fixed;right:0;top:0;transition:background-color .3s ease-in-out,border-bottom-color .3s ease-in-out;z-index:20}.o-header--black:not(.o-header--alt){border-bottom-color:rgba(47,59,74,.4)}.o-header--black:not(.o-header--alt) .o-header__logo{border-right-color:rgba(47,59,74,.4)}.o-header--black:not(.o-header--alt) .o-header__wpml{border-left-color:rgba(47,59,74,.4)}.o-header--black:not(.o-header--alt) .o-header__wpml .wpml-ls ul li:not(.wpml-ls-current-language) a{color:#2f3b4a}.o-header--black:not(.o-header--alt) .o-header__socials{border-left-color:rgba(47,59,74,.4)}.o-header--black:not(.o-header--alt) .o-header__socials svg path{fill:#2f3b4a}.o-header--black:not(.o-header--alt) .o-header__button{border-left-color:rgba(47,59,74,.4)}.o-header--black:not(.o-header--alt) .o-header__link{color:#2f3b4a}.o-header--black:not(.o-header--alt) .o-header__link:hover{color:#8faec0}.o-header--black:not(.o-header--alt) .o-header__link:after{background-color:#2f3b4a}.o-header--black:not(.o-header--alt) .o-header__menu ul li a{color:#2f3b4a}.o-header--black:not(.o-header--alt) .o-header__menu ul li a:hover{color:#8faec0}.o-header--black:not(.o-header--alt) .o-header__loc{border-left-color:rgba(47,59,74,.4)}.o-header--black:not(.o-header--alt) .o-header__loc select.js-loc:not(.select2-hidden-accessible){color:#2f3b4a}.o-header--black:not(.o-header--alt) .o-header__loc .select2-container--default .select2-selection--single .select2-selection__arrow:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%278%27 fill=%27none%27%3E%3Cpath d=%27M11.414 1.414 5.707 7.121 0 1.414 1.414 0l4.293 4.293L10 0l1.414 1.414Z%27 fill=%27%232F3B4A%27/%3E%3C/svg%3E") 50%/contain no-repeat}.o-header--black:not(.o-header--alt) .o-header__back,.o-header--black:not(.o-header--alt) .o-header__loc .select2-container--default .select2-selection--single .select2-selection__rendered,.o-header--black:not(.o-header--alt) .o-header__loc .select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection__placeholder{color:#2f3b4a}.o-header--black:not(.o-header--alt) .o-header__back svg path{fill:#2f3b4a}.o-header--black:not(.o-header--alt) .o-header__back:hover{color:#8faec0}.o-header__logo{border-right:.0625rem solid hsla(0,0%,100%,.4);cursor:pointer;display:block;flex-grow:0;flex-shrink:0;height:100%;padding:.5625rem 1.25rem;transition:border-right-color .3s ease-in-out;width:auto}.o-header__logo svg{height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center;width:auto}.o-header__wpml{align-items:center;border-left:.0625rem solid hsla(0,0%,100%,.4);display:flex;height:100%;justify-content:center;padding:.5625rem 1.25rem;transition:border-left-color .3s ease-in-out}.o-header__right{align-items:stretch;display:flex}@media(max-width:1022.98px){.o-header{display:flex;justify-content:center;position:absolute}.o-header,.o-header__logo{border:none}.o-header__button,.o-header__loc,.o-header__menu,.o-header__right{display:none}}@media(max-width:1199.98px){.o-header__button{display:none}}@media(min-width:1023px){.o-header--alt{background-color:#2f3b4a}.o-header--multi:not(.o-header--alt){border-bottom-color:rgba(47,59,74,.4)}.o-header--multi:not(.o-header--alt) .o-header__logo{border-right-color:rgba(47,59,74,.4)}.o-header--multi:not(.o-header--alt) .o-header__wpml{border-left-color:rgba(47,59,74,.4)}.o-header--multi:not(.o-header--alt) .o-header__wpml .wpml-ls ul li:not(.wpml-ls-current-language) a{color:#2f3b4a}.o-header--multi:not(.o-header--alt) .o-header__socials{border-left-color:rgba(47,59,74,.4)}.o-header--multi:not(.o-header--alt) .o-header__socials svg path{fill:#2f3b4a}.o-header--multi:not(.o-header--alt) .o-header__button{border-left-color:rgba(47,59,74,.4)}.o-header--multi:not(.o-header--alt) .o-header__link{color:#2f3b4a}.o-header--multi:not(.o-header--alt) .o-header__link:hover{color:#8faec0}.o-header--multi:not(.o-header--alt) .o-header__link:after{background-color:#2f3b4a}.o-header--multi:not(.o-header--alt) .o-header__menu ul li a{color:#2f3b4a}.o-header--multi:not(.o-header--alt) .o-header__menu ul li a:hover{color:#8faec0}.o-header--multi:not(.o-header--alt) .o-header__loc{border-left-color:rgba(47,59,74,.4)}.o-header--multi:not(.o-header--alt) .o-header__loc .select2-container--default .select2-selection--single .select2-selection__arrow:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%278%27 fill=%27none%27%3E%3Cpath d=%27M11.414 1.414 5.707 7.121 0 1.414 1.414 0l4.293 4.293L10 0l1.414 1.414Z%27 fill=%27%232F3B4A%27/%3E%3C/svg%3E") 50%/contain no-repeat}.o-header--multi:not(.o-header--alt) .o-header__back,.o-header--multi:not(.o-header--alt) .o-header__loc .select2-container--default .select2-selection--single .select2-selection__rendered,.o-header--multi:not(.o-header--alt) .o-header__loc .select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection__placeholder{color:#2f3b4a}.o-header--multi:not(.o-header--alt) .o-header__back svg path{fill:#2f3b4a}.o-header--multi:not(.o-header--alt) .o-header__back:hover{color:#8faec0}.o-header__menu{padding:.5625rem 1.25rem}.o-header__menu ul{align-items:center;display:flex;gap:1.25rem;height:100%}.o-header__menu ul li a{color:#fff;cursor:pointer;font-size:.75rem;position:relative;text-transform:uppercase;transition:color .3s ease-in-out}.o-header__menu ul li a:after{border-bottom:.0625rem solid #8faec0;bottom:0;content:"";height:.125rem;left:0;opacity:0;position:absolute;right:0;transition:opacity .3s ease-in-out}.o-header__menu ul li a:hover{color:#8faec0}.o-header__menu ul li a:hover:after{opacity:1}.o-header__logo,.o-header__wpml{padding:.5625rem 1.25rem}.o-header__link{color:#fff;display:block;font-size:1rem;font-weight:600;line-height:1.875;padding-bottom:.5625rem;position:relative;transition:color .3s ease;width:-moz-fit-content;width:fit-content}.o-header__link:after{background-color:#fff;bottom:0;content:"";height:.0625rem;left:0;position:absolute;right:0;transition:background-color .3s ease-in-out}.o-header__link:hover{color:#8faec0}.o-header__loc{align-items:center;border-left:.0625rem solid hsla(0,0%,100%,.4);display:flex;transition:border-left-color .3s ease-in-out}.o-header__loc select.js-loc:not(.select2-hidden-accessible){align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;color:#fff;display:flex;font-family:Outfit,sans-serif;font-size:1rem;height:100%;padding:.5625rem 1.25rem .5625rem 1.625rem;width:100%}.o-header__loc .select2-container{align-items:center;display:flex;height:100%;padding:.5625rem 1.25rem}.o-header__loc .select2-container--default .select2-selection--single{background-color:transparent;border:none}.o-header__loc .select2-container--default .select2-selection--single .select2-selection__arrow{height:.5rem;right:1.25rem;top:50%;transform:translateY(-25%);width:.75rem}.o-header__loc .select2-container--default .select2-selection--single .select2-selection__arrow b{display:none}.o-header__loc .select2-container--default .select2-selection--single .select2-selection__arrow:after{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%278%27 fill=%27none%27%3E%3Cpath d=%27M11.414 1.414 5.707 7.121 0 1.414 1.414 0l4.293 4.293L10 0l1.414 1.414Z%27 fill=%27%23fff%27/%3E%3C/svg%3E") 50%/contain no-repeat;content:"";display:block;height:.5rem;width:.75rem}.o-header__loc .select2-container--default .select2-selection--single .select2-selection__rendered{color:#fff;font-size:1rem;padding:0 1.25rem 0 0;transition:color .3s ease-in-out}.o-header__loc .select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection__placeholder{color:#fff;font-size:1rem;transition:color .3s ease-in-out}.o-header__socials{border-left:.0625rem solid hsla(0,0%,100%,.4);gap:.625rem;height:100%;padding:.5625rem 1.25rem;transition:border-left-color .3s ease-in-out}.o-header__social,.o-header__socials{align-items:center;display:flex;justify-content:center}.o-header__social svg{height:1.5rem;transition:opacity .2s ease;width:1.5rem}.o-header__social svg path{fill:#fff;transition:fill .3s ease-in-out}.o-header__social:hover svg{opacity:.7}}@media(min-width:1200px){.o-header__button{align-items:center;border-left:.0625rem solid hsla(0,0%,100%,.4);display:flex;justify-content:center;padding:.5625rem 1.25rem;transition:border-left-color .3s ease-in-out}}@media(min-width:1400px){.o-header__button,.o-header__logo,.o-header__wpml{padding:.5625rem 2.5rem}.o-header__loc select.js-loc:not(.select2-hidden-accessible){padding:.5625rem 2.5rem .5625rem 2.875rem}.o-header__loc .select2-container{padding:.5625rem 2.5rem}.o-header__loc .select2-container--default .select2-selection--single .select2-selection__arrow{right:2.5rem}.o-header__socials{padding:.5625rem 2.5rem}.o-header__menu ul li a{font-size:1rem}}@media(max-width:1600px){.o-header__back{display:none}}@media(min-width:1800px){.o-header__menu ul{gap:2.5rem}}@media(max-width:1100px){.o-header__socials{display:none}}@media(min-width:1600px){.o-header__left{display:flex}.o-header__back{align-items:center;color:#fff;cursor:pointer;display:flex;font-size:1rem;gap:.625rem;padding:.5625rem 0 .5625rem 2.5rem;text-transform:uppercase;transition:color .3s ease-in-out}.o-header__back svg path{fill:#fff;transition:fill .3s ease-in-out}.o-header__back span{position:relative}.o-header__back span:after{border-bottom:.0625rem solid #8faec0;bottom:0;content:"";height:.125rem;left:0;opacity:0;position:absolute;right:0;transition:opacity .3s ease-in-out}.o-header__back:hover{color:#8faec0}.o-header__back:hover span:after{opacity:1}}.o-footer{background-color:#2f3b4a;color:#fff;padding-bottom:1.25rem;padding-top:3.125rem;position:relative}.o-footer__title{color:#fff;margin:0 auto;max-width:60.25rem;text-align:center}.o-footer__logo{background-color:#2f3b4a;display:flex;justify-content:center;margin:1.25rem auto -2.8125rem;position:relative;width:-moz-fit-content;width:fit-content;z-index:1}.o-footer__logo img,.o-footer__logo svg{height:auto;width:6.25rem}.o-footer__row{border-top:.0625rem solid hsla(0,0%,100%,.4);display:flex;flex-wrap:wrap}.o-footer__col{padding:1.25rem;width:100%}.o-footer__col-name{text-align:center}.o-footer__col-name:not(:last-child){margin-bottom:1.25rem}.o-footer__col-address{text-align:center}.o-footer__col-address:not(:last-child){margin-bottom:1.25rem}.o-footer__socials{gap:1rem}.o-footer__social,.o-footer__socials{align-items:center;display:flex;justify-content:center}.o-footer__social svg{height:1.5rem;transition:opacity .2s ease;width:1.5rem}.o-footer__social svg path{fill:#fff}.o-footer__social:hover svg{opacity:.7}.o-footer__menu{border-top:.0625rem solid hsla(0,0%,100%,.4);padding:1.25rem}.o-footer__menu ul{align-items:center;display:flex;flex-direction:column}@media(max-width:1022.98px){.o-footer__menu ul li:not(:last-child){margin-bottom:1.25rem}}.o-footer__menu ul li a{color:#fff;cursor:pointer;font-size:1rem;text-transform:uppercase;transition:color .3s ease-in-out}.o-footer__menu ul li a:hover{color:#8faec0}.o-footer__copy{border-top:.0625rem solid hsla(0,0%,100%,.4);color:#7c8692;font-size:.875rem;padding:1.25rem 1.25rem 0;text-align:center}.o-footer__copy a{color:#7c8692}.o-footer__copy a:hover{color:#fff}@media(max-width:575.98px){.o-footer__col{width:100%}.o-footer__col:first-child{padding-top:3.75rem}.o-footer__col:not(:last-child){border-bottom:.0625rem solid hsla(0,0%,100%,.4);margin-bottom:1.25rem;padding-bottom:1.25rem}}@media(min-width:576px)and (max-width:1022.98px){.o-footer__col{padding:2.5rem 1.25rem;width:50%}.o-footer__col:nth-child(-n+2){padding-top:5rem}.o-footer__col:not(:nth-last-child(-n+2)){border-bottom:.0625rem solid hsla(0,0%,100%,.4)}.o-footer__col:nth-child(2n-1){border-right:.0625rem solid hsla(0,0%,100%,.4)}}@media(min-width:1023px){.o-footer{padding-bottom:2.5rem;padding-top:5rem}.o-footer__logo{margin-bottom:-5.625rem;margin-top:2.5rem}.o-footer__logo img,.o-footer__logo svg{width:11.25rem}.o-footer__copy{padding:2.5rem 2.5rem 0}.o-footer__col{padding:5rem 2.5rem;width:25%}.o-footer__col:nth-child(-n+4){padding-top:8.75rem}.o-footer__col:not(:nth-last-child(-n+4)){border-bottom:.0625rem solid hsla(0,0%,100%,.4)}.o-footer__col:nth-child(4n-1),.o-footer__col:nth-child(4n-2),.o-footer__col:nth-child(4n-3){border-right:.0625rem solid hsla(0,0%,100%,.4)}.o-footer__menu{padding:1.25rem 2.5rem}.o-footer__menu ul{flex-direction:row;gap:2.5rem;justify-content:center}}.o-hero-home{background-color:#2f3b4a;position:relative}.o-hero-home:after{background-color:rgba(0,0,0,.4);content:"";z-index:2}.o-hero-home:after,.o-hero-home__bg{bottom:0;left:0;position:absolute;right:0;top:0}.o-hero-home__bg{z-index:1}.o-hero-home__bg img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.o-hero-home__lead{font-size:1rem;line-height:1.66}.o-hero-home__lead,.o-hero-home__title{color:#fff;font-family:Newsreader,serif;text-align:center}.o-hero-home__title{font-size:3.125rem;font-style:normal;font-weight:400;line-height:1.125}.o-hero-home__container{align-items:center;display:flex;flex-direction:column;justify-content:center;padding-bottom:7.5rem;padding-top:15rem;position:relative;z-index:3}@media(max-width:1022.98px){.o-hero-home__span,.o-hero-home__widget{display:none}}@media(min-width:1023px){.o-hero-home{padding-bottom:9.375rem}.o-hero-home__span{bottom:0;left:50%;padding-bottom:7.5rem;position:absolute;transform:translateX(-50%);z-index:5}.o-hero-home__span a{color:#fff;cursor:pointer;font-size:1rem;text-transform:uppercase;transition:color .3s ease-in-out}.o-hero-home__span a:hover{color:#8faec0}.o-hero-home__span:after{background-color:#fff;bottom:0;content:"";height:6.25rem;left:50%;position:absolute;transform:translateX(-50%);width:.0625rem}.o-hero-home__title{font-size:5rem}.o-hero-home__title:not(:last-child){margin-bottom:1.25rem}.o-hero-home__lead{font-size:1.125rem}.o-hero-home__container{min-height:46.875rem;padding-top:16.875rem}}.o-about-us-home{background-color:#f0f7ff;padding-bottom:3.125rem;padding-top:3.125rem}.o-about-us-home__container:not(:last-child){margin-bottom:3.125rem}.o-about-us-home__title{color:#2f3b4a;margin:0 auto;max-width:62.5rem;text-align:center}.o-about-us-home__title:not(:last-child){margin-bottom:3.125rem}.o-about-us-home__text{color:#2f3b4a}.o-about-us-home__text:not(:last-child){margin-bottom:1.25rem}.o-about-us-home__links a{color:#2f3b4a;display:block;font-size:1rem;font-weight:600;line-height:1.875;padding-bottom:.5625rem;position:relative;transition:color .3s ease;width:-moz-fit-content;width:fit-content}.o-about-us-home__links a:after{background-color:#2f3b4a;bottom:0;content:"";height:.0625rem;left:0;position:absolute;right:0}.o-about-us-home__links a:hover{color:#8faec0}.o-about-us-home__images img{aspect-ratio:1/1;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.o-about-us-home__wrapper:not(:last-child){margin-bottom:3.125rem}.o-about-us-home__tile{align-items:center;display:flex;flex-direction:column;position:relative}.o-about-us-home__nr{color:#2f3b4a;text-align:center}.o-about-us-home__logo{height:3.125rem;width:15rem}.o-about-us-home__logo img{height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center;width:100%}.o-about-us-home__scroll{color:#2f3b4a;font-family:Newsreader,serif;font-size:3.75rem;font-weight:400;line-height:normal;margin:0 -1.25rem;overflow:hidden;text-transform:uppercase;width:100vw}.o-about-us-home__scroll-track{animation:marquee 12s linear infinite;display:flex;width:-moz-max-content;width:max-content}.o-about-us-home__scroll-track span{white-space:nowrap}.o-about-us-home__scroll-track span:not(:last-child){padding-right:3.75rem}@media(max-width:767.98px){.o-about-us-home__tile:not(:last-child){margin-bottom:1.25rem;padding-bottom:1.25rem}.o-about-us-home__tile:not(:last-child):after{background-color:#2f3b4a;bottom:0;content:"";height:.0625rem;left:0;position:absolute;right:0}.o-about-us-home__images{grid-column-gap:1.25rem;grid-row-gap:1.25rem;display:grid;grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr)}.o-about-us-home__images img:first-child{grid-area:1/1/3/2}.o-about-us-home__images img:nth-child(2){grid-area:1/2/2/3}.o-about-us-home__images img:nth-child(3){grid-area:2/2/3/3}.o-about-us-home__images img:nth-child(4){display:none}.o-about-us-home__content:not(:last-child){margin-bottom:2.5rem}}@media(max-width:575.98px){.o-about-us-home__links a:not(:last-child){margin-bottom:.625rem}}@media(min-width:576px){.o-about-us-home__links{display:flex;flex-wrap:wrap;gap:1.25rem}}@media(min-width:768px){.o-about-us-home__results{grid-gap:2.5rem;display:grid;gap:2.5rem;grid-template-columns:repeat(3,1fr)}.o-about-us-home__tile{justify-content:center;min-height:16.25rem}.o-about-us-home__tile:not(:last-child):not(:nth-child(3n-3)):after{background-color:#2f3b4a;bottom:0;content:"";position:absolute;right:-1.25rem;top:0;transform:translatex(50%);width:.0625rem}.o-about-us-home__content{margin-left:auto;width:calc(50% - 20px)}.o-about-us-home__content:not(:last-child){margin-bottom:3.75rem}.o-about-us-home__links,.o-about-us-home__text{max-width:35.625rem}.o-about-us-home__images{display:flex;gap:1.25rem}.o-about-us-home__images img:first-child{transform:translatey(calc(-50% - 10px))}.o-about-us-home__images img:nth-child(2n-2){width:calc(16.66667% - 16.66667px)}.o-about-us-home__images img:nth-child(2n-1){width:calc(33.33333% - 13.33333px)}}@media(min-width:1023px){.o-about-us-home{padding-bottom:7.5rem;padding-top:13.75rem;position:relative}.o-about-us-home:before{background-color:#2f3b4a;content:"";height:6.25rem;left:50%;position:absolute;top:0;transform:translateX(-50%);width:.0625rem}.o-about-us-home__title:not(:last-child){margin-bottom:7.5rem}.o-about-us-home__text:not(:last-child){margin-bottom:1.875rem}.o-about-us-home__links{gap:2.5rem}.o-about-us-home__content{margin-bottom:5rem}.o-about-us-home__images{gap:1.875rem}.o-about-us-home__images img:first-child{transform:translatey(calc(-50% - 15px))}.o-about-us-home__images img:nth-child(2n-2){width:calc(16.66667% - 25px)}.o-about-us-home__images img:nth-child(2n-1){width:calc(33.33333% - 20px)}.o-about-us-home__container:not(:last-child),.o-about-us-home__wrapper:not(:last-child){margin-bottom:7.5rem}.o-about-us-home__scroll{font-size:8rem;margin:0 -2.5rem}}.o-img-home{background-color:#2f3b4a}.o-img-home__tile{position:relative}.o-img-home__tile:after{background-color:rgba(47,59,74,.5);bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:2}.o-img-home__el{align-items:flex-end;aspect-ratio:12/5;display:flex;padding:1.25rem;position:relative}.o-img-home__el:after{background-color:rgba(0,0,0,.2);content:"";z-index:2}.o-img-home__el:after,.o-img-home__img{bottom:0;left:0;position:absolute;right:0;top:0}.o-img-home__img{z-index:1}.o-img-home__img img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.o-img-home__content{align-items:center;aspect-ratio:1/1;color:#fff;display:flex;flex-direction:column;justify-content:center;padding:1.25rem;position:relative;z-index:3}.o-img-home__title{max-width:35.625rem;text-align:center}.o-img-home__title:not(:last-child){margin-bottom:1.25rem}.o-img-home__space{background-color:#fff;height:1.25rem;width:.0625rem}.o-img-home__space:not(:last-child){margin-bottom:1.25rem}.o-img-home__text{max-width:35.625rem;text-align:center}.o-img-home__text:not(:last-child){margin-bottom:1.25rem}.o-img-home__link{color:#fff;display:block;font-size:1rem;font-weight:600;line-height:1.875;padding-bottom:.5625rem;position:relative;text-align:center;text-transform:uppercase;transition:color .3s ease;width:-moz-fit-content;width:fit-content}.o-img-home__link:after{background-color:#fff;bottom:0;content:"";height:.0625rem;left:0;position:absolute;right:0}.o-img-home__link:hover{color:#b7b7b7}.o-img-home__main{color:#fff;font-family:Newsreader,serif;font-size:2.5rem;font-weight:400;line-height:normal;position:relative;text-transform:uppercase;z-index:3}@media(min-width:768px){.o-img-home__wrapper{display:flex;flex-wrap:wrap}.o-img-home__tile{width:50%}}@media(min-width:1023px){.o-img-home__content,.o-img-home__el{padding:2.5rem}.o-img-home__space{height:2.5rem}.o-img-home__space:not(:last-child){margin-bottom:2.5rem}.o-img-home__main{font-size:8rem}.o-img-home__text:not(:last-child),.o-img-home__title:not(:last-child){margin-bottom:2.5rem}}.o-opinion-section{padding-bottom:3.125rem;padding-top:3.125rem}.o-opinion-section .l-container{max-width:91.875rem}.o-opinion-section__wrapper{align-items:center;border:.0625rem solid rgba(47,59,74,.4);display:flex;flex-direction:column;padding:3.75rem 2.5rem 2.5rem;position:relative;text-align:center}.o-opinion-section__quote{left:50%;position:absolute;top:0;transform:translateX(-50%) translateY(-50%);width:6.25rem}.o-opinion-section__quote svg{height:auto;width:100%}.o-opinion-section__stars svg{height:auto;width:11.875rem}.o-opinion-section__stars:not(:last-child){margin-bottom:1.25rem}.o-opinion-section__title{color:#2f3b4a;font-family:Newsreader,serif;font-size:2rem;font-style:italic;font-weight:500;line-height:1.2;margin:0 auto;max-width:72.5rem}.o-opinion-section__title:not(:last-child){margin-bottom:1.25rem}.o-opinion-section__text{margin:0 auto;max-width:35.625rem}.o-opinion-section__text:not(:last-child){margin-bottom:1.25rem}.o-opinion-section__author{font-weight:600;margin:0 auto;max-width:35.625rem}.o-opinion-section__author:not(:last-child){margin-bottom:.625rem}.o-opinion-section__logo{display:flex;justify-content:center}.o-opinion-section__logo img{height:auto;width:10rem}@media(min-width:1023px){.o-opinion-section{padding-bottom:7.5rem;padding-top:7.5rem}.o-opinion-section__title{font-size:4rem}.o-opinion-section__stars:not(:last-child),.o-opinion-section__text:not(:last-child),.o-opinion-section__title:not(:last-child){margin-bottom:2.5rem}.o-opinion-section__wrapper{padding:8.125rem 5rem 5rem}.o-opinion-section__quote{width:12.5rem}}.o-faq{background-color:#f0f7ff;padding-bottom:3.125rem;padding-top:3.125rem}.o-faq__title{color:#2f3b4a;margin:0 auto;max-width:55rem;text-align:center}.o-faq__title:not(:last-child){margin-bottom:3.125rem}.o-faq__container{margin:0 auto;max-width:54.375rem}.o-faq__tile{border-top:.0625rem solid rgba(47,59,74,.4)}.o-faq__tile:last-child{border-bottom:.0625rem solid rgba(47,59,74,.4)}.o-faq__tile-title{align-items:center;color:#2f3b4a;cursor:pointer;display:flex;gap:1rem;justify-content:space-between;margin:0;padding:1.25rem 0}.o-faq__tile-title:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 fill=%27none%27%3E%3Ccircle cx=%2715%27 cy=%2715%27 r=%2714.5%27 stroke=%27%232F3B4A%27 stroke-opacity=%27.4%27/%3E%3Cpath d=%27m10 13 5 5 5-5%27 stroke=%27%232F3B4A%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;content:"";flex-shrink:0;height:1.875rem;transition:transform .3s ease;width:1.875rem}.o-faq__tile-title.--open:after{transform:rotate(180deg)}.o-faq__tile-text{color:#2f3b4a;display:none;padding-bottom:1.25rem}@media(min-width:1023px){.o-faq{padding-bottom:7.5rem;padding-top:7.5rem}.o-faq__title:not(:last-child){margin-bottom:7.5rem}.o-faq__tile-title{padding:1.875rem 0}.o-faq__tile-text{padding-bottom:1.875rem}}.o-pages{padding-bottom:3.125rem;padding-top:3.125rem}.o-pages__tile{justify-content:space-between;padding:1.25rem}.o-pages__tile,.o-pages__wrapper{align-items:center;display:flex;flex-direction:column}.o-pages__title{max-width:35.625rem;text-align:center}.o-pages__title:not(:last-child){margin-bottom:1.25rem}.o-pages__space{background-color:#2f3b4a;height:1.25rem;width:.0625rem}.o-pages__space:not(:last-child){margin-bottom:1.25rem}.o-pages__text{max-width:35.625rem;text-align:center}.o-pages__text:not(:last-child){margin-bottom:1.25rem}.o-pages__link{color:#2f3b4a;display:block;font-size:1rem;font-weight:600;line-height:1.875;padding-bottom:.5625rem;position:relative;text-align:center;text-transform:uppercase;transition:color .3s ease;width:-moz-fit-content;width:fit-content}.o-pages__link:after{background-color:#2f3b4a;bottom:0;content:"";height:.0625rem;left:0;position:absolute;right:0}.o-pages__link:hover{color:#8faec0}.o-pages__link:not(:last-child){margin-bottom:1.25rem}.o-pages__img{align-items:center;aspect-ratio:19/9;display:flex;justify-content:center;padding:1.25rem;position:relative;width:100%}.o-pages__img img:not(.o-pages__logo){height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;position:absolute;width:100%;z-index:1}.o-pages__img:after{background-color:rgba(0,0,0,.3);bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:2}.o-pages__img:not(:last-child){margin-bottom:1.25rem}.o-pages__logo{height:auto;position:relative;width:8.75rem;z-index:3}@media(min-width:768px){.o-pages{display:flex;flex-wrap:wrap}.o-pages__tile{flex-grow:1;flex-shrink:1;width:50%}}@media(min-width:1023px){.o-pages{padding-bottom:7.5rem;padding-top:7.5rem}.o-pages__tile{color:#2f3b4a;padding:2.5rem}.o-pages__space{height:2.5rem}.o-pages__link:not(:last-child),.o-pages__text:not(:last-child),.o-pages__title:not(:last-child){margin-bottom:2.5rem}.o-pages__img:not(:last-child){margin-bottom:3.125rem}.o-pages__tile{width:33.3333333333%}}@media(min-width:1200px){.o-pages__tile{width:25%}}.o-ap-section{overflow:hidden;padding-bottom:3.125rem;padding-top:3.125rem}.o-ap-section__swiper{overflow:visible;position:relative}.o-ap-section__link{color:#2f3b4a;display:block;font-size:1rem;font-weight:600;line-height:1.875;padding-bottom:.5625rem;position:relative;transition:color .3s ease;width:-moz-fit-content;width:fit-content}.o-ap-section__link:after{background-color:#2f3b4a;bottom:0;content:"";height:.0625rem;left:0;position:absolute;right:0}.o-ap-section__link:hover{color:#8faec0}.o-ap-section__right{align-items:center;display:flex;gap:2.5rem}.o-ap-section__nav{display:flex;flex-grow:0;flex-shrink:0;gap:.625rem;margin-top:.125rem}.o-ap-section__arrow{background-color:#fff;border:.0625rem solid #2f3b4a;border-radius:3.75rem;height:3.75rem!important;margin-top:0!important;position:absolute!important;top:50%!important;transform:translateY(-50%)!important;transition:background-color .3s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;width:3.75rem!important;z-index:8!important}@media(max-width:1022.98px){.o-ap-section__arrow{height:3.125rem!important;width:3.125rem!important}.o-ap-section__arrow svg{height:1.5rem!important;width:.75rem!important}}.o-ap-section__arrow svg{height:1.75rem!important;-o-object-fit:none!important;object-fit:none!important;width:.875rem!important}.o-ap-section__arrow svg path{fill:none!important;stroke:#2f3b4a;transition:stroke .3s ease-in-out}.o-ap-section__arrow--prev{left:.3125rem!important}.o-ap-section__arrow--next{right:.3125rem!important;transform:translateY(-50%) rotate(180deg)!important}.o-ap-section__arrow:after{content:none!important}.o-ap-section__arrow:hover{background-color:#fff}.o-ap-section__arrow:hover svg path{stroke:#8faec0}.o-ap-section__top:not(:last-child){margin-bottom:2.5rem}.o-ap-section__slide{height:auto!important}.o-ap-section__slide:not(:last-child) .m-b-tile{margin-right:-.0625rem}@media(max-width:1022.98px){.o-ap-section__title:not(:last-child){margin-bottom:2.5rem}}@media(min-width:1023px){.o-ap-section{padding-bottom:7.5rem;padding-top:7.5rem}.o-ap-section__top{align-items:center;display:flex;gap:2.5rem;justify-content:space-between}.o-ap-section__top:not(:last-child){margin-bottom:7.5rem}.o-ap-section__right{gap:2.5rem}}.o-blog{color:#2f3b4a;padding-bottom:3.125rem;padding-top:3.125rem}.o-blog__title{text-align:center}.o-blog__title:not(:last-child){margin-bottom:1.25rem}.o-blog__text{margin:0 auto;max-width:28.75rem;text-align:center}.o-blog__text:not(:last-child){margin-bottom:1.25rem}.o-blog__link{margin:0 auto;text-align:center}.o-blog__link:not(:last-child){margin-bottom:1.25rem}.o-blog__tile{display:block;padding-left:36%;padding-top:15.625rem;position:relative;transition:transform .3s ease-in-out}.o-blog__tile:not(:last-child){margin-bottom:1.25rem}.o-blog__tile-img{bottom:0;left:0;position:absolute;top:0;width:81%;z-index:1}.o-blog__tile-img img{height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.o-blog__tile-content{background-color:#fff;color:#2f3b4a;padding:1.25rem;position:relative;z-index:2}.o-blog__tile-cat{align-items:center;display:flex}.o-blog__tile-cat svg{margin-right:.3125rem}.o-blog__content:not(:last-child),.o-blog__tile-cat:not(:last-child),.o-blog__tile-title:not(:last-child){margin-bottom:1.25rem}@media(max-width:767.98px){.o-blog__tile{padding-left:15%}}@media(max-width:1022.98px){.o-blog__tile{padding-top:6.25rem}.o-blog__col:not(:last-child){margin-bottom:1.25rem}}@media(min-width:1023px)and (max-width:1399.98px){.o-blog__tile{padding-left:15%}}@media(min-width:1023px){.o-blog{padding-bottom:7.5rem;padding-top:7.5rem}.o-blog__text:not(:last-child),.o-blog__title:not(:last-child){margin-bottom:2.5rem}.o-blog__content{padding:2.5rem;width:81%}.o-blog__content:not(:last-child),.o-blog__tile:not(:last-child){margin-bottom:2.5rem}.o-blog__tile:hover{transform:translateY(-10px)}.o-blog__row{display:flex;gap:2.5rem}.o-blog__col{width:calc(50% - 20px)}.o-blog__tile-cat:not(:last-child),.o-blog__tile-title:not(:last-child){margin-bottom:2.5rem}.o-blog__tile-content{padding:2.5rem}}.o-bottom{background-color:#fff;border-top:.0625rem solid #2f3b4a;bottom:0;justify-content:space-between;z-index:10000000002}.o-bottom,.o-bottom__nav{display:flex;left:0;position:fixed;right:0}.o-bottom__nav{align-items:flex-end;background-color:rgba(47,59,74,.9);bottom:4.3125rem;height:0;overflow-y:auto;z-index:10000000001}.o-bottom__nav--load{transition:height .4s ease-in-out,padding-bottom .3s ease-in-out,padding-top .3s ease-in-out,padding-left .3s ease-in-out,padding-right .3s ease-in-out}.o-bottom__nav--open{height:calc(100vh - 69px)}.o-bottom__wrapper{background-color:#fff;max-height:calc(100vh - 69px);overflow-y:auto;width:100%}.o-bottom__bot{align-items:center;display:flex;justify-content:space-between;padding:1.25rem}.o-bottom__bot .m-lang ul li a{color:#2f3b4a}.o-bottom__main{align-items:center;color:#2f3b4a;cursor:pointer;display:flex;font-size:1.25rem;justify-content:space-between;padding:1.25rem;width:100%}.o-bottom__main svg{transition:transform .3s ease-in-out}.o-bottom__main.--open svg{transform:rotate(180deg)}.o-bottom__sub{display:none}.o-bottom__sub a{align-items:center;color:#2f3b4a;cursor:pointer;display:flex;font-size:1.25rem;justify-content:space-between;padding:1.25rem;width:100%}.o-bottom__menu{border-bottom:.0625rem solid #babfc4;border-top:.0625rem solid #babfc4;padding:1.25rem}.o-bottom__menu ul{display:flex;flex-direction:column}.o-bottom__menu ul li:not(:last-child){margin-bottom:1.25rem}.o-bottom__menu ul li a{color:#2f3b4a;cursor:pointer;display:block;font-size:1.25rem;width:100%}.o-bottom__link{align-items:center;background-color:#fff;color:#2f3b4a;cursor:pointer;display:flex;flex-grow:0;flex-shrink:0;font-size:1rem;font-weight:400;gap:.625rem;height:4.3125rem;justify-content:center;padding:.625rem;text-transform:uppercase;transition:background-color .2s ease-in-out;width:33.3333333333%}.o-bottom__link svg path{fill:#2f3b4a}.o-bottom__link--alt{background-color:#2f3b4a;color:#fff}.o-bottom--ap .o-bottom__link{width:50%}.o-bottom--ap .o-bottom__link:not(:last-child){position:relative}.o-bottom--ap .o-bottom__link:not(:last-child):after{background-color:#d1d1d1;bottom:1.0625rem;content:"";position:absolute;right:0;top:1.0625rem;transform:translateX(50%);width:.0625rem}.o-bottom__space{background-color:#2f3b4a;height:4.375rem}.o-bottom__space__bit{height:8.75rem}@media(min-width:1023px){.o-bottom,.o-bottom__nav,.o-bottom__space{display:none}}
