html { font-size: 16px; }
.not-selectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.carousel *,
.carousel *:before,
.carousel *:after {
  box-sizing: inherit;
}

.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev,
.carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px)
    env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container :focus {
  outline: thin dotted;
}

body.is-using-mouse .fancybox__container :focus {
  outline: none;
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }
}

.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: flex;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}

.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}

.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}

.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}

.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -36px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click,
.fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav,
.carousel__dots,
.carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__nav,
.fancybox__container.is-animated[aria-hidden="false"] .carousel__dots,
.fancybox__container.is-animated[aria-hidden="false"]
  .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  animation: 0.15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}

@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}

.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide,
.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide,
.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__image {
  transform-origin: 0 0;
  touch-action: none;
  user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit="contain"] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit="contain"] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.has-image[data-image-fit="contain-w"] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit="contain-w"] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit="contain-w"] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit="cover"] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit="cover"] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit="cover"] .fancybox__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

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

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.006) 8.1%,
    rgba(0, 0, 0, 0.021) 15.5%,
    rgba(0, 0, 0, 0.046) 22.5%,
    rgba(0, 0, 0, 0.077) 29%,
    rgba(0, 0, 0, 0.114) 35.3%,
    rgba(0, 0, 0, 0.155) 41.2%,
    rgba(0, 0, 0, 0.198) 47.1%,
    rgba(0, 0, 0, 0.242) 52.9%,
    rgba(0, 0, 0, 0.285) 58.8%,
    rgba(0, 0, 0, 0.326) 64.7%,
    rgba(0, 0, 0, 0.363) 71%,
    rgba(0, 0, 0, 0.394) 77.5%,
    rgba(0, 0, 0, 0.419) 84.5%,
    rgba(0, 0, 0, 0.434) 91.9%,
    rgba(0, 0, 0, 0.44) 100%
  );
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(
    --fancybox-toolbar-text-shadow,
    1px 1px 1px rgba(0, 0, 0, 0.4)
  );
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}

.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  user-select: none;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

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

.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);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .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-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .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);
  }
}

.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-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .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.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet: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-pagination-vertical.swiper-pagination-bullets,
.swiper-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-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}

.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgba(0, 0, 0, 0.25)
  );
  position: absolute;
}

.swiper-pagination-progressbar .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 .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

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

.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,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.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-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  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;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

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

.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-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

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

.swiper-cube .swiper-cube-shadow: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;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

.swiper-cards {
  overflow: visible;
}

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

/* End */
/* Start:/local/templates/BBE_2024/assets/css/css.css?1727196255141519*/
@font-face {
  font-family: "Onest";
  font-weight: 400;
  font-style: normal;
  src: url("/local/templates/BBE_2024/assets/css/../fonts/Onest/Regular.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  font-weight: 500;
  font-style: normal;
  src: url("/local/templates/BBE_2024/assets/css/../fonts/Onest/Medium.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  font-weight: 700;
  font-style: normal;
  src: url("/local/templates/BBE_2024/assets/css/../fonts/Onest/Bold.woff2")
    format("woff2");
  font-display: swap;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
a,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0 none;
  background: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

img,
a img,
:link img,
:visited img {
  border: 0;
  outline: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

tr {
  vertical-align: middle;
}

th,
td {
  vertical-align: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

ins {
  text-decoration: none;
  color: #000;
  background: #999;
}

mark {
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  display: inline-block;
  padding: 0 0.5em;
  vertical-align: middle;
  color: #000;
  background: #999;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border: 1px dotted #999;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  color: #999;
  border: 0;
  background: #999;
}

button,
input,
select,
textarea {
  font-family: inherit;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  outline: 0 none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button,
input {
  overflow: visible;
  width: auto;
}

button::-moz-focus-inner,
input::-moz-focus-inner,
select::-moz-focus-inner,
textarea::-moz-focus-inner {
  padding: 0;
  border: 0;
}

select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: auto;
}

textarea {
  overflow: auto;
  resize: none;
  vertical-align: top;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  cursor: pointer;
}

input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

::-webkit-input-placeholder {
  opacity: 0.8;
  color: inherit;
}

:-moz-placeholder {
  opacity: 0.8;
  color: inherit;
}

::-moz-placeholder {
  opacity: 0.8;
  color: inherit;
}

:-ms-input-placeholder {
  opacity: 0.8;
  color: inherit;
}

::-ms-clear {
  display: none;
}

small,
.small {
  font-size: 0.75em;
}

big,
.big {
  font-size: 1.25em;
}

b,
strong {
  font-weight: 700;
}

i,
em {
  font-style: italic;
}

sub {
  font-size: smaller;
  line-height: 0.5;
  vertical-align: sub;
}

sup {
  font-size: smaller;
  line-height: 0.5;
  vertical-align: super;
}

pre {
  padding: 2em;
  white-space: pre-wrap;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

html,
body {
  min-width: 320px;
  height: 100%;
  min-height: 100%;
}

body {
  position: relative;
  color: #292527;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}

.is-burger-opened body {
  overflow: hidden;
}

@media (min-width: 1280px) {
  .is-burger-opened body {
    overflow: initial;
  }
}

.is-modal-opened body {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

a {
  transition: all 0.2s ease-out;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

ol,
ul {
  margin-left: 1.5rem;
}

li ol,
li ul {
  margin-left: 1.5rem;
}

p + p {
  margin-top: 1.5rem;
}

.cursor-pointer {
  cursor: pointer;
}

.text-transform-uppercase {
  text-transform: uppercase;
}

.image {
  overflow: hidden;
}

.image_abs .image__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.image_sized .image__img {
  height: 100%;
  object-fit: contain;
}

.image_top .image__img {
  object-position: 50% 0;
}

.image__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50%;
}

.dates {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

.dates_simple {
  flex: 0 0 auto;
}

.dates_simple .dates__dash {
  width: 1.5rem;
}

.dates__dash {
  flex: 1 1 auto;
  height: 0.125rem;
  margin: 0 0.5rem;
}

.swiper-arrows {
  font-size: 1.25rem;
  display: none;
}

@media (min-width: 1280px) {
  .swiper-arrows {
    display: flex;
  }
}

.swiper-arrows__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  transition: all 0.2s ease-out;
  color: #fff;
  background: #292527;
}

.swiper-arrows__item:hover {
  background: #ff8515;
}

.swiper-arrows__item:first-child {
  border-radius: 2.5rem 0 0 2.5rem;
}

.swiper-arrows__item:last-child {
  border-radius: 0 2.5rem 2.5rem 0;
}

.swiper-arrows__item_disabled,
.swiper-arrows__item_locked {
  cursor: default;
}

.swiper-arrows__item_disabled:hover,
.swiper-arrows__item_locked:hover {
  background: #292527;
}

.swiper-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1280px) {
  .swiper-pager {
    width: 15rem;
  }
}

.swiper-pager__dash {
  flex: 1 1 auto;
  margin: 0 1rem;
  border: 0.0625rem solid;
}

.overflow-hidden {
  overflow: hidden;
}

.grecaptcha-badge {
  transform: translateY(200%) !important;
}

.is-grid {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 105rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 768px) {
  .is-grid {
    padding-right: 7.5rem;
    padding-left: 7.5rem;
  }
}



.promo {
    position: relative
}

.promo_custom {
    margin-right: .5rem;
    margin-left: .5rem;
    padding: 2.5rem 0;
    color: #fff;
    border-radius: 1.5rem;
    background: #292527
}

@media(min-width: 1280px) {
    .promo_investing {
        margin-bottom:12.5rem
    }
}

.promo_investing .promo__image {
    max-width: 30rem;
    /* margin: -6.25rem auto 1.5rem; */
    width: 350px;
    position: absolute;
    left: -25%;
    transform: rotate(-15deg);
    top: -20%;
}

@media(min-width: 1280px) {
    .promo_investing .promo__image {
        max-width:none;
        /*margin: -8.75rem 0 -12.5rem -5rem*/
    }
}

.promo__image {
    flex: 0 0 auto
}

.promo__text {
    flex: 0 0 auto
}

/*# sourceMappingURL=css.css.map */
/* End */
/* Start:/local/templates/BBE_2024/assets/css/custom.css?17822022283211*/





.is-row {
  display: flex;
  min-width: 0;
}

.is-col {
  width: 100%;
}
.ustunluk{
    gap:10px;
}




.checkuppaketi,.promo_custom {
    display: flex;
  flex-flow: row wrap;
  min-width: 0;
  /*margin-right: -0.75rem;*/
  /*margin-left: -0.75rem;*/
}

.checkuppaketi,.promo_custom .is-col{
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.promo_custom .is-row{
        display: flex;
    flex-flow: row wrap;
    min-width: 0;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.promo_custom .is-grid{
    padding-right: 7.5rem !important;
    padding-left: 11.5rem !important;
}

.promo__text .h1{
    font-size: 5rem !important;
}

html,
body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Onest",Helvetica,Arial,sans-serif;
}

body {
  font-size: 0.875rem;
}

@media (min-width: 1280px) {
  body {
    font-size: 1rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.h0 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1,
.h1 {
  font-size: 1.5rem;
}

@media (min-width: 1280px) {
  h1,
  .h1 {
    font-size: 5.5rem;
  }
}

h2,
.h2 {
  font-size: 1.375rem;
}

@media (min-width: 1280px) {
  h2,
  .h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1280px) {
  h2_odd,
  .h2_odd {
    font-size: 1.375rem;
  }
}

@media (min-width: 1480px) {
  h2_odd,
  .h2_odd {
    font-size: 2.5rem;
  }
}

h3,
.h3 {
  font-size: 1.25rem;
}

@media (min-width: 1280px) {
  h3,
  .h3 {
    font-size: 2rem;
  }
}

@media (min-width: 1280px) {
  h3_odd,
  .h3_odd {
    font-size: 1.25rem;
  }
}

@media (min-width: 1480px) {
  h3_odd,
  .h3_odd {
    font-size: 2rem;
  }
}

h4,
.h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

@media (min-width: 1280px) {
  h4,
  .h4 {
    font-size: 2rem;
  }
}

h5,
.h5 {
  font-size: 1.125rem;
  font-weight: 500;
}

@media (min-width: 1280px) {
  h5,
  .h5 {
    font-size: 1.5rem;
  }
}

h6,
.h6 {
  font-size: 1rem;
  font-weight: 500;
}

@media (min-width: 1280px) {
  h6,
  .h6 {
    font-size: 1.25rem;
  }
}

.h0 {
  font-size: 1.875rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .h0 {
    font-size: 4rem;
  }
}

@media (min-width: 1280px) {
  .h0 {
    font-size: 4.5rem;
    line-height: 1.1;
  }
}

/* @media (min-width: 1480px) {
  .h0 {
    font-size: 6rem;
  }
} */

input,
select,
textarea {
  font-size: 1rem;
}

::-webkit-input-placeholder {
  opacity: 0.5;
  color: inherit;
}

:-moz-placeholder {
  opacity: 0.5;
  color: inherit;
}

::-moz-placeholder {
  opacity: 0.5;
  color: inherit;
}

:-ms-input-placeholder {
  opacity: 0.5;
  color: inherit;
}

::-ms-clear {
  display: none;
}

.color-black {
  color: #000;
}

.color-white {
  color: #fff;
}

.color-red {
  color: #ff1515;
}

.color-dark {
  color: #292527;
}

.color-green {
  color: #00cd46;
}

.color-grey {
  color: #aaa;
}

.color-grey2 {
  color: #e9e9e9;
}

.color-orange {
  color: #ff8515;
}

.color-orange2 {
  color: #ee6400;
}

.bg-black {
  background-color: #000;
}

.bg-white {
  background-color: #fff;
}

.bg-red {
  background-color: #ff1515;
}

.bg-dark {
  background-color: #292527;
}

.bg-green {
  background-color: #00cd46;
}

.bg-grey {
  background-color: #aaa;
}

.bg-grey2 {
  background-color: #e9e9e9;
}

.bg-orange {
  background-color: #ff8515;
}

.bg-orange2 {
  background-color: #ee6400;
}

.hover:color-black:hover {
  color: #000;
}

.hover:color-white:hover {
  color: #fff;
}

.hover:color-red:hover {
  color: #ff1515;
}

.hover:color-dark:hover {
  color: #292527;
}

.hover:color-green:hover {
  color: #00cd46;
}

.hover:color-grey:hover {
  color: #aaa;
}

.hover:color-grey2:hover {
  color: #e9e9e9;
}

.hover:color-orange:hover {
  color: #ff8515;
}

.hover:color-orange2:hover {
  color: #ee6400;
}

.hover:bg-black:hover {
  background-color: #000;
}

.hover:bg-white:hover {
  background-color: #fff;
}

.hover:bg-red:hover {
  background-color: #ff1515;
}

.hover:bg-dark:hover {
  background-color: #292527;
}

.hover:bg-green:hover {
  background-color: #00cd46;
}

.hover:bg-grey:hover {
  background-color: #aaa;
}

.hover:bg-grey2:hover {
  background-color: #e9e9e9;
}

.hover:bg-orange:hover {
  background-color: #ff8515;
}

.hover:bg-orange2:hover {
  background-color: #ee6400;
}

.font-weight-normal {
  font-weight: 400;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-bold {
  font-weight: 700;
}

.font-size-12 {
  font-size: 0.75rem;
}

.font-size-14 {
  font-size: 0.875rem;
}

.font-size-16 {
  font-size: 1rem;
}

.font-size-18 {
  font-size: 1.125rem;
}

.font-size-20 {
  font-size: 1.25rem;
}

.font-size-24 {
  font-size: 1.5rem;
}

.font-size-28 {
  font-size: 1.75rem;
}

.font-size-32 {
  font-size: 2rem;
}

.font-size-inherit {
  font-size: inherit;
}

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

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

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

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

.position-static {
  position: static;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.display-none {
  display: none;
}

.display-block {
  display: block;
}

.display-inline-block {
  display: inline-block;
}

.display-inline {
  display: inline;
}

.display-flex {
  display: flex;
}

.display-inline-flex {
  display: inline-flex;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

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

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

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

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

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

.self-stretch {
  align-self: stretch;
}

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

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

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

.self-baseline {
  align-self: baseline;
}

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

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

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

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

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

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

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

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.flex-no-wrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.is-col_0 {
  width: 0%;
}

.is-col_1 {
  width: 8.3333333333%;
}

.is-col_2 {
  width: 16.6666666667%;
}

.is-col_3 {
  width: 25%;
}

.is-col_4 {
  width: 33.3333333333%;
}

.is-col_5 {
  width: 41.6666666667%;
}

.is-col_6 {
  width: 50%;
}

.is-col_7 {
  width: 58.3333333333%;
}

.is-col_8 {
  width: 66.6666666667%;
}

.is-col_9 {
  width: 75%;
}

.is-col_10 {
  width: 83.3333333333%;
}

.is-col_11 {
  width: 91.6666666667%;
}

.is-col_12 {
  width: 100%;
}

.is-col-offset_0 {
  margin-left: 0%;
}

.is-col-offset_1 {
  margin-left: 8.3333333333%;
}

.is-col-offset_2 {
  margin-left: 16.6666666667%;
}

.is-col-offset_3 {
  margin-left: 25%;
}

.is-col-offset_4 {
  margin-left: 33.3333333333%;
}

.is-col-offset_5 {
  margin-left: 41.6666666667%;
}

.is-col-offset_6 {
  margin-left: 50%;
}

.is-col-offset_7 {
  margin-left: 58.3333333333%;
}

.is-col-offset_8 {
  margin-left: 66.6666666667%;
}

.is-col-offset_9 {
  margin-left: 75%;
}

.is-col-offset_10 {
  margin-left: 83.3333333333%;
}

.is-col-offset_11 {
  margin-left: 91.6666666667%;
}

.is-col-offset_12 {
  margin-left: 100%;
}

.p-auto {
  padding: auto;
}

.p-0 {
  padding: 0rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-7 {
  padding: 1.75rem;
}

.p-8 {
  padding: 2rem;
}

.p-9 {
  padding: 2.25rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-11 {
  padding: 2.75rem;
}

.p-12 {
  padding: 3rem;
}

.p-13 {
  padding: 3.25rem;
}

.p-14 {
  padding: 3.5rem;
}

.p-15 {
  padding: 3.75rem;
}

.p-16 {
  padding: 4rem;
}

.p-17 {
  padding: 4.25rem;
}

.p-18 {
  padding: 4.5rem;
}

.p-19 {
  padding: 4.75rem;
}

.p-20 {
  padding: 5rem;
}

.p-21 {
  padding: 5.25rem;
}

.p-22 {
  padding: 5.5rem;
}

.p-23 {
  padding: 5.75rem;
}

.p-24 {
  padding: 6rem;
}

.p-25 {
  padding: 6.25rem;
}

.p-26 {
  padding: 6.5rem;
}

.p-27 {
  padding: 6.75rem;
}

.p-28 {
  padding: 7rem;
}

.p-29 {
  padding: 7.25rem;
}

.p-30 {
  padding: 7.5rem;
}

.p-31 {
  padding: 7.75rem;
}

.p-32 {
  padding: 8rem;
}

.p-33 {
  padding: 8.25rem;
}

.p-34 {
  padding: 8.5rem;
}

.p-35 {
  padding: 8.75rem;
}

.p-36 {
  padding: 9rem;
}

.p-37 {
  padding: 9.25rem;
}

.p-38 {
  padding: 9.5rem;
}

.p-39 {
  padding: 9.75rem;
}

.p-40 {
  padding: 10rem;
}

.px-auto {
  padding-left: auto;
  padding-right: auto;
}

.px-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-9 {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-11 {
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-13 {
  padding-left: 3.25rem;
  padding-right: 3.25rem;
}

.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.px-15 {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}

.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-17 {
  padding-left: 4.25rem;
  padding-right: 4.25rem;
}

.px-18 {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.px-19 {
  padding-left: 4.75rem;
  padding-right: 4.75rem;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.px-21 {
  padding-left: 5.25rem;
  padding-right: 5.25rem;
}

.px-22 {
  padding-left: 5.5rem;
  padding-right: 5.5rem;
}

.px-23 {
  padding-left: 5.75rem;
  padding-right: 5.75rem;
}

.px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.px-25 {
  padding-left: 6.25rem;
  padding-right: 6.25rem;
}

.px-26 {
  padding-left: 6.5rem;
  padding-right: 6.5rem;
}

.px-27 {
  padding-left: 6.75rem;
  padding-right: 6.75rem;
}

.px-28 {
  padding-left: 7rem;
  padding-right: 7rem;
}

.px-29 {
  padding-left: 7.25rem;
  padding-right: 7.25rem;
}

.px-30 {
  padding-left: 7.5rem;
  padding-right: 7.5rem;
}

.px-31 {
  padding-left: 7.75rem;
  padding-right: 7.75rem;
}

.px-32 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.px-33 {
  padding-left: 8.25rem;
  padding-right: 8.25rem;
}

.px-34 {
  padding-left: 8.5rem;
  padding-right: 8.5rem;
}

.px-35 {
  padding-left: 8.75rem;
  padding-right: 8.75rem;
}

.px-36 {
  padding-left: 9rem;
  padding-right: 9rem;
}

.px-37 {
  padding-left: 9.25rem;
  padding-right: 9.25rem;
}

.px-38 {
  padding-left: 9.5rem;
  padding-right: 9.5rem;
}

.px-39 {
  padding-left: 9.75rem;
  padding-right: 9.75rem;
}

.px-40 {
  padding-left: 10rem;
  padding-right: 10rem;
}

.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}

.py-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-9 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-11 {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-13 {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.py-15 {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-17 {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

.py-18 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.py-19 {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-21 {
  padding-top: 5.25rem;
  padding-bottom: 5.25rem;
}

.py-22 {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.py-23 {
  padding-top: 5.75rem;
  padding-bottom: 5.75rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-25 {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.py-26 {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.py-27 {
  padding-top: 6.75rem;
  padding-bottom: 6.75rem;
}

.py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.py-29 {
  padding-top: 7.25rem;
  padding-bottom: 7.25rem;
}

.py-30 {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.py-31 {
  padding-top: 7.75rem;
  padding-bottom: 7.75rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.py-33 {
  padding-top: 8.25rem;
  padding-bottom: 8.25rem;
}

.py-34 {
  padding-top: 8.5rem;
  padding-bottom: 8.5rem;
}

.py-35 {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.py-36 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.py-37 {
  padding-top: 9.25rem;
  padding-bottom: 9.25rem;
}

.py-38 {
  padding-top: 9.5rem;
  padding-bottom: 9.5rem;
}

.py-39 {
  padding-top: 9.75rem;
  padding-bottom: 9.75rem;
}

.py-40 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.pt-auto {
  padding-top: auto;
}

.pt-0 {
  padding-top: 0rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-9 {
  padding-top: 2.25rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-11 {
  padding-top: 2.75rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-13 {
  padding-top: 3.25rem;
}

.pt-14 {
  padding-top: 3.5rem;
}

.pt-15 {
  padding-top: 3.75rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-17 {
  padding-top: 4.25rem;
}

.pt-18 {
  padding-top: 4.5rem;
}

.pt-19 {
  padding-top: 4.75rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-21 {
  padding-top: 5.25rem;
}

.pt-22 {
  padding-top: 5.5rem;
}

.pt-23 {
  padding-top: 5.75rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pt-25 {
  padding-top: 6.25rem;
}

.pt-26 {
  padding-top: 6.5rem;
}

.pt-27 {
  padding-top: 6.75rem;
}

.pt-28 {
  padding-top: 7rem;
}

.pt-29 {
  padding-top: 7.25rem;
}

.pt-30 {
  padding-top: 7.5rem;
}

.pt-31 {
  padding-top: 7.75rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pt-33 {
  padding-top: 8.25rem;
}

.pt-34 {
  padding-top: 8.5rem;
}

.pt-35 {
  padding-top: 8.75rem;
}

.pt-36 {
  padding-top: 9rem;
}

.pt-37 {
  padding-top: 9.25rem;
}

.pt-38 {
  padding-top: 9.5rem;
}

.pt-39 {
  padding-top: 9.75rem;
}

.pt-40 {
  padding-top: 10rem;
}

.pb-auto {
  padding-bottom: auto;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-9 {
  padding-bottom: 2.25rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-11 {
  padding-bottom: 2.75rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-13 {
  padding-bottom: 3.25rem;
}

.pb-14 {
  padding-bottom: 3.5rem;
}

.pb-15 {
  padding-bottom: 3.75rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-17 {
  padding-bottom: 4.25rem;
}

.pb-18 {
  padding-bottom: 4.5rem;
}

.pb-19 {
  padding-bottom: 4.75rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-21 {
  padding-bottom: 5.25rem;
}

.pb-22 {
  padding-bottom: 5.5rem;
}

.pb-23 {
  padding-bottom: 5.75rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pb-25 {
  padding-bottom: 6.25rem;
}

.pb-26 {
  padding-bottom: 6.5rem;
}

.pb-27 {
  padding-bottom: 6.75rem;
}

.pb-28 {
  padding-bottom: 7rem;
}

.pb-29 {
  padding-bottom: 7.25rem;
}

.pb-30 {
  padding-bottom: 7.5rem;
}

.pb-31 {
  padding-bottom: 7.75rem;
}

.pb-32 {
  padding-bottom: 8rem;
}

.pb-33 {
  padding-bottom: 8.25rem;
}

.pb-34 {
  padding-bottom: 8.5rem;
}

.pb-35 {
  padding-bottom: 8.75rem;
}

.pb-36 {
  padding-bottom: 9rem;
}

.pb-37 {
  padding-bottom: 9.25rem;
}

.pb-38 {
  padding-bottom: 9.5rem;
}

.pb-39 {
  padding-bottom: 9.75rem;
}

.pb-40 {
  padding-bottom: 10rem;
}

.pl-auto {
  padding-left: auto;
}

.pl-0 {
  padding-left: 0rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pl-7 {
  padding-left: 1.75rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pl-9 {
  padding-left: 2.25rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pl-11 {
  padding-left: 2.75rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pl-13 {
  padding-left: 3.25rem;
}

.pl-14 {
  padding-left: 3.5rem;
}

.pl-15 {
  padding-left: 3.75rem;
}

.pl-16 {
  padding-left: 4rem;
}

.pl-17 {
  padding-left: 4.25rem;
}

.pl-18 {
  padding-left: 4.5rem;
}

.pl-19 {
  padding-left: 4.75rem;
}

.pl-20 {
  padding-left: 5rem;
}

.pl-21 {
  padding-left: 5.25rem;
}

.pl-22 {
  padding-left: 5.5rem;
}

.pl-23 {
  padding-left: 5.75rem;
}

.pl-24 {
  padding-left: 6rem;
}

.pl-25 {
  padding-left: 6.25rem;
}

.pl-26 {
  padding-left: 6.5rem;
}

.pl-27 {
  padding-left: 6.75rem;
}

.pl-28 {
  padding-left: 7rem;
}

.pl-29 {
  padding-left: 7.25rem;
}

.pl-30 {
  padding-left: 7.5rem;
}

.pl-31 {
  padding-left: 7.75rem;
}

.pl-32 {
  padding-left: 8rem;
}

.pl-33 {
  padding-left: 8.25rem;
}

.pl-34 {
  padding-left: 8.5rem;
}

.pl-35 {
  padding-left: 8.75rem;
}

.pl-36 {
  padding-left: 9rem;
}

.pl-37 {
  padding-left: 9.25rem;
}

.pl-38 {
  padding-left: 9.5rem;
}

.pl-39 {
  padding-left: 9.75rem;
}

.pl-40 {
  padding-left: 10rem;
}

.pr-auto {
  padding-right: auto;
}

.pr-0 {
  padding-right: 0rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pr-7 {
  padding-right: 1.75rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pr-9 {
  padding-right: 2.25rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.pr-11 {
  padding-right: 2.75rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pr-13 {
  padding-right: 3.25rem;
}

.pr-14 {
  padding-right: 3.5rem;
}

.pr-15 {
  padding-right: 3.75rem;
}

.pr-16 {
  padding-right: 4rem;
}

.pr-17 {
  padding-right: 4.25rem;
}

.pr-18 {
  padding-right: 4.5rem;
}

.pr-19 {
  padding-right: 4.75rem;
}

.pr-20 {
  padding-right: 5rem;
}

.pr-21 {
  padding-right: 5.25rem;
}

.pr-22 {
  padding-right: 5.5rem;
}

.pr-23 {
  padding-right: 5.75rem;
}

.pr-24 {
  padding-right: 6rem;
}

.pr-25 {
  padding-right: 6.25rem;
}

.pr-26 {
  padding-right: 6.5rem;
}

.pr-27 {
  padding-right: 6.75rem;
}

.pr-28 {
  padding-right: 7rem;
}

.pr-29 {
  padding-right: 7.25rem;
}

.pr-30 {
  padding-right: 7.5rem;
}

.pr-31 {
  padding-right: 7.75rem;
}

.pr-32 {
  padding-right: 8rem;
}

.pr-33 {
  padding-right: 8.25rem;
}

.pr-34 {
  padding-right: 8.5rem;
}

.pr-35 {
  padding-right: 8.75rem;
}

.pr-36 {
  padding-right: 9rem;
}

.pr-37 {
  padding-right: 9.25rem;
}

.pr-38 {
  padding-right: 9.5rem;
}

.pr-39 {
  padding-right: 9.75rem;
}

.pr-40 {
  padding-right: 10rem;
}

.m-auto {
  margin: auto;
}

.m-0 {
  margin: 0rem;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-5 {
  margin: 1.25rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-7 {
  margin: 1.75rem;
}

.m-8 {
  margin: 2rem;
}

.m-9 {
  margin: 2.25rem;
}

.m-10 {
  margin: 2.5rem;
}

.m-11 {
  margin: 2.75rem;
}

.m-12 {
  margin: 3rem;
}

.m-13 {
  margin: 3.25rem;
}

.m-14 {
  margin: 3.5rem;
}

.m-15 {
  margin: 3.75rem;
}

.m-16 {
  margin: 4rem;
}

.m-17 {
  margin: 4.25rem;
}

.m-18 {
  margin: 4.5rem;
}

.m-19 {
  margin: 4.75rem;
}

.m-20 {
  margin: 5rem;
}

.m-21 {
  margin: 5.25rem;
}

.m-22 {
  margin: 5.5rem;
}

.m-23 {
  margin: 5.75rem;
}

.m-24 {
  margin: 6rem;
}

.m-25 {
  margin: 6.25rem;
}

.m-26 {
  margin: 6.5rem;
}

.m-27 {
  margin: 6.75rem;
}

.m-28 {
  margin: 7rem;
}

.m-29 {
  margin: 7.25rem;
}

.m-30 {
  margin: 7.5rem;
}

.m-31 {
  margin: 7.75rem;
}

.m-32 {
  margin: 8rem;
}

.m-33 {
  margin: 8.25rem;
}

.m-34 {
  margin: 8.5rem;
}

.m-35 {
  margin: 8.75rem;
}

.m-36 {
  margin: 9rem;
}

.m-37 {
  margin: 9.25rem;
}

.m-38 {
  margin: 9.5rem;
}

.m-39 {
  margin: 9.75rem;
}

.m-40 {
  margin: 10rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-7 {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-9 {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.mx-11 {
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}

.mx-12 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-13 {
  margin-left: 3.25rem;
  margin-right: 3.25rem;
}

.mx-14 {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.mx-15 {
  margin-left: 3.75rem;
  margin-right: 3.75rem;
}

.mx-16 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-17 {
  margin-left: 4.25rem;
  margin-right: 4.25rem;
}

.mx-18 {
  margin-left: 4.5rem;
  margin-right: 4.5rem;
}

.mx-19 {
  margin-left: 4.75rem;
  margin-right: 4.75rem;
}

.mx-20 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.mx-21 {
  margin-left: 5.25rem;
  margin-right: 5.25rem;
}

.mx-22 {
  margin-left: 5.5rem;
  margin-right: 5.5rem;
}

.mx-23 {
  margin-left: 5.75rem;
  margin-right: 5.75rem;
}

.mx-24 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.mx-25 {
  margin-left: 6.25rem;
  margin-right: 6.25rem;
}

.mx-26 {
  margin-left: 6.5rem;
  margin-right: 6.5rem;
}

.mx-27 {
  margin-left: 6.75rem;
  margin-right: 6.75rem;
}

.mx-28 {
  margin-left: 7rem;
  margin-right: 7rem;
}

.mx-29 {
  margin-left: 7.25rem;
  margin-right: 7.25rem;
}

.mx-30 {
  margin-left: 7.5rem;
  margin-right: 7.5rem;
}

.mx-31 {
  margin-left: 7.75rem;
  margin-right: 7.75rem;
}

.mx-32 {
  margin-left: 8rem;
  margin-right: 8rem;
}

.mx-33 {
  margin-left: 8.25rem;
  margin-right: 8.25rem;
}

.mx-34 {
  margin-left: 8.5rem;
  margin-right: 8.5rem;
}

.mx-35 {
  margin-left: 8.75rem;
  margin-right: 8.75rem;
}

.mx-36 {
  margin-left: 9rem;
  margin-right: 9rem;
}

.mx-37 {
  margin-left: 9.25rem;
  margin-right: 9.25rem;
}

.mx-38 {
  margin-left: 9.5rem;
  margin-right: 9.5rem;
}

.mx-39 {
  margin-left: 9.75rem;
  margin-right: 9.75rem;
}

.mx-40 {
  margin-left: 10rem;
  margin-right: 10rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.my-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-9 {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-11 {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-13 {
  margin-top: 3.25rem;
  margin-bottom: 3.25rem;
}

.my-14 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.my-15 {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}

.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.my-17 {
  margin-top: 4.25rem;
  margin-bottom: 4.25rem;
}

.my-18 {
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}

.my-19 {
  margin-top: 4.75rem;
  margin-bottom: 4.75rem;
}

.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-21 {
  margin-top: 5.25rem;
  margin-bottom: 5.25rem;
}

.my-22 {
  margin-top: 5.5rem;
  margin-bottom: 5.5rem;
}

.my-23 {
  margin-top: 5.75rem;
  margin-bottom: 5.75rem;
}

.my-24 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.my-25 {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

.my-26 {
  margin-top: 6.5rem;
  margin-bottom: 6.5rem;
}

.my-27 {
  margin-top: 6.75rem;
  margin-bottom: 6.75rem;
}

.my-28 {
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.my-29 {
  margin-top: 7.25rem;
  margin-bottom: 7.25rem;
}

.my-30 {
  margin-top: 7.5rem;
  margin-bottom: 7.5rem;
}

.my-31 {
  margin-top: 7.75rem;
  margin-bottom: 7.75rem;
}

.my-32 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.my-33 {
  margin-top: 8.25rem;
  margin-bottom: 8.25rem;
}

.my-34 {
  margin-top: 8.5rem;
  margin-bottom: 8.5rem;
}

.my-35 {
  margin-top: 8.75rem;
  margin-bottom: 8.75rem;
}

.my-36 {
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.my-37 {
  margin-top: 9.25rem;
  margin-bottom: 9.25rem;
}

.my-38 {
  margin-top: 9.5rem;
  margin-bottom: 9.5rem;
}

.my-39 {
  margin-top: 9.75rem;
  margin-bottom: 9.75rem;
}

.my-40 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.mt-auto {
  margin-top: auto;
}

.mt-0 {
  margin-top: 0rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-9 {
  margin-top: 2.25rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-11 {
  margin-top: 2.75rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-13 {
  margin-top: 3.25rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.mt-15 {
  margin-top: 3.75rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-17 {
  margin-top: 4.25rem;
}

.mt-18 {
  margin-top: 4.5rem;
}

.mt-19 {
  margin-top: 4.75rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-21 {
  margin-top: 5.25rem;
}

.mt-22 {
  margin-top: 5.5rem;
}

.mt-23 {
  margin-top: 5.75rem;
}

.mt-24 {
  margin-top: 6rem;
}

.mt-25 {
  margin-top: 6.25rem;
}

.mt-26 {
  margin-top: 6.5rem;
}

.mt-27 {
  margin-top: 6.75rem;
}

.mt-28 {
  margin-top: 7rem;
}

.mt-29 {
  margin-top: 7.25rem;
}

.mt-30 {
  margin-top: 7.5rem;
}

.mt-31 {
  margin-top: 7.75rem;
}

.mt-32 {
  margin-top: 8rem;
}

.mt-33 {
  margin-top: 8.25rem;
}

.mt-34 {
  margin-top: 8.5rem;
}

.mt-35 {
  margin-top: 8.75rem;
}

.mt-36 {
  margin-top: 9rem;
}

.mt-37 {
  margin-top: 9.25rem;
}

.mt-38 {
  margin-top: 9.5rem;
}

.mt-39 {
  margin-top: 9.75rem;
}

.mt-40 {
  margin-top: 10rem;
}

.mb-auto {
  margin-bottom: auto;
}

.mb-0 {
  margin-bottom: 0rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-9 {
  margin-bottom: 2.25rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-11 {
  margin-bottom: 2.75rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-13 {
  margin-bottom: 3.25rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mb-15 {
  margin-bottom: 3.75rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-17 {
  margin-bottom: 4.25rem;
}

.mb-18 {
  margin-bottom: 4.5rem;
}

.mb-19 {
  margin-bottom: 4.75rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-21 {
  margin-bottom: 5.25rem;
}

.mb-22 {
  margin-bottom: 5.5rem;
}

.mb-23 {
  margin-bottom: 5.75rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.mb-25 {
  margin-bottom: 6.25rem;
}

.mb-26 {
  margin-bottom: 6.5rem;
}

.mb-27 {
  margin-bottom: 6.75rem;
}

.mb-28 {
  margin-bottom: 7rem;
}

.mb-29 {
  margin-bottom: 7.25rem;
}

.mb-30 {
  margin-bottom: 7.5rem;
}

.mb-31 {
  margin-bottom: 7.75rem;
}

.mb-32 {
  margin-bottom: 8rem;
}

.mb-33 {
  margin-bottom: 8.25rem;
}

.mb-34 {
  margin-bottom: 8.5rem;
}

.mb-35 {
  margin-bottom: 8.75rem;
}

.mb-36 {
  margin-bottom: 9rem;
}

.mb-37 {
  margin-bottom: 9.25rem;
}

.mb-38 {
  margin-bottom: 9.5rem;
}

.mb-39 {
  margin-bottom: 9.75rem;
}

.mb-40 {
  margin-bottom: 10rem;
}

.ml-auto {
  margin-left: auto;
}

.ml-0 {
  margin-left: 0rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.ml-7 {
  margin-left: 1.75rem;
}

.ml-8 {
  margin-left: 2rem;
}

.ml-9 {
  margin-left: 2.25rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.ml-11 {
  margin-left: 2.75rem;
}

.ml-12 {
  margin-left: 3rem;
}

.ml-13 {
  margin-left: 3.25rem;
}

.ml-14 {
  margin-left: 3.5rem;
}

.ml-15 {
  margin-left: 3.75rem;
}

.ml-16 {
  margin-left: 4rem;
}

.ml-17 {
  margin-left: 4.25rem;
}

.ml-18 {
  margin-left: 4.5rem;
}

.ml-19 {
  margin-left: 4.75rem;
}

.ml-20 {
  margin-left: 5rem;
}

.ml-21 {
  margin-left: 5.25rem;
}

.ml-22 {
  margin-left: 5.5rem;
}

.ml-23 {
  margin-left: 5.75rem;
}

.ml-24 {
  margin-left: 6rem;
}

.ml-25 {
  margin-left: 6.25rem;
}

.ml-26 {
  margin-left: 6.5rem;
}

.ml-27 {
  margin-left: 6.75rem;
}

.ml-28 {
  margin-left: 7rem;
}

.ml-29 {
  margin-left: 7.25rem;
}

.ml-30 {
  margin-left: 7.5rem;
}

.ml-31 {
  margin-left: 7.75rem;
}

.ml-32 {
  margin-left: 8rem;
}

.ml-33 {
  margin-left: 8.25rem;
}

.ml-34 {
  margin-left: 8.5rem;
}

.ml-35 {
  margin-left: 8.75rem;
}

.ml-36 {
  margin-left: 9rem;
}

.ml-37 {
  margin-left: 9.25rem;
}

.ml-38 {
  margin-left: 9.5rem;
}

.ml-39 {
  margin-left: 9.75rem;
}

.ml-40 {
  margin-left: 10rem;
}

.mr-auto {
  margin-right: auto;
}

.mr-0 {
  margin-right: 0rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mr-7 {
  margin-right: 1.75rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mr-9 {
  margin-right: 2.25rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mr-11 {
  margin-right: 2.75rem;
}

.mr-12 {
  margin-right: 3rem;
}

.mr-13 {
  margin-right: 3.25rem;
}

.mr-14 {
  margin-right: 3.5rem;
}

.mr-15 {
  margin-right: 3.75rem;
}

.mr-16 {
  margin-right: 4rem;
}

.mr-17 {
  margin-right: 4.25rem;
}

.mr-18 {
  margin-right: 4.5rem;
}

.mr-19 {
  margin-right: 4.75rem;
}

.mr-20 {
  margin-right: 5rem;
}

.mr-21 {
  margin-right: 5.25rem;
}

.mr-22 {
  margin-right: 5.5rem;
}

.mr-23 {
  margin-right: 5.75rem;
}

.mr-24 {
  margin-right: 6rem;
}

.mr-25 {
  margin-right: 6.25rem;
}

.mr-26 {
  margin-right: 6.5rem;
}

.mr-27 {
  margin-right: 6.75rem;
}

.mr-28 {
  margin-right: 7rem;
}

.mr-29 {
  margin-right: 7.25rem;
}

.mr-30 {
  margin-right: 7.5rem;
}

.mr-31 {
  margin-right: 7.75rem;
}

.mr-32 {
  margin-right: 8rem;
}

.mr-33 {
  margin-right: 8.25rem;
}

.mr-34 {
  margin-right: 8.5rem;
}

.mr-35 {
  margin-right: 8.75rem;
}

.mr-36 {
  margin-right: 9rem;
}

.mr-37 {
  margin-right: 9.25rem;
}

.mr-38 {
  margin-right: 9.5rem;
}

.mr-39 {
  margin-right: 9.75rem;
}

.mr-40 {
  margin-right: 10rem;
}

@media (min-width: 768px) {
  .tablet\:color-black {
    color: #000;
  }

  .tablet\:color-white {
    color: #fff;
  }

  .tablet\:color-red {
    color: #ff1515;
  }

  .tablet\:color-dark {
    color: #292527;
  }

  .tablet\:color-green {
    color: #00cd46;
  }

  .tablet\:color-grey {
    color: #aaa;
  }

  .tablet\:color-grey2 {
    color: #e9e9e9;
  }

  .tablet\:color-orange {
    color: #ff8515;
  }

  .tablet\:color-orange2 {
    color: #ee6400;
  }

  .tablet\:bg-black {
    background-color: #000;
  }

  .tablet\:bg-white {
    background-color: #fff;
  }

  .tablet\:bg-red {
    background-color: #ff1515;
  }

  .tablet\:bg-dark {
    background-color: #292527;
  }

  .tablet\:bg-green {
    background-color: #00cd46;
  }

  .tablet\:bg-grey {
    background-color: #aaa;
  }

  .tablet\:bg-grey2 {
    background-color: #e9e9e9;
  }

  .tablet\:bg-orange {
    background-color: #ff8515;
  }

  .tablet\:bg-orange2 {
    background-color: #ee6400;
  }

  .tablet\:hover:color-black:hover {
    color: #000;
  }

  .tablet\:hover:color-white:hover {
    color: #fff;
  }

  .tablet\:hover:color-red:hover {
    color: #ff1515;
  }

  .tablet\:hover:color-dark:hover {
    color: #292527;
  }

  .tablet\:hover:color-green:hover {
    color: #00cd46;
  }

  .tablet\:hover:color-grey:hover {
    color: #aaa;
  }

  .tablet\:hover:color-grey2:hover {
    color: #e9e9e9;
  }

  .tablet\:hover:color-orange:hover {
    color: #ff8515;
  }

  .tablet\:hover:color-orange2:hover {
    color: #ee6400;
  }

  .tablet\:hover:bg-black:hover {
    background-color: #000;
  }

  .tablet\:hover:bg-white:hover {
    background-color: #fff;
  }

  .tablet\:hover:bg-red:hover {
    background-color: #ff1515;
  }

  .tablet\:hover:bg-dark:hover {
    background-color: #292527;
  }

  .tablet\:hover:bg-green:hover {
    background-color: #00cd46;
  }

  .tablet\:hover:bg-grey:hover {
    background-color: #aaa;
  }

  .tablet\:hover:bg-grey2:hover {
    background-color: #e9e9e9;
  }

  .tablet\:hover:bg-orange:hover {
    background-color: #ff8515;
  }

  .tablet\:hover:bg-orange2:hover {
    background-color: #ee6400;
  }

  .tablet\:font-size-12 {
    font-size: 0.75rem;
  }

  .tablet\:font-size-14 {
    font-size: 0.875rem;
  }

  .tablet\:font-size-16 {
    font-size: 1rem;
  }

  .tablet\:font-size-18 {
    font-size: 1.125rem;
  }

  .tablet\:font-size-20 {
    font-size: 1.25rem;
  }

  .tablet\:font-size-24 {
    font-size: 1.5rem;
  }

  .tablet\:font-size-28 {
    font-size: 1.75rem;
  }

  .tablet\:font-size-32 {
    font-size: 2rem;
  }

  .tablet\:font-size-inherit {
    font-size: inherit;
  }

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

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

  .tablet\:text-align-right {
    text-align: right;
  }

  .tablet\:text-align-justify {
    text-align: justify;
  }

  .tablet\:position-static {
    position: static;
  }

  .tablet\:position-relative {
    position: relative;
  }

  .tablet\:position-absolute {
    position: absolute;
  }

  .tablet\:position-fixed {
    position: fixed;
  }

  .tablet\:display-none {
    display: none;
  }

  .tablet\:display-block {
    display: block;
  }

  .tablet\:display-inline-block {
    display: inline-block;
  }

  .tablet\:display-inline {
    display: inline;
  }

  .tablet\:display-flex {
    display: flex;
  }

  .tablet\:display-inline-flex {
    display: inline-flex;
  }

  .tablet\:flex {
    display: flex;
  }

  .tablet\:inline-flex {
    display: inline-flex;
  }

  .tablet\:flex-row {
    flex-direction: row;
  }

  .tablet\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .tablet\:flex-col {
    flex-direction: column;
  }

  .tablet\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .tablet\:items-stretch {
    align-items: stretch;
  }

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

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

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

  .tablet\:items-baseline {
    align-items: baseline;
  }

  .tablet\:self-stretch {
    align-self: stretch;
  }

  .tablet\:self-start {
    align-self: flex-start;
  }

  .tablet\:self-center {
    align-self: center;
  }

  .tablet\:self-end {
    align-self: flex-end;
  }

  .tablet\:self-baseline {
    align-self: baseline;
  }

  .tablet\:content-start {
    align-content: flex-start;
  }

  .tablet\:content-center {
    align-content: center;
  }

  .tablet\:content-end {
    align-content: flex-end;
  }

  .tablet\:content-between {
    align-content: space-between;
  }

  .tablet\:content-around {
    align-content: space-around;
  }

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

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

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

  .tablet\:justify-between {
    justify-content: space-between;
  }

  .tablet\:justify-around {
    justify-content: space-around;
  }

  .tablet\:flex-no-wrap {
    flex-wrap: nowrap;
  }

  .tablet\:flex-wrap {
    flex-wrap: wrap;
  }

  .tablet\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .tablet\:flex-grow-1 {
    flex-grow: 1;
  }

  .tablet\:flex-shrink-0 {
    flex-shrink: 0;
  }

  .tablet\:is-col_0 {
    width: 0%;
  }

  .tablet\:is-col_1 {
    width: 8.3333333333%;
  }

  .tablet\:is-col_2 {
    width: 16.6666666667%;
  }

  .tablet\:is-col_3 {
    width: 25%;
  }

  .tablet\:is-col_4 {
    width: 33.3333333333%;
  }

  .tablet\:is-col_5 {
    width: 41.6666666667%;
  }

  .tablet\:is-col_6 {
    width: 50%;
  }

  .tablet\:is-col_7 {
    width: 58.3333333333%;
  }

  .tablet\:is-col_8 {
    width: 66.6666666667%;
  }

  .tablet\:is-col_9 {
    width: 75%;
  }

  .tablet\:is-col_10 {
    width: 83.3333333333%;
  }

  .tablet\:is-col_11 {
    width: 91.6666666667%;
  }

  .tablet\:is-col_12 {
    width: 100%;
  }

  .tablet\:is-col-offset_0 {
    margin-left: 0%;
  }

  .tablet\:is-col-offset_1 {
    margin-left: 8.3333333333%;
  }

  .tablet\:is-col-offset_2 {
    margin-left: 16.6666666667%;
  }

  .tablet\:is-col-offset_3 {
    margin-left: 25%;
  }

  .tablet\:is-col-offset_4 {
    margin-left: 33.3333333333%;
  }

  .tablet\:is-col-offset_5 {
    margin-left: 41.6666666667%;
  }

  .tablet\:is-col-offset_6 {
    margin-left: 50%;
  }

  .tablet\:is-col-offset_7 {
    margin-left: 58.3333333333%;
  }

  .tablet\:is-col-offset_8 {
    margin-left: 66.6666666667%;
  }

  .tablet\:is-col-offset_9 {
    margin-left: 75%;
  }

  .tablet\:is-col-offset_10 {
    margin-left: 83.3333333333%;
  }

  .tablet\:is-col-offset_11 {
    margin-left: 91.6666666667%;
  }

  .tablet\:is-col-offset_12 {
    margin-left: 100%;
  }

  .tablet\:p-auto {
    padding: auto;
  }

  .tablet\:p-0 {
    padding: 0rem;
  }

  .tablet\:p-1 {
    padding: 0.25rem;
  }

  .tablet\:p-2 {
    padding: 0.5rem;
  }

  .tablet\:p-3 {
    padding: 0.75rem;
  }

  .tablet\:p-4 {
    padding: 1rem;
  }

  .tablet\:p-5 {
    padding: 1.25rem;
  }

  .tablet\:p-6 {
    padding: 1.5rem;
  }

  .tablet\:p-7 {
    padding: 1.75rem;
  }

  .tablet\:p-8 {
    padding: 2rem;
  }

  .tablet\:p-9 {
    padding: 2.25rem;
  }

  .tablet\:p-10 {
    padding: 2.5rem;
  }

  .tablet\:p-11 {
    padding: 2.75rem;
  }

  .tablet\:p-12 {
    padding: 3rem;
  }

  .tablet\:p-13 {
    padding: 3.25rem;
  }

  .tablet\:p-14 {
    padding: 3.5rem;
  }

  .tablet\:p-15 {
    padding: 3.75rem;
  }

  .tablet\:p-16 {
    padding: 4rem;
  }

  .tablet\:p-17 {
    padding: 4.25rem;
  }

  .tablet\:p-18 {
    padding: 4.5rem;
  }

  .tablet\:p-19 {
    padding: 4.75rem;
  }

  .tablet\:p-20 {
    padding: 5rem;
  }

  .tablet\:p-21 {
    padding: 5.25rem;
  }

  .tablet\:p-22 {
    padding: 5.5rem;
  }

  .tablet\:p-23 {
    padding: 5.75rem;
  }

  .tablet\:p-24 {
    padding: 6rem;
  }

  .tablet\:p-25 {
    padding: 6.25rem;
  }

  .tablet\:p-26 {
    padding: 6.5rem;
  }

  .tablet\:p-27 {
    padding: 6.75rem;
  }

  .tablet\:p-28 {
    padding: 7rem;
  }

  .tablet\:p-29 {
    padding: 7.25rem;
  }

  .tablet\:p-30 {
    padding: 7.5rem;
  }

  .tablet\:p-31 {
    padding: 7.75rem;
  }

  .tablet\:p-32 {
    padding: 8rem;
  }

  .tablet\:p-33 {
    padding: 8.25rem;
  }

  .tablet\:p-34 {
    padding: 8.5rem;
  }

  .tablet\:p-35 {
    padding: 8.75rem;
  }

  .tablet\:p-36 {
    padding: 9rem;
  }

  .tablet\:p-37 {
    padding: 9.25rem;
  }

  .tablet\:p-38 {
    padding: 9.5rem;
  }

  .tablet\:p-39 {
    padding: 9.75rem;
  }

  .tablet\:p-40 {
    padding: 10rem;
  }

  .tablet\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }

  .tablet\:px-0 {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .tablet\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .tablet\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .tablet\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .tablet\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .tablet\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .tablet\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .tablet\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .tablet\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .tablet\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .tablet\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .tablet\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .tablet\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .tablet\:px-13 {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }

  .tablet\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .tablet\:px-15 {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

  .tablet\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .tablet\:px-17 {
    padding-left: 4.25rem;
    padding-right: 4.25rem;
  }

  .tablet\:px-18 {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }

  .tablet\:px-19 {
    padding-left: 4.75rem;
    padding-right: 4.75rem;
  }

  .tablet\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .tablet\:px-21 {
    padding-left: 5.25rem;
    padding-right: 5.25rem;
  }

  .tablet\:px-22 {
    padding-left: 5.5rem;
    padding-right: 5.5rem;
  }

  .tablet\:px-23 {
    padding-left: 5.75rem;
    padding-right: 5.75rem;
  }

  .tablet\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .tablet\:px-25 {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }

  .tablet\:px-26 {
    padding-left: 6.5rem;
    padding-right: 6.5rem;
  }

  .tablet\:px-27 {
    padding-left: 6.75rem;
    padding-right: 6.75rem;
  }

  .tablet\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .tablet\:px-29 {
    padding-left: 7.25rem;
    padding-right: 7.25rem;
  }

  .tablet\:px-30 {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }

  .tablet\:px-31 {
    padding-left: 7.75rem;
    padding-right: 7.75rem;
  }

  .tablet\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .tablet\:px-33 {
    padding-left: 8.25rem;
    padding-right: 8.25rem;
  }

  .tablet\:px-34 {
    padding-left: 8.5rem;
    padding-right: 8.5rem;
  }

  .tablet\:px-35 {
    padding-left: 8.75rem;
    padding-right: 8.75rem;
  }

  .tablet\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .tablet\:px-37 {
    padding-left: 9.25rem;
    padding-right: 9.25rem;
  }

  .tablet\:px-38 {
    padding-left: 9.5rem;
    padding-right: 9.5rem;
  }

  .tablet\:px-39 {
    padding-left: 9.75rem;
    padding-right: 9.75rem;
  }

  .tablet\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .tablet\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }

  .tablet\:py-0 {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .tablet\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .tablet\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .tablet\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .tablet\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .tablet\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .tablet\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .tablet\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .tablet\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .tablet\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .tablet\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .tablet\:py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .tablet\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .tablet\:py-13 {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .tablet\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .tablet\:py-15 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .tablet\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .tablet\:py-17 {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .tablet\:py-18 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .tablet\:py-19 {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .tablet\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .tablet\:py-21 {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .tablet\:py-22 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .tablet\:py-23 {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
  }

  .tablet\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .tablet\:py-25 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }

  .tablet\:py-26 {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .tablet\:py-27 {
    padding-top: 6.75rem;
    padding-bottom: 6.75rem;
  }

  .tablet\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .tablet\:py-29 {
    padding-top: 7.25rem;
    padding-bottom: 7.25rem;
  }

  .tablet\:py-30 {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }

  .tablet\:py-31 {
    padding-top: 7.75rem;
    padding-bottom: 7.75rem;
  }

  .tablet\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .tablet\:py-33 {
    padding-top: 8.25rem;
    padding-bottom: 8.25rem;
  }

  .tablet\:py-34 {
    padding-top: 8.5rem;
    padding-bottom: 8.5rem;
  }

  .tablet\:py-35 {
    padding-top: 8.75rem;
    padding-bottom: 8.75rem;
  }

  .tablet\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .tablet\:py-37 {
    padding-top: 9.25rem;
    padding-bottom: 9.25rem;
  }

  .tablet\:py-38 {
    padding-top: 9.5rem;
    padding-bottom: 9.5rem;
  }

  .tablet\:py-39 {
    padding-top: 9.75rem;
    padding-bottom: 9.75rem;
  }

  .tablet\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .tablet\:pt-auto {
    padding-top: auto;
  }

  .tablet\:pt-0 {
    padding-top: 0rem;
  }

  .tablet\:pt-1 {
    padding-top: 0.25rem;
  }

  .tablet\:pt-2 {
    padding-top: 0.5rem;
  }

  .tablet\:pt-3 {
    padding-top: 0.75rem;
  }

  .tablet\:pt-4 {
    padding-top: 1rem;
  }

  .tablet\:pt-5 {
    padding-top: 1.25rem;
  }

  .tablet\:pt-6 {
    padding-top: 1.5rem;
  }

  .tablet\:pt-7 {
    padding-top: 1.75rem;
  }

  .tablet\:pt-8 {
    padding-top: 2rem;
  }

  .tablet\:pt-9 {
    padding-top: 2.25rem;
  }

  .tablet\:pt-10 {
    padding-top: 2.5rem;
  }

  .tablet\:pt-11 {
    padding-top: 2.75rem;
  }

  .tablet\:pt-12 {
    padding-top: 3rem;
  }

  .tablet\:pt-13 {
    padding-top: 3.25rem;
  }

  .tablet\:pt-14 {
    padding-top: 3.5rem;
  }

  .tablet\:pt-15 {
    padding-top: 3.75rem;
  }

  .tablet\:pt-16 {
    padding-top: 4rem;
  }

  .tablet\:pt-17 {
    padding-top: 4.25rem;
  }

  .tablet\:pt-18 {
    padding-top: 4.5rem;
  }

  .tablet\:pt-19 {
    padding-top: 4.75rem;
  }

  .tablet\:pt-20 {
    padding-top: 5rem;
  }

  .tablet\:pt-21 {
    padding-top: 5.25rem;
  }

  .tablet\:pt-22 {
    padding-top: 5.5rem;
  }

  .tablet\:pt-23 {
    padding-top: 5.75rem;
  }

  .tablet\:pt-24 {
    padding-top: 6rem;
  }

  .tablet\:pt-25 {
    padding-top: 6.25rem;
  }

  .tablet\:pt-26 {
    padding-top: 6.5rem;
  }

  .tablet\:pt-27 {
    padding-top: 6.75rem;
  }

  .tablet\:pt-28 {
    padding-top: 7rem;
  }

  .tablet\:pt-29 {
    padding-top: 7.25rem;
  }

  .tablet\:pt-30 {
    padding-top: 7.5rem;
  }

  .tablet\:pt-31 {
    padding-top: 7.75rem;
  }

  .tablet\:pt-32 {
    padding-top: 8rem;
  }

  .tablet\:pt-33 {
    padding-top: 8.25rem;
  }

  .tablet\:pt-34 {
    padding-top: 8.5rem;
  }

  .tablet\:pt-35 {
    padding-top: 8.75rem;
  }

  .tablet\:pt-36 {
    padding-top: 9rem;
  }

  .tablet\:pt-37 {
    padding-top: 9.25rem;
  }

  .tablet\:pt-38 {
    padding-top: 9.5rem;
  }

  .tablet\:pt-39 {
    padding-top: 9.75rem;
  }

  .tablet\:pt-40 {
    padding-top: 10rem;
  }

  .tablet\:pb-auto {
    padding-bottom: auto;
  }

  .tablet\:pb-0 {
    padding-bottom: 0rem;
  }

  .tablet\:pb-1 {
    padding-bottom: 0.25rem;
  }

  .tablet\:pb-2 {
    padding-bottom: 0.5rem;
  }

  .tablet\:pb-3 {
    padding-bottom: 0.75rem;
  }

  .tablet\:pb-4 {
    padding-bottom: 1rem;
  }

  .tablet\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .tablet\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .tablet\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .tablet\:pb-8 {
    padding-bottom: 2rem;
  }

  .tablet\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .tablet\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .tablet\:pb-11 {
    padding-bottom: 2.75rem;
  }

  .tablet\:pb-12 {
    padding-bottom: 3rem;
  }

  .tablet\:pb-13 {
    padding-bottom: 3.25rem;
  }

  .tablet\:pb-14 {
    padding-bottom: 3.5rem;
  }

  .tablet\:pb-15 {
    padding-bottom: 3.75rem;
  }

  .tablet\:pb-16 {
    padding-bottom: 4rem;
  }

  .tablet\:pb-17 {
    padding-bottom: 4.25rem;
  }

  .tablet\:pb-18 {
    padding-bottom: 4.5rem;
  }

  .tablet\:pb-19 {
    padding-bottom: 4.75rem;
  }

  .tablet\:pb-20 {
    padding-bottom: 5rem;
  }

  .tablet\:pb-21 {
    padding-bottom: 5.25rem;
  }

  .tablet\:pb-22 {
    padding-bottom: 5.5rem;
  }

  .tablet\:pb-23 {
    padding-bottom: 5.75rem;
  }

  .tablet\:pb-24 {
    padding-bottom: 6rem;
  }

  .tablet\:pb-25 {
    padding-bottom: 6.25rem;
  }

  .tablet\:pb-26 {
    padding-bottom: 6.5rem;
  }

  .tablet\:pb-27 {
    padding-bottom: 6.75rem;
  }

  .tablet\:pb-28 {
    padding-bottom: 7rem;
  }

  .tablet\:pb-29 {
    padding-bottom: 7.25rem;
  }

  .tablet\:pb-30 {
    padding-bottom: 7.5rem;
  }

  .tablet\:pb-31 {
    padding-bottom: 7.75rem;
  }

  .tablet\:pb-32 {
    padding-bottom: 8rem;
  }

  .tablet\:pb-33 {
    padding-bottom: 8.25rem;
  }

  .tablet\:pb-34 {
    padding-bottom: 8.5rem;
  }

  .tablet\:pb-35 {
    padding-bottom: 8.75rem;
  }

  .tablet\:pb-36 {
    padding-bottom: 9rem;
  }

  .tablet\:pb-37 {
    padding-bottom: 9.25rem;
  }

  .tablet\:pb-38 {
    padding-bottom: 9.5rem;
  }

  .tablet\:pb-39 {
    padding-bottom: 9.75rem;
  }

  .tablet\:pb-40 {
    padding-bottom: 10rem;
  }

  .tablet\:pl-auto {
    padding-left: auto;
  }

  .tablet\:pl-0 {
    padding-left: 0rem;
  }

  .tablet\:pl-1 {
    padding-left: 0.25rem;
  }

  .tablet\:pl-2 {
    padding-left: 0.5rem;
  }

  .tablet\:pl-3 {
    padding-left: 0.75rem;
  }

  .tablet\:pl-4 {
    padding-left: 1rem;
  }

  .tablet\:pl-5 {
    padding-left: 1.25rem;
  }

  .tablet\:pl-6 {
    padding-left: 1.5rem;
  }

  .tablet\:pl-7 {
    padding-left: 1.75rem;
  }

  .tablet\:pl-8 {
    padding-left: 2rem;
  }

  .tablet\:pl-9 {
    padding-left: 2.25rem;
  }

  .tablet\:pl-10 {
    padding-left: 2.5rem;
  }

  .tablet\:pl-11 {
    padding-left: 2.75rem;
  }

  .tablet\:pl-12 {
    padding-left: 3rem;
  }

  .tablet\:pl-13 {
    padding-left: 3.25rem;
  }

  .tablet\:pl-14 {
    padding-left: 3.5rem;
  }

  .tablet\:pl-15 {
    padding-left: 3.75rem;
  }

  .tablet\:pl-16 {
    padding-left: 4rem;
  }

  .tablet\:pl-17 {
    padding-left: 4.25rem;
  }

  .tablet\:pl-18 {
    padding-left: 4.5rem;
  }

  .tablet\:pl-19 {
    padding-left: 4.75rem;
  }

  .tablet\:pl-20 {
    padding-left: 5rem;
  }

  .tablet\:pl-21 {
    padding-left: 5.25rem;
  }

  .tablet\:pl-22 {
    padding-left: 5.5rem;
  }

  .tablet\:pl-23 {
    padding-left: 5.75rem;
  }

  .tablet\:pl-24 {
    padding-left: 6rem;
  }

  .tablet\:pl-25 {
    padding-left: 6.25rem;
  }

  .tablet\:pl-26 {
    padding-left: 6.5rem;
  }

  .tablet\:pl-27 {
    padding-left: 6.75rem;
  }

  .tablet\:pl-28 {
    padding-left: 7rem;
  }

  .tablet\:pl-29 {
    padding-left: 7.25rem;
  }

  .tablet\:pl-30 {
    padding-left: 7.5rem;
  }

  .tablet\:pl-31 {
    padding-left: 7.75rem;
  }

  .tablet\:pl-32 {
    padding-left: 8rem;
  }

  .tablet\:pl-33 {
    padding-left: 8.25rem;
  }

  .tablet\:pl-34 {
    padding-left: 8.5rem;
  }

  .tablet\:pl-35 {
    padding-left: 8.75rem;
  }

  .tablet\:pl-36 {
    padding-left: 9rem;
  }

  .tablet\:pl-37 {
    padding-left: 9.25rem;
  }

  .tablet\:pl-38 {
    padding-left: 9.5rem;
  }

  .tablet\:pl-39 {
    padding-left: 9.75rem;
  }

  .tablet\:pl-40 {
    padding-left: 10rem;
  }

  .tablet\:pr-auto {
    padding-right: auto;
  }

  .tablet\:pr-0 {
    padding-right: 0rem;
  }

  .tablet\:pr-1 {
    padding-right: 0.25rem;
  }

  .tablet\:pr-2 {
    padding-right: 0.5rem;
  }

  .tablet\:pr-3 {
    padding-right: 0.75rem;
  }

  .tablet\:pr-4 {
    padding-right: 1rem;
  }

  .tablet\:pr-5 {
    padding-right: 1.25rem;
  }

  .tablet\:pr-6 {
    padding-right: 1.5rem;
  }

  .tablet\:pr-7 {
    padding-right: 1.75rem;
  }

  .tablet\:pr-8 {
    padding-right: 2rem;
  }

  .tablet\:pr-9 {
    padding-right: 2.25rem;
  }

  .tablet\:pr-10 {
    padding-right: 2.5rem;
  }

  .tablet\:pr-11 {
    padding-right: 2.75rem;
  }

  .tablet\:pr-12 {
    padding-right: 3rem;
  }

  .tablet\:pr-13 {
    padding-right: 3.25rem;
  }

  .tablet\:pr-14 {
    padding-right: 3.5rem;
  }

  .tablet\:pr-15 {
    padding-right: 3.75rem;
  }

  .tablet\:pr-16 {
    padding-right: 4rem;
  }

  .tablet\:pr-17 {
    padding-right: 4.25rem;
  }

  .tablet\:pr-18 {
    padding-right: 4.5rem;
  }

  .tablet\:pr-19 {
    padding-right: 4.75rem;
  }

  .tablet\:pr-20 {
    padding-right: 5rem;
  }

  .tablet\:pr-21 {
    padding-right: 5.25rem;
  }

  .tablet\:pr-22 {
    padding-right: 5.5rem;
  }

  .tablet\:pr-23 {
    padding-right: 5.75rem;
  }

  .tablet\:pr-24 {
    padding-right: 6rem;
  }

  .tablet\:pr-25 {
    padding-right: 6.25rem;
  }

  .tablet\:pr-26 {
    padding-right: 6.5rem;
  }

  .tablet\:pr-27 {
    padding-right: 6.75rem;
  }

  .tablet\:pr-28 {
    padding-right: 7rem;
  }

  .tablet\:pr-29 {
    padding-right: 7.25rem;
  }

  .tablet\:pr-30 {
    padding-right: 7.5rem;
  }

  .tablet\:pr-31 {
    padding-right: 7.75rem;
  }

  .tablet\:pr-32 {
    padding-right: 8rem;
  }

  .tablet\:pr-33 {
    padding-right: 8.25rem;
  }

  .tablet\:pr-34 {
    padding-right: 8.5rem;
  }

  .tablet\:pr-35 {
    padding-right: 8.75rem;
  }

  .tablet\:pr-36 {
    padding-right: 9rem;
  }

  .tablet\:pr-37 {
    padding-right: 9.25rem;
  }

  .tablet\:pr-38 {
    padding-right: 9.5rem;
  }

  .tablet\:pr-39 {
    padding-right: 9.75rem;
  }

  .tablet\:pr-40 {
    padding-right: 10rem;
  }

  .tablet\:m-auto {
    margin: auto;
  }

  .tablet\:m-0 {
    margin: 0rem;
  }

  .tablet\:m-1 {
    margin: 0.25rem;
  }

  .tablet\:m-2 {
    margin: 0.5rem;
  }

  .tablet\:m-3 {
    margin: 0.75rem;
  }

  .tablet\:m-4 {
    margin: 1rem;
  }

  .tablet\:m-5 {
    margin: 1.25rem;
  }

  .tablet\:m-6 {
    margin: 1.5rem;
  }

  .tablet\:m-7 {
    margin: 1.75rem;
  }

  .tablet\:m-8 {
    margin: 2rem;
  }

  .tablet\:m-9 {
    margin: 2.25rem;
  }

  .tablet\:m-10 {
    margin: 2.5rem;
  }

  .tablet\:m-11 {
    margin: 2.75rem;
  }

  .tablet\:m-12 {
    margin: 3rem;
  }

  .tablet\:m-13 {
    margin: 3.25rem;
  }

  .tablet\:m-14 {
    margin: 3.5rem;
  }

  .tablet\:m-15 {
    margin: 3.75rem;
  }

  .tablet\:m-16 {
    margin: 4rem;
  }

  .tablet\:m-17 {
    margin: 4.25rem;
  }

  .tablet\:m-18 {
    margin: 4.5rem;
  }

  .tablet\:m-19 {
    margin: 4.75rem;
  }

  .tablet\:m-20 {
    margin: 5rem;
  }

  .tablet\:m-21 {
    margin: 5.25rem;
  }

  .tablet\:m-22 {
    margin: 5.5rem;
  }

  .tablet\:m-23 {
    margin: 5.75rem;
  }

  .tablet\:m-24 {
    margin: 6rem;
  }

  .tablet\:m-25 {
    margin: 6.25rem;
  }

  .tablet\:m-26 {
    margin: 6.5rem;
  }

  .tablet\:m-27 {
    margin: 6.75rem;
  }

  .tablet\:m-28 {
    margin: 7rem;
  }

  .tablet\:m-29 {
    margin: 7.25rem;
  }

  .tablet\:m-30 {
    margin: 7.5rem;
  }

  .tablet\:m-31 {
    margin: 7.75rem;
  }

  .tablet\:m-32 {
    margin: 8rem;
  }

  .tablet\:m-33 {
    margin: 8.25rem;
  }

  .tablet\:m-34 {
    margin: 8.5rem;
  }

  .tablet\:m-35 {
    margin: 8.75rem;
  }

  .tablet\:m-36 {
    margin: 9rem;
  }

  .tablet\:m-37 {
    margin: 9.25rem;
  }

  .tablet\:m-38 {
    margin: 9.5rem;
  }

  .tablet\:m-39 {
    margin: 9.75rem;
  }

  .tablet\:m-40 {
    margin: 10rem;
  }

  .tablet\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .tablet\:mx-0 {
    margin-left: 0rem;
    margin-right: 0rem;
  }

  .tablet\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .tablet\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .tablet\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .tablet\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .tablet\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .tablet\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .tablet\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .tablet\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .tablet\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .tablet\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .tablet\:mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .tablet\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .tablet\:mx-13 {
    margin-left: 3.25rem;
    margin-right: 3.25rem;
  }

  .tablet\:mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .tablet\:mx-15 {
    margin-left: 3.75rem;
    margin-right: 3.75rem;
  }

  .tablet\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .tablet\:mx-17 {
    margin-left: 4.25rem;
    margin-right: 4.25rem;
  }

  .tablet\:mx-18 {
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .tablet\:mx-19 {
    margin-left: 4.75rem;
    margin-right: 4.75rem;
  }

  .tablet\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .tablet\:mx-21 {
    margin-left: 5.25rem;
    margin-right: 5.25rem;
  }

  .tablet\:mx-22 {
    margin-left: 5.5rem;
    margin-right: 5.5rem;
  }

  .tablet\:mx-23 {
    margin-left: 5.75rem;
    margin-right: 5.75rem;
  }

  .tablet\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .tablet\:mx-25 {
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .tablet\:mx-26 {
    margin-left: 6.5rem;
    margin-right: 6.5rem;
  }

  .tablet\:mx-27 {
    margin-left: 6.75rem;
    margin-right: 6.75rem;
  }

  .tablet\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .tablet\:mx-29 {
    margin-left: 7.25rem;
    margin-right: 7.25rem;
  }

  .tablet\:mx-30 {
    margin-left: 7.5rem;
    margin-right: 7.5rem;
  }

  .tablet\:mx-31 {
    margin-left: 7.75rem;
    margin-right: 7.75rem;
  }

  .tablet\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .tablet\:mx-33 {
    margin-left: 8.25rem;
    margin-right: 8.25rem;
  }

  .tablet\:mx-34 {
    margin-left: 8.5rem;
    margin-right: 8.5rem;
  }

  .tablet\:mx-35 {
    margin-left: 8.75rem;
    margin-right: 8.75rem;
  }

  .tablet\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .tablet\:mx-37 {
    margin-left: 9.25rem;
    margin-right: 9.25rem;
  }

  .tablet\:mx-38 {
    margin-left: 9.5rem;
    margin-right: 9.5rem;
  }

  .tablet\:mx-39 {
    margin-left: 9.75rem;
    margin-right: 9.75rem;
  }

  .tablet\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .tablet\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .tablet\:my-0 {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .tablet\:my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .tablet\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .tablet\:my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .tablet\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .tablet\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .tablet\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .tablet\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .tablet\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .tablet\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .tablet\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .tablet\:my-11 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .tablet\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .tablet\:my-13 {
    margin-top: 3.25rem;
    margin-bottom: 3.25rem;
  }

  .tablet\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .tablet\:my-15 {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }

  .tablet\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .tablet\:my-17 {
    margin-top: 4.25rem;
    margin-bottom: 4.25rem;
  }

  .tablet\:my-18 {
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .tablet\:my-19 {
    margin-top: 4.75rem;
    margin-bottom: 4.75rem;
  }

  .tablet\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .tablet\:my-21 {
    margin-top: 5.25rem;
    margin-bottom: 5.25rem;
  }

  .tablet\:my-22 {
    margin-top: 5.5rem;
    margin-bottom: 5.5rem;
  }

  .tablet\:my-23 {
    margin-top: 5.75rem;
    margin-bottom: 5.75rem;
  }

  .tablet\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .tablet\:my-25 {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .tablet\:my-26 {
    margin-top: 6.5rem;
    margin-bottom: 6.5rem;
  }

  .tablet\:my-27 {
    margin-top: 6.75rem;
    margin-bottom: 6.75rem;
  }

  .tablet\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .tablet\:my-29 {
    margin-top: 7.25rem;
    margin-bottom: 7.25rem;
  }

  .tablet\:my-30 {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
  }

  .tablet\:my-31 {
    margin-top: 7.75rem;
    margin-bottom: 7.75rem;
  }

  .tablet\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .tablet\:my-33 {
    margin-top: 8.25rem;
    margin-bottom: 8.25rem;
  }

  .tablet\:my-34 {
    margin-top: 8.5rem;
    margin-bottom: 8.5rem;
  }

  .tablet\:my-35 {
    margin-top: 8.75rem;
    margin-bottom: 8.75rem;
  }

  .tablet\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .tablet\:my-37 {
    margin-top: 9.25rem;
    margin-bottom: 9.25rem;
  }

  .tablet\:my-38 {
    margin-top: 9.5rem;
    margin-bottom: 9.5rem;
  }

  .tablet\:my-39 {
    margin-top: 9.75rem;
    margin-bottom: 9.75rem;
  }

  .tablet\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .tablet\:mt-auto {
    margin-top: auto;
  }

  .tablet\:mt-0 {
    margin-top: 0rem;
  }

  .tablet\:mt-1 {
    margin-top: 0.25rem;
  }

  .tablet\:mt-2 {
    margin-top: 0.5rem;
  }

  .tablet\:mt-3 {
    margin-top: 0.75rem;
  }

  .tablet\:mt-4 {
    margin-top: 1rem;
  }

  .tablet\:mt-5 {
    margin-top: 1.25rem;
  }

  .tablet\:mt-6 {
    margin-top: 1.5rem;
  }

  .tablet\:mt-7 {
    margin-top: 1.75rem;
  }

  .tablet\:mt-8 {
    margin-top: 2rem;
  }

  .tablet\:mt-9 {
    margin-top: 2.25rem;
  }

  .tablet\:mt-10 {
    margin-top: 2.5rem;
  }

  .tablet\:mt-11 {
    margin-top: 2.75rem;
  }

  .tablet\:mt-12 {
    margin-top: 3rem;
  }

  .tablet\:mt-13 {
    margin-top: 3.25rem;
  }

  .tablet\:mt-14 {
    margin-top: 3.5rem;
  }

  .tablet\:mt-15 {
    margin-top: 3.75rem;
  }

  .tablet\:mt-16 {
    margin-top: 4rem;
  }

  .tablet\:mt-17 {
    margin-top: 4.25rem;
  }

  .tablet\:mt-18 {
    margin-top: 4.5rem;
  }

  .tablet\:mt-19 {
    margin-top: 4.75rem;
  }

  .tablet\:mt-20 {
    margin-top: 5rem;
  }

  .tablet\:mt-21 {
    margin-top: 5.25rem;
  }

  .tablet\:mt-22 {
    margin-top: 5.5rem;
  }

  .tablet\:mt-23 {
    margin-top: 5.75rem;
  }

  .tablet\:mt-24 {
    margin-top: 6rem;
  }

  .tablet\:mt-25 {
    margin-top: 6.25rem;
  }

  .tablet\:mt-26 {
    margin-top: 6.5rem;
  }

  .tablet\:mt-27 {
    margin-top: 6.75rem;
  }

  .tablet\:mt-28 {
    margin-top: 7rem;
  }

  .tablet\:mt-29 {
    margin-top: 7.25rem;
  }

  .tablet\:mt-30 {
    margin-top: 7.5rem;
  }

  .tablet\:mt-31 {
    margin-top: 7.75rem;
  }

  .tablet\:mt-32 {
    margin-top: 8rem;
  }

  .tablet\:mt-33 {
    margin-top: 8.25rem;
  }

  .tablet\:mt-34 {
    margin-top: 8.5rem;
  }

  .tablet\:mt-35 {
    margin-top: 8.75rem;
  }

  .tablet\:mt-36 {
    margin-top: 9rem;
  }

  .tablet\:mt-37 {
    margin-top: 9.25rem;
  }

  .tablet\:mt-38 {
    margin-top: 9.5rem;
  }

  .tablet\:mt-39 {
    margin-top: 9.75rem;
  }

  .tablet\:mt-40 {
    margin-top: 10rem;
  }

  .tablet\:mb-auto {
    margin-bottom: auto;
  }

  .tablet\:mb-0 {
    margin-bottom: 0rem;
  }

  .tablet\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .tablet\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .tablet\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .tablet\:mb-4 {
    margin-bottom: 1rem;
  }

  .tablet\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .tablet\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .tablet\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .tablet\:mb-8 {
    margin-bottom: 2rem;
  }

  .tablet\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .tablet\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .tablet\:mb-11 {
    margin-bottom: 2.75rem;
  }

  .tablet\:mb-12 {
    margin-bottom: 3rem;
  }

  .tablet\:mb-13 {
    margin-bottom: 3.25rem;
  }

  .tablet\:mb-14 {
    margin-bottom: 3.5rem;
  }

  .tablet\:mb-15 {
    margin-bottom: 3.75rem;
  }

  .tablet\:mb-16 {
    margin-bottom: 4rem;
  }

  .tablet\:mb-17 {
    margin-bottom: 4.25rem;
  }

  .tablet\:mb-18 {
    margin-bottom: 4.5rem;
  }

  .tablet\:mb-19 {
    margin-bottom: 4.75rem;
  }

  .tablet\:mb-20 {
    margin-bottom: 5rem;
  }

  .tablet\:mb-21 {
    margin-bottom: 5.25rem;
  }

  .tablet\:mb-22 {
    margin-bottom: 5.5rem;
  }

  .tablet\:mb-23 {
    margin-bottom: 5.75rem;
  }

  .tablet\:mb-24 {
    margin-bottom: 6rem;
  }

  .tablet\:mb-25 {
    margin-bottom: 6.25rem;
  }

  .tablet\:mb-26 {
    margin-bottom: 6.5rem;
  }

  .tablet\:mb-27 {
    margin-bottom: 6.75rem;
  }

  .tablet\:mb-28 {
    margin-bottom: 7rem;
  }

  .tablet\:mb-29 {
    margin-bottom: 7.25rem;
  }

  .tablet\:mb-30 {
    margin-bottom: 7.5rem;
  }

  .tablet\:mb-31 {
    margin-bottom: 7.75rem;
  }

  .tablet\:mb-32 {
    margin-bottom: 8rem;
  }

  .tablet\:mb-33 {
    margin-bottom: 8.25rem;
  }

  .tablet\:mb-34 {
    margin-bottom: 8.5rem;
  }

  .tablet\:mb-35 {
    margin-bottom: 8.75rem;
  }

  .tablet\:mb-36 {
    margin-bottom: 9rem;
  }

  .tablet\:mb-37 {
    margin-bottom: 9.25rem;
  }

  .tablet\:mb-38 {
    margin-bottom: 9.5rem;
  }

  .tablet\:mb-39 {
    margin-bottom: 9.75rem;
  }

  .tablet\:mb-40 {
    margin-bottom: 10rem;
  }

  .tablet\:ml-auto {
    margin-left: auto;
  }

  .tablet\:ml-0 {
    margin-left: 0rem;
  }

  .tablet\:ml-1 {
    margin-left: 0.25rem;
  }

  .tablet\:ml-2 {
    margin-left: 0.5rem;
  }

  .tablet\:ml-3 {
    margin-left: 0.75rem;
  }

  .tablet\:ml-4 {
    margin-left: 1rem;
  }

  .tablet\:ml-5 {
    margin-left: 1.25rem;
  }

  .tablet\:ml-6 {
    margin-left: 1.5rem;
  }

  .tablet\:ml-7 {
    margin-left: 1.75rem;
  }

  .tablet\:ml-8 {
    margin-left: 2rem;
  }

  .tablet\:ml-9 {
    margin-left: 2.25rem;
  }

  .tablet\:ml-10 {
    margin-left: 2.5rem;
  }

  .tablet\:ml-11 {
    margin-left: 2.75rem;
  }

  .tablet\:ml-12 {
    margin-left: 3rem;
  }

  .tablet\:ml-13 {
    margin-left: 3.25rem;
  }

  .tablet\:ml-14 {
    margin-left: 3.5rem;
  }

  .tablet\:ml-15 {
    margin-left: 3.75rem;
  }

  .tablet\:ml-16 {
    margin-left: 4rem;
  }

  .tablet\:ml-17 {
    margin-left: 4.25rem;
  }

  .tablet\:ml-18 {
    margin-left: 4.5rem;
  }

  .tablet\:ml-19 {
    margin-left: 4.75rem;
  }

  .tablet\:ml-20 {
    margin-left: 5rem;
  }

  .tablet\:ml-21 {
    margin-left: 5.25rem;
  }

  .tablet\:ml-22 {
    margin-left: 5.5rem;
  }

  .tablet\:ml-23 {
    margin-left: 5.75rem;
  }

  .tablet\:ml-24 {
    margin-left: 6rem;
  }

  .tablet\:ml-25 {
    margin-left: 6.25rem;
  }

  .tablet\:ml-26 {
    margin-left: 6.5rem;
  }

  .tablet\:ml-27 {
    margin-left: 6.75rem;
  }

  .tablet\:ml-28 {
    margin-left: 7rem;
  }

  .tablet\:ml-29 {
    margin-left: 7.25rem;
  }

  .tablet\:ml-30 {
    margin-left: 7.5rem;
  }

  .tablet\:ml-31 {
    margin-left: 7.75rem;
  }

  .tablet\:ml-32 {
    margin-left: 8rem;
  }

  .tablet\:ml-33 {
    margin-left: 8.25rem;
  }

  .tablet\:ml-34 {
    margin-left: 8.5rem;
  }

  .tablet\:ml-35 {
    margin-left: 8.75rem;
  }

  .tablet\:ml-36 {
    margin-left: 9rem;
  }

  .tablet\:ml-37 {
    margin-left: 9.25rem;
  }

  .tablet\:ml-38 {
    margin-left: 9.5rem;
  }

  .tablet\:ml-39 {
    margin-left: 9.75rem;
  }

  .tablet\:ml-40 {
    margin-left: 10rem;
  }

  .tablet\:mr-auto {
    margin-right: auto;
  }

  .tablet\:mr-0 {
    margin-right: 0rem;
  }

  .tablet\:mr-1 {
    margin-right: 0.25rem;
  }

  .tablet\:mr-2 {
    margin-right: 0.5rem;
  }

  .tablet\:mr-3 {
    margin-right: 0.75rem;
  }

  .tablet\:mr-4 {
    margin-right: 1rem;
  }

  .tablet\:mr-5 {
    margin-right: 1.25rem;
  }

  .tablet\:mr-6 {
    margin-right: 1.5rem;
  }

  .tablet\:mr-7 {
    margin-right: 1.75rem;
  }

  .tablet\:mr-8 {
    margin-right: 2rem;
  }

  .tablet\:mr-9 {
    margin-right: 2.25rem;
  }

  .tablet\:mr-10 {
    margin-right: 2.5rem;
  }

  .tablet\:mr-11 {
    margin-right: 2.75rem;
  }

  .tablet\:mr-12 {
    margin-right: 3rem;
  }

  .tablet\:mr-13 {
    margin-right: 3.25rem;
  }

  .tablet\:mr-14 {
    margin-right: 3.5rem;
  }

  .tablet\:mr-15 {
    margin-right: 3.75rem;
  }

  .tablet\:mr-16 {
    margin-right: 4rem;
  }

  .tablet\:mr-17 {
    margin-right: 4.25rem;
  }

  .tablet\:mr-18 {
    margin-right: 4.5rem;
  }

  .tablet\:mr-19 {
    margin-right: 4.75rem;
  }

  .tablet\:mr-20 {
    margin-right: 5rem;
  }

  .tablet\:mr-21 {
    margin-right: 5.25rem;
  }

  .tablet\:mr-22 {
    margin-right: 5.5rem;
  }

  .tablet\:mr-23 {
    margin-right: 5.75rem;
  }

  .tablet\:mr-24 {
    margin-right: 6rem;
  }

  .tablet\:mr-25 {
    margin-right: 6.25rem;
  }

  .tablet\:mr-26 {
    margin-right: 6.5rem;
  }

  .tablet\:mr-27 {
    margin-right: 6.75rem;
  }

  .tablet\:mr-28 {
    margin-right: 7rem;
  }

  .tablet\:mr-29 {
    margin-right: 7.25rem;
  }

  .tablet\:mr-30 {
    margin-right: 7.5rem;
  }

  .tablet\:mr-31 {
    margin-right: 7.75rem;
  }

  .tablet\:mr-32 {
    margin-right: 8rem;
  }

  .tablet\:mr-33 {
    margin-right: 8.25rem;
  }

  .tablet\:mr-34 {
    margin-right: 8.5rem;
  }

  .tablet\:mr-35 {
    margin-right: 8.75rem;
  }

  .tablet\:mr-36 {
    margin-right: 9rem;
  }

  .tablet\:mr-37 {
    margin-right: 9.25rem;
  }

  .tablet\:mr-38 {
    margin-right: 9.5rem;
  }

  .tablet\:mr-39 {
    margin-right: 9.75rem;
  }

  .tablet\:mr-40 {
    margin-right: 10rem;
  }
}

@media (min-width: 1280px) {
  .desktop\:color-black {
    color: #000;
  }

  .desktop\:color-white {
    color: #fff;
  }

  .desktop\:color-red {
    color: #ff1515;
  }

  .desktop\:color-dark {
    color: #292527;
  }

  .desktop\:color-green {
    color: #00cd46;
  }

  .desktop\:color-grey {
    color: #aaa;
  }

  .desktop\:color-grey2 {
    color: #e9e9e9;
  }

  .desktop\:color-orange {
    color: #ff8515;
  }

  .desktop\:color-orange2 {
    color: #ee6400;
  }

  .desktop\:bg-black {
    background-color: #000;
  }

  .desktop\:bg-white {
    background-color: #fff;
  }

  .desktop\:bg-red {
    background-color: #ff1515;
  }

  .desktop\:bg-dark {
    background-color: #292527;
  }

  .desktop\:bg-green {
    background-color: #00cd46;
  }

  .desktop\:bg-grey {
    background-color: #aaa;
  }

  .desktop\:bg-grey2 {
    background-color: #e9e9e9;
  }

  .desktop\:bg-orange {
    background-color: #ff8515;
  }

  .desktop\:bg-orange2 {
    background-color: #ee6400;
  }

  .desktop\:hover:color-black:hover {
    color: #000;
  }

  .desktop\:hover:color-white:hover {
    color: #fff;
  }

  .desktop\:hover:color-red:hover {
    color: #ff1515;
  }

  .desktop\:hover:color-dark:hover {
    color: #292527;
  }

  .desktop\:hover:color-green:hover {
    color: #00cd46;
  }

  .desktop\:hover:color-grey:hover {
    color: #aaa;
  }

  .desktop\:hover:color-grey2:hover {
    color: #e9e9e9;
  }

  .desktop\:hover:color-orange:hover {
    color: #ff8515;
  }

  .desktop\:hover:color-orange2:hover {
    color: #ee6400;
  }

  .desktop\:hover:bg-black:hover {
    background-color: #000;
  }

  .desktop\:hover:bg-white:hover {
    background-color: #fff;
  }

  .desktop\:hover:bg-red:hover {
    background-color: #ff1515;
  }

  .desktop\:hover:bg-dark:hover {
    background-color: #292527;
  }

  .desktop\:hover:bg-green:hover {
    background-color: #00cd46;
  }

  .desktop\:hover:bg-grey:hover {
    background-color: #aaa;
  }

  .desktop\:hover:bg-grey2:hover {
    background-color: #e9e9e9;
  }

  .desktop\:hover:bg-orange:hover {
    background-color: #ff8515;
  }

  .desktop\:hover:bg-orange2:hover {
    background-color: #ee6400;
  }

  .desktop\:font-size-12 {
    font-size: 0.75rem;
  }

  .desktop\:font-size-14 {
    font-size: 0.875rem;
  }

  .desktop\:font-size-16 {
    font-size: 1rem;
  }

  .desktop\:font-size-18 {
    font-size: 1.125rem;
  }

  .desktop\:font-size-20 {
    font-size: 1.25rem;
  }

  .desktop\:font-size-24 {
    font-size: 1.5rem;
  }

  .desktop\:font-size-28 {
    font-size: 1.75rem;
  }

  .desktop\:font-size-32 {
    font-size: 2rem;
  }

  .desktop\:font-size-inherit {
    font-size: inherit;
  }

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

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

  .desktop\:text-align-right {
    text-align: right;
  }

  .desktop\:text-align-justify {
    text-align: justify;
  }

  .desktop\:position-static {
    position: static;
  }

  .desktop\:position-relative {
    position: relative;
  }

  .desktop\:position-absolute {
    position: absolute;
  }

  .desktop\:position-fixed {
    position: fixed;
  }

  .desktop\:display-none {
    display: none;
  }

  .desktop\:display-block {
    display: block;
  }

  .desktop\:display-inline-block {
    display: inline-block;
  }

  .desktop\:display-inline {
    display: inline;
  }

  .desktop\:display-flex {
    display: flex;
  }

  .desktop\:display-inline-flex {
    display: inline-flex;
  }

  .desktop\:flex {
    display: flex;
  }

  .desktop\:inline-flex {
    display: inline-flex;
  }

  .desktop\:flex-row {
    flex-direction: row;
  }

  .desktop\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .desktop\:flex-col {
    flex-direction: column;
  }

  .desktop\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .desktop\:items-stretch {
    align-items: stretch;
  }

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

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

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

  .desktop\:items-baseline {
    align-items: baseline;
  }

  .desktop\:self-stretch {
    align-self: stretch;
  }

  .desktop\:self-start {
    align-self: flex-start;
  }

  .desktop\:self-center {
    align-self: center;
  }

  .desktop\:self-end {
    align-self: flex-end;
  }

  .desktop\:self-baseline {
    align-self: baseline;
  }

  .desktop\:content-start {
    align-content: flex-start;
  }

  .desktop\:content-center {
    align-content: center;
  }

  .desktop\:content-end {
    align-content: flex-end;
  }

  .desktop\:content-between {
    align-content: space-between;
  }

  .desktop\:content-around {
    align-content: space-around;
  }

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

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

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

  .desktop\:justify-between {
    justify-content: space-between;
  }

  .desktop\:justify-around {
    justify-content: space-around;
  }

  .desktop\:flex-no-wrap {
    flex-wrap: nowrap;
  }

  .desktop\:flex-wrap {
    flex-wrap: wrap;
  }

  .desktop\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .desktop\:flex-grow-1 {
    flex-grow: 1;
  }

  .desktop\:flex-shrink-0 {
    flex-shrink: 0;
  }

  .desktop\:is-col_0 {
    width: 0%;
  }

  .desktop\:is-col_1 {
    width: 8.3333333333%;
  }

  .desktop\:is-col_2 {
    width: 16.6666666667%;
  }

  .desktop\:is-col_3 {
    width: 25%;
  }

  .desktop\:is-col_4 {
    width: 33.3333333333%;
  }

  .desktop\:is-col_5 {
    width: 41.6666666667%;
  }

  .desktop\:is-col_6 {
    width: 50%;
  }

  .desktop\:is-col_7 {
    width: 58.3333333333%;
  }

  .desktop\:is-col_8 {
    width: 66.6666666667%;
  }

  .desktop\:is-col_9 {
    width: 75%;
  }

  .desktop\:is-col_10 {
    width: 83.3333333333%;
  }

  .desktop\:is-col_11 {
    width: 91.6666666667%;
  }

  .desktop\:is-col_12 {
    width: 100%;
  }

  .desktop\:is-col-offset_0 {
    margin-left: 0%;
  }

  .desktop\:is-col-offset_1 {
    margin-left: 8.3333333333%;
  }

  .desktop\:is-col-offset_2 {
    margin-left: 16.6666666667%;
  }

  .desktop\:is-col-offset_3 {
    margin-left: 25%;
  }

  .desktop\:is-col-offset_4 {
    margin-left: 33.3333333333%;
  }

  .desktop\:is-col-offset_5 {
    margin-left: 41.6666666667%;
  }

  .desktop\:is-col-offset_6 {
    margin-left: 50%;
  }

  .desktop\:is-col-offset_7 {
    margin-left: 58.3333333333%;
  }

  .desktop\:is-col-offset_8 {
    margin-left: 66.6666666667%;
  }

  .desktop\:is-col-offset_9 {
    margin-left: 75%;
  }

  .desktop\:is-col-offset_10 {
    margin-left: 83.3333333333%;
  }

  .desktop\:is-col-offset_11 {
    margin-left: 91.6666666667%;
  }

  .desktop\:is-col-offset_12 {
    margin-left: 100%;
  }

  .desktop\:p-auto {
    padding: auto;
  }

  .desktop\:p-0 {
    padding: 0rem;
  }

  .desktop\:p-1 {
    padding: 0.25rem;
  }

  .desktop\:p-2 {
    padding: 0.5rem;
  }

  .desktop\:p-3 {
    padding: 0.75rem;
  }

  .desktop\:p-4 {
    padding: 1rem;
  }

  .desktop\:p-5 {
    padding: 1.25rem;
  }

  .desktop\:p-6 {
    padding: 1.5rem;
  }

  .desktop\:p-7 {
    padding: 1.75rem;
  }

  .desktop\:p-8 {
    padding: 2rem;
  }

  .desktop\:p-9 {
    padding: 2.25rem;
  }

  .desktop\:p-10 {
    padding: 2.5rem;
  }

  .desktop\:p-11 {
    padding: 2.75rem;
  }

  .desktop\:p-12 {
    padding: 3rem;
  }

  .desktop\:p-13 {
    padding: 3.25rem;
  }

  .desktop\:p-14 {
    padding: 3.5rem;
  }

  .desktop\:p-15 {
    padding: 3.75rem;
  }

  .desktop\:p-16 {
    padding: 4rem;
  }

  .desktop\:p-17 {
    padding: 4.25rem;
  }

  .desktop\:p-18 {
    padding: 4.5rem;
  }

  .desktop\:p-19 {
    padding: 4.75rem;
  }

  .desktop\:p-20 {
    padding: 5rem;
  }

  .desktop\:p-21 {
    padding: 5.25rem;
  }

  .desktop\:p-22 {
    padding: 5.5rem;
  }

  .desktop\:p-23 {
    padding: 5.75rem;
  }

  .desktop\:p-24 {
    padding: 6rem;
  }

  .desktop\:p-25 {
    padding: 6.25rem;
  }

  .desktop\:p-26 {
    padding: 6.5rem;
  }

  .desktop\:p-27 {
    padding: 6.75rem;
  }

  .desktop\:p-28 {
    padding: 7rem;
  }

  .desktop\:p-29 {
    padding: 7.25rem;
  }

  .desktop\:p-30 {
    padding: 7.5rem;
  }

  .desktop\:p-31 {
    padding: 7.75rem;
  }

  .desktop\:p-32 {
    padding: 8rem;
  }

  .desktop\:p-33 {
    padding: 8.25rem;
  }

  .desktop\:p-34 {
    padding: 8.5rem;
  }

  .desktop\:p-35 {
    padding: 8.75rem;
  }

  .desktop\:p-36 {
    padding: 9rem;
  }

  .desktop\:p-37 {
    padding: 9.25rem;
  }

  .desktop\:p-38 {
    padding: 9.5rem;
  }

  .desktop\:p-39 {
    padding: 9.75rem;
  }

  .desktop\:p-40 {
    padding: 10rem;
  }

  .desktop\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }

  .desktop\:px-0 {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .desktop\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .desktop\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .desktop\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .desktop\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .desktop\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .desktop\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .desktop\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .desktop\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .desktop\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .desktop\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .desktop\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .desktop\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .desktop\:px-13 {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }

  .desktop\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .desktop\:px-15 {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

  .desktop\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .desktop\:px-17 {
    padding-left: 4.25rem;
    padding-right: 4.25rem;
  }

  .desktop\:px-18 {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }

  .desktop\:px-19 {
    padding-left: 4.75rem;
    padding-right: 4.75rem;
  }

  .desktop\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .desktop\:px-21 {
    padding-left: 5.25rem;
    padding-right: 5.25rem;
  }

  .desktop\:px-22 {
    padding-left: 5.5rem;
    padding-right: 5.5rem;
  }

  .desktop\:px-23 {
    padding-left: 5.75rem;
    padding-right: 5.75rem;
  }

  .desktop\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .desktop\:px-25 {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }

  .desktop\:px-26 {
    padding-left: 6.5rem;
    padding-right: 6.5rem;
  }

  .desktop\:px-27 {
    padding-left: 6.75rem;
    padding-right: 6.75rem;
  }

  .desktop\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .desktop\:px-29 {
    padding-left: 7.25rem;
    padding-right: 7.25rem;
  }

  .desktop\:px-30 {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }

  .desktop\:px-31 {
    padding-left: 7.75rem;
    padding-right: 7.75rem;
  }

  .desktop\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .desktop\:px-33 {
    padding-left: 8.25rem;
    padding-right: 8.25rem;
  }

  .desktop\:px-34 {
    padding-left: 8.5rem;
    padding-right: 8.5rem;
  }

  .desktop\:px-35 {
    padding-left: 8.75rem;
    padding-right: 8.75rem;
  }

  .desktop\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .desktop\:px-37 {
    padding-left: 9.25rem;
    padding-right: 9.25rem;
  }

  .desktop\:px-38 {
    padding-left: 9.5rem;
    padding-right: 9.5rem;
  }

  .desktop\:px-39 {
    padding-left: 9.75rem;
    padding-right: 9.75rem;
  }

  .desktop\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .desktop\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }

  .desktop\:py-0 {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .desktop\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .desktop\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .desktop\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .desktop\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .desktop\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .desktop\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .desktop\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .desktop\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .desktop\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .desktop\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .desktop\:py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .desktop\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .desktop\:py-13 {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .desktop\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .desktop\:py-15 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .desktop\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .desktop\:py-17 {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .desktop\:py-18 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .desktop\:py-19 {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .desktop\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .desktop\:py-21 {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .desktop\:py-22 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .desktop\:py-23 {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
  }

  .desktop\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .desktop\:py-25 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }

  .desktop\:py-26 {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .desktop\:py-27 {
    padding-top: 6.75rem;
    padding-bottom: 6.75rem;
  }

  .desktop\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .desktop\:py-29 {
    padding-top: 7.25rem;
    padding-bottom: 7.25rem;
  }

  .desktop\:py-30 {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }

  .desktop\:py-31 {
    padding-top: 7.75rem;
    padding-bottom: 7.75rem;
  }

  .desktop\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .desktop\:py-33 {
    padding-top: 8.25rem;
    padding-bottom: 8.25rem;
  }

  .desktop\:py-34 {
    padding-top: 8.5rem;
    padding-bottom: 8.5rem;
  }

  .desktop\:py-35 {
    padding-top: 8.75rem;
    padding-bottom: 8.75rem;
  }

  .desktop\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .desktop\:py-37 {
    padding-top: 9.25rem;
    padding-bottom: 9.25rem;
  }

  .desktop\:py-38 {
    padding-top: 9.5rem;
    padding-bottom: 9.5rem;
  }

  .desktop\:py-39 {
    padding-top: 9.75rem;
    padding-bottom: 9.75rem;
  }

  .desktop\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .desktop\:pt-auto {
    padding-top: auto;
  }

  .desktop\:pt-0 {
    padding-top: 0rem;
  }

  .desktop\:pt-1 {
    padding-top: 0.25rem;
  }

  .desktop\:pt-2 {
    padding-top: 0.5rem;
  }

  .desktop\:pt-3 {
    padding-top: 0.75rem;
  }

  .desktop\:pt-4 {
    padding-top: 1rem;
  }

  .desktop\:pt-5 {
    padding-top: 1.25rem;
  }

  .desktop\:pt-6 {
    padding-top: 1.5rem;
  }

  .desktop\:pt-7 {
    padding-top: 1.75rem;
  }

  .desktop\:pt-8 {
    padding-top: 2rem;
  }

  .desktop\:pt-9 {
    padding-top: 2.25rem;
  }

  .desktop\:pt-10 {
    padding-top: 2.5rem;
  }

  .desktop\:pt-11 {
    padding-top: 2.75rem;
  }

  .desktop\:pt-12 {
    padding-top: 3rem;
  }

  .desktop\:pt-13 {
    padding-top: 3.25rem;
  }

  .desktop\:pt-14 {
    padding-top: 3.5rem;
  }

  .desktop\:pt-15 {
    padding-top: 3.75rem;
  }

  .desktop\:pt-16 {
    padding-top: 4rem;
  }

  .desktop\:pt-17 {
    padding-top: 4.25rem;
  }

  .desktop\:pt-18 {
    padding-top: 4.5rem;
  }

  .desktop\:pt-19 {
    padding-top: 4.75rem;
  }

  .desktop\:pt-20 {
    padding-top: 5rem;
  }

  .desktop\:pt-21 {
    padding-top: 5.25rem;
  }

  .desktop\:pt-22 {
    padding-top: 5.5rem;
  }

  .desktop\:pt-23 {
    padding-top: 5.75rem;
  }

  .desktop\:pt-24 {
    padding-top: 6rem;
  }

  .desktop\:pt-25 {
    padding-top: 6.25rem;
  }

  .desktop\:pt-26 {
    padding-top: 6.5rem;
  }

  .desktop\:pt-27 {
    padding-top: 6.75rem;
  }

  .desktop\:pt-28 {
    padding-top: 7rem;
  }

  .desktop\:pt-29 {
    padding-top: 7.25rem;
  }

  .desktop\:pt-30 {
    padding-top: 7.5rem;
  }

  .desktop\:pt-31 {
    padding-top: 7.75rem;
  }

  .desktop\:pt-32 {
    padding-top: 8rem;
  }

  .desktop\:pt-33 {
    padding-top: 8.25rem;
  }

  .desktop\:pt-34 {
    padding-top: 8.5rem;
  }

  .desktop\:pt-35 {
    padding-top: 8.75rem;
  }

  .desktop\:pt-36 {
    padding-top: 9rem;
  }

  .desktop\:pt-37 {
    padding-top: 9.25rem;
  }

  .desktop\:pt-38 {
    padding-top: 9.5rem;
  }

  .desktop\:pt-39 {
    padding-top: 9.75rem;
  }

  .desktop\:pt-40 {
    padding-top: 10rem;
  }

  .desktop\:pb-auto {
    padding-bottom: auto;
  }

  .desktop\:pb-0 {
    padding-bottom: 0rem;
  }

  .desktop\:pb-1 {
    padding-bottom: 0.25rem;
  }

  .desktop\:pb-2 {
    padding-bottom: 0.5rem;
  }

  .desktop\:pb-3 {
    padding-bottom: 0.75rem;
  }

  .desktop\:pb-4 {
    padding-bottom: 1rem;
  }

  .desktop\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .desktop\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .desktop\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .desktop\:pb-8 {
    padding-bottom: 2rem;
  }

  .desktop\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .desktop\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .desktop\:pb-11 {
    padding-bottom: 2.75rem;
  }

  .desktop\:pb-12 {
    padding-bottom: 3rem;
  }

  .desktop\:pb-13 {
    padding-bottom: 3.25rem;
  }

  .desktop\:pb-14 {
    padding-bottom: 3.5rem;
  }

  .desktop\:pb-15 {
    padding-bottom: 3.75rem;
  }

  .desktop\:pb-16 {
    padding-bottom: 4rem;
  }

  .desktop\:pb-17 {
    padding-bottom: 4.25rem;
  }

  .desktop\:pb-18 {
    padding-bottom: 4.5rem;
  }

  .desktop\:pb-19 {
    padding-bottom: 4.75rem;
  }

  .desktop\:pb-20 {
    padding-bottom: 5rem;
  }

  .desktop\:pb-21 {
    padding-bottom: 5.25rem;
  }

  .desktop\:pb-22 {
    padding-bottom: 5.5rem;
  }

  .desktop\:pb-23 {
    padding-bottom: 5.75rem;
  }

  .desktop\:pb-24 {
    padding-bottom: 6rem;
  }

  .desktop\:pb-25 {
    padding-bottom: 6.25rem;
  }

  .desktop\:pb-26 {
    padding-bottom: 6.5rem;
  }

  .desktop\:pb-27 {
    padding-bottom: 6.75rem;
  }

  .desktop\:pb-28 {
    padding-bottom: 7rem;
  }

  .desktop\:pb-29 {
    padding-bottom: 7.25rem;
  }

  .desktop\:pb-30 {
    padding-bottom: 7.5rem;
  }

  .desktop\:pb-31 {
    padding-bottom: 7.75rem;
  }

  .desktop\:pb-32 {
    padding-bottom: 8rem;
  }

  .desktop\:pb-33 {
    padding-bottom: 8.25rem;
  }

  .desktop\:pb-34 {
    padding-bottom: 8.5rem;
  }

  .desktop\:pb-35 {
    padding-bottom: 8.75rem;
  }

  .desktop\:pb-36 {
    padding-bottom: 9rem;
  }

  .desktop\:pb-37 {
    padding-bottom: 9.25rem;
  }

  .desktop\:pb-38 {
    padding-bottom: 9.5rem;
  }

  .desktop\:pb-39 {
    padding-bottom: 9.75rem;
  }

  .desktop\:pb-40 {
    padding-bottom: 10rem;
  }

  .desktop\:pl-auto {
    padding-left: auto;
  }

  .desktop\:pl-0 {
    padding-left: 0rem;
  }

  .desktop\:pl-1 {
    padding-left: 0.25rem;
  }

  .desktop\:pl-2 {
    padding-left: 0.5rem;
  }

  .desktop\:pl-3 {
    padding-left: 0.75rem;
  }

  .desktop\:pl-4 {
    padding-left: 1rem;
  }

  .desktop\:pl-5 {
    padding-left: 1.25rem;
  }

  .desktop\:pl-6 {
    padding-left: 1.5rem;
  }

  .desktop\:pl-7 {
    padding-left: 1.75rem;
  }

  .desktop\:pl-8 {
    padding-left: 2rem;
  }

  .desktop\:pl-9 {
    padding-left: 2.25rem;
  }

  .desktop\:pl-10 {
    padding-left: 2.5rem;
  }

  .desktop\:pl-11 {
    padding-left: 2.75rem;
  }

  .desktop\:pl-12 {
    padding-left: 3rem;
  }

  .desktop\:pl-13 {
    padding-left: 3.25rem;
  }

  .desktop\:pl-14 {
    padding-left: 3.5rem;
  }

  .desktop\:pl-15 {
    padding-left: 3.75rem;
  }

  .desktop\:pl-16 {
    padding-left: 4rem;
  }

  .desktop\:pl-17 {
    padding-left: 4.25rem;
  }

  .desktop\:pl-18 {
    padding-left: 4.5rem;
  }

  .desktop\:pl-19 {
    padding-left: 4.75rem;
  }

  .desktop\:pl-20 {
    padding-left: 5rem;
  }

  .desktop\:pl-21 {
    padding-left: 5.25rem;
  }

  .desktop\:pl-22 {
    padding-left: 5.5rem;
  }

  .desktop\:pl-23 {
    padding-left: 5.75rem;
  }

  .desktop\:pl-24 {
    padding-left: 6rem;
  }

  .desktop\:pl-25 {
    padding-left: 6.25rem;
  }

  .desktop\:pl-26 {
    padding-left: 6.5rem;
  }

  .desktop\:pl-27 {
    padding-left: 6.75rem;
  }

  .desktop\:pl-28 {
    padding-left: 7rem;
  }

  .desktop\:pl-29 {
    padding-left: 7.25rem;
  }

  .desktop\:pl-30 {
    padding-left: 7.5rem;
  }

  .desktop\:pl-31 {
    padding-left: 7.75rem;
  }

  .desktop\:pl-32 {
    padding-left: 8rem;
  }

  .desktop\:pl-33 {
    padding-left: 8.25rem;
  }

  .desktop\:pl-34 {
    padding-left: 8.5rem;
  }

  .desktop\:pl-35 {
    padding-left: 8.75rem;
  }

  .desktop\:pl-36 {
    padding-left: 9rem;
  }

  .desktop\:pl-37 {
    padding-left: 9.25rem;
  }

  .desktop\:pl-38 {
    padding-left: 9.5rem;
  }

  .desktop\:pl-39 {
    padding-left: 9.75rem;
  }

  .desktop\:pl-40 {
    padding-left: 10rem;
  }

  .desktop\:pr-auto {
    padding-right: auto;
  }

  .desktop\:pr-0 {
    padding-right: 0rem;
  }

  .desktop\:pr-1 {
    padding-right: 0.25rem;
  }

  .desktop\:pr-2 {
    padding-right: 0.5rem;
  }

  .desktop\:pr-3 {
    padding-right: 0.75rem;
  }

  .desktop\:pr-4 {
    padding-right: 1rem;
  }

  .desktop\:pr-5 {
    padding-right: 1.25rem;
  }

  .desktop\:pr-6 {
    padding-right: 1.5rem;
  }

  .desktop\:pr-7 {
    padding-right: 1.75rem;
  }

  .desktop\:pr-8 {
    padding-right: 2rem;
  }

  .desktop\:pr-9 {
    padding-right: 2.25rem;
  }

  .desktop\:pr-10 {
    padding-right: 2.5rem;
  }

  .desktop\:pr-11 {
    padding-right: 2.75rem;
  }

  .desktop\:pr-12 {
    padding-right: 3rem;
  }

  .desktop\:pr-13 {
    padding-right: 3.25rem;
  }

  .desktop\:pr-14 {
    padding-right: 3.5rem;
  }

  .desktop\:pr-15 {
    padding-right: 3.75rem;
  }

  .desktop\:pr-16 {
    padding-right: 4rem;
  }

  .desktop\:pr-17 {
    padding-right: 4.25rem;
  }

  .desktop\:pr-18 {
    padding-right: 4.5rem;
  }

  .desktop\:pr-19 {
    padding-right: 4.75rem;
  }

  .desktop\:pr-20 {
    padding-right: 5rem;
  }

  .desktop\:pr-21 {
    padding-right: 5.25rem;
  }

  .desktop\:pr-22 {
    padding-right: 5.5rem;
  }

  .desktop\:pr-23 {
    padding-right: 5.75rem;
  }

  .desktop\:pr-24 {
    padding-right: 6rem;
  }

  .desktop\:pr-25 {
    padding-right: 6.25rem;
  }

  .desktop\:pr-26 {
    padding-right: 6.5rem;
  }

  .desktop\:pr-27 {
    padding-right: 6.75rem;
  }

  .desktop\:pr-28 {
    padding-right: 7rem;
  }

  .desktop\:pr-29 {
    padding-right: 7.25rem;
  }

  .desktop\:pr-30 {
    padding-right: 7.5rem;
  }

  .desktop\:pr-31 {
    padding-right: 7.75rem;
  }

  .desktop\:pr-32 {
    padding-right: 8rem;
  }

  .desktop\:pr-33 {
    padding-right: 8.25rem;
  }

  .desktop\:pr-34 {
    padding-right: 8.5rem;
  }

  .desktop\:pr-35 {
    padding-right: 8.75rem;
  }

  .desktop\:pr-36 {
    padding-right: 9rem;
  }

  .desktop\:pr-37 {
    padding-right: 9.25rem;
  }

  .desktop\:pr-38 {
    padding-right: 9.5rem;
  }

  .desktop\:pr-39 {
    padding-right: 9.75rem;
  }

  .desktop\:pr-40 {
    padding-right: 10rem;
  }

  .desktop\:m-auto {
    margin: auto;
  }

  .desktop\:m-0 {
    margin: 0rem;
  }

  .desktop\:m-1 {
    margin: 0.25rem;
  }

  .desktop\:m-2 {
    margin: 0.5rem;
  }

  .desktop\:m-3 {
    margin: 0.75rem;
  }

  .desktop\:m-4 {
    margin: 1rem;
  }

  .desktop\:m-5 {
    margin: 1.25rem;
  }

  .desktop\:m-6 {
    margin: 1.5rem;
  }

  .desktop\:m-7 {
    margin: 1.75rem;
  }

  .desktop\:m-8 {
    margin: 2rem;
  }

  .desktop\:m-9 {
    margin: 2.25rem;
  }

  .desktop\:m-10 {
    margin: 2.5rem;
  }

  .desktop\:m-11 {
    margin: 2.75rem;
  }

  .desktop\:m-12 {
    margin: 3rem;
  }

  .desktop\:m-13 {
    margin: 3.25rem;
  }

  .desktop\:m-14 {
    margin: 3.5rem;
  }

  .desktop\:m-15 {
    margin: 3.75rem;
  }

  .desktop\:m-16 {
    margin: 4rem;
  }

  .desktop\:m-17 {
    margin: 4.25rem;
  }

  .desktop\:m-18 {
    margin: 4.5rem;
  }

  .desktop\:m-19 {
    margin: 4.75rem;
  }

  .desktop\:m-20 {
    margin: 5rem;
  }

  .desktop\:m-21 {
    margin: 5.25rem;
  }

  .desktop\:m-22 {
    margin: 5.5rem;
  }

  .desktop\:m-23 {
    margin: 5.75rem;
  }

  .desktop\:m-24 {
    margin: 6rem;
  }

  .desktop\:m-25 {
    margin: 6.25rem;
  }

  .desktop\:m-26 {
    margin: 6.5rem;
  }

  .desktop\:m-27 {
    margin: 6.75rem;
  }

  .desktop\:m-28 {
    margin: 7rem;
  }

  .desktop\:m-29 {
    margin: 7.25rem;
  }

  .desktop\:m-30 {
    margin: 7.5rem;
  }

  .desktop\:m-31 {
    margin: 7.75rem;
  }

  .desktop\:m-32 {
    margin: 8rem;
  }

  .desktop\:m-33 {
    margin: 8.25rem;
  }

  .desktop\:m-34 {
    margin: 8.5rem;
  }

  .desktop\:m-35 {
    margin: 8.75rem;
  }

  .desktop\:m-36 {
    margin: 9rem;
  }

  .desktop\:m-37 {
    margin: 9.25rem;
  }

  .desktop\:m-38 {
    margin: 9.5rem;
  }

  .desktop\:m-39 {
    margin: 9.75rem;
  }

  .desktop\:m-40 {
    margin: 10rem;
  }

  .desktop\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .desktop\:mx-0 {
    margin-left: 0rem;
    margin-right: 0rem;
  }

  .desktop\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .desktop\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .desktop\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .desktop\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .desktop\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .desktop\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .desktop\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .desktop\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .desktop\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .desktop\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .desktop\:mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .desktop\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .desktop\:mx-13 {
    margin-left: 3.25rem;
    margin-right: 3.25rem;
  }

  .desktop\:mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .desktop\:mx-15 {
    margin-left: 3.75rem;
    margin-right: 3.75rem;
  }

  .desktop\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .desktop\:mx-17 {
    margin-left: 4.25rem;
    margin-right: 4.25rem;
  }

  .desktop\:mx-18 {
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .desktop\:mx-19 {
    margin-left: 4.75rem;
    margin-right: 4.75rem;
  }

  .desktop\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .desktop\:mx-21 {
    margin-left: 5.25rem;
    margin-right: 5.25rem;
  }

  .desktop\:mx-22 {
    margin-left: 5.5rem;
    margin-right: 5.5rem;
  }

  .desktop\:mx-23 {
    margin-left: 5.75rem;
    margin-right: 5.75rem;
  }

  .desktop\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .desktop\:mx-25 {
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .desktop\:mx-26 {
    margin-left: 6.5rem;
    margin-right: 6.5rem;
  }

  .desktop\:mx-27 {
    margin-left: 6.75rem;
    margin-right: 6.75rem;
  }

  .desktop\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .desktop\:mx-29 {
    margin-left: 7.25rem;
    margin-right: 7.25rem;
  }

  .desktop\:mx-30 {
    margin-left: 7.5rem;
    margin-right: 7.5rem;
  }

  .desktop\:mx-31 {
    margin-left: 7.75rem;
    margin-right: 7.75rem;
  }

  .desktop\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .desktop\:mx-33 {
    margin-left: 8.25rem;
    margin-right: 8.25rem;
  }

  .desktop\:mx-34 {
    margin-left: 8.5rem;
    margin-right: 8.5rem;
  }

  .desktop\:mx-35 {
    margin-left: 8.75rem;
    margin-right: 8.75rem;
  }

  .desktop\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .desktop\:mx-37 {
    margin-left: 9.25rem;
    margin-right: 9.25rem;
  }

  .desktop\:mx-38 {
    margin-left: 9.5rem;
    margin-right: 9.5rem;
  }

  .desktop\:mx-39 {
    margin-left: 9.75rem;
    margin-right: 9.75rem;
  }

  .desktop\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .desktop\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .desktop\:my-0 {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .desktop\:my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .desktop\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .desktop\:my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .desktop\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .desktop\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .desktop\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .desktop\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .desktop\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .desktop\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .desktop\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .desktop\:my-11 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .desktop\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .desktop\:my-13 {
    margin-top: 3.25rem;
    margin-bottom: 3.25rem;
  }

  .desktop\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .desktop\:my-15 {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }

  .desktop\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .desktop\:my-17 {
    margin-top: 4.25rem;
    margin-bottom: 4.25rem;
  }

  .desktop\:my-18 {
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .desktop\:my-19 {
    margin-top: 4.75rem;
    margin-bottom: 4.75rem;
  }

  .desktop\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .desktop\:my-21 {
    margin-top: 5.25rem;
    margin-bottom: 5.25rem;
  }

  .desktop\:my-22 {
    margin-top: 5.5rem;
    margin-bottom: 5.5rem;
  }

  .desktop\:my-23 {
    margin-top: 5.75rem;
    margin-bottom: 5.75rem;
  }

  .desktop\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .desktop\:my-25 {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .desktop\:my-26 {
    margin-top: 6.5rem;
    margin-bottom: 6.5rem;
  }

  .desktop\:my-27 {
    margin-top: 6.75rem;
    margin-bottom: 6.75rem;
  }

  .desktop\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .desktop\:my-29 {
    margin-top: 7.25rem;
    margin-bottom: 7.25rem;
  }

  .desktop\:my-30 {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
  }

  .desktop\:my-31 {
    margin-top: 7.75rem;
    margin-bottom: 7.75rem;
  }

  .desktop\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .desktop\:my-33 {
    margin-top: 8.25rem;
    margin-bottom: 8.25rem;
  }

  .desktop\:my-34 {
    margin-top: 8.5rem;
    margin-bottom: 8.5rem;
  }

  .desktop\:my-35 {
    margin-top: 8.75rem;
    margin-bottom: 8.75rem;
  }

  .desktop\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .desktop\:my-37 {
    margin-top: 9.25rem;
    margin-bottom: 9.25rem;
  }

  .desktop\:my-38 {
    margin-top: 9.5rem;
    margin-bottom: 9.5rem;
  }

  .desktop\:my-39 {
    margin-top: 9.75rem;
    margin-bottom: 9.75rem;
  }

  .desktop\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .desktop\:mt-auto {
    margin-top: auto;
  }

  .desktop\:mt-0 {
    margin-top: 0rem;
  }

  .desktop\:mt-1 {
    margin-top: 0.25rem;
  }

  .desktop\:mt-2 {
    margin-top: 0.5rem;
  }

  .desktop\:mt-3 {
    margin-top: 0.75rem;
  }

  .desktop\:mt-4 {
    margin-top: 1rem;
  }

  .desktop\:mt-5 {
    margin-top: 1.25rem;
  }

  .desktop\:mt-6 {
    margin-top: 1.5rem;
  }

  .desktop\:mt-7 {
    margin-top: 1.75rem;
  }

  .desktop\:mt-8 {
    margin-top: 2rem;
  }

  .desktop\:mt-9 {
    margin-top: 2.25rem;
  }

  .desktop\:mt-10 {
    margin-top: 2.5rem;
  }

  .desktop\:mt-11 {
    margin-top: 2.75rem;
  }

  .desktop\:mt-12 {
    margin-top: 3rem;
  }

  .desktop\:mt-13 {
    margin-top: 3.25rem;
  }

  .desktop\:mt-14 {
    margin-top: 3.5rem;
  }

  .desktop\:mt-15 {
    margin-top: 3.75rem;
  }

  .desktop\:mt-16 {
    margin-top: 4rem;
  }

  .desktop\:mt-17 {
    margin-top: 4.25rem;
  }

  .desktop\:mt-18 {
    margin-top: 4.5rem;
  }

  .desktop\:mt-19 {
    margin-top: 4.75rem;
  }

  .desktop\:mt-20 {
    margin-top: 5rem;
  }

  .desktop\:mt-21 {
    margin-top: 5.25rem;
  }

  .desktop\:mt-22 {
    margin-top: 5.5rem;
  }

  .desktop\:mt-23 {
    margin-top: 5.75rem;
  }

  .desktop\:mt-24 {
    margin-top: 6rem;
  }

  .desktop\:mt-25 {
    margin-top: 6.25rem;
  }

  .desktop\:mt-26 {
    margin-top: 6.5rem;
  }

  .desktop\:mt-27 {
    margin-top: 6.75rem;
  }

  .desktop\:mt-28 {
    margin-top: 7rem;
  }

  .desktop\:mt-29 {
    margin-top: 7.25rem;
  }

  .desktop\:mt-30 {
    margin-top: 7.5rem;
  }

  .desktop\:mt-31 {
    margin-top: 7.75rem;
  }

  .desktop\:mt-32 {
    margin-top: 8rem;
  }

  .desktop\:mt-33 {
    margin-top: 8.25rem;
  }

  .desktop\:mt-34 {
    margin-top: 8.5rem;
  }

  .desktop\:mt-35 {
    margin-top: 8.75rem;
  }

  .desktop\:mt-36 {
    margin-top: 9rem;
  }

  .desktop\:mt-37 {
    margin-top: 9.25rem;
  }

  .desktop\:mt-38 {
    margin-top: 9.5rem;
  }

  .desktop\:mt-39 {
    margin-top: 9.75rem;
  }

  .desktop\:mt-40 {
    margin-top: 10rem;
  }

  .desktop\:mb-auto {
    margin-bottom: auto;
  }

  .desktop\:mb-0 {
    margin-bottom: 0rem;
  }

  .desktop\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .desktop\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .desktop\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .desktop\:mb-4 {
    margin-bottom: 1rem;
  }

  .desktop\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .desktop\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .desktop\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .desktop\:mb-8 {
    margin-bottom: 2rem;
  }

  .desktop\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .desktop\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .desktop\:mb-11 {
    margin-bottom: 2.75rem;
  }

  .desktop\:mb-12 {
    margin-bottom: 3rem;
  }

  .desktop\:mb-13 {
    margin-bottom: 3.25rem;
  }

  .desktop\:mb-14 {
    margin-bottom: 3.5rem;
  }

  .desktop\:mb-15 {
    margin-bottom: 3.75rem;
  }

  .desktop\:mb-16 {
    margin-bottom: 4rem;
  }

  .desktop\:mb-17 {
    margin-bottom: 4.25rem;
  }

  .desktop\:mb-18 {
    margin-bottom: 4.5rem;
  }

  .desktop\:mb-19 {
    margin-bottom: 4.75rem;
  }

  .desktop\:mb-20 {
    margin-bottom: 5rem;
  }

  .desktop\:mb-21 {
    margin-bottom: 5.25rem;
  }

  .desktop\:mb-22 {
    margin-bottom: 5.5rem;
  }

  .desktop\:mb-23 {
    margin-bottom: 5.75rem;
  }

  .desktop\:mb-24 {
    margin-bottom: 6rem;
  }

  .desktop\:mb-25 {
    margin-bottom: 6.25rem;
  }

  .desktop\:mb-26 {
    margin-bottom: 6.5rem;
  }

  .desktop\:mb-27 {
    margin-bottom: 6.75rem;
  }

  .desktop\:mb-28 {
    margin-bottom: 7rem;
  }

  .desktop\:mb-29 {
    margin-bottom: 7.25rem;
  }

  .desktop\:mb-30 {
    margin-bottom: 7.5rem;
  }

  .desktop\:mb-31 {
    margin-bottom: 7.75rem;
  }

  .desktop\:mb-32 {
    margin-bottom: 8rem;
  }

  .desktop\:mb-33 {
    margin-bottom: 8.25rem;
  }

  .desktop\:mb-34 {
    margin-bottom: 8.5rem;
  }

  .desktop\:mb-35 {
    margin-bottom: 8.75rem;
  }

  .desktop\:mb-36 {
    margin-bottom: 9rem;
  }

  .desktop\:mb-37 {
    margin-bottom: 9.25rem;
  }

  .desktop\:mb-38 {
    margin-bottom: 9.5rem;
  }

  .desktop\:mb-39 {
    margin-bottom: 9.75rem;
  }

  .desktop\:mb-40 {
    margin-bottom: 10rem;
  }

  .desktop\:ml-auto {
    margin-left: auto;
  }

  .desktop\:ml-0 {
    margin-left: 0rem;
  }

  .desktop\:ml-1 {
    margin-left: 0.25rem;
  }

  .desktop\:ml-2 {
    margin-left: 0.5rem;
  }

  .desktop\:ml-3 {
    margin-left: 0.75rem;
  }

  .desktop\:ml-4 {
    margin-left: 1rem;
  }

  .desktop\:ml-5 {
    margin-left: 1.25rem;
  }

  .desktop\:ml-6 {
    margin-left: 1.5rem;
  }

  .desktop\:ml-7 {
    margin-left: 1.75rem;
  }

  .desktop\:ml-8 {
    margin-left: 2rem;
  }

  .desktop\:ml-9 {
    margin-left: 2.25rem;
  }

  .desktop\:ml-10 {
    margin-left: 2.5rem;
  }

  .desktop\:ml-11 {
    margin-left: 2.75rem;
  }

  .desktop\:ml-12 {
    margin-left: 3rem;
  }

  .desktop\:ml-13 {
    margin-left: 3.25rem;
  }

  .desktop\:ml-14 {
    margin-left: 3.5rem;
  }

  .desktop\:ml-15 {
    margin-left: 3.75rem;
  }

  .desktop\:ml-16 {
    margin-left: 4rem;
  }

  .desktop\:ml-17 {
    margin-left: 4.25rem;
  }

  .desktop\:ml-18 {
    margin-left: 4.5rem;
  }

  .desktop\:ml-19 {
    margin-left: 4.75rem;
  }

  .desktop\:ml-20 {
    margin-left: 5rem;
  }

  .desktop\:ml-21 {
    margin-left: 5.25rem;
  }

  .desktop\:ml-22 {
    margin-left: 5.5rem;
  }

  .desktop\:ml-23 {
    margin-left: 5.75rem;
  }

  .desktop\:ml-24 {
    margin-left: 6rem;
  }

  .desktop\:ml-25 {
    margin-left: 6.25rem;
  }

  .desktop\:ml-26 {
    margin-left: 6.5rem;
  }

  .desktop\:ml-27 {
    margin-left: 6.75rem;
  }

  .desktop\:ml-28 {
    margin-left: 7rem;
  }

  .desktop\:ml-29 {
    margin-left: 7.25rem;
  }

  .desktop\:ml-30 {
    margin-left: 7.5rem;
  }

  .desktop\:ml-31 {
    margin-left: 7.75rem;
  }

  .desktop\:ml-32 {
    margin-left: 8rem;
  }

  .desktop\:ml-33 {
    margin-left: 8.25rem;
  }

  .desktop\:ml-34 {
    margin-left: 8.5rem;
  }

  .desktop\:ml-35 {
    margin-left: 8.75rem;
  }

  .desktop\:ml-36 {
    margin-left: 9rem;
  }

  .desktop\:ml-37 {
    margin-left: 9.25rem;
  }

  .desktop\:ml-38 {
    margin-left: 9.5rem;
  }

  .desktop\:ml-39 {
    margin-left: 9.75rem;
  }

  .desktop\:ml-40 {
    margin-left: 10rem;
  }

  .desktop\:mr-auto {
    margin-right: auto;
  }

  .desktop\:mr-0 {
    margin-right: 0rem;
  }

  .desktop\:mr-1 {
    margin-right: 0.25rem;
  }

  .desktop\:mr-2 {
    margin-right: 0.5rem;
  }

  .desktop\:mr-3 {
    margin-right: 0.75rem;
  }

  .desktop\:mr-4 {
    margin-right: 1rem;
  }

  .desktop\:mr-5 {
    margin-right: 1.25rem;
  }

  .desktop\:mr-6 {
    margin-right: 1.5rem;
  }

  .desktop\:mr-7 {
    margin-right: 1.75rem;
  }

  .desktop\:mr-8 {
    margin-right: 2rem;
  }

  .desktop\:mr-9 {
    margin-right: 2.25rem;
  }

  .desktop\:mr-10 {
    margin-right: 2.5rem;
  }

  .desktop\:mr-11 {
    margin-right: 2.75rem;
  }

  .desktop\:mr-12 {
    margin-right: 3rem;
  }

  .desktop\:mr-13 {
    margin-right: 3.25rem;
  }

  .desktop\:mr-14 {
    margin-right: 3.5rem;
  }

  .desktop\:mr-15 {
    margin-right: 3.75rem;
  }

  .desktop\:mr-16 {
    margin-right: 4rem;
  }

  .desktop\:mr-17 {
    margin-right: 4.25rem;
  }

  .desktop\:mr-18 {
    margin-right: 4.5rem;
  }

  .desktop\:mr-19 {
    margin-right: 4.75rem;
  }

  .desktop\:mr-20 {
    margin-right: 5rem;
  }

  .desktop\:mr-21 {
    margin-right: 5.25rem;
  }

  .desktop\:mr-22 {
    margin-right: 5.5rem;
  }

  .desktop\:mr-23 {
    margin-right: 5.75rem;
  }

  .desktop\:mr-24 {
    margin-right: 6rem;
  }

  .desktop\:mr-25 {
    margin-right: 6.25rem;
  }

  .desktop\:mr-26 {
    margin-right: 6.5rem;
  }

  .desktop\:mr-27 {
    margin-right: 6.75rem;
  }

  .desktop\:mr-28 {
    margin-right: 7rem;
  }

  .desktop\:mr-29 {
    margin-right: 7.25rem;
  }

  .desktop\:mr-30 {
    margin-right: 7.5rem;
  }

  .desktop\:mr-31 {
    margin-right: 7.75rem;
  }

  .desktop\:mr-32 {
    margin-right: 8rem;
  }

  .desktop\:mr-33 {
    margin-right: 8.25rem;
  }

  .desktop\:mr-34 {
    margin-right: 8.5rem;
  }

  .desktop\:mr-35 {
    margin-right: 8.75rem;
  }

  .desktop\:mr-36 {
    margin-right: 9rem;
  }

  .desktop\:mr-37 {
    margin-right: 9.25rem;
  }

  .desktop\:mr-38 {
    margin-right: 9.5rem;
  }

  .desktop\:mr-39 {
    margin-right: 9.75rem;
  }

  .desktop\:mr-40 {
    margin-right: 10rem;
  }
}

@media (min-width: 1480px) {
  .desktopLg\:color-black {
    color: #000;
  }

  .desktopLg\:color-white {
    color: #fff;
  }

  .desktopLg\:color-red {
    color: #ff1515;
  }

  .desktopLg\:color-dark {
    color: #292527;
  }

  .desktopLg\:color-green {
    color: #00cd46;
  }

  .desktopLg\:color-grey {
    color: #aaa;
  }

  .desktopLg\:color-grey2 {
    color: #e9e9e9;
  }

  .desktopLg\:color-orange {
    color: #ff8515;
  }

  .desktopLg\:color-orange2 {
    color: #ee6400;
  }

  .desktopLg\:bg-black {
    background-color: #000;
  }

  .desktopLg\:bg-white {
    background-color: #fff;
  }

  .desktopLg\:bg-red {
    background-color: #ff1515;
  }

  .desktopLg\:bg-dark {
    background-color: #292527;
  }

  .desktopLg\:bg-green {
    background-color: #00cd46;
  }

  .desktopLg\:bg-grey {
    background-color: #aaa;
  }

  .desktopLg\:bg-grey2 {
    background-color: #e9e9e9;
  }

  .desktopLg\:bg-orange {
    background-color: #ff8515;
  }

  .desktopLg\:bg-orange2 {
    background-color: #ee6400;
  }

  .desktopLg\:hover:color-black:hover {
    color: #000;
  }

  .desktopLg\:hover:color-white:hover {
    color: #fff;
  }

  .desktopLg\:hover:color-red:hover {
    color: #ff1515;
  }

  .desktopLg\:hover:color-dark:hover {
    color: #292527;
  }

  .desktopLg\:hover:color-green:hover {
    color: #00cd46;
  }

  .desktopLg\:hover:color-grey:hover {
    color: #aaa;
  }

  .desktopLg\:hover:color-grey2:hover {
    color: #e9e9e9;
  }

  .desktopLg\:hover:color-orange:hover {
    color: #ff8515;
  }

  .desktopLg\:hover:color-orange2:hover {
    color: #ee6400;
  }

  .desktopLg\:hover:bg-black:hover {
    background-color: #000;
  }

  .desktopLg\:hover:bg-white:hover {
    background-color: #fff;
  }

  .desktopLg\:hover:bg-red:hover {
    background-color: #ff1515;
  }

  .desktopLg\:hover:bg-dark:hover {
    background-color: #292527;
  }

  .desktopLg\:hover:bg-green:hover {
    background-color: #00cd46;
  }

  .desktopLg\:hover:bg-grey:hover {
    background-color: #aaa;
  }

  .desktopLg\:hover:bg-grey2:hover {
    background-color: #e9e9e9;
  }

  .desktopLg\:hover:bg-orange:hover {
    background-color: #ff8515;
  }

  .desktopLg\:hover:bg-orange2:hover {
    background-color: #ee6400;
  }

  .desktopLg\:font-size-12 {
    font-size: 0.75rem;
  }

  .desktopLg\:font-size-14 {
    font-size: 0.875rem;
  }

  .desktopLg\:font-size-16 {
    font-size: 1rem;
  }

  .desktopLg\:font-size-18 {
    font-size: 1.125rem;
  }

  .desktopLg\:font-size-20 {
    font-size: 1.25rem;
  }

  .desktopLg\:font-size-24 {
    font-size: 1.5rem;
  }

  .desktopLg\:font-size-28 {
    font-size: 1.75rem;
  }

  .desktopLg\:font-size-32 {
    font-size: 2rem;
  }

  .desktopLg\:font-size-inherit {
    font-size: inherit;
  }

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

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

  .desktopLg\:text-align-right {
    text-align: right;
  }

  .desktopLg\:text-align-justify {
    text-align: justify;
  }

  .desktopLg\:position-static {
    position: static;
  }

  .desktopLg\:position-relative {
    position: relative;
  }

  .desktopLg\:position-absolute {
    position: absolute;
  }

  .desktopLg\:position-fixed {
    position: fixed;
  }

  .desktopLg\:display-none {
    display: none;
  }

  .desktopLg\:display-block {
    display: block;
  }

  .desktopLg\:display-inline-block {
    display: inline-block;
  }

  .desktopLg\:display-inline {
    display: inline;
  }

  .desktopLg\:display-flex {
    display: flex;
  }

  .desktopLg\:display-inline-flex {
    display: inline-flex;
  }

  .desktopLg\:flex {
    display: flex;
  }

  .desktopLg\:inline-flex {
    display: inline-flex;
  }

  .desktopLg\:flex-row {
    flex-direction: row;
  }

  .desktopLg\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .desktopLg\:flex-col {
    flex-direction: column;
  }

  .desktopLg\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .desktopLg\:items-stretch {
    align-items: stretch;
  }

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

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

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

  .desktopLg\:items-baseline {
    align-items: baseline;
  }

  .desktopLg\:self-stretch {
    align-self: stretch;
  }

  .desktopLg\:self-start {
    align-self: flex-start;
  }

  .desktopLg\:self-center {
    align-self: center;
  }

  .desktopLg\:self-end {
    align-self: flex-end;
  }

  .desktopLg\:self-baseline {
    align-self: baseline;
  }

  .desktopLg\:content-start {
    align-content: flex-start;
  }

  .desktopLg\:content-center {
    align-content: center;
  }

  .desktopLg\:content-end {
    align-content: flex-end;
  }

  .desktopLg\:content-between {
    align-content: space-between;
  }

  .desktopLg\:content-around {
    align-content: space-around;
  }

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

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

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

  .desktopLg\:justify-between {
    justify-content: space-between;
  }

  .desktopLg\:justify-around {
    justify-content: space-around;
  }

  .desktopLg\:flex-no-wrap {
    flex-wrap: nowrap;
  }

  .desktopLg\:flex-wrap {
    flex-wrap: wrap;
  }

  .desktopLg\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .desktopLg\:flex-grow-1 {
    flex-grow: 1;
  }

  .desktopLg\:flex-shrink-0 {
    flex-shrink: 0;
  }

  .desktopLg\:is-col_0 {
    width: 0%;
  }

  .desktopLg\:is-col_1 {
    width: 8.3333333333%;
  }

  .desktopLg\:is-col_2 {
    width: 16.6666666667%;
  }

  .desktopLg\:is-col_3 {
    width: 25%;
  }

  .desktopLg\:is-col_4 {
    width: 33.3333333333%;
  }

  .desktopLg\:is-col_5 {
    width: 41.6666666667%;
  }

  .desktopLg\:is-col_6 {
    width: 50%;
  }

  .desktopLg\:is-col_7 {
    width: 58.3333333333%;
  }

  .desktopLg\:is-col_8 {
    width: 66.6666666667%;
  }

  .desktopLg\:is-col_9 {
    width: 75%;
  }

  .desktopLg\:is-col_10 {
    width: 83.3333333333%;
  }

  .desktopLg\:is-col_11 {
    width: 91.6666666667%;
  }

  .desktopLg\:is-col_12 {
    width: 100%;
  }

  .desktopLg\:is-col-offset_0 {
    margin-left: 0%;
  }

  .desktopLg\:is-col-offset_1 {
    margin-left: 8.3333333333%;
  }

  .desktopLg\:is-col-offset_2 {
    margin-left: 16.6666666667%;
  }

  .desktopLg\:is-col-offset_3 {
    margin-left: 25%;
  }

  .desktopLg\:is-col-offset_4 {
    margin-left: 33.3333333333%;
  }

  .desktopLg\:is-col-offset_5 {
    margin-left: 41.6666666667%;
  }

  .desktopLg\:is-col-offset_6 {
    margin-left: 50%;
  }

  .desktopLg\:is-col-offset_7 {
    margin-left: 58.3333333333%;
  }

  .desktopLg\:is-col-offset_8 {
    margin-left: 66.6666666667%;
  }

  .desktopLg\:is-col-offset_9 {
    margin-left: 75%;
  }

  .desktopLg\:is-col-offset_10 {
    margin-left: 83.3333333333%;
  }

  .desktopLg\:is-col-offset_11 {
    margin-left: 91.6666666667%;
  }

  .desktopLg\:is-col-offset_12 {
    margin-left: 100%;
  }

  .desktopLg\:p-auto {
    padding: auto;
  }

  .desktopLg\:p-0 {
    padding: 0rem;
  }

  .desktopLg\:p-1 {
    padding: 0.25rem;
  }

  .desktopLg\:p-2 {
    padding: 0.5rem;
  }

  .desktopLg\:p-3 {
    padding: 0.75rem;
  }

  .desktopLg\:p-4 {
    padding: 1rem;
  }

  .desktopLg\:p-5 {
    padding: 1.25rem;
  }

  .desktopLg\:p-6 {
    padding: 1.5rem;
  }

  .desktopLg\:p-7 {
    padding: 1.75rem;
  }

  .desktopLg\:p-8 {
    padding: 2rem;
  }

  .desktopLg\:p-9 {
    padding: 2.25rem;
  }

  .desktopLg\:p-10 {
    padding: 2.5rem;
  }

  .desktopLg\:p-11 {
    padding: 2.75rem;
  }

  .desktopLg\:p-12 {
    padding: 3rem;
  }

  .desktopLg\:p-13 {
    padding: 3.25rem;
  }

  .desktopLg\:p-14 {
    padding: 3.5rem;
  }

  .desktopLg\:p-15 {
    padding: 3.75rem;
  }

  .desktopLg\:p-16 {
    padding: 4rem;
  }

  .desktopLg\:p-17 {
    padding: 4.25rem;
  }

  .desktopLg\:p-18 {
    padding: 4.5rem;
  }

  .desktopLg\:p-19 {
    padding: 4.75rem;
  }

  .desktopLg\:p-20 {
    padding: 5rem;
  }

  .desktopLg\:p-21 {
    padding: 5.25rem;
  }

  .desktopLg\:p-22 {
    padding: 5.5rem;
  }

  .desktopLg\:p-23 {
    padding: 5.75rem;
  }

  .desktopLg\:p-24 {
    padding: 6rem;
  }

  .desktopLg\:p-25 {
    padding: 6.25rem;
  }

  .desktopLg\:p-26 {
    padding: 6.5rem;
  }

  .desktopLg\:p-27 {
    padding: 6.75rem;
  }

  .desktopLg\:p-28 {
    padding: 7rem;
  }

  .desktopLg\:p-29 {
    padding: 7.25rem;
  }

  .desktopLg\:p-30 {
    padding: 7.5rem;
  }

  .desktopLg\:p-31 {
    padding: 7.75rem;
  }

  .desktopLg\:p-32 {
    padding: 8rem;
  }

  .desktopLg\:p-33 {
    padding: 8.25rem;
  }

  .desktopLg\:p-34 {
    padding: 8.5rem;
  }

  .desktopLg\:p-35 {
    padding: 8.75rem;
  }

  .desktopLg\:p-36 {
    padding: 9rem;
  }

  .desktopLg\:p-37 {
    padding: 9.25rem;
  }

  .desktopLg\:p-38 {
    padding: 9.5rem;
  }

  .desktopLg\:p-39 {
    padding: 9.75rem;
  }

  .desktopLg\:p-40 {
    padding: 10rem;
  }

  .desktopLg\:px-auto {
    padding-left: auto;
    padding-right: auto;
  }

  .desktopLg\:px-0 {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .desktopLg\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .desktopLg\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .desktopLg\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .desktopLg\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .desktopLg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .desktopLg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .desktopLg\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .desktopLg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .desktopLg\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .desktopLg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .desktopLg\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .desktopLg\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .desktopLg\:px-13 {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }

  .desktopLg\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .desktopLg\:px-15 {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

  .desktopLg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .desktopLg\:px-17 {
    padding-left: 4.25rem;
    padding-right: 4.25rem;
  }

  .desktopLg\:px-18 {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }

  .desktopLg\:px-19 {
    padding-left: 4.75rem;
    padding-right: 4.75rem;
  }

  .desktopLg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .desktopLg\:px-21 {
    padding-left: 5.25rem;
    padding-right: 5.25rem;
  }

  .desktopLg\:px-22 {
    padding-left: 5.5rem;
    padding-right: 5.5rem;
  }

  .desktopLg\:px-23 {
    padding-left: 5.75rem;
    padding-right: 5.75rem;
  }

  .desktopLg\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .desktopLg\:px-25 {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }

  .desktopLg\:px-26 {
    padding-left: 6.5rem;
    padding-right: 6.5rem;
  }

  .desktopLg\:px-27 {
    padding-left: 6.75rem;
    padding-right: 6.75rem;
  }

  .desktopLg\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .desktopLg\:px-29 {
    padding-left: 7.25rem;
    padding-right: 7.25rem;
  }

  .desktopLg\:px-30 {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }

  .desktopLg\:px-31 {
    padding-left: 7.75rem;
    padding-right: 7.75rem;
  }

  .desktopLg\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .desktopLg\:px-33 {
    padding-left: 8.25rem;
    padding-right: 8.25rem;
  }

  .desktopLg\:px-34 {
    padding-left: 8.5rem;
    padding-right: 8.5rem;
  }

  .desktopLg\:px-35 {
    padding-left: 8.75rem;
    padding-right: 8.75rem;
  }

  .desktopLg\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .desktopLg\:px-37 {
    padding-left: 9.25rem;
    padding-right: 9.25rem;
  }

  .desktopLg\:px-38 {
    padding-left: 9.5rem;
    padding-right: 9.5rem;
  }

  .desktopLg\:px-39 {
    padding-left: 9.75rem;
    padding-right: 9.75rem;
  }

  .desktopLg\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .desktopLg\:py-auto {
    padding-top: auto;
    padding-bottom: auto;
  }

  .desktopLg\:py-0 {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .desktopLg\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .desktopLg\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .desktopLg\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .desktopLg\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .desktopLg\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .desktopLg\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .desktopLg\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .desktopLg\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .desktopLg\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .desktopLg\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .desktopLg\:py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .desktopLg\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .desktopLg\:py-13 {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .desktopLg\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .desktopLg\:py-15 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .desktopLg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .desktopLg\:py-17 {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .desktopLg\:py-18 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .desktopLg\:py-19 {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .desktopLg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .desktopLg\:py-21 {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .desktopLg\:py-22 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .desktopLg\:py-23 {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
  }

  .desktopLg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .desktopLg\:py-25 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }

  .desktopLg\:py-26 {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .desktopLg\:py-27 {
    padding-top: 6.75rem;
    padding-bottom: 6.75rem;
  }

  .desktopLg\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .desktopLg\:py-29 {
    padding-top: 7.25rem;
    padding-bottom: 7.25rem;
  }

  .desktopLg\:py-30 {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }

  .desktopLg\:py-31 {
    padding-top: 7.75rem;
    padding-bottom: 7.75rem;
  }

  .desktopLg\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .desktopLg\:py-33 {
    padding-top: 8.25rem;
    padding-bottom: 8.25rem;
  }

  .desktopLg\:py-34 {
    padding-top: 8.5rem;
    padding-bottom: 8.5rem;
  }

  .desktopLg\:py-35 {
    padding-top: 8.75rem;
    padding-bottom: 8.75rem;
  }

  .desktopLg\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .desktopLg\:py-37 {
    padding-top: 9.25rem;
    padding-bottom: 9.25rem;
  }

  .desktopLg\:py-38 {
    padding-top: 9.5rem;
    padding-bottom: 9.5rem;
  }

  .desktopLg\:py-39 {
    padding-top: 9.75rem;
    padding-bottom: 9.75rem;
  }

  .desktopLg\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .desktopLg\:pt-auto {
    padding-top: auto;
  }

  .desktopLg\:pt-0 {
    padding-top: 0rem;
  }

  .desktopLg\:pt-1 {
    padding-top: 0.25rem;
  }

  .desktopLg\:pt-2 {
    padding-top: 0.5rem;
  }

  .desktopLg\:pt-3 {
    padding-top: 0.75rem;
  }

  .desktopLg\:pt-4 {
    padding-top: 1rem;
  }

  .desktopLg\:pt-5 {
    padding-top: 1.25rem;
  }

  .desktopLg\:pt-6 {
    padding-top: 1.5rem;
  }

  .desktopLg\:pt-7 {
    padding-top: 1.75rem;
  }

  .desktopLg\:pt-8 {
    padding-top: 2rem;
  }

  .desktopLg\:pt-9 {
    padding-top: 2.25rem;
  }

  .desktopLg\:pt-10 {
    padding-top: 2.5rem;
  }

  .desktopLg\:pt-11 {
    padding-top: 2.75rem;
  }

  .desktopLg\:pt-12 {
    padding-top: 3rem;
  }

  .desktopLg\:pt-13 {
    padding-top: 3.25rem;
  }

  .desktopLg\:pt-14 {
    padding-top: 3.5rem;
  }

  .desktopLg\:pt-15 {
    padding-top: 3.75rem;
  }

  .desktopLg\:pt-16 {
    padding-top: 4rem;
  }

  .desktopLg\:pt-17 {
    padding-top: 4.25rem;
  }

  .desktopLg\:pt-18 {
    padding-top: 4.5rem;
  }

  .desktopLg\:pt-19 {
    padding-top: 4.75rem;
  }

  .desktopLg\:pt-20 {
    padding-top: 5rem;
  }

  .desktopLg\:pt-21 {
    padding-top: 5.25rem;
  }

  .desktopLg\:pt-22 {
    padding-top: 5.5rem;
  }

  .desktopLg\:pt-23 {
    padding-top: 5.75rem;
  }

  .desktopLg\:pt-24 {
    padding-top: 6rem;
  }

  .desktopLg\:pt-25 {
    padding-top: 6.25rem;
  }

  .desktopLg\:pt-26 {
    padding-top: 6.5rem;
  }

  .desktopLg\:pt-27 {
    padding-top: 6.75rem;
  }

  .desktopLg\:pt-28 {
    padding-top: 7rem;
  }

  .desktopLg\:pt-29 {
    padding-top: 7.25rem;
  }

  .desktopLg\:pt-30 {
    padding-top: 7.5rem;
  }

  .desktopLg\:pt-31 {
    padding-top: 7.75rem;
  }

  .desktopLg\:pt-32 {
    padding-top: 8rem;
  }

  .desktopLg\:pt-33 {
    padding-top: 8.25rem;
  }

  .desktopLg\:pt-34 {
    padding-top: 8.5rem;
  }

  .desktopLg\:pt-35 {
    padding-top: 8.75rem;
  }

  .desktopLg\:pt-36 {
    padding-top: 9rem;
  }

  .desktopLg\:pt-37 {
    padding-top: 9.25rem;
  }

  .desktopLg\:pt-38 {
    padding-top: 9.5rem;
  }

  .desktopLg\:pt-39 {
    padding-top: 9.75rem;
  }

  .desktopLg\:pt-40 {
    padding-top: 10rem;
  }

  .desktopLg\:pb-auto {
    padding-bottom: auto;
  }

  .desktopLg\:pb-0 {
    padding-bottom: 0rem;
  }

  .desktopLg\:pb-1 {
    padding-bottom: 0.25rem;
  }

  .desktopLg\:pb-2 {
    padding-bottom: 0.5rem;
  }

  .desktopLg\:pb-3 {
    padding-bottom: 0.75rem;
  }

  .desktopLg\:pb-4 {
    padding-bottom: 1rem;
  }

  .desktopLg\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .desktopLg\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .desktopLg\:pb-7 {
    padding-bottom: 1.75rem;
  }

  .desktopLg\:pb-8 {
    padding-bottom: 2rem;
  }

  .desktopLg\:pb-9 {
    padding-bottom: 2.25rem;
  }

  .desktopLg\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .desktopLg\:pb-11 {
    padding-bottom: 2.75rem;
  }

  .desktopLg\:pb-12 {
    padding-bottom: 3rem;
  }

  .desktopLg\:pb-13 {
    padding-bottom: 3.25rem;
  }

  .desktopLg\:pb-14 {
    padding-bottom: 3.5rem;
  }

  .desktopLg\:pb-15 {
    padding-bottom: 3.75rem;
  }

  .desktopLg\:pb-16 {
    padding-bottom: 4rem;
  }

  .desktopLg\:pb-17 {
    padding-bottom: 4.25rem;
  }

  .desktopLg\:pb-18 {
    padding-bottom: 4.5rem;
  }

  .desktopLg\:pb-19 {
    padding-bottom: 4.75rem;
  }

  .desktopLg\:pb-20 {
    padding-bottom: 5rem;
  }

  .desktopLg\:pb-21 {
    padding-bottom: 5.25rem;
  }

  .desktopLg\:pb-22 {
    padding-bottom: 5.5rem;
  }

  .desktopLg\:pb-23 {
    padding-bottom: 5.75rem;
  }

  .desktopLg\:pb-24 {
    padding-bottom: 6rem;
  }

  .desktopLg\:pb-25 {
    padding-bottom: 6.25rem;
  }

  .desktopLg\:pb-26 {
    padding-bottom: 6.5rem;
  }

  .desktopLg\:pb-27 {
    padding-bottom: 6.75rem;
  }

  .desktopLg\:pb-28 {
    padding-bottom: 7rem;
  }

  .desktopLg\:pb-29 {
    padding-bottom: 7.25rem;
  }

  .desktopLg\:pb-30 {
    padding-bottom: 7.5rem;
  }

  .desktopLg\:pb-31 {
    padding-bottom: 7.75rem;
  }

  .desktopLg\:pb-32 {
    padding-bottom: 8rem;
  }

  .desktopLg\:pb-33 {
    padding-bottom: 8.25rem;
  }

  .desktopLg\:pb-34 {
    padding-bottom: 8.5rem;
  }

  .desktopLg\:pb-35 {
    padding-bottom: 8.75rem;
  }

  .desktopLg\:pb-36 {
    padding-bottom: 9rem;
  }

  .desktopLg\:pb-37 {
    padding-bottom: 9.25rem;
  }

  .desktopLg\:pb-38 {
    padding-bottom: 9.5rem;
  }

  .desktopLg\:pb-39 {
    padding-bottom: 9.75rem;
  }

  .desktopLg\:pb-40 {
    padding-bottom: 10rem;
  }

  .desktopLg\:pl-auto {
    padding-left: auto;
  }

  .desktopLg\:pl-0 {
    padding-left: 0rem;
  }

  .desktopLg\:pl-1 {
    padding-left: 0.25rem;
  }

  .desktopLg\:pl-2 {
    padding-left: 0.5rem;
  }

  .desktopLg\:pl-3 {
    padding-left: 0.75rem;
  }

  .desktopLg\:pl-4 {
    padding-left: 1rem;
  }

  .desktopLg\:pl-5 {
    padding-left: 1.25rem;
  }

  .desktopLg\:pl-6 {
    padding-left: 1.5rem;
  }

  .desktopLg\:pl-7 {
    padding-left: 1.75rem;
  }

  .desktopLg\:pl-8 {
    padding-left: 2rem;
  }

  .desktopLg\:pl-9 {
    padding-left: 2.25rem;
  }

  .desktopLg\:pl-10 {
    padding-left: 2.5rem;
  }

  .desktopLg\:pl-11 {
    padding-left: 2.75rem;
  }

  .desktopLg\:pl-12 {
    padding-left: 3rem;
  }

  .desktopLg\:pl-13 {
    padding-left: 3.25rem;
  }

  .desktopLg\:pl-14 {
    padding-left: 3.5rem;
  }

  .desktopLg\:pl-15 {
    padding-left: 3.75rem;
  }

  .desktopLg\:pl-16 {
    padding-left: 4rem;
  }

  .desktopLg\:pl-17 {
    padding-left: 4.25rem;
  }

  .desktopLg\:pl-18 {
    padding-left: 4.5rem;
  }

  .desktopLg\:pl-19 {
    padding-left: 4.75rem;
  }

  .desktopLg\:pl-20 {
    padding-left: 5rem;
  }

  .desktopLg\:pl-21 {
    padding-left: 5.25rem;
  }

  .desktopLg\:pl-22 {
    padding-left: 5.5rem;
  }

  .desktopLg\:pl-23 {
    padding-left: 5.75rem;
  }

  .desktopLg\:pl-24 {
    padding-left: 6rem;
  }

  .desktopLg\:pl-25 {
    padding-left: 6.25rem;
  }

  .desktopLg\:pl-26 {
    padding-left: 6.5rem;
  }

  .desktopLg\:pl-27 {
    padding-left: 6.75rem;
  }

  .desktopLg\:pl-28 {
    padding-left: 7rem;
  }

  .desktopLg\:pl-29 {
    padding-left: 7.25rem;
  }

  .desktopLg\:pl-30 {
    padding-left: 7.5rem;
  }

  .desktopLg\:pl-31 {
    padding-left: 7.75rem;
  }

  .desktopLg\:pl-32 {
    padding-left: 8rem;
  }

  .desktopLg\:pl-33 {
    padding-left: 8.25rem;
  }

  .desktopLg\:pl-34 {
    padding-left: 8.5rem;
  }

  .desktopLg\:pl-35 {
    padding-left: 8.75rem;
  }

  .desktopLg\:pl-36 {
    padding-left: 9rem;
  }

  .desktopLg\:pl-37 {
    padding-left: 9.25rem;
  }

  .desktopLg\:pl-38 {
    padding-left: 9.5rem;
  }

  .desktopLg\:pl-39 {
    padding-left: 9.75rem;
  }

  .desktopLg\:pl-40 {
    padding-left: 10rem;
  }

  .desktopLg\:pr-auto {
    padding-right: auto;
  }

  .desktopLg\:pr-0 {
    padding-right: 0rem;
  }

  .desktopLg\:pr-1 {
    padding-right: 0.25rem;
  }

  .desktopLg\:pr-2 {
    padding-right: 0.5rem;
  }

  .desktopLg\:pr-3 {
    padding-right: 0.75rem;
  }

  .desktopLg\:pr-4 {
    padding-right: 1rem;
  }

  .desktopLg\:pr-5 {
    padding-right: 1.25rem;
  }

  .desktopLg\:pr-6 {
    padding-right: 1.5rem;
  }

  .desktopLg\:pr-7 {
    padding-right: 1.75rem;
  }

  .desktopLg\:pr-8 {
    padding-right: 2rem;
  }

  .desktopLg\:pr-9 {
    padding-right: 2.25rem;
  }

  .desktopLg\:pr-10 {
    padding-right: 2.5rem;
  }

  .desktopLg\:pr-11 {
    padding-right: 2.75rem;
  }

  .desktopLg\:pr-12 {
    padding-right: 3rem;
  }

  .desktopLg\:pr-13 {
    padding-right: 3.25rem;
  }

  .desktopLg\:pr-14 {
    padding-right: 3.5rem;
  }

  .desktopLg\:pr-15 {
    padding-right: 3.75rem;
  }

  .desktopLg\:pr-16 {
    padding-right: 4rem;
  }

  .desktopLg\:pr-17 {
    padding-right: 4.25rem;
  }

  .desktopLg\:pr-18 {
    padding-right: 4.5rem;
  }

  .desktopLg\:pr-19 {
    padding-right: 4.75rem;
  }

  .desktopLg\:pr-20 {
    padding-right: 5rem;
  }

  .desktopLg\:pr-21 {
    padding-right: 5.25rem;
  }

  .desktopLg\:pr-22 {
    padding-right: 5.5rem;
  }

  .desktopLg\:pr-23 {
    padding-right: 5.75rem;
  }

  .desktopLg\:pr-24 {
    padding-right: 6rem;
  }

  .desktopLg\:pr-25 {
    padding-right: 6.25rem;
  }

  .desktopLg\:pr-26 {
    padding-right: 6.5rem;
  }

  .desktopLg\:pr-27 {
    padding-right: 6.75rem;
  }

  .desktopLg\:pr-28 {
    padding-right: 7rem;
  }

  .desktopLg\:pr-29 {
    padding-right: 7.25rem;
  }

  .desktopLg\:pr-30 {
    padding-right: 7.5rem;
  }

  .desktopLg\:pr-31 {
    padding-right: 7.75rem;
  }

  .desktopLg\:pr-32 {
    padding-right: 8rem;
  }

  .desktopLg\:pr-33 {
    padding-right: 8.25rem;
  }

  .desktopLg\:pr-34 {
    padding-right: 8.5rem;
  }

  .desktopLg\:pr-35 {
    padding-right: 8.75rem;
  }

  .desktopLg\:pr-36 {
    padding-right: 9rem;
  }

  .desktopLg\:pr-37 {
    padding-right: 9.25rem;
  }

  .desktopLg\:pr-38 {
    padding-right: 9.5rem;
  }

  .desktopLg\:pr-39 {
    padding-right: 9.75rem;
  }

  .desktopLg\:pr-40 {
    padding-right: 10rem;
  }

  .desktopLg\:m-auto {
    margin: auto;
  }

  .desktopLg\:m-0 {
    margin: 0rem;
  }

  .desktopLg\:m-1 {
    margin: 0.25rem;
  }

  .desktopLg\:m-2 {
    margin: 0.5rem;
  }

  .desktopLg\:m-3 {
    margin: 0.75rem;
  }

  .desktopLg\:m-4 {
    margin: 1rem;
  }

  .desktopLg\:m-5 {
    margin: 1.25rem;
  }

  .desktopLg\:m-6 {
    margin: 1.5rem;
  }

  .desktopLg\:m-7 {
    margin: 1.75rem;
  }

  .desktopLg\:m-8 {
    margin: 2rem;
  }

  .desktopLg\:m-9 {
    margin: 2.25rem;
  }

  .desktopLg\:m-10 {
    margin: 2.5rem;
  }

  .desktopLg\:m-11 {
    margin: 2.75rem;
  }

  .desktopLg\:m-12 {
    margin: 3rem;
  }

  .desktopLg\:m-13 {
    margin: 3.25rem;
  }

  .desktopLg\:m-14 {
    margin: 3.5rem;
  }

  .desktopLg\:m-15 {
    margin: 3.75rem;
  }

  .desktopLg\:m-16 {
    margin: 4rem;
  }

  .desktopLg\:m-17 {
    margin: 4.25rem;
  }

  .desktopLg\:m-18 {
    margin: 4.5rem;
  }

  .desktopLg\:m-19 {
    margin: 4.75rem;
  }

  .desktopLg\:m-20 {
    margin: 5rem;
  }

  .desktopLg\:m-21 {
    margin: 5.25rem;
  }

  .desktopLg\:m-22 {
    margin: 5.5rem;
  }

  .desktopLg\:m-23 {
    margin: 5.75rem;
  }

  .desktopLg\:m-24 {
    margin: 6rem;
  }

  .desktopLg\:m-25 {
    margin: 6.25rem;
  }

  .desktopLg\:m-26 {
    margin: 6.5rem;
  }

  .desktopLg\:m-27 {
    margin: 6.75rem;
  }

  .desktopLg\:m-28 {
    margin: 7rem;
  }

  .desktopLg\:m-29 {
    margin: 7.25rem;
  }

  .desktopLg\:m-30 {
    margin: 7.5rem;
  }

  .desktopLg\:m-31 {
    margin: 7.75rem;
  }

  .desktopLg\:m-32 {
    margin: 8rem;
  }

  .desktopLg\:m-33 {
    margin: 8.25rem;
  }

  .desktopLg\:m-34 {
    margin: 8.5rem;
  }

  .desktopLg\:m-35 {
    margin: 8.75rem;
  }

  .desktopLg\:m-36 {
    margin: 9rem;
  }

  .desktopLg\:m-37 {
    margin: 9.25rem;
  }

  .desktopLg\:m-38 {
    margin: 9.5rem;
  }

  .desktopLg\:m-39 {
    margin: 9.75rem;
  }

  .desktopLg\:m-40 {
    margin: 10rem;
  }

  .desktopLg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .desktopLg\:mx-0 {
    margin-left: 0rem;
    margin-right: 0rem;
  }

  .desktopLg\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .desktopLg\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .desktopLg\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .desktopLg\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .desktopLg\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .desktopLg\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .desktopLg\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .desktopLg\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .desktopLg\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .desktopLg\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .desktopLg\:mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .desktopLg\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .desktopLg\:mx-13 {
    margin-left: 3.25rem;
    margin-right: 3.25rem;
  }

  .desktopLg\:mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .desktopLg\:mx-15 {
    margin-left: 3.75rem;
    margin-right: 3.75rem;
  }

  .desktopLg\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .desktopLg\:mx-17 {
    margin-left: 4.25rem;
    margin-right: 4.25rem;
  }

  .desktopLg\:mx-18 {
    margin-left: 4.5rem;
    margin-right: 4.5rem;
  }

  .desktopLg\:mx-19 {
    margin-left: 4.75rem;
    margin-right: 4.75rem;
  }

  .desktopLg\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .desktopLg\:mx-21 {
    margin-left: 5.25rem;
    margin-right: 5.25rem;
  }

  .desktopLg\:mx-22 {
    margin-left: 5.5rem;
    margin-right: 5.5rem;
  }

  .desktopLg\:mx-23 {
    margin-left: 5.75rem;
    margin-right: 5.75rem;
  }

  .desktopLg\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .desktopLg\:mx-25 {
    margin-left: 6.25rem;
    margin-right: 6.25rem;
  }

  .desktopLg\:mx-26 {
    margin-left: 6.5rem;
    margin-right: 6.5rem;
  }

  .desktopLg\:mx-27 {
    margin-left: 6.75rem;
    margin-right: 6.75rem;
  }

  .desktopLg\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .desktopLg\:mx-29 {
    margin-left: 7.25rem;
    margin-right: 7.25rem;
  }

  .desktopLg\:mx-30 {
    margin-left: 7.5rem;
    margin-right: 7.5rem;
  }

  .desktopLg\:mx-31 {
    margin-left: 7.75rem;
    margin-right: 7.75rem;
  }

  .desktopLg\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .desktopLg\:mx-33 {
    margin-left: 8.25rem;
    margin-right: 8.25rem;
  }

  .desktopLg\:mx-34 {
    margin-left: 8.5rem;
    margin-right: 8.5rem;
  }

  .desktopLg\:mx-35 {
    margin-left: 8.75rem;
    margin-right: 8.75rem;
  }

  .desktopLg\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .desktopLg\:mx-37 {
    margin-left: 9.25rem;
    margin-right: 9.25rem;
  }

  .desktopLg\:mx-38 {
    margin-left: 9.5rem;
    margin-right: 9.5rem;
  }

  .desktopLg\:mx-39 {
    margin-left: 9.75rem;
    margin-right: 9.75rem;
  }

  .desktopLg\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .desktopLg\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }

  .desktopLg\:my-0 {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .desktopLg\:my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .desktopLg\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .desktopLg\:my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .desktopLg\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .desktopLg\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .desktopLg\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .desktopLg\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .desktopLg\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .desktopLg\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .desktopLg\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .desktopLg\:my-11 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .desktopLg\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .desktopLg\:my-13 {
    margin-top: 3.25rem;
    margin-bottom: 3.25rem;
  }

  .desktopLg\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .desktopLg\:my-15 {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }

  .desktopLg\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .desktopLg\:my-17 {
    margin-top: 4.25rem;
    margin-bottom: 4.25rem;
  }

  .desktopLg\:my-18 {
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .desktopLg\:my-19 {
    margin-top: 4.75rem;
    margin-bottom: 4.75rem;
  }

  .desktopLg\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .desktopLg\:my-21 {
    margin-top: 5.25rem;
    margin-bottom: 5.25rem;
  }

  .desktopLg\:my-22 {
    margin-top: 5.5rem;
    margin-bottom: 5.5rem;
  }

  .desktopLg\:my-23 {
    margin-top: 5.75rem;
    margin-bottom: 5.75rem;
  }

  .desktopLg\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .desktopLg\:my-25 {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }

  .desktopLg\:my-26 {
    margin-top: 6.5rem;
    margin-bottom: 6.5rem;
  }

  .desktopLg\:my-27 {
    margin-top: 6.75rem;
    margin-bottom: 6.75rem;
  }

  .desktopLg\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .desktopLg\:my-29 {
    margin-top: 7.25rem;
    margin-bottom: 7.25rem;
  }

  .desktopLg\:my-30 {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
  }

  .desktopLg\:my-31 {
    margin-top: 7.75rem;
    margin-bottom: 7.75rem;
  }

  .desktopLg\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .desktopLg\:my-33 {
    margin-top: 8.25rem;
    margin-bottom: 8.25rem;
  }

  .desktopLg\:my-34 {
    margin-top: 8.5rem;
    margin-bottom: 8.5rem;
  }

  .desktopLg\:my-35 {
    margin-top: 8.75rem;
    margin-bottom: 8.75rem;
  }

  .desktopLg\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .desktopLg\:my-37 {
    margin-top: 9.25rem;
    margin-bottom: 9.25rem;
  }

  .desktopLg\:my-38 {
    margin-top: 9.5rem;
    margin-bottom: 9.5rem;
  }

  .desktopLg\:my-39 {
    margin-top: 9.75rem;
    margin-bottom: 9.75rem;
  }

  .desktopLg\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .desktopLg\:mt-auto {
    margin-top: auto;
  }

  .desktopLg\:mt-0 {
    margin-top: 0rem;
  }

  .desktopLg\:mt-1 {
    margin-top: 0.25rem;
  }

  .desktopLg\:mt-2 {
    margin-top: 0.5rem;
  }

  .desktopLg\:mt-3 {
    margin-top: 0.75rem;
  }

  .desktopLg\:mt-4 {
    margin-top: 1rem;
  }

  .desktopLg\:mt-5 {
    margin-top: 1.25rem;
  }

  .desktopLg\:mt-6 {
    margin-top: 1.5rem;
  }

  .desktopLg\:mt-7 {
    margin-top: 1.75rem;
  }

  .desktopLg\:mt-8 {
    margin-top: 2rem;
  }

  .desktopLg\:mt-9 {
    margin-top: 2.25rem;
  }

  .desktopLg\:mt-10 {
    margin-top: 2.5rem;
  }

  .desktopLg\:mt-11 {
    margin-top: 2.75rem;
  }

  .desktopLg\:mt-12 {
    margin-top: 3rem;
  }

  .desktopLg\:mt-13 {
    margin-top: 3.25rem;
  }

  .desktopLg\:mt-14 {
    margin-top: 3.5rem;
  }

  .desktopLg\:mt-15 {
    margin-top: 3.75rem;
  }

  .desktopLg\:mt-16 {
    margin-top: 4rem;
  }

  .desktopLg\:mt-17 {
    margin-top: 4.25rem;
  }

  .desktopLg\:mt-18 {
    margin-top: 4.5rem;
  }

  .desktopLg\:mt-19 {
    margin-top: 4.75rem;
  }

  .desktopLg\:mt-20 {
    margin-top: 5rem;
  }

  .desktopLg\:mt-21 {
    margin-top: 5.25rem;
  }

  .desktopLg\:mt-22 {
    margin-top: 5.5rem;
  }

  .desktopLg\:mt-23 {
    margin-top: 5.75rem;
  }

  .desktopLg\:mt-24 {
    margin-top: 6rem;
  }

  .desktopLg\:mt-25 {
    margin-top: 6.25rem;
  }

  .desktopLg\:mt-26 {
    margin-top: 6.5rem;
  }

  .desktopLg\:mt-27 {
    margin-top: 6.75rem;
  }

  .desktopLg\:mt-28 {
    margin-top: 7rem;
  }

  .desktopLg\:mt-29 {
    margin-top: 7.25rem;
  }

  .desktopLg\:mt-30 {
    margin-top: 7.5rem;
  }

  .desktopLg\:mt-31 {
    margin-top: 7.75rem;
  }

  .desktopLg\:mt-32 {
    margin-top: 8rem;
  }

  .desktopLg\:mt-33 {
    margin-top: 8.25rem;
  }

  .desktopLg\:mt-34 {
    margin-top: 8.5rem;
  }

  .desktopLg\:mt-35 {
    margin-top: 8.75rem;
  }

  .desktopLg\:mt-36 {
    margin-top: 9rem;
  }

  .desktopLg\:mt-37 {
    margin-top: 9.25rem;
  }

  .desktopLg\:mt-38 {
    margin-top: 9.5rem;
  }

  .desktopLg\:mt-39 {
    margin-top: 9.75rem;
  }

  .desktopLg\:mt-40 {
    margin-top: 10rem;
  }

  .desktopLg\:mb-auto {
    margin-bottom: auto;
  }

  .desktopLg\:mb-0 {
    margin-bottom: 0rem;
  }

  .desktopLg\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .desktopLg\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .desktopLg\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .desktopLg\:mb-4 {
    margin-bottom: 1rem;
  }

  .desktopLg\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .desktopLg\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .desktopLg\:mb-7 {
    margin-bottom: 1.75rem;
  }

  .desktopLg\:mb-8 {
    margin-bottom: 2rem;
  }

  .desktopLg\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .desktopLg\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .desktopLg\:mb-11 {
    margin-bottom: 2.75rem;
  }

  .desktopLg\:mb-12 {
    margin-bottom: 3rem;
  }

  .desktopLg\:mb-13 {
    margin-bottom: 3.25rem;
  }

  .desktopLg\:mb-14 {
    margin-bottom: 3.5rem;
  }

  .desktopLg\:mb-15 {
    margin-bottom: 3.75rem;
  }

  .desktopLg\:mb-16 {
    margin-bottom: 4rem;
  }

  .desktopLg\:mb-17 {
    margin-bottom: 4.25rem;
  }

  .desktopLg\:mb-18 {
    margin-bottom: 4.5rem;
  }

  .desktopLg\:mb-19 {
    margin-bottom: 4.75rem;
  }

  .desktopLg\:mb-20 {
    margin-bottom: 5rem;
  }

  .desktopLg\:mb-21 {
    margin-bottom: 5.25rem;
  }

  .desktopLg\:mb-22 {
    margin-bottom: 5.5rem;
  }

  .desktopLg\:mb-23 {
    margin-bottom: 5.75rem;
  }

  .desktopLg\:mb-24 {
    margin-bottom: 6rem;
  }

  .desktopLg\:mb-25 {
    margin-bottom: 6.25rem;
  }

  .desktopLg\:mb-26 {
    margin-bottom: 6.5rem;
  }

  .desktopLg\:mb-27 {
    margin-bottom: 6.75rem;
  }

  .desktopLg\:mb-28 {
    margin-bottom: 7rem;
  }

  .desktopLg\:mb-29 {
    margin-bottom: 7.25rem;
  }

  .desktopLg\:mb-30 {
    margin-bottom: 7.5rem;
  }

  .desktopLg\:mb-31 {
    margin-bottom: 7.75rem;
  }

  .desktopLg\:mb-32 {
    margin-bottom: 8rem;
  }

  .desktopLg\:mb-33 {
    margin-bottom: 8.25rem;
  }

  .desktopLg\:mb-34 {
    margin-bottom: 8.5rem;
  }

  .desktopLg\:mb-35 {
    margin-bottom: 8.75rem;
  }

  .desktopLg\:mb-36 {
    margin-bottom: 9rem;
  }

  .desktopLg\:mb-37 {
    margin-bottom: 9.25rem;
  }

  .desktopLg\:mb-38 {
    margin-bottom: 9.5rem;
  }

  .desktopLg\:mb-39 {
    margin-bottom: 9.75rem;
  }

  .desktopLg\:mb-40 {
    margin-bottom: 10rem;
  }

  .desktopLg\:ml-auto {
    margin-left: auto;
  }

  .desktopLg\:ml-0 {
    margin-left: 0rem;
  }

  .desktopLg\:ml-1 {
    margin-left: 0.25rem;
  }

  .desktopLg\:ml-2 {
    margin-left: 0.5rem;
  }

  .desktopLg\:ml-3 {
    margin-left: 0.75rem;
  }

  .desktopLg\:ml-4 {
    margin-left: 1rem;
  }

  .desktopLg\:ml-5 {
    margin-left: 1.25rem;
  }

  .desktopLg\:ml-6 {
    margin-left: 1.5rem;
  }

  .desktopLg\:ml-7 {
    margin-left: 1.75rem;
  }

  .desktopLg\:ml-8 {
    margin-left: 2rem;
  }

  .desktopLg\:ml-9 {
    margin-left: 2.25rem;
  }

  .desktopLg\:ml-10 {
    margin-left: 2.5rem;
  }

  .desktopLg\:ml-11 {
    margin-left: 2.75rem;
  }

  .desktopLg\:ml-12 {
    margin-left: 3rem;
  }

  .desktopLg\:ml-13 {
    margin-left: 3.25rem;
  }

  .desktopLg\:ml-14 {
    margin-left: 3.5rem;
  }

  .desktopLg\:ml-15 {
    margin-left: 3.75rem;
  }

  .desktopLg\:ml-16 {
    margin-left: 4rem;
  }

  .desktopLg\:ml-17 {
    margin-left: 4.25rem;
  }

  .desktopLg\:ml-18 {
    margin-left: 4.5rem;
  }

  .desktopLg\:ml-19 {
    margin-left: 4.75rem;
  }

  .desktopLg\:ml-20 {
    margin-left: 5rem;
  }

  .desktopLg\:ml-21 {
    margin-left: 5.25rem;
  }

  .desktopLg\:ml-22 {
    margin-left: 5.5rem;
  }

  .desktopLg\:ml-23 {
    margin-left: 5.75rem;
  }

  .desktopLg\:ml-24 {
    margin-left: 6rem;
  }

  .desktopLg\:ml-25 {
    margin-left: 6.25rem;
  }

  .desktopLg\:ml-26 {
    margin-left: 6.5rem;
  }

  .desktopLg\:ml-27 {
    margin-left: 6.75rem;
  }

  .desktopLg\:ml-28 {
    margin-left: 7rem;
  }

  .desktopLg\:ml-29 {
    margin-left: 7.25rem;
  }

  .desktopLg\:ml-30 {
    margin-left: 7.5rem;
  }

  .desktopLg\:ml-31 {
    margin-left: 7.75rem;
  }

  .desktopLg\:ml-32 {
    margin-left: 8rem;
  }

  .desktopLg\:ml-33 {
    margin-left: 8.25rem;
  }

  .desktopLg\:ml-34 {
    margin-left: 8.5rem;
  }

  .desktopLg\:ml-35 {
    margin-left: 8.75rem;
  }

  .desktopLg\:ml-36 {
    margin-left: 9rem;
  }

  .desktopLg\:ml-37 {
    margin-left: 9.25rem;
  }

  .desktopLg\:ml-38 {
    margin-left: 9.5rem;
  }

  .desktopLg\:ml-39 {
    margin-left: 9.75rem;
  }

  .desktopLg\:ml-40 {
    margin-left: 10rem;
  }

  .desktopLg\:mr-auto {
    margin-right: auto;
  }

  .desktopLg\:mr-0 {
    margin-right: 0rem;
  }

  .desktopLg\:mr-1 {
    margin-right: 0.25rem;
  }

  .desktopLg\:mr-2 {
    margin-right: 0.5rem;
  }

  .desktopLg\:mr-3 {
    margin-right: 0.75rem;
  }

  .desktopLg\:mr-4 {
    margin-right: 1rem;
  }

  .desktopLg\:mr-5 {
    margin-right: 1.25rem;
  }

  .desktopLg\:mr-6 {
    margin-right: 1.5rem;
  }

  .desktopLg\:mr-7 {
    margin-right: 1.75rem;
  }

  .desktopLg\:mr-8 {
    margin-right: 2rem;
  }

  .desktopLg\:mr-9 {
    margin-right: 2.25rem;
  }

  .desktopLg\:mr-10 {
    margin-right: 2.5rem;
  }

  .desktopLg\:mr-11 {
    margin-right: 2.75rem;
  }

  .desktopLg\:mr-12 {
    margin-right: 3rem;
  }

  .desktopLg\:mr-13 {
    margin-right: 3.25rem;
  }

  .desktopLg\:mr-14 {
    margin-right: 3.5rem;
  }

  .desktopLg\:mr-15 {
    margin-right: 3.75rem;
  }

  .desktopLg\:mr-16 {
    margin-right: 4rem;
  }

  .desktopLg\:mr-17 {
    margin-right: 4.25rem;
  }

  .desktopLg\:mr-18 {
    margin-right: 4.5rem;
  }

  .desktopLg\:mr-19 {
    margin-right: 4.75rem;
  }

  .desktopLg\:mr-20 {
    margin-right: 5rem;
  }

  .desktopLg\:mr-21 {
    margin-right: 5.25rem;
  }

  .desktopLg\:mr-22 {
    margin-right: 5.5rem;
  }

  .desktopLg\:mr-23 {
    margin-right: 5.75rem;
  }

  .desktopLg\:mr-24 {
    margin-right: 6rem;
  }

  .desktopLg\:mr-25 {
    margin-right: 6.25rem;
  }

  .desktopLg\:mr-26 {
    margin-right: 6.5rem;
  }

  .desktopLg\:mr-27 {
    margin-right: 6.75rem;
  }

  .desktopLg\:mr-28 {
    margin-right: 7rem;
  }

  .desktopLg\:mr-29 {
    margin-right: 7.25rem;
  }

  .desktopLg\:mr-30 {
    margin-right: 7.5rem;
  }

  .desktopLg\:mr-31 {
    margin-right: 7.75rem;
  }

  .desktopLg\:mr-32 {
    margin-right: 8rem;
  }

  .desktopLg\:mr-33 {
    margin-right: 8.25rem;
  }

  .desktopLg\:mr-34 {
    margin-right: 8.5rem;
  }

  .desktopLg\:mr-35 {
    margin-right: 8.75rem;
  }

  .desktopLg\:mr-36 {
    margin-right: 9rem;
  }

  .desktopLg\:mr-37 {
    margin-right: 9.25rem;
  }

  .desktopLg\:mr-38 {
    margin-right: 9.5rem;
  }

  .desktopLg\:mr-39 {
    margin-right: 9.75rem;
  }

  .desktopLg\:mr-40 {
    margin-right: 10rem;
  }
}

.btn {
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 15rem;
  height: 3rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease-out;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  border: 0;
  border: 0.0625rem solid rgba(0, 0, 0, 0);
  border-radius: 3.75rem;
  outline: 0 none;
  background-color: #E41E25;
}

@media (min-width: 1280px) {
  .btn {
    font-size: 1rem;
    height: 3.75rem;
  }
}

.btn:hover {
  color: #fff;
  background-color: #E41E25;
}

.btn:disabled {
  cursor: default;
  background-color: #aaa;
}

.btn_auto {
  min-width: 0;
}

.btn_secondary {
  color: #E41E25;
  border-color: #E41E25;
  background-color: rgba(0, 0, 0, 0);
}

.btn_secondary:hover {
  color: #ee6400;
  border-color: #E41E25;
  background-color: rgba(0, 0, 0, 0);
}

.btn_secondary:disabled {
  color: #aaa;
  border-color: #aaa;
  background-color: rgba(0, 0, 0, 0);
}

.btn_control {
  color: #292527;
  border: 0;
  border-radius: 1rem;
  background: #e9e9e9;
}

@media (min-width: 1280px) {
  .btn_control {
    height: 4.25rem;
  }
}

.btn_control:hover {
  color: #292527;
  background: #e9e9e9;
}

@media (min-width: 1280px) {
  .btn_control.btn_square {
    width: 4.25rem;
  }
}

.btn_dark {
  background-color: #292527;
}

@media (min-width: 1280px) {
  .btn_width {
    max-width: 21.25rem;
  }
}

@media (min-width: 1280px) {
  .btn_permanent {
    font-size: 0.875rem;
    height: 3rem;
  }
}

.btn_square {
  width: 3rem;
  min-width: 0;
  padding: 0;
}

@media (min-width: 1280px) {
  .btn_square {
    width: 3.75rem;
  }
}

.btn__text ~ .btn__icon,
.btn__icon ~ .btn__text {
  margin-left: 0.9375rem;
}

@property --val {
  syntax: "<integer>";
  inherits: true;
  initial-value: 0;
}

.form {
  padding: 3rem 0 1.5rem;
  color: #fff;
  border-radius: 1.5rem;
  background: #ff8515;
}

@media (min-width: 1280px) {
  .form {
    padding: 5rem 0;
    border-radius: 3.75rem;
  }
}

.form_footer {
  position: relative;
  z-index: 2;
  margin-bottom: -3rem;
}

@media (min-width: 1280px) {
  .form_footer {
    margin-bottom: -7.5rem;
  }
}

.form_modal {
  padding: 0;
  color: #292527;
  border-radius: 0;
  background: none;
  min-height: 100%;
  display: flex;
}

.form_modal .form__wrapper {
  display: flex;
  flex-direction: column;
}

.form_offset {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.form_simple {
  padding: 0;
  background: none;
  color: inherit;
  border-radius: 0;
}

.form__body {
  font-size: 1rem;
  padding: 1rem;
  color: #292527;
  border-radius: 1.5rem;
  background: #fff;
}

@media (min-width: 1280px) {
  .form__body {
    padding: 2.5rem;
    border-radius: 2.5rem;
  }
}

.form__checkbox {
  display: flex;
}

.form__checkbox:not([class*=" mb-"]) {
  margin-bottom: 1rem;
}

@media (min-width: 1280px) {
  .form__checkbox:not([class*=" mb-"]) {
    margin-bottom: 1.5rem;
  }
}

.form__checkbox-input {
  position: absolute;
  visibility: hidden;
  width: 0.0625rem;
  height: 0.0625rem;
  opacity: 0;
}

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.form__checkbox-label::before {
  display: block;
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  transition: all 0.2s ease-out;
  border-radius: 50%;
  background: #e9e9e9;
}

@media (min-width: 1280px) {
  .form__checkbox-label::before {
    width: 2rem;
    height: 2rem;
  }
}

.form__checkbox-label-text {
  align-self: center;
  margin-left: 0.75rem;
}

@media (min-width: 1280px) {
  .form__checkbox-label-text {
    margin-left: 1rem;
  }
}

.form__checkbox-input:checked ~ .form__checkbox-label::before {
  content: url('data:image/svg+xml;utf8,<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.5 11.5L13.5625 20.5L9.5 16.4091" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background: #ff8515;
}

.form__dropdown {
  position: relative;
  z-index: 5;
  width: 100%;
}

.form__dropdown_clearable .form__dropdown-value::after {
  display: none;
}

.form__dropdown_opened {
  z-index: 300;
}

.form__dropdown_opened .form__dropdown-options {
  display: block;
}

.form__dropdown_opened .form__dropdown-value {
  border-color: #ff8515;
}

.form__dropdown_opened .form__dropdown-value::after {
  transform: translateY(-50%) rotate(-180deg);
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 7.5L10 12.5L15 7.5" stroke="rgb(255,133,21)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.form__dropdown-options {
  position: absolute;
  z-index: 3;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  overflow: hidden;
  overflow-y: auto;
  max-height: 8rem;
  margin-top: 0.25rem;
  padding: 0;
  border-radius: 1rem;
  background: #e9e9e9;
  box-shadow:
    0 0 0.125rem rgba(0, 0, 0, 0.08),
    0 0.125rem 1.5rem rgba(0, 0, 0, 0.08);
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1280px) {
  .form__dropdown-options {
    max-height: 13rem;
  }
}

.form__dropdown-options::-webkit-scrollbar {
  width: 0.25rem;
  height: 0;
}

.form__dropdown-options::-webkit-scrollbar-track {
  background: none;
}

.form__dropdown-options::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background: rgba(170, 170, 170, 0.5);
}

.form__dropdown-options-item {
  cursor: pointer;
  transition: all 0.2s ease-out;
  padding: 0.5rem 1rem;
}

@media (min-width: 1280px) {
  .form__dropdown-options-item {
    padding: 1rem;
  }
}

.form__dropdown-options-item:hover {
  color: #ff8515;
}

.form__dropdown-options-item_selected {
  color: #ff8515;
}

.form__dropdown-options-item + .form__dropdown-options-item {
  border-top: 0.0625rem solid rgba(170, 170, 170, 0.25);
}

.form__dropdown-select {
  position: absolute;
  opacity: 0;
}

.form__dropdown-value {
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 1280px) {
  .form__dropdown-value {
    height: 4.25rem;
  }
}

.form__dropdown-value::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  bottom: 0;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  transform: translateY(-50%);
  transition: all 0.2s ease-out;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 7.5L10 12.5L15 7.5" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>')
    50% / contain no-repeat;
}

.form__field {
  font-size: 1rem;
}

.form__field:not([class*=" mb-"]) {
  margin-bottom: 1rem;
}

@media (min-width: 1280px) {
  .form__field:not([class*=" mb-"]) {
    margin-bottom: 1.5rem;
  }
}

.form__field_filled .form__field-label {
  font-size: 0.625rem;
  margin-top: -1rem;
}

.form__field_error .form__field-control {
  border-color: #ff1515;
}

.form__field_error .form__field-label {
  color: #ff1515;
}

.form__field_clearable .form__field-control {
  padding-right: 2.75rem;
}

.form__field-control {
  font-size: inherit;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  transition: border 0.2s ease-out;
  color: #292527;
  border: 0.0625rem solid rgba(0, 0, 0, 0);
  border-radius: 1rem;
  background: #e9e9e9;
}

@media (min-width: 1280px) {
  .form__field-control {
    height: 4.25rem;
  }
}

.form__field-control:focus {
  border-color: #ff8515;
}

.form__field-control_textarea {
  height: auto;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  resize: none;
}

.form__field-control_simple {
  padding-top: 0;
}

.form__field-control_simple.form__field-control_textarea {
  padding-top: 1.5rem;
}

.form__field-control_textarea ~ .form__field-label {
  top: 1.5rem;
  transform: none;
}

.form__field-clear,
.form__field-icon {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 1rem;
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.form__field-clear {
  left: auto;
  right: 1rem;
}

.form__field-label {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  left: 0;
  padding: 0 1rem;
  transition: all 0.2s ease-out;
  transform: translateY(-50%);
  color: #292527;
}

.form__field-label_textarea {
  top: 1.5rem;
  transform: none;
}

.form__field-error {
  font-size: 0.625rem;
  margin: 0.25rem 1rem 0;
  color: #ff1515;
}

.form__field-control:focus ~ .form__field-label {
  font-size: 0.625rem;
  margin-top: -1rem;
  color: #ff8515;
}

.form__field-icon ~ .form__field-control {
  padding-left: 2.75rem;
}

.form__field-icon ~ .form__field-control ~ .form__field-label {
  margin-left: 1.75rem;
}

.form__range {
  position: relative;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.form__range-label {
  --c: #ff8515;
  --i: #e9e9e9;
  --g: round(0em, 1px);
  --l: 0.5rem;
  --s: 1.25rem;
  timeline-scope: --thumb-view;
  translate: 0;
  position: relative;
  z-index: 100;
}

.form__range-label::before,
.form__range-label::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  background: #fff;
  width: 0.25rem;
  z-index: 2;
  margin: 0 -0.25rem;
  left: 0;
}

.form__range-label::after {
  left: auto;
  right: 0;
}

.form__range-input {
  width: 100%;
  height: var(--s);
  --_c: color-mix(in srgb, var(--c), var(--c) var(--p, 0%));
  appearance: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  font-size: inherit;
}

.form__range-input:focus-visible,
.form__range-input:hover {
  --p: 25%;
}

.form__range-input:active,
.form__range-input:focus-visible {
  --_b: var(--s);
}

.form__range-input[type="range" i]::-webkit-slider-thumb {
  height: var(--s);
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 var(--_b, var(--l)) inset var(--_c);
  background: var(--_c);
  border-image: linear-gradient(45deg, var(--_c) 50%, var(--i) 0) 0 1 /
    calc(50% - var(--l) / 2) 100vw/0 calc(100vw + var(--g));
  -webkit-appearance: none;
  appearance: none;
  transition: 0.3s;
  anchor-name: --thumb;
  view-timeline: --thumb-view inline;
  view-timeline-inset: var(--s);
  position: relative;
  z-index: 3;
}

.form__range-input[type="range"]::-moz-range-thumb {
  height: var(--s);
  width: var(--s);
  background: none;
  border-radius: 50%;
  box-shadow: 0 0 0 var(--_b, var(--l)) inset var(--_c);
  border-image: linear-gradient(90deg, var(--_c) 50%, var(--i) 0) 0 1 /
    calc(50% - var(--l) / 2) 100vw/0 calc(100vw + var(--g));
  -moz-appearance: none;
  appearance: none;
  transition: 0.3s;
  anchor-name: --thumb;
  view-timeline: --thumb-view inline;
  view-timeline-inset: var(--s);
  position: relative;
  z-index: 3;
}

.form__range-output {
  position-anchor: --thumb;
  position: absolute;
  inset-area: bottom span-all;
  text-align: center;
  --val: var(--min);
  animation: range linear;
  animation-timeline: --thumb-view;
  padding-top: 0.5rem;
}

.form__range-output::before {
  content: counter(num);
  counter-reset: num var(--val);
}

.form__range-output::after {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: calc(var(--s) + 0.25rem);
  height: var(--l);
  background: linear-gradient(
    90deg,
    var(--c),
    var(--c) 50%,
    var(--i) 50%,
    var(--i)
  );
  content: "";
  transform: translateX(-50%);
  margin-bottom: 0.375rem;
}

.form__range-values {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
}

.form__range-values-item {
  position: relative;
  width: 1.25rem;
  display: flex;
  justify-content: center;
}

.form__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 1280px) {
  .form__title {
    font-size: 2rem;
  }
}

.form__title ~ .form__description {
  margin-top: 1.5rem;
}

@media (min-width: 1280px) {
  .form__title ~ .form__description {
    margin-top: 2.5rem;
  }
}

.form__wrapper {
  width: 100%;
}

@keyframes range {
  0% {
    --val: var(--max);
  }
}

@supports not (anchor-name: ---) {
  output {
    display: none;
  }
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
}

.icon:not([class*="font-size"]) {
  font-size: inherit;
}

.icon_full {
  width: 100%;
  height: 100%;
}

.icon_auto {
  width: auto;
  height: auto;
}

.icon_auto-w {
  width: auto;
}

.icon_auto-h {
  height: auto;
}

.icon_logo-brand {
  width: 8rem;
  height: auto;
}

@media (min-width: 768px) {
  .icon_logo-brand {
    width: 16.25rem;
  }
}

.icon__svg {
  display: block;
  width: inherit;
  height: inherit;
  
}

a {
  transition: all 0.2s ease-out;
  text-decoration: none;
  color: #E41E25;
}

a:hover {
  color: #E41E25;
}

.link {
  cursor: pointer;
  transition: all 0.2s ease-out;
  text-decoration: none;
  color: #ff8515;
}

.link:not([class*="color-"]) {
  color: #ff8515;
}

.link:hover:not([class*="color-"]) {
  color: #E51E25;
}

.link_ext {
  display: inline-flex;
  align-items: center;
}

.link_inherit:not([class*="color-"]) {
  color: inherit;
}

.link_permanent:not([class*="color-"]) {
  color: inherit;
}

.link_permanent:hover:not([class*="color-"]) {
  color: inherit;
}

.link_tdu {
  text-decoration: underline;
}

.link_tdu:hover {
  text-decoration: none;
}

.link_toggle {
  display: inline-flex;
  align-items: center;
}

.link_toggle .link__icon {
  font-size: 1.25rem;
  margin-left: 0.25rem;
}

.link_toggle.link_active .link__icon {
  transform: rotate(180deg);
}

.link__icon {
  font-size: 1.25rem;
  flex: 0 0 auto;
  margin-left: 0.5rem;
  transition: all 0.2s ease-out;
}

@media (min-width: 1280px) {
  .link__icon {
    font-size: 1.5rem;
  }
}

.nav_breadcrumbs {
  margin: 1rem 0 2.5rem;
}

.nav_breadcrumbs .nav__list {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
}

.nav_footer .nav__item {
  margin-bottom: 1rem;
}

@media (min-width: 1280px) {
  .nav_footer .nav__item {
    margin-bottom: 1.5rem;
  }
}

.nav_header .nav__item {
  position: relative;
  margin-top: 1.5rem;
}

.nav_header .nav__item:first-child {
  margin: 0;
}

@media (min-width: 1280px) {
  .header_old .nav_header .nav__item {
    margin: 0 0 0 1.5rem;
    padding: 1rem 0;
  }
}

@media (min-width: 1280px) {
  .header_old .nav_header .nav__item-sublist {
    flex-direction: column;
    width: fit-content;
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    min-width: 12.5rem;
    margin-top: -0.0625rem;
    padding: 1rem;
    transition: all 0.2s ease-out;
    opacity: 0;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 0.0625rem 1rem 0.0625rem rgba(0, 0, 0, 0.1);
  }
}

@media (min-width: 1280px) {
  .header_old .nav_header .nav__list {
    display: flex;
  }
}

.nav_tabs .nav__list {
  display: flex;
}

.nav_tabs .nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  padding: 0 1rem;
  transition: all 0.2s ease-out;
  text-align: center;
  color: #ff8515;
  border: 0.0625rem solid #ff8515;
  border-radius: 2.5rem;
  cursor: pointer;
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .nav_tabs .nav__item {
    height: 2.5rem;
    padding: 0 1.5rem;
    margin-left: 1.5rem;
  }
}

.nav_tabs .nav__item:hover {
  border-color: #292527;
}

.nav_tabs .nav__item:first-child {
  margin-left: 0;
}

.nav_tabs .nav__item_active {
  color: #fff;
  border-color: #292527;
  background: #292527;
}

.nav_lang {
  display: flex;
  text-transform: capitalize;
}

.nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__item {
  margin: 0;
  padding: 0;
}

@media (min-width: 1280px) {
  .nav__item:hover .nav__item-icon {
    transform: rotate(180deg);
  }
}

@media (min-width: 1280px) {
  .nav__item:hover .nav__item-sublist {
    display: block;
    visibility: visible;
    opacity: 1;
  }
}

.nav__item_opened .nav__item-icon {
  transform: rotate(180deg);
}

.nav__item_opened .nav__item-sublist {
  display: block;
  visibility: visible;
  opacity: 1;
}

.nav__item__caption {
  font-size: 0.75rem;
}

@media (min-width: 1480px) {
  .nav__item__caption {
    font-size: 0.875rem;
  }
}

.nav__item-icon {
  font-size: 1.25rem;
  flex: 0 0 auto;
  margin-left: 0.25rem;
  transition: all 0.2s ease-out;
}

.nav__item-parent {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.nav__item-sublist {
  font-size: 0.875rem;
  font-weight: 400;
  display: none;
  padding: 1rem 0.5rem;
  white-space: nowrap;
}

@media (min-width: 1480px) {
  .nav__item-sublist {
    font-size: 1rem;
  }
}

.nav__item-sublist-item {
  margin: 0.75rem 0 0 !important;
  padding: 0.75rem 0 0 !important;
  border-top: 0.0625rem solid #e9e9e9;
}

@media (min-width: 1480px) {
  .nav__item-sublist-item {
    margin: 0.75rem 0 0 !important;
    padding: 1rem 0 0 !important;
  }
}

.nav__item-sublist-item:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

.page-wrap {
  position: relative;
  display: flex;
  -webkit-box-orient: vertical;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}

.page-header {
  flex: 0 0 auto;
}

.page-content {
  flex: 1 1 auto;
  padding-bottom: 5rem;
}

@media (min-width: 1280px) {
  .page-content {
    padding-bottom: 10rem;
  }
}

.page-footer {
  flex: 0 0 auto;
}

.page-section + .page-section {
  margin-top: 5rem;
}

@media (min-width: 1280px) {
  .page-section + .page-section {
    margin-top: 10rem;
    /*padding: 53px 0;*/
  }
}

.page-section_inner {
  margin-top: 5rem;
}

@media (min-width: 1280px) {
  .page-section_inner {
    margin-top: 10rem;
  }
}

div[id^="comp_"] ~ .page-section,
.page-section ~ div[id^="comp_"] {
  margin-top: 5rem;
}

@media (min-width: 1280px) {
  div[id^="comp_"] ~ .page-section,
  .page-section ~ div[id^="comp_"] {
    margin-top: 10rem;
  }
}

[id*="bx_incl_area"] + [id*="bx_incl_area"] {
  margin-top: 5rem;
}

@media (min-width: 1280px) {
  [id*="bx_incl_area"] + [id*="bx_incl_area"] {
    margin-top: 10rem;
  }
}

.header {
  --header-height: 3.5rem;
  font-size: 1rem;
  font-weight: 500;
  position: sticky;
  z-index: 333;
  top: 0;
  background: #fff;
}

@media (min-width: 1280px) {
  .header {
    --header-height: 5rem;
  }
}

@media (min-width: 1480px) {
  .header {
    --header-height: 5.75rem;
    font-size: 1.125rem;
  }
}

@media (min-width: 1280px) {
  .header_old .header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
  }
}

@media (min-width: 1280px) {
  .header_old .header__actions-item {
    margin: 0 0 0 1.5rem;
  }
}

.header_old .header__actions-item:first-child {
  margin: 0;
}

@media (min-width: 1280px) {
  .header_old .header__body {
    position: relative;
    top: 0;
    display: block;
    overflow: initial;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .header_old .header__buttons {
    display: none;
  }
}

@media (min-width: 1280px) {
  .header_old .header__content {
    align-items: center;
    flex-wrap: nowrap;
    height: var(--header-height);
  }
}

@media (min-width: 1280px) {
  .header_old .header__links {
    display: flex;
    align-items: center;
    flex: 1 1 100%;
    width: auto;
  }
}

@media (min-width: 1480px) {
  .header_old .header__links {
    width: 66.6666666667%;
  }
}

@media (min-width: 1280px) {
  .header_old .header__logo {
    display: flex;
    width: auto;
  }
}

@media (min-width: 1480px) {
  .header_old .header__logo {
    font-size: 1.75rem;
    width: 33.3333333333%;
  }
}

@media (min-width: 1280px) {
  .header_old .header__nav {
    display: flex;
    flex: 1 1 100%;
    justify-content: center;
  }
}

@media (min-width: 1480px) {
  .header_old .header__nav {
    justify-content: flex-start;
  }
}

.header__actions {
  flex: 0 0 auto;
  margin-top: 2.5rem;
}

.header__actions-item {
  margin-top: 1rem;
}

.header__actions-item:first-child {
  margin: 0;
}

.header__body {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: none;
  overflow: auto;
  height: calc(100% - var(--header-height));
  padding-top: 2.5rem;
  padding-bottom: 1.25rem;
  background: #fff;
}

.is-burger-opened .header__body {
  display: block;
}

.header__buttons {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.is-burger-opened .header__buttons-burger {
  display: none;
}

.header__buttons-close {
  display: none;
}

.is-burger-opened .header__buttons-close {
  display: block;
}

.header__logo {
  font-size: 1.5rem;
  display: none;
  flex: 0 0 auto;
}

.footer {
  font-size: 1rem;
  color: #fff;
  border-radius: 1.5rem 1.5rem 0 0;
  background: #292527;
}

@media (min-width: 1280px) {
  .footer {
    font-size: 1.5rem;
    border-radius: 3.75rem 3.75rem 0 0;
  }
}

.footer__content {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 1280px) {
  .footer__content {
    padding-top: 10rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 1480px) {
  .footer__links {
    flex: 0 0 auto;
    margin-left: 1.25rem;
  }
}

.footer__logo {
  font-size: 3rem;
  display: flex;
}

@media (min-width: 1480px) {
  .footer__logo {
    font-size: 4rem;
  }
}

.footer__nav {
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer__nav {
    display: flex;
    align-items: flex-start;
  }
}

@media (min-width: 1480px) {
  .footer__nav {
    flex: 1 1 auto;
  }
}

.footer__nav-item {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .footer__nav-item:last-child {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
  }
}

.notify {
  position: fixed;
  z-index: 830;
  top: 0;
  right: 0;
  left: 0;
  height: 0;
  margin: 1rem 0;
  color: #aaa;
}

@media (min-width: 1280px) {
  .notify {
    margin: 2rem 0;
  }
}

.notify__container {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.notify__item {
  display: flex;
  align-items: flex-start;
  max-width: 30rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow:
    0 0 0.125rem rgba(0, 0, 0, 0.08),
    0 0.125rem 1.5rem rgba(0, 0, 0, 0.08);
}

@media (min-width: 1280px) {
  .notify__item {
    padding: 2rem;
    border-radius: 1.5rem;
  }
}

.notify__item_success .notify__item-icon {
  color: #00cd46;
  background: rgba(0, 205, 70, 0.1);
}

.notify__item_error .notify__item-icon {
  color: #ff1515;
  background: rgba(255, 21, 21, 0.1);
}

.notify__item-icon {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5rem;
  content: "";
  border-radius: 50%;
  background: #e9e9e9;
}

@media (min-width: 1280px) {
  .notify__item-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-right: 1rem;
  }
}

.notify__item-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
}




.section--u-ievibuc83 {
    display: block;
    width: 100%;
    position: relative;
    background-color: rgba(var(--color-ibh6bzwod), 1)
}

.container--u-iueqhx56w {
    width: auto;
    max-width: 1400px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    position: relative;
    padding-bottom: 0px
}

.div--u-itopmp7cq {
    width: 100%;
    position: relative;
    margin-bottom: 0px
}

.mosaic-crumbs--u-ik3nrpkwt {
    position: relative;
    display: block;
    font-size: 14px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom-color: rgba(var(--color-i8bg3o33x), 0.1);
    border-bottom-style: solid;
    border-bottom-width: 1px
}

.mosaic-crumbs__delimiter--u-ijxlhurl3 {
    display: inline;
    padding-top: 2px;
    padding-right: 3px;
    padding-bottom: 2px;
    padding-left: 3px;
    color: rgba(var(--color-i3f8fspao), 1);
    margin-left: 5px;
    margin-right: 5px
}

.mosaic-crumbs__item_link--u-iep8ukjyy {
    display: inline;
    padding-top: 2px;
    padding-right: 3px;
    padding-bottom: 2px;
    padding-left: 3px;
    color: rgba(var(--color-i59w282k8), 1)
}

.mosaic-crumbs__item_link--u-iep8ukjyy > .text-block-wrap-div {
    display: inline
}

.mosaic-crumbs__last--u-in0qlhow5 {
    display: inline;
    padding-top: 2px;
    padding-right: 3px;
    padding-bottom: 2px;
    padding-left: 3px;
    color: rgba(var(--color-iigxtv66y), 1)
}

.mosaic-crumbs__last--u-in0qlhow5 > .text-block-wrap-div {
    display: inline
}

.page-title--u-ihrbdr67v {
    font-size: 30px;
    line-height: normal;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    color: rgba(var(--color-i5qgbtred), 1)
}

@media (min-width: 1280px) {
  .notify__item-icon-svg {
    width: 2rem;
    height: 2rem;
  }
}

.icon__svg {
    width: 30px;
    height: 30px;
    margin-bottom: 18px;
    color:#E41E25;
}

.promo {
  position: relative;
}

.promo_custom {
  margin-right: 1rem;
  margin-left: 1rem;
  padding: 2.5rem 0;
  color: #fff;
  border-radius: 1.5rem;
  background: #292527;
}

.promo_tickets .promo__image {
  margin: 0.75rem -2.5rem 0;
}

@media (min-width: 1280px) {
  .promo_tickets .promo__image {
    margin: -7.5rem 0 0 -10rem;
  }
}

.promo_tickets .promo__image-img {
  margin-bottom: -5rem;
}

@media (min-width: 1280px) {
  .promo_tickets .promo__image-img {
    margin-bottom: -5rem;
  }
}

@media (min-width: 1280px) {
  .promo_tickets .promo__text {
    width: 66.6666666667%;
  }
}

@media (min-width: 1280px) {
  .promo_investing {
    margin-bottom: 12.5rem;
  }
}

.promo_investing .promo__image {
  max-width: 30rem;
  /*margin: -6.25rem auto 1.5rem;*/
}

@media (min-width: 1280px) {
  .promo_investing .promo__image {
    max-width: none;
    /*margin: -8.75rem 0 -12.5rem -5rem;*/
  }
}

.promo_tsr {
  display: block;
  height: 0;
  padding-bottom: 48.7804878049%;
}

@media (min-width: 768px) {
  .promo_tsr {
    display: flex;
    overflow: hidden;
    justify-content: center;
    height: auto;
    padding: 0;
  }
}

.promo_tsr img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-position: 50%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .promo_tsr img {
    position: static;
  }
}

.promo_tsr.promo_program {
  width: 100%;
}

@media (min-width: 1280px) {
  .promo_tsr.promo_program {
    height: 16.25rem;
  }
}

.promo_tsr.promo_program img {
  object-position: 0 50%;
}

.promo__dates {
  display: flex;
  align-items: center;
  max-width: 25rem;
  text-transform: uppercase;
}

.promo__image {
  flex: 0 0 auto;
}

.promo__text {
  flex: 0 0 auto;
}

.modal {
  position: fixed;
  z-index: 800;
  top: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-out;
  opacity: 0;
  background: rgba(0, 0, 0, 0.4);
}

.modal_visible {
  visibility: visible;
  overflow-y: scroll;
  opacity: 1;
}

@media (min-width: 1280px) {
  .modal_xs {
    position: static;
    z-index: initial;
    visibility: visible;
    overflow: initial;
    width: auto;
    height: auto;
    transition: none;
    opacity: 1;
    background: none;
  }
}

@media (min-width: 1280px) {
  .modal_xs .modal__body {
    position: static;
    z-index: initial;
    width: auto;
    max-width: none;
    padding: 0;
    transition: none;
    transform: none;
    pointer-events: initial;
    border-radius: 0;
    background: none;
  }
}

@media (min-width: 1280px) {
  .modal_xs .modal__container {
    display: block;
    min-height: 0;
    padding: 0;
  }
}

@media (min-width: 1280px) {
  .modal_xs .modal__header {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
  }
}

@media (min-width: 1280px) {
  .modal_xs .modal__hide {
    display: none;
  }
}

@media (min-width: 1280px) {
  .modal_xs .modal__overlay {
    display: none;
  }
}

.modal__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 37.5rem;
  padding: 1.5rem 1rem;
  transition: all 0.2s ease-out;
  transform: translateY(100%);
  pointer-events: auto;
  border-radius: 1.5rem 1.5rem 0 0;
  background-color: #fff;
}

@media (min-width: 768px) {
  .modal__body {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    transform: translateX(100%);
    border-radius: 2.5rem 0 0 2.5rem;
  }
}

.is-modal-opened .modal__body {
  transform: translate(0, 0);
}

.modal__company {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #e9e9e9;
}

@media (min-width: 768px) {
  .modal__company {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.modal__company-description {
  line-height: 1.2857142857;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  height: 2.25rem;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

@media (min-width: 768px) {
  .modal__company-description {
    line-height: 1.25;
    height: 2.5rem;
  }
}

.modal__company-logo {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .modal__company-logo {
    width: 5rem;
    height: 5rem;
    margin-right: 1rem;
  }
}

.modal__container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100%;
  padding-top: 1.5rem;
}

@media (min-width: 768px) {
  .modal__container {
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
  }
}

.modal__content {
  flex: 1 1 auto;
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #e9e9e9;
}

@media (min-width: 768px) {
  .modal__header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.modal__hide {
  font-size: 1.5rem;
  margin-left: 1rem;
}

.modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

.widget-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 1rem 0;
  border: solid #e9e9e9;
  border-width: 0.0625rem 0;
}

@media (min-width: 768px) {
  .widget-share {
    margin-top: 2.5rem;
    padding: 1.5rem 0;
  }
}

.widget-share .ya-share2__item {
  margin: 0 0 0 1rem !important;
}

.persons_opened .persons__item_hidden {
  display: flex;
}

.persons__item {
  display: flex;
  align-items: center;
}

.persons__item_hidden {
  display: none;
}

.persons__item-photo {
  align-self: flex-start;
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  margin-right: 0.5rem;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .persons__item-photo {
    width: 5rem;
    height: 5rem;
    margin-right: 1rem;
  }
}

.persons__toggle {
  margin: 1rem 0 0 4.5rem;
}

@media (min-width: 768px) {
  .persons__toggle {
    margin-left: 6rem;
  }
}

.label {
  font-size: 0.625rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  height: 1.25rem;
  padding: 0 0.5rem;
  color: #ff8515;
  border-radius: 2.5rem;
  background: rgba(233, 233, 233, 0.75);
  backdrop-filter: blur(0.5rem);
}

@media (min-width: 768px) {
  .label {
    font-size: 0.75rem;
    height: 1.75rem;
    padding: 0 0.75rem;
  }
}

.label_orange {
  background: #ff8515;
  color: #fff;
}

@media (min-width: 1280px) {
  .contacts__aside {
    position: sticky;
    top: 6.25rem;
  }
}

.contacts__map {
  position: relative;
  overflow: hidden;
  height: 20rem;
  border-radius: 1.5rem;
}

@media (min-width: 768px) {
  .contacts__map {
    height: 37.5rem;
    border-radius: 2.5rem;
  }
}

.contacts__schedule {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  margin: -0.25rem;
}

.contacts__schedule-item {
  flex: 1 1 33.3333333333%;
  padding: 0.25rem;
}

@media (min-width: 1280px) {
  .faq__grid {
    display: flex;
    margin: 0 -0.75rem;
  }
}

.faq__grid-item {
  padding: 1.5rem;
  border: 0.125rem solid #ff8515;
  border-radius: 1rem;
}

@media (min-width: 1280px) {
  .faq__grid-item {
    flex: 0 1 33.3333333333%;
    margin: 0 0.75rem;
    padding: 2rem;
  }
}

.faq__grid-item + .faq__grid-item {
  margin-top: 1rem;
}

@media (min-width: 1280px) {
  .faq__grid-item + .faq__grid-item {
    margin-top: 0;
  }
}

.faq__grid-item-title {
  margin-bottom: 1rem;
}

@media (min-width: 1280px) {
  .faq__grid-item-title {
    min-height: 3.5rem;
    margin-right: -0.5rem;
  }
}

/*# sourceMappingURL=css.css.map */
/* End */
/* Start:/local/templates/BBE_2024/assets/css/custom.css?17822022283211*/
#participants .h5 {
  font-size: 35px;
  line-height: 45px;
}

.cookie-block {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 999;
  padding: 2rem;
  background-color: #fff;
}

.cookie-block__button-wrapper {
  margin-top: 16px;
}

.cookie-block__button {
  padding: 8px 12px;
  color: #fff;
  background-color: #ff8515;
  border: 1px solid #ff8515;
}

.notify .notify__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translate(0%, 50%);
}

.notify__item {
  position: relative;
}

.notify__item-body {
  padding-right: 1.5rem;
}

.notify__item-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #777;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transition:
    color 0.2s ease-out,
    background 0.2s ease-out;
}

.notify__item-close:hover {
  color: #292527;
  background: #e9e9e9;
}

.form__checkbox {
  position: relative;
}

#agreement-11 {
  position: absolute;
  visibility: visible;
  width: 0.0625rem;
  height: 0.0625rem;
  opacity: 0;
  left: 16px;
  top: 10px;
}

#field_92 .form__field_filled .form__field-label,
#field_122 .form__field_filled .form__field-label,
#field_128 .form__field_filled .form__field-label {
  font-size: 1rem;
  margin-top: 0;
}

#field_92 .form__field-control:focus ~ .form__field-label,
#field_122 .form__field-control:focus ~ .form__field-label,
#field_128 .form__field-control:focus ~ .form__field-label {
  font-size: 1rem;
  margin-top: 0;
  color: #ff8515;
}

#field_92 .form__field-label,
#field_122 .form__field-label {
  top: calc(15px + 50%);
}

#field_128 .position-relative {
  display: grid;
  grid-template-columns: 10% 90%;
  align-items: center;
}

#field_128 input[type="checkbox"] {
  position: relative;
  bottom: 4px;
  width: 32px;
}

#field_128 .form__field-label {
  position: relative;
  top: 16px;
  padding: 0;
}

input.form__field-control {
  padding-top: 10px;
}

.form__wrapper .form__range-output {
  right: -55px;
}

.form__wrapper .form__range-input {
  width: calc(100% - 50px);
}

@media (max-width: 1600px) {
  #field_92 {
    width: 100%;
  }
}

@media (max-width: 1280px) {
  #field_92 .form__field-control {
    height: 6.25rem;
  }
}

@media (min-width: 1280px) {
  .notify__container .notify__item {
    padding: 7rem;
    border-radius: 1.5rem;
  }

  .notify__container .notify__item .h6 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .form .tablet\:is-col_6 {
    width: calc(50% - 24px);
  }
}

p.hint {
  font-size: 14px;
  color: #777;
}

.form__field-error {
  font-size: 14px;
}

.form-validation-list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-validation-list li + li {
  margin-top: 0.25rem;
}

@media (min-width: 1480px) {
  .header_old .header__logo {
    width: max-content;
  }
}

/*Ful story - xidmetler*/

.section--u-iujqjspey {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
    padding-left: 4.66%;
    padding-right: 4.66%;
    padding-top: 35px;
    padding-bottom: 35px;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-top: 0px;
    margin-bottom: 0px;
    height: 100%;
    background-color: rgba(var(--color-is00j4zp4), 1)
}

.container--u-iy5vr75jj {
    width: 100%;
    max-width: 1400px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.div--u-ivzbcdp5s {
    width: 100%;
    position: relative;
    display: block;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    flex-shrink: 1;
    padding-left: 0px;
    height: 100%;
    margin-top: 0px;
    margin-bottom: 0px
}

.content--u-iy9p6c4sh {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-height: 200px;
    position: relative;
    color: rgba(var(--color-iqx17wtjd), 1);
    font-size: 15px;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%
}

.content--u-iy9p6c4sh::after {
    content: "";
    display: table;
    clear: both
}



























@charset "utf-8";

:root {
  --primary-color-base: #4285F4;
  --primary-color-l-5: #5a95f5;
  --primary-color-l-10: #72a4f7;
  --primary-color-l-15: #8ab4f8;
  --primary-color-l-20: #a2c3fa;
  --primary-color-l-25: #bad3fb;
  --primary-color-l-30: #d3e2fc;
  --primary-color-l-35: #ebf2fe;
  --primary-color-l-40: #9fbced;
  --primary-color-l-45: #b5cbf1;
  --primary-color-l-50: #cadaf5;
  --primary-color-d-5: #2a75f3;
  --primary-color-d-10: #1266f1;
  --primary-color-a-01: rgba(66, 133, 244, 0.1);
  --primary-color-a-02: rgba(66, 133, 244, 0.2);
  --primary-color-a-03: rgba(66, 133, 244, 0.3);
  --primary-color-a-04: rgba(66, 133, 244, 0.4);
  --primary-color-a-05: rgba(66, 133, 244, 0.5);
  --primary-color-a-06: rgba(66, 133, 244, 0.6);
  --primary-color-a-07: rgba(66, 133, 244, 0.7);
  --primary-color-a-08: rgba(66, 133, 244, 0.8);
  --primary-color-a-09: rgba(66, 133, 244, 0.9);
  --text-color-base: #222222;
  --text-color-base-header: var(--text-color-base);
  --text-color-l-5: #2f2f2f;
  --text-color-l-10: #3b3b3b;
  --text-color-l-15: #484848;
  --text-color-l-20: #555555;
  --text-color-l-25: #626262;
  --text-color-l-30: #6e6e6e;
  --text-color-l-35: #7b7b7b;
  --text-color-l-40: #888888;
  --text-color-l-45: #959595;
  --text-color-l-50: #a1a1a1;
  --text-color-l-55: #aeaeae;
  --text-color-l-60: #bbbbbb;
  --text-color-d-5: #151515;
  --text-color-d-10: #080808;
  --text-color-a-01: rgba(34, 34, 34, 0.1);
  --text-color-a-02: rgba(34, 34, 34, 0.2);
  --text-color-a-03: rgba(34, 34, 34, 0.3);
  --text-color-a-04: rgba(34, 34, 34, 0.4);
  --text-color-a-05: rgba(34, 34, 34, 0.5);
  --text-color-a-06: rgba(34, 34, 34, 0.6);
  --text-color-a-07: rgba(34, 34, 34, 0.7);
  --text-color-a-08: rgba(34, 34, 34, 0.8);
  --text-color-a-09: rgba(34, 34, 34, 0.9);
  
  --error-text-color: #EB5757;
  --error-background-color: rgba(235, 87, 87, 0.1);
  --lpc-no-image: url('/g/s3/lp/lpc.v4/images/no-image.svg');
}


/*Text font size*/
:root {
	--header-title-1-default: 40px;
	--header-title-2-default: 36px;
	--header-title-3-default: 32px;
	--header-title-4-default: 26px;
	--header-title-5-default: 20px;
	--header-title-6-default: 16px;
	
	--header-title-1-media-1-default: 36px;
	--header-title-1-media-1-max: 72px;
	--header-title-1-media-1-min: 32px;
	--header-title-1-media-2-default: 32px;
	--header-title-1-media-2-max: 64px;
	--header-title-1-media-2-min: 28px;
	--header-title-1-media-3-default: 28px;
	--header-title-1-media-3-max: 54px;
	--header-title-1-media-3-min: 26px;
	--header-title-1-media-4-default: 26px;
	--header-title-1-media-4-max: 40px;
	--header-title-1-media-4-min: 24px;
	
	--header-title-2-media-1-default: 32px;
	--header-title-2-media-1-max: 66px;
	--header-title-2-media-1-min: 28px;
	--header-title-2-media-2-default: 28px;
	--header-title-2-media-2-max: 56px;
	--header-title-2-media-2-min: 26px;
	--header-title-2-media-3-default: 26px;
	--header-title-2-media-3-max: 52px;
	--header-title-2-media-3-min: 24px;
	--header-title-2-media-4-default: 24px;
	--header-title-2-media-4-max: 36px;
	--header-title-2-media-4-min: 22px;
	
	--header-title-3-media-1-default: 28px;
	--header-title-3-media-1-max: 60px;
	--header-title-3-media-1-min: 24px;
	--header-title-3-media-2-default: 26px;
	--header-title-3-media-2-max: 52px;
	--header-title-3-media-2-min: 22px;
	--header-title-3-media-3-default: 24px;
	--header-title-3-media-3-max: 48px;
	--header-title-3-media-3-min: 20px;
	--header-title-3-media-4-default: 22px;
	--header-title-3-media-4-max: 32px;
	--header-title-3-media-4-min: 20px;
	
	--header-title-4-media-1-default: 24px;
	--header-title-4-media-1-max: 54px;
	--header-title-4-media-1-min: 20px;
	--header-title-4-media-2-default: 22px;
	--header-title-4-media-2-max: 44px;
	--header-title-4-media-2-min: 18px;
	--header-title-4-media-3-default: 20px;
	--header-title-4-media-3-max: 40px;
	--header-title-4-media-3-min: 18px;
	--header-title-4-media-4-default: 20px;
	--header-title-4-media-4-max: 30px;
	--header-title-4-media-4-min: 18px;
	
	--header-title-5-media-1-default: 20px;
	--header-title-5-media-1-max: 48px;
	--header-title-5-media-1-min: 16px;
	--header-title-5-media-2-default: 20px;
	--header-title-5-media-2-max: 36px;
	--header-title-5-media-2-min: 16px;
	--header-title-5-media-3-default: 18px;
	--header-title-5-media-3-max: 36px;
	--header-title-5-media-3-min: 16px;
	--header-title-5-media-4-default: 18px;
	--header-title-5-media-4-max: 26px;
	--header-title-5-media-4-min: 16px;
	
	--header-title-6-media-1-default: 16px;
	--header-title-6-media-1-max: 42px;
	--header-title-6-media-1-min: 16px;
	--header-title-6-media-2-default: 16px;
	--header-title-6-media-2-max: 32px;
	--header-title-6-media-2-min: 16px;
	--header-title-6-media-3-default: 16px;
	--header-title-6-media-3-max: 32px;
	--header-title-6-media-3-min: 16px;
	--header-title-6-media-4-default: 16px;
	--header-title-6-media-4-max: 24px;
	--header-title-6-media-4-min: 16px;
	
	--header-text-1-default: 20px;
	--header-text-2-default: 18px;
	--header-text-3-default: 16px;
	--header-text-4-default: 15px;

	
	--header-text-1-media-1-default: 18px;
	--header-text-1-media-1-max: 24px;
	--header-text-1-media-1-min: 14px;
	--header-text-1-media-2-default: 18px;
	--header-text-1-media-2-max: 24px;
	--header-text-1-media-2-min: 14px;
	--header-text-1-media-3-default: 17px;
	--header-text-1-media-3-max: 22px;
	--header-text-1-media-3-min: 14px;
	--header-text-1-media-4-default: 16px;
	--header-text-1-media-4-max: 20px;
	--header-text-1-media-4-min: 13px;
	
	--header-text-2-media-1-default: 18px;
	--header-text-2-media-1-max: 24px;
	--header-text-2-media-1-min: 14px;
	--header-text-2-media-2-default: 17px;
	--header-text-2-media-2-max: 22px;
	--header-text-2-media-2-min: 14px;
	--header-text-2-media-3-default: 17px;
	--header-text-2-media-3-max: 22px;
	--header-text-2-media-3-min: 14px;
	--header-text-2-media-4-default: 16px;
	--header-text-2-media-4-max: 20px;
	--header-text-2-media-4-min: 13px;
	
	--header-text-3-media-1-default: 16px;
	--header-text-3-media-1-max: 20px;
	--header-text-3-media-1-min: 13px;
	--header-text-3-media-2-default: 16px;
	--header-text-3-media-2-max: 20px;
	--header-text-3-media-2-min: 13px;
	--header-text-3-media-3-default: 16px;
	--header-text-3-media-3-max: 20px;
	--header-text-3-media-3-min: 13px;
	--header-text-3-media-4-default: 16px;
	--header-text-3-media-4-max: 20px;
	--header-text-3-media-4-min: 13px;
	
	--header-text-4-media-1-default: 15px;
	--header-text-4-media-1-max: 18px;
	--header-text-4-media-1-min: 12px;
	--header-text-4-media-2-default: 15px;
	--header-text-4-media-2-max: 18px;
	--header-text-4-media-2-min: 13px;
	--header-text-4-media-3-default: 15px;
	--header-text-4-media-3-max: 18px;
	--header-text-4-media-3-min: 13px;
	--header-text-4-media-4-default: 15px;
	--header-text-4-media-4-max: 18px;
	--header-text-4-media-4-min: 13px;
	
	
	--header-button-default: 18px;
	--header-button-media-1-default: 18px;
	--header-button-media-1-max: 24px;
	--header-button-media-1-min: 16px;
	--header-button-media-2-default: 18px;
	--header-button-media-2-max: 24px;
	--header-button-media-2-min: 16px;
	--header-button-media-3-default: 18px;
	--header-button-media-3-max: 22px;
	--header-button-media-3-min: 15px;
	--header-button-media-4-default: 18px;
	--header-button-media-4-max: 20px;
	--header-button-media-4-min: 15px;
	
	
	--block-indent-default: 32px;
	--block-indent-media-1-default: 32px;
	--block-indent-media-1-max: 160px;
	--block-indent-media-1-min: 8px;
	--block-indent-media-2-default: 32px;
	--block-indent-media-2-max: 96px;
	--block-indent-media-2-min: 8px;
	--block-indent-media-3-default: 24px;
	--block-indent-media-3-max: 80px;
	--block-indent-media-3-min: 6px;
	--block-indent-media-4-default: 24px;
	--block-indent-media-4-max: 64px;
	--block-indent-media-4-min: 6px;
}
/*
* {
    box-sizing: border-box;
}
*/

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
}

/*.lpc-wrap:not(.custom-lpc-wrap) a:not(.lp-icon-link):not(.lp-button):not(.lp-text-color-not):not([href^="tel:"]):not(.lpc-link-edit) {
	color: var(--primary-color-base);
	transition: .3s ease;
}

.lpc-wrap:not(.custom-lpc-wrap) a:not(.lp-icon-link):not(.lp-button):not(.lp-text-color-not):not([href^="tel:"]):not(.lpc-link-edit):hover {
	text-decoration: none;
}*/


img {
	border: 0;
}

/*h1,h2,h3,h4,h5,h6 {
	margin: 0;
}*/

/*.lp-header-title-0, .lp-header-title-1, .lp-header-title-2, .lp-header-title-3, .lp-header-title-4, .lp-header-title-5, .lp-header-title-6, h1,h2,h3,h4,h5,h6  {
	line-height: 1.25;
	font-style: normal;
	font-weight: 700;
}*/

/*.lpc-wrap .lp-header-title-0, 
.lpc-wrap .lp-header-title-1,
.lpc-wrap .lp-header-title-2,
.lpc-wrap .lp-header-title-3,
.lpc-wrap .lp-header-title-4,
.lpc-wrap .lp-header-title-5,
.lpc-wrap .lp-header-title-6,
.lpc-wrap .lp-header-title-0:hover, 
.lpc-wrap .lp-header-title-1:hover,
.lpc-wrap .lp-header-title-2:hover,
.lpc-wrap .lp-header-title-3:hover,
.lpc-wrap .lp-header-title-4:hover,
.lpc-wrap .lp-header-title-5:hover,
.lpc-wrap .lp-header-title-6:hover,
.lpc-wrap h1,
.lpc-wrap h2,
.lpc-wrap h3,
.lpc-wrap h4,
.lpc-wrap h5,
.lpc-wrap h6,
.lpc-wrap h1:hover,
.lpc-wrap h2:hover,
.lpc-wrap h3:hover,
.lpc-wrap h4:hover,
.lpc-wrap h5:hover,
.lpc-wrap h6:hover {
	color: var(--text-color-base-header);
}*/

.lpc-wrap .lp-header-title-3, 
.lpc-wrap .lp-header-title-5 {
	color: var(--text-color-base-header);
}

.lp-header-title-3 {
	line-height: 1.2;
}

.lp-header-title-5 {
	line-height: 1.2;
}

[data-elem-type="text"] p {
	color: inherit;
	font: inherit;
}

.decor-wrap p {
	color: inherit;
	font: inherit;
}

.lpc-wrap .lp-header-text-3,
.lpc-wrap .lp-header-text-4 {
	font-weight: 400;
	line-height: 1.5;
	color: var(--text-color-base);
}

.lp-header-text-3 {
	line-height: 1.5;
}

.lp-header-text-4 {
	line-height: 1.333;
}

.lpc-wrap .lp-header-title-3 {
	font-size: var(--header-title-3-default);
}

.lpc-wrap .lp-header-title-5 {
	font-size: var(--header-title-5-default);
}

.lp-header-text-3 {
	font-size: var(--header-text-3-default);
}

.lp-header-text-4 {
	font-size: var(--header-text-4-default);
}


[data-block-layout] {position: relative;/* z-index: 0;*/}

/*[data-block-layout] img {
	max-width: initial;
}*/

/*.lpc-button--type-2 {
	border: 1px solid  var(--primary-color-base);
	color: var(--primary-color-base);
	padding: 13px 16px;
	border-radius: 6px;
	min-height: 50px;
	line-height: 1;
	background: none;
	cursor: pointer;
}*/

/*.lpc-button--type-2._v2-icon path {
	fill:  var(--primary-color-base);
}*/

/*.lpc-button--type-2:hover {
	border-color: var(--primary-color-l-5);
	color: var(--primary-color-base);
	background: var(--primary-color-a-02);
}*/

/*.lpc-button--type-2:active {
	border-color: var(--primary-color-d-5);
	color: var(--primary-color-d-5);
	background: var(--primary-color-a-01);
}*/

/*.lpc-button--type-2:active path {
	fill: var(--primary-color-d-5);
}

.lpc-button--type-2 svg path {
	fill:  var(--primary-color-base);
}*/

.lpc-block__img-inner {
	position: relative;
	height: 0;
	width: 100%;
	display: block;
	overflow: hidden;
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 0 !important;
}

.lpc-block__img-inner._3_2h {
	padding-top: calc(100% * 2 / 3) !important;
}

/*.lpc-block__img-inner._185_1h {
	padding-top: calc(100% * 1 / 1.85) !important;
}*/

/*
.lpc-block__img-inner._185_1v {
	padding-top: calc(100% * 1.85 / 1) !important;
}

.lpc-block__img-inner._239_1v {
	padding-top: calc(100% * 2.39 / 1) !important;
}
*/

.lpc-block__img-inner img {
	position: absolute;
    object-fit: cover;
    background-size: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
}

.lpc-block__img-inner._contain img {
	object-fit: contain;
    background-size: contain;
}

/*Video block*/

.lp-block-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	overflow: hidden;
	bottom: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.lp-block-bg__video {
	position: absolute;
	width: 100%;
	height: 100%;
}

.lp-block-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.5);
}

._not_fill .lp-block-overlay {
	background: rgba(255, 255, 255, 0);
}

.lp-block-bg_item {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	overflow: hidden;
	bottom: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.lp-block-overlay_item {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.5);
}

._not_fill .lp-block-overlay_item {
	background: rgba(255, 255, 255, 0);
}

/*.lpc-wrapp {
	margin: 0 auto;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
	padding: 0 16px;
	position: relative;
	z-index: 1;
}

@media all and (min-width: 600px) {
	.lpc-wrapp {
		max-width: 600px;
		padding: 0 12px;
	}
}

@media all and (min-width: 960px) {
	.lpc-wrapp {
		max-width: 960px;
		padding: 0 24px;
	}
}

@media all and (min-width: 1200px) {
	.lpc-wrapp {
		padding: 0 14px;
		max-width: 1180px;
	}
}

@media all and (min-width: 1380px) {
	.lpc-wrapp {
		max-width: 1320px;
		padding: 0 16px;
	}
}*/

.lpc-container-wrap {
	position: relative;
} /*Нужно для обертки при использовании block_background_item*/

.lpc-wrap {
	position: relative;
	text-align: left;
}

.lpc-wrap * {
	box-sizing: border-box;
}

.lpc-row {
	margin: 0 -16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex; 
	flex-wrap:wrap;
	width: calc(100% + 32px);
}

[data-media-source="media-xl"] .lpc-row {
	margin: 0 -16px;
	width: calc(100% + 32px);
}

[data-media-source="media-xl"] .lpc-col-4-xl {
	margin-left: 16px;
	margin-right: 16px;
	width: calc(((100% / 12) * 4) - 32px); }

[data-media-source="media-xl"] .lpc-col-8-xl {
	margin-left: 16px;
	margin-right: 16px;
	width: calc(((100% / 12) * 8) - 32px); }

[data-media-source="media-xl"] .lpc-col-12-xl {
	margin-left: 16px;
	margin-right: 16px;
	width: calc(100% - 32px); }

/*@media (max-width: 600px) {
	.lp-ui-timer__item-number {
		font-size: 26px !important;
	}
}*/

/*@media (max-width: 495px) {
	.lp-ui-timer__item-number {
		font-size: 24px !important;
	}
}*/
/*.lpc-light-mode-block svg path:not([fill]) { fill:  var(--primary-color-base); }
.lpc-light-mode-block svg defs path:not([fill]) { fill: inherit;}*/

/*Splide slider*/

/*.splide__custom__arrows .splide__arrow__bg*/

/*.splide__custom__arrows .splide__arrow__bg:before*/
/*Splide slider*/

/*Spoiler*/

/*Spoiler*/

/*Транзишн для текстов в новом конструкторе*/


/*Старая версия для слабовидящих https://staff.megagroup.ru/staff/sites/?site_id=1085232*/

/*Старая версия для слабовидящих https://staff.megagroup.ru/staff/sites/?site_id=1085232*/

/*ymaps*/
/*ymaps*/

/*s3*/

/*s3*/


/*staff2*/
/*staff2*/

/*icomoon*/
@font-face {
	font-family: 'lpc_icomoon';
	src:  url('/g/s3/lp/lpc.v4/fonts/icomoon.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
/*icomoon*/

/*.content-lp-wrapper.lpc-const-frame-selection .lp-selected-element[data-elem-type="container"], 
.content-lp-wrapper.lpc-const-frame-selection .lp-selected-element[data-elem-type="card_container"], 
.content-lp-wrapper.lpc-const-frame-selection .lp-selected-element[data-elem-type="slider_container"], 
.content-lp-wrapper.lpc-const-frame-selection .lp-selected-element[data-elem-type="form"], 
.content-lp-wrapper.lpc-const-frame-selection .lp-selected-element[data-elem-type="image"], 
.content-lp-wrapper.lpc-const-frame-selection .lp-selected-element[data-elem-type="block"], 
.content-lp-wrapper.lpc-const-frame-selection .lp-selected-element[data-elem-type="header"], 
.content-lp-wrapper.lpc-const-frame-selection .lp-selected-element[data-elem-type="button"], 
.content-lp-wrapper.lpc-const-frame-selection .lp-selected-element[data-elem-type="text"] {
	position: relative;
}*/

/* Old
.content-lp-wrapper.lpc-const-frame-selection .lp-selected-element {
	outline: 1px solid #36C55C !important;	
	outline-offset: 1px;
}
body:not(.preview_mode) .content-lp-wrapper.lpc-const-frame-selection [data-elem-type]:hover,
body:not(.preview_mode) .content-lp-wrapper.lpc-const-frame-selection [data-elem-type]:focus {
	outline: 1px dashed #36C55C;
	outline-offset:1px;
}*/


/*Эти стили нужны для теста тегов без скрипта*/

/*Конец тестовых стилей*/

/*Стили категории на конструкторе*/
/*Стили категории*/

/*Заглушка карты*/

/*lazyload image*/
/*lazyload end*/

/* =============================== Отступы для карточки =============================== */
/* ==================================================================================== */
/* ============================== Отступы для контейнера ============================== */
[data-media-source="media-xl"] .lpc-gap-block {
	padding: 32px 0;
}
/* ==================================================================================== */
/* ============================== Отступы для элементов ============================== */
/* ==================================================================================== */


/*------ Отступы для заголовок--------*/
[data-elem-type] p:first-child {
	margin-top: 0;
}
[data-elem-type] p:last-child {
    margin-bottom: 0;
}
/*------ Отступы для заголовок (конец)--------*/


/*Триггер попап*/
.modal__content [role="button"]:has(img[src^="/g/s3/lp/previews/layout_14708_ru_preview.jpg"]) {
  display: none !important;
}


.lpc-wrap .lp-header-title-1 * :is(h1, h2, h3, h4, h5, h6), .lpc-wrap .lp-header-title-2 * :is(h1, h2, h3, h4, h5, h6), .lpc-wrap .lp-header-title-3 * :is(h1, h2, h3, h4, h5, h6), .lpc-wrap .lp-header-title-4 * :is(h1, h2, h3, h4, h5, h6), .lpc-wrap .lp-header-title-5 * :is(h1, h2, h3, h4, h5, h6), .lpc-wrap .lp-header-title-6 * :is(h1, h2, h3, h4, h5, h6) {
	margin: 0;
}

.lp-header-title-1 * :is(h1, h2, h3, h4, h5, h6), .lp-header-title-2 * :is(h1, h2, h3, h4, h5, h6), .lp-header-title-3 * :is(h1, h2, h3, h4, h5, h6), .lp-header-title-4 * :is(h1, h2, h3, h4, h5, h6), .lp-header-title-5 * :is(h1, h2, h3, h4, h5, h6), .lp-header-title-6 * :is(h1, h2, h3, h4, h5, h6) {
	line-height: 1.2;
}

.lpc-wrap .lp-header-title-1 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-1-default);
}

[data-media-source="media-lg"] .lp-header-title-1 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-1-media-1-default);
}

[data-media-source="media-md"] .lp-header-title-1 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-1-media-2-default);
}

[data-media-source="media-sm"] .lp-header-title-1 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-1-media-3-default);
}

[data-media-source="media-xs"] .lp-header-title-1 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-1-media-4-default);
}

.lpc-wrap .lp-header-title-2 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-2-default);
}

[data-media-source="media-lg"] .lp-header-title-2 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-2-media-1-default);
}

[data-media-source="media-md"] .lp-header-title-2 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-2-media-2-default);
}

[data-media-source="media-sm"] .lp-header-title-2 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-2-media-3-default);
}

[data-media-source="media-xs"] .lp-header-title-2 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-2-media-4-default);
}

.lpc-wrap .lp-header-title-3 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-3-default);
}

[data-media-source="media-lg"] .lp-header-title-3 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-3-media-1-default);
}

[data-media-source="media-lg"] .lp-header-title-3 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-3-media-2-default);
}

[data-media-source="media-lg"] .lp-header-title-3 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-3-media-3-default);
}

[data-media-source="media-lg"] .lp-header-title-3 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-3-media-4-default);
}

.lpc-wrap .lp-header-title-4 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-4-default);
}

[data-media-source="media-lg"] .lp-header-title-4 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-4-media-1-default);
}

[data-media-source="media-md"] .lp-header-title-4 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-4-media-2-default);
}

[data-media-source="media-sm"] .lp-header-title-4 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-4-media-3-default);
}

[data-media-source="media-xs"] .lp-header-title-4 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-4-media-4-default);
}

.lpc-wrap .lp-header-title-5 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-5-default);
}

[data-media-source="media-lg"] .lp-header-title-5 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-5-media-1-default);
}

[data-media-source="media-md"] .lp-header-title-5 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-5-media-2-default);
}

[data-media-source="media-sm"] .lp-header-title-5 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-5-media-3-default);
}

[data-media-source="media-xs"] .lp-header-title-5 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-5-media-4-default);
}

.lpc-wrap .lp-header-title-6 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-6-default);
}

[data-media-source="media-lg"] .lp-header-title-6 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-6-media-1-default);
}

[data-media-source="media-md"] .lp-header-title-6 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-6-media-2-default);
}

[data-media-source="media-sm"] .lp-header-title-6 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-6-media-3-default);
}

[data-media-source="media-xs"] .lp-header-title-6 * :is(h1, h2, h3, h4, h5, h6) {
	font-size: var(--header-title-6-media-4-default);
}

.lpc-wrap .lp-header-title-1 * :is(h1, h2, h3, h4, h5, h6), .lpc-wrap .lp-header-title-2 * :is(h1, h2, h3, h4, h5, h6), .lpc-wrap .lp-header-title-3 * :is(h1, h2, h3, h4, h5, h6), .lpc-wrap .lp-header-title-4 * :is(h1, h2, h3, h4, h5, h6), .lpc-wrap .lp-header-title-5 * :is(h1, h2, h3, h4, h5, h6), .lpc-wrap .lp-header-title-6 * :is(h1, h2, h3, h4, h5, h6){
	font: inherit;
}

/*убираем скачки фул видз*/
/*убираем скачки фул видз*/
