/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

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

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

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

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

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



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

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

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

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

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

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

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

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

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


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

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

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


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




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

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

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


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

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

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

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

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

.swiper-coverflow {
}

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

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

@font-face{font-family:lg;src:url(../dep/lg..woff2) format("woff2"),url(../dep/lg..ttf) format("truetype"),url(../dep/lg..woff) format("woff"),url(../dep/lg..svg#lg) format("svg");font-weight:400;font-style:normal;font-display:block}.lg-icon{font-family:lg!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lg-container{font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.lg-next,.lg-prev{background-color:rgba(0,0,0,.45);border-radius:2px;color:#999;cursor:pointer;display:block;font-size:22px;margin-top:-10px;padding:8px 10px 9px;position:absolute;top:50%;z-index:1084;outline:0;border:none}.lg-next.disabled,.lg-prev.disabled{opacity:0!important;cursor:default}.lg-next:hover:not(.disabled),.lg-prev:hover:not(.disabled){color:#fff}.lg-single-item .lg-next,.lg-single-item .lg-prev{display:none}.lg-next{right:20px}.lg-next:before{content:"\e095"}.lg-prev{left:20px}.lg-prev:after{content:"\e094"}@-webkit-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-moz-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-ms-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-webkit-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@-moz-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@-ms-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}.lg-outer.lg-right-end .lg-object{-webkit-animation:lg-right-end .3s;-o-animation:lg-right-end .3s;animation:lg-right-end .3s;position:relative}.lg-outer.lg-left-end .lg-object{-webkit-animation:lg-left-end .3s;-o-animation:lg-left-end .3s;animation:lg-left-end .3s;position:relative}.lg-toolbar{z-index:1082;left:0;position:absolute;top:0;width:100%}.lg-media-overlap .lg-toolbar{background-image:linear-gradient(0deg,rgba(0,0,0,0),rgba(0,0,0,.4))}.lg-toolbar .lg-icon{color:#999;cursor:pointer;float:right;font-size:24px;height:47px;line-height:27px;padding:10px 0;text-align:center;width:50px;text-decoration:none!important;outline:medium none;will-change:color;-webkit-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear;background:0 0;border:none;box-shadow:none}.lg-toolbar .lg-icon.lg-icon-18{font-size:18px}.lg-toolbar .lg-icon:hover{color:#fff}.lg-toolbar .lg-close:after{content:"\e070"}.lg-toolbar .lg-maximize{font-size:22px}.lg-toolbar .lg-maximize:after{content:"\e90a"}.lg-toolbar .lg-download:after{content:"\e0f2"}.lg-sub-html{color:#eee;font-size:16px;padding:10px 40px;text-align:center;z-index:1080;opacity:0;-webkit-transition:opacity .2s ease-out 0s;-o-transition:opacity .2s ease-out 0s;transition:opacity .2s ease-out 0s}.lg-sub-html h4{margin:0;font-size:13px;font-weight:700}.lg-sub-html p{font-size:12px;margin:5px 0 0}.lg-sub-html a{color:inherit}.lg-sub-html a:hover{text-decoration:underline}.lg-media-overlap .lg-sub-html{background-image:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.6))}.lg-item .lg-sub-html{position:absolute;bottom:0;right:0;left:0}.lg-error-msg{font-size:14px;color:#999}.lg-counter{color:#999;display:inline-block;font-size:16px;padding-left:20px;padding-top:12px;height:47px;vertical-align:middle}.lg-closing .lg-next,.lg-closing .lg-prev,.lg-closing .lg-sub-html,.lg-closing .lg-toolbar{opacity:0;-webkit-transition:-webkit-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;-moz-transition:-moz-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;-o-transition:-o-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;transition:transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-media-cont,body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont{opacity:0;-moz-transform:scale3d(.5,.5,.5);-o-transform:scale3d(.5,.5,.5);-ms-transform:scale3d(.5,.5,.5);-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);will-change:transform,opacity;-webkit-transition:-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-moz-transition:-moz-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-o-transition:-o-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;transition:transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-media-cont,body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont{opacity:1;-moz-transform:scale3d(1,1,1);-o-transform:scale3d(1,1,1);-ms-transform:scale3d(1,1,1);-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}.lg-icon:focus-visible{color:#fff;border-radius:3px;outline:1px dashed rgba(255,255,255,.6)}.lg-toolbar .lg-icon:focus-visible{border-radius:8px;outline-offset:-5px}.lg-outer .lg-thumb-outer{background-color:#0d0a0a;width:100%;max-height:350px;overflow:hidden;float:left}.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-outer .lg-thumb-outer.lg-thumb-align-middle{text-align:center}.lg-outer .lg-thumb-outer.lg-thumb-align-left{text-align:left}.lg-outer .lg-thumb-outer.lg-thumb-align-right{text-align:right}.lg-outer.lg-single-item .lg-thumb-outer{display:none}.lg-outer .lg-thumb{padding:5px 0;height:100%;margin-bottom:-5px;display:inline-block;vertical-align:middle}@media (min-width:768px){.lg-outer .lg-thumb{padding:10px 0}}.lg-outer .lg-thumb-item{cursor:pointer;float:left;overflow:hidden;height:100%;border-radius:2px;margin-bottom:5px;will-change:border-color}@media (min-width:768px){.lg-outer .lg-thumb-item{border-radius:4px;border:2px solid #fff;-webkit-transition:border-color .25s ease;-o-transition:border-color .25s ease;transition:border-color .25s ease}}.lg-outer .lg-thumb-item.active,.lg-outer .lg-thumb-item:hover{border-color:#a90707}.lg-outer .lg-thumb-item img{width:100%;height:100%;object-fit:cover;display:block}.lg-outer.lg-can-toggle .lg-item{padding-bottom:0}.lg-outer .lg-toggle-thumb:after{content:"\e1ff"}.lg-outer.lg-animate-thumb .lg-thumb{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}.lg-outer .lg-video-cont{text-align:center;display:inline-block;vertical-align:middle;position:relative}.lg-outer .lg-video-cont .lg-object{width:100%!important;height:100%!important}.lg-outer .lg-has-iframe .lg-video-cont{-webkit-overflow-scrolling:touch;overflow:auto}.lg-outer .lg-video-object{position:absolute;left:0;right:0;width:100%;height:100%;top:0;bottom:0;z-index:3}.lg-outer .lg-video-poster{z-index:1}.lg-outer .lg-has-video .lg-video-object{opacity:0;will-change:opacity;-webkit-transition:opacity .3s ease-in;-o-transition:opacity .3s ease-in;transition:opacity .3s ease-in}.lg-outer .lg-has-video.lg-video-loaded .lg-video-play-button,.lg-outer .lg-has-video.lg-video-loaded .lg-video-poster{opacity:0!important}.lg-outer .lg-has-video.lg-video-loaded .lg-video-object{opacity:1}@keyframes lg-play-stroke{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@keyframes lg-play-rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.lg-video-play-button{width:18%;max-width:140px;position:absolute;top:50%;left:50%;z-index:2;cursor:pointer;transform:translate(-50%,-50%) scale(1);will-change:opacity,transform;-webkit-transition:-webkit-transform .25s cubic-bezier(.17,.88,.32,1.28),opacity .1s;-moz-transition:-moz-transform .25s cubic-bezier(.17,.88,.32,1.28),opacity .1s;-o-transition:-o-transform .25s cubic-bezier(.17,.88,.32,1.28),opacity .1s;transition:transform .25s cubic-bezier(.17,.88,.32,1.28),opacity .1s}.lg-video-play-button:hover .lg-video-play-icon,.lg-video-play-button:hover .lg-video-play-icon-bg{opacity:1}.lg-video-play-icon-bg{fill:none;stroke-width:3%;stroke:#fcfcfc;opacity:.6;will-change:opacity;-webkit-transition:opacity .12s ease-in;-o-transition:opacity .12s ease-in;transition:opacity .12s ease-in}.lg-video-play-icon-circle{position:absolute;top:0;left:0;bottom:0;right:0;fill:none;stroke-width:3%;stroke:rgba(30,30,30,.9);stroke-opacity:1;stroke-linecap:round;stroke-dasharray:200;stroke-dashoffset:200}.lg-video-play-icon{position:absolute;width:25%;max-width:120px;left:50%;top:50%;transform:translate3d(-50%,-50%,0);opacity:.6;will-change:opacity;-webkit-transition:opacity .12s ease-in;-o-transition:opacity .12s ease-in;transition:opacity .12s ease-in}.lg-video-play-icon .lg-video-play-icon-inner{fill:#fcfcfc}.lg-video-loading .lg-video-play-icon-circle{animation:lg-play-rotate 2s linear .25s infinite,lg-play-stroke 1.5s ease-in-out .25s infinite}.lg-video-loaded .lg-video-play-button{opacity:0;transform:translate(-50%,-50%) scale(.7)}.lg-progress-bar{background-color:#333;height:5px;left:0;position:absolute;top:0;width:100%;z-index:1083;opacity:0;will-change:opacity;-webkit-transition:opacity 80ms ease 0s;-moz-transition:opacity 80ms ease 0s;-o-transition:opacity 80ms ease 0s;transition:opacity 80ms ease 0s}.lg-progress-bar .lg-progress{background-color:#a90707;height:5px;width:0}.lg-progress-bar.lg-start .lg-progress{width:100%}.lg-show-autoplay .lg-progress-bar{opacity:1}.lg-autoplay-button:after{content:"\e01d"}.lg-show-autoplay .lg-autoplay-button:after{content:"\e01a"}.lg-single-item .lg-autoplay-button{opacity:.75;pointer-events:none}.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image,.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap{will-change:transform;-webkit-transition:-webkit-transform .5s cubic-bezier(.12,.415,.01,1.19) 0s;-moz-transition:-moz-transform .5s cubic-bezier(.12,.415,.01,1.19) 0s;-o-transition:-o-transform .5s cubic-bezier(.12,.415,.01,1.19) 0s;transition:transform .5s cubic-bezier(.12,.415,.01,1.19) 0s}.lg-outer.lg-use-transition-for-zoom.lg-zoom-drag-transition .lg-item.lg-complete.lg-zoomable .lg-img-wrap{will-change:transform;-webkit-transition:-webkit-transform .8s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .8s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .8s cubic-bezier(0,0,.25,1) 0s;transition:transform .8s cubic-bezier(0,0,.25,1) 0s}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img,.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transition:-webkit-transform .5s cubic-bezier(.12,.415,.01,1.19) 0s,opacity .15s!important;-moz-transition:-moz-transform .5s cubic-bezier(.12,.415,.01,1.19) 0s,opacity .15s!important;-o-transition:-o-transform .5s cubic-bezier(.12,.415,.01,1.19) 0s,opacity .15s!important;transition:transform .5s cubic-bezier(.12,.415,.01,1.19) 0s,opacity .15s!important;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.no-transition,.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.no-transition{transition:none!important}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition,.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition{transform:scale3d(1,1,1) translate3d(-50%,-50%,0)!important;max-width:none!important;max-height:none!important;top:50%!important;left:50%!important}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-x,.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-x{transform:scale3d(1,1,1) translate3d(-50%,0,0)!important;top:0!important;left:50%!important;max-width:none!important;max-height:none!important}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-y,.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-y{transform:scale3d(1,1,1) translate3d(0,-50%,0)!important;top:50%!important;left:0!important;max-width:none!important;max-height:none!important}.lg-icon.lg-zoom-in:after{content:"\e311"}.lg-actual-size .lg-icon.lg-zoom-in{opacity:1;pointer-events:auto}.lg-icon.lg-actual-size{font-size:20px}.lg-icon.lg-actual-size:after{content:"\e033"}.lg-icon.lg-zoom-out{opacity:.5;pointer-events:none}.lg-icon.lg-zoom-out:after{content:"\e312"}.lg-zoomed .lg-icon.lg-zoom-out{opacity:1;pointer-events:auto}.lg-outer.lg-first-slide-loading .lg-actual-size,.lg-outer.lg-first-slide-loading .lg-zoom-in,.lg-outer.lg-first-slide-loading .lg-zoom-out,.lg-outer[data-lg-slide-type=iframe] .lg-actual-size,.lg-outer[data-lg-slide-type=iframe] .lg-zoom-in,.lg-outer[data-lg-slide-type=iframe] .lg-zoom-out,.lg-outer[data-lg-slide-type=video] .lg-actual-size,.lg-outer[data-lg-slide-type=video] .lg-zoom-in,.lg-outer[data-lg-slide-type=video] .lg-zoom-out{opacity:.75;pointer-events:none}.lg-outer .lg-pager-outer{text-align:center;z-index:1080;height:10px;margin-bottom:10px}.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont{overflow:visible}.lg-outer.lg-single-item .lg-pager-outer{display:none}.lg-outer .lg-pager-cont{cursor:pointer;display:inline-block;overflow:hidden;position:relative;vertical-align:top;margin:0 5px}.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-pager-cont.lg-pager-active .lg-pager{box-shadow:0 0 0 2px #fff inset}.lg-outer .lg-pager-thumb-cont{background-color:#fff;color:#fff;bottom:100%;height:83px;left:0;margin-bottom:20px;margin-left:-60px;opacity:0;padding:5px;position:absolute;width:120px;border-radius:3px;will-change:transform,opacity;-webkit-transition:opacity .15s ease 0s,-webkit-transform .15s ease 0s;-moz-transition:opacity .15s ease 0s,-moz-transform .15s ease 0s;-o-transition:opacity .15s ease 0s,-o-transform .15s ease 0s;transition:opacity .15s ease 0s,transform .15s ease 0s;-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}.lg-outer .lg-pager-thumb-cont img{width:100%;height:100%}.lg-outer .lg-pager{background-color:rgba(255,255,255,.5);border-radius:50%;box-shadow:0 0 0 8px rgba(255,255,255,.7) inset;display:block;height:12px;-webkit-transition:box-shadow .3s ease 0s;-o-transition:box-shadow .3s ease 0s;transition:box-shadow .3s ease 0s;width:12px}.lg-outer .lg-pager:focus,.lg-outer .lg-pager:hover{box-shadow:0 0 0 8px #fff inset}.lg-outer .lg-caret{border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px dashed;bottom:-10px;display:inline-block;height:0;left:50%;margin-left:-5px;position:absolute;vertical-align:middle;width:0}.lg-fullscreen:after{content:"\e20c"}.lg-fullscreen-on .lg-fullscreen:after{content:"\e20d"}.lg-outer .lg-dropdown-overlay{background-color:rgba(0,0,0,.25);bottom:0;cursor:default;left:0;position:absolute;right:0;top:0;z-index:1081;opacity:0;visibility:hidden;will-change:visibility,opacity;-webkit-transition:visibility 0s linear .18s,opacity .18s linear 0s;-o-transition:visibility 0s linear .18s,opacity .18s linear 0s;transition:visibility 0s linear .18s,opacity .18s linear 0s}.lg-outer.lg-dropdown-active .lg-dropdown,.lg-outer.lg-dropdown-active .lg-dropdown-overlay{-webkit-transition-delay:0s;transition-delay:0s;-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;visibility:visible}.lg-outer.lg-dropdown-active .lg-share{color:#fff}.lg-outer .lg-dropdown{background-color:#fff;border-radius:2px;font-size:14px;list-style-type:none;margin:0;padding:10px 0;position:absolute;right:0;text-align:left;top:50px;opacity:0;visibility:hidden;-moz-transform:translate3d(0,5px,0);-o-transform:translate3d(0,5px,0);-ms-transform:translate3d(0,5px,0);-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0);will-change:visibility,opacity,transform;-webkit-transition:-webkit-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-moz-transition:-moz-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-o-transition:-o-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;transition:transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s}.lg-outer .lg-dropdown:after{content:"";display:block;height:0;width:0;position:absolute;border:8px solid transparent;border-bottom-color:#fff;right:16px;top:-16px}.lg-outer .lg-dropdown>li:last-child{margin-bottom:0}.lg-outer .lg-dropdown>li:hover a{color:#333}.lg-outer .lg-dropdown a{color:#333;display:block;white-space:pre;padding:4px 12px;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px}.lg-outer .lg-dropdown a:hover{background-color:rgba(0,0,0,.07)}.lg-outer .lg-dropdown .lg-dropdown-text{display:inline-block;line-height:1;margin-top:-3px;vertical-align:middle}.lg-outer .lg-dropdown .lg-icon{color:#333;display:inline-block;float:none;font-size:20px;height:auto;line-height:1;margin-right:8px;padding:0;vertical-align:middle;width:auto}.lg-outer .lg-share{position:relative}.lg-outer .lg-share:after{content:"\e80d"}.lg-outer .lg-share-facebook .lg-icon{color:#3b5998}.lg-outer .lg-share-facebook .lg-icon:after{content:"\e904"}.lg-outer .lg-share-twitter .lg-icon{color:#00aced}.lg-outer .lg-share-twitter .lg-icon:after{content:"\e907"}.lg-outer .lg-share-pinterest .lg-icon{color:#cb2027}.lg-outer .lg-share-pinterest .lg-icon:after{content:"\e906"}.lg-comment-box{width:420px;max-width:100%;position:absolute;right:0;top:0;bottom:0;z-index:9999;background-color:#fff;will-change:transform;-moz-transform:translate3d(100%,0,0);-o-transform:translate3d(100%,0,0);-ms-transform:translate3d(100%,0,0);-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);-webkit-transition:-webkit-transform .4s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .4s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .4s cubic-bezier(0,0,.25,1) 0s;transition:transform .4s cubic-bezier(0,0,.25,1) 0s}.lg-comment-box .lg-comment-title{margin:0;color:#fff;font-size:18px}.lg-comment-box .lg-comment-header{background-color:#000;padding:12px 20px;position:absolute;left:0;right:0;top:0}.lg-comment-box .lg-comment-body{height:100%!important;padding-top:43px!important;width:100%!important}.lg-comment-box .fb-comments{height:100%;width:100%;background:url(../dep/loading..gif) no-repeat scroll center center #fff;overflow-y:auto;display:inline-block}.lg-comment-box .fb-comments[fb-xfbml-state=rendered]{background-image:none}.lg-comment-box .fb-comments>span{max-width:100%}.lg-comment-box .lg-comment-close{position:absolute;right:5px;top:12px;cursor:pointer;font-size:20px;color:#999;will-change:color;-webkit-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear}.lg-comment-box .lg-comment-close:hover{color:#fff}.lg-comment-box .lg-comment-close:after{content:"\e070"}.lg-comment-box iframe{max-width:100%!important;width:100%!important}.lg-comment-box #disqus_thread{padding:0 20px}.lg-outer .lg-comment-overlay{background-color:rgba(0,0,0,.25);bottom:0;cursor:default;left:0;position:fixed;right:0;top:0;z-index:1081;opacity:0;visibility:hidden;will-change:visibility,opacity;-webkit-transition:visibility 0s linear .18s,opacity .18s linear 0s;-o-transition:visibility 0s linear .18s,opacity .18s linear 0s;transition:visibility 0s linear .18s,opacity .18s linear 0s}.lg-outer .lg-comment-toggle:after{content:"\e908"}.lg-outer.lg-comment-active .lg-comment-overlay{-webkit-transition-delay:0s;transition-delay:0s;-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;visibility:visible}.lg-outer.lg-comment-active .lg-comment-toggle{color:#fff}.lg-outer.lg-comment-active .lg-comment-box{-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-img-rotate{position:absolute;left:0;right:0;top:0;bottom:0;-webkit-transition:-webkit-transform .4s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .4s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .4s cubic-bezier(0,0,.25,1) 0s;transition:transform .4s cubic-bezier(0,0,.25,1) 0s}.lg-outer[data-lg-slide-type=iframe] .lg-flip-hor,.lg-outer[data-lg-slide-type=iframe] .lg-flip-ver,.lg-outer[data-lg-slide-type=iframe] .lg-rotate-left,.lg-outer[data-lg-slide-type=iframe] .lg-rotate-right,.lg-outer[data-lg-slide-type=video] .lg-flip-hor,.lg-outer[data-lg-slide-type=video] .lg-flip-ver,.lg-outer[data-lg-slide-type=video] .lg-rotate-left,.lg-outer[data-lg-slide-type=video] .lg-rotate-right{opacity:.75;pointer-events:none}.lg-outer .lg-img-rotate:before{content:"";display:inline-block;height:100%;vertical-align:middle}.lg-rotate-left:after{content:"\e900"}.lg-rotate-right:after{content:"\e901"}.lg-icon.lg-flip-hor,.lg-icon.lg-flip-ver{font-size:26px}.lg-flip-ver:after{content:"\e903"}.lg-flip-hor:after{content:"\e902"}.lg-medium-zoom-item{cursor:zoom-in}.lg-medium-zoom .lg-outer{cursor:zoom-out}.lg-medium-zoom .lg-outer.lg-grab img.lg-object{cursor:zoom-out}.lg-medium-zoom .lg-outer.lg-grabbing img.lg-object{cursor:zoom-out}.lg-relative-caption .lg-outer .lg-sub-html{white-space:normal;bottom:auto;padding:0;background-image:none}.lg-relative-caption .lg-outer .lg-relative-caption-item{opacity:0;padding:16px 0;transition:.5s opacity ease}.lg-relative-caption .lg-outer .lg-show-caption .lg-relative-caption-item{opacity:1}.lg-group:after{content:"";display:table;clear:both}.lg-container{display:none;outline:0}.lg-container.lg-show{display:block}.lg-on{scroll-behavior:unset}.lg-overlay-open{overflow:hidden}.lg-hide-sub-html .lg-sub-html,.lg-next,.lg-pager-outer,.lg-prev,.lg-toolbar{opacity:0;will-change:transform,opacity;-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;transition:transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s}.lg-show-in .lg-next,.lg-show-in .lg-pager-outer,.lg-show-in .lg-prev,.lg-show-in .lg-toolbar{opacity:1}.lg-show-in.lg-hide-sub-html .lg-sub-html{opacity:1}.lg-show-in .lg-hide-items .lg-prev{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}.lg-show-in .lg-hide-items .lg-next{opacity:0;-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}.lg-show-in .lg-hide-items .lg-toolbar{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html{opacity:0;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}.lg-outer{width:100%;height:100%;position:fixed;top:0;left:0;z-index:1050;text-align:left;opacity:.001;outline:0;will-change:auto;overflow:hidden;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lg-outer.lg-zoom-from-image{opacity:1}.lg-outer.lg-visible{opacity:1}.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current,.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide{-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-outer.lg-grab img.lg-object{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer.lg-grabbing img.lg-object{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg-content{position:absolute;top:0;left:0;right:0;bottom:0}.lg-outer .lg-inner{width:100%;position:absolute;left:0;top:0;bottom:0;-webkit-transition:opacity 0s;-o-transition:opacity 0s;transition:opacity 0s;white-space:nowrap}.lg-outer .lg-item{display:none!important}.lg-outer .lg-item:not(.lg-start-end-progress){background:url(../dep/loading..gif) no-repeat scroll center center transparent}.lg-outer.lg-css3 .lg-current,.lg-outer.lg-css3 .lg-next-slide,.lg-outer.lg-css3 .lg-prev-slide{display:inline-block!important}.lg-outer.lg-css .lg-current{display:inline-block!important}.lg-outer .lg-img-wrap,.lg-outer .lg-item{display:inline-block;text-align:center;position:absolute;width:100%;height:100%}.lg-outer .lg-img-wrap:before,.lg-outer .lg-item:before{content:"";display:inline-block;height:100%;vertical-align:middle}.lg-outer .lg-img-wrap{position:absolute;left:0;right:0;top:0;bottom:0;white-space:nowrap;font-size:0}.lg-outer .lg-item.lg-complete{background-image:none}.lg-outer .lg-item.lg-current{z-index:1060}.lg-outer .lg-object{display:inline-block;vertical-align:middle;max-width:100%;max-height:100%;width:auto;height:auto;position:relative}.lg-outer .lg-empty-html .lg-sub-html,.lg-outer .lg-empty-html.lg-sub-html{display:none}.lg-outer.lg-hide-download .lg-download{opacity:.75;pointer-events:none}.lg-outer .lg-first-slide .lg-dummy-img{position:absolute;top:50%;left:50%}.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html{opacity:1;transition:opacity .2s ease-out .15s}.lg-outer .lg-media-cont{text-align:center;display:inline-block;vertical-align:middle;position:relative}.lg-outer .lg-media-cont .lg-object{width:100%!important;height:100%!important}.lg-outer .lg-has-iframe .lg-media-cont{-webkit-overflow-scrolling:touch;overflow:auto}.lg-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1040;background-color:#000;opacity:0;will-change:auto;-webkit-transition:opacity 333ms ease-in 0s;-o-transition:opacity 333ms ease-in 0s;transition:opacity 333ms ease-in 0s}.lg-backdrop.in{opacity:1}.lg-css3.lg-no-trans .lg-current,.lg-css3.lg-no-trans .lg-next-slide,.lg-css3.lg-no-trans .lg-prev-slide{-webkit-transition:none 0s ease 0s!important;-moz-transition:none 0s ease 0s!important;-o-transition:none 0s ease 0s!important;transition:none 0s ease 0s!important}.lg-css3.lg-use-css3 .lg-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-css3.lg-fade .lg-item{opacity:0}.lg-css3.lg-fade .lg-item.lg-current{opacity:1}.lg-css3.lg-fade .lg-item.lg-current,.lg-css3.lg-fade .lg-item.lg-next-slide,.lg-css3.lg-fade .lg-item.lg-prev-slide{-webkit-transition:opacity .1s ease 0s;-moz-transition:opacity .1s ease 0s;-o-transition:opacity .1s ease 0s;transition:opacity .1s ease 0s}.lg-css3.lg-use-css3 .lg-item.lg-start-progress{-webkit-transition:-webkit-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;-moz-transition:-moz-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;-o-transition:-o-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;transition:transform 1s cubic-bezier(.175,.885,.32,1.275) 0s}.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s}.lg-css3.lg-slide.lg-use-css3 .lg-item{opacity:0}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}.lg-container{display:none}.lg-container.lg-show{display:block}.lg-container.lg-dragging-vertical .lg-backdrop{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-inline .lg-backdrop,.lg-inline .lg-outer{position:absolute}.lg-inline .lg-backdrop{z-index:1}.lg-inline .lg-outer{z-index:2}.lg-inline .lg-maximize:after{content:"\e909"}.lg-components{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);will-change:transform;-webkit-transition:-webkit-transform .35s ease-out 0s;-moz-transition:-moz-transform .35s ease-out 0s;-o-transition:-o-transform .35s ease-out 0s;transition:transform .35s ease-out 0s;z-index:1080;position:absolute;bottom:0;right:0;left:0}
.h1{margin:0px;font-family:"Cairo",sans-serif;font-weight:700}@media(max-width: 767px){.h1{font-size:2em;line-height:1.1875em}}@media(min-width: 768px){.h1{font-size:3em;line-height:1.2083333333em}}.h2{margin:0px;font-family:"Cairo",sans-serif;font-weight:700}@media(max-width: 767px){.h2{font-size:1.5em;line-height:1.2083333333em}}@media(min-width: 768px){.h2{font-size:2.25em;line-height:1.1111111111em}}.h3{margin:0px;font-family:"Cairo",sans-serif;font-weight:700}@media(max-width: 767px){.h3{font-size:1.375em;line-height:1.1818181818em}}@media(min-width: 768px){.h3{font-size:2em;line-height:1.09375em}}.h4{margin:0px;font-family:"Cairo",sans-serif;font-weight:700;font-size:1.25em;line-height:1.3em}.h5{margin:0px;font-family:"Cairo",sans-serif;font-weight:700;font-size:.8125em;line-height:1.3}.h6{margin:0px;font-family:"Cairo",sans-serif;font-size:1em;line-height:1.5em}p,.p,.p-small,.quote,ul,ol,.text-content ul,.text-content ol{margin:0px;font-size:1em;line-height:1.3125em}.p-big{margin:0px;font-family:"Cairo",sans-serif;font-weight:700;font-size:1em;line-height:1.5em}.p-extra-small{margin:0px;font-size:.625em;line-height:1.3;font-weight:300}a{cursor:pointer;color:inherit;text-decoration:underline}.over-head{margin:0px;font-size:.875em;line-height:1.0714285714em;text-transform:uppercase;font-weight:400;display:inline-block;margin-bottom:5px}.sub-head{margin:0px;font-size:.875em;line-height:1.5em;font-weight:400;display:inline-block;margin-top:5px}.label{margin:0px}@media(max-width: 767px){.label{font-size:.875em;line-height:1.5em}}@media(min-width: 768px){.label{font-size:.875em;line-height:1.5em}}*{box-sizing:border-box}*:before,*:after{box-sizing:border-box}:root{--header-height: 100px;--to-width: -50%;--primary: #000000;--secondary: #ebff00;--light: #f5f5f5;--dark: #313131}html{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}@media(max-width: 1219px){html{width:100%;overflow-x:hidden}html.ovfw-hid-nav-mob{overflow:hidden}}html,body{width:100%;padding:0;margin:0}body{display:block;position:relative;font-family:"Cairo",sans-serif;font-weight:400;color:#000;overflow-x:hidden;font-display:swap}body.post-type-archive-eventi-centenario{--primary: #26335a;--secondary: #c02026;--light: #f5f4f0;--dark: #26335a}body.post-type-archive-eventi-centenario .pg-basicpage{color:#26335a}body.post-type-archive-eventi-centenario .pg-basicpage .button{border:1px solid;font-weight:700}body.post-type-archive-eventi-centenario .pg-basicpage .over-head{font-size:.8125em}body.post-type-archive-eventi-centenario .pg-basicpage>*.bg-image .button{background-color:#fff;color:var(--primary);border-color:#fff}body.post-type-archive-eventi-centenario .pg-basicpage>*.bg-image .button:hover{background-color:rgba(0,0,0,0);color:#fff;border-color:#fff}body.post-type-archive-eventi-centenario .pg-basicpage>*.bg-image.cards-text-bg a.single-card:hover .button{background-color:rgba(0,0,0,0);color:#fff;border-color:#fff}body.post-type-archive-eventi-centenario .pg-basicpage>*:not(.bg-image) .button{background-color:var(--primary);color:#fff;border-color:var(--primary)}body.post-type-archive-eventi-centenario .pg-basicpage>*:not(.bg-image) .button:hover{border-color:var(--primary);color:var(--primary);background-color:rgba(0,0,0,0)}body.post-type-archive-eventi-centenario .pg-basicpage .bg-secondary:not(.bg-image){background-color:var(--secondary);color:#fff}body.post-type-archive-eventi-centenario .pg-basicpage .bg-secondary:not(.bg-image) .button{background-color:#fff;color:var(--primary);border-color:#fff}body.post-type-archive-eventi-centenario .pg-basicpage .bg-secondary:not(.bg-image) .button:hover{color:#fff;border-color:#fff;background-color:rgba(0,0,0,0)}body.post-type-archive-eventi-centenario .pg-basicpage .bg-dark:not(.bg-image){background-color:var(--primary);color:#fff}body.post-type-archive-eventi-centenario .pg-basicpage .bg-dark:not(.bg-image) .button{background-color:#fff;color:var(--primary);border-color:#fff}body.post-type-archive-eventi-centenario .pg-basicpage .bg-dark:not(.bg-image) .button:hover{background-color:rgba(0,0,0,0);color:#fff;border-color:#fff}body.post-type-archive-eventi-centenario .pg-basicpage .bg-light:not(.bg-image){background-color:var(--light)}@media(min-width: 768px){body.post-type-archive-eventi-centenario .pg-basicpage .container{padding-left:30px;padding-right:30px}}body.post-type-archive-eventi-centenario .pg-basicpage .container-small{max-width:1030px}@media(min-width: 768px){body.post-type-archive-eventi-centenario .pg-basicpage .container-small{padding-left:30px;padding-right:30px}}picture,img{display:block}h1,h2,h3,h4,h5,h6{margin:0px;font-weight:normal}.h1-var{margin:0px;font-family:"Cairo",sans-serif;font-weight:700}@media(max-width: 767px){.h1-var{font-size:1.5em;line-height:1.5em}}@media(min-width: 768px){.h1-var{font-size:2.5em;line-height:1.2em}}ul,ol{list-style:none;padding:0px;margin:0px}strong,b{font-weight:700}i,em{font-style:italic}.text-content{position:relative;width:100%}.text-content ul{list-style-type:disc;padding:0 0 10px 20px}.text-content ul li{padding:0 0 10px 0}.text-content ol{list-style-type:decimal;padding:0 0 10px 20px}.text-content ol li{padding:0 0 10px 0}.text-content video{margin:0;width:100%;height:auto}.text-content iframe{margin:0;width:100%;height:auto}.text-content img{margin:0 0 20px 0;width:auto;height:auto;max-width:100%}.common-text-editor-style h1,.common-text-editor-style h2{margin:0 0 30px 0;font-family:"Cairo",sans-serif;font-weight:600;font-size:1rem;line-height:1.5}.common-text-editor-style h3,.common-text-editor-style h4,.common-text-editor-style h6{margin:0 0 30px 0;font-family:"Cairo",sans-serif;font-weight:700;font-size:.625rem;line-height:1.7;letter-spacing:.05em;text-transform:uppercase}.common-text-editor-style ul{list-style-type:disc;padding:10px 0 0 20px}.common-text-editor-style ol{list-style-type:decimal;padding:10px 0 0 30px}.common-text-editor-style ul li,.common-text-editor-style ol li{padding:0}.common-text-editor-style ul li:not(:last-child),.common-text-editor-style ol li:not(:last-child){padding-bottom:10px}.common-text-editor-style ul:not(:last-child),.common-text-editor-style ol:not(:last-child){padding-bottom:10px}.common-text-editor-style ul:first-child,.common-text-editor-style ol:first-child{padding-top:0}.common-text-editor-style blockquote{margin:0}.img-content img{display:block;max-width:100%}.pg-front-page{display:block;background-color:#fff;position:relative}.screen-reader-text{border:0;clip:rect(1px, 1px, 1px, 1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal !important}.img-obj-center img{object-position:center}.img-obj-top img{object-position:top}.img-obj-bottom img{object-position:bottom}.img-obj-left img{object-position:left}.img-obj-right img{object-position:right}.img-obj-left-top img{object-position:left top}.img-obj-left-bottom img{object-position:left bottom}.img-obj-right-top img{object-position:right top}.img-obj-right-bottom img{object-position:right bottom}@media(max-width: 767px){.spacer.s-margin{height:24px}}@media(min-width: 768px){.spacer.s-margin{height:30px}}@media(max-width: 767px){.spacer.m-margin{height:56px}}@media(min-width: 768px){.spacer.m-margin{height:60px}}@media(max-width: 767px){.spacer.l-margin{height:56px}}@media(min-width: 768px)and (max-width: 1024px){.spacer.l-margin{height:60px}}@media(min-width: 1025px){.spacer.l-margin{height:100px}}@media(max-width: 1024px){.spacer.l-d-spacer{display:none}}@media(min-width: 1025px){.spacer.l-d-spacer{height:100px}}@media(max-width: 1024px){.spacer.m-d-spacer{display:none}}@media(min-width: 1025px){.spacer.m-d-spacer{height:60px}}@media(max-width: 1024px){.spacer.s-d-spacer{display:none}}@media(min-width: 1025px){.spacer.s-d-spacer{height:30px}}@media(max-width: 767px){.spacer.l-m-spacer{height:56px}}@media(min-width: 768px)and (max-width: 1024px){.spacer.l-m-spacer{height:60px}}@media(min-width: 1025px){.spacer.l-m-spacer{display:none}}@media(max-width: 767px){.spacer.m-m-spacer{height:56px}}@media(min-width: 768px)and (max-width: 1024px){.spacer.m-m-spacer{height:60px}}@media(min-width: 1025px){.spacer.m-m-spacer{display:none}}@media(max-width: 767px){.spacer.s-m-spacer{height:24px}}@media(min-width: 768px)and (max-width: 1024px){.spacer.s-m-spacer{height:30px}}@media(min-width: 1025px){.spacer.s-m-spacer{display:none}}.otgs-development-site-front-end{display:none !important}#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept,#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept,#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll,#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize,#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection,#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton{background-color:#313131 !important;border-color:#313131 !important;color:#fff !important}#CybotCookiebotDialogTabContent input:checked+.CybotCookiebotDialogBodyLevelButtonSlider{background-color:#313131 !important}#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive{color:#313131 !important;border-bottom:1px solid #313131 !important}#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover{color:#313131 !important}#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a{color:#313131 !important}#CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentCookieContainerButton:hover,#CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentIABv2Tab:hover,#CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieProvider:not(.CybotCookiebotDialogDetailBodyContentCookieInfoCount):hover{color:#313131 !important}#CybotCookiebotDialog #CybotCookiebotDialogBodyContentText a,#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonIABHeaderViewPartnersLink,#CybotCookiebotDialog #CybotCookiebotDialogDetailBulkConsentList dt a,#CybotCookiebotDialog #CybotCookiebotDialogDetailFooter a,#CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonIABDescription a,#CybotCookiebotDialog .CybotCookiebotDialogDetailBodyContentCookieLink,#CybotCookiebotDialogDetailBodyContentTextAbout a{color:#313131 !important}.h-10{min-height:10vh}.h-20{min-height:20vh}.h-30{min-height:30vh}.h-40{min-height:40vh}.h-50{min-height:50vh}.h-60{min-height:60vh}.h-70{min-height:70vh}.h-80{min-height:80vh}.h-90{min-height:90vh}.h-100{min-height:100vh}@media(max-width: 767px){.h-m-10{min-height:10vh}.h-m-20{min-height:20vh}.h-m-30{min-height:30vh}.h-m-40{min-height:40vh}.h-m-50{min-height:50vh}.h-m-60{min-height:60vh}.h-m-70{min-height:70vh}.h-m-80{min-height:80vh}.h-m-90{min-height:90vh}.h-m-100{min-height:100vh}}@media(min-width: 768px)and (max-width: 1024px){.h-t-10{min-height:10vh}.h-t-20{min-height:20vh}.h-t-30{min-height:30vh}.h-t-40{min-height:40vh}.h-t-50{min-height:50vh}.h-t-60{min-height:60vh}.h-t-70{min-height:70vh}.h-t-80{min-height:80vh}.h-t-90{min-height:90vh}.h-t-100{min-height:100vh}}@media(min-width: 1025px){.h-d-10{min-height:10vh}.h-d-20{min-height:20vh}.h-d-30{min-height:30vh}.h-d-40{min-height:40vh}.h-d-50{min-height:50vh}.h-d-60{min-height:60vh}.h-d-70{min-height:70vh}.h-d-80{min-height:80vh}.h-d-90{min-height:90vh}.h-d-100{min-height:100vh}}.shadow-small{-webkit-box-shadow:0px .125rem .25rem 0px rgba(0,0,0,.075);-moz-box-shadow:0px .125rem .25rem 0px rgba(0,0,0,.075);box-shadow:0px .125rem .25rem 0px rgba(0,0,0,.075)}.shadow-regular{-webkit-box-shadow:0px .5rem 1rem 0px rgba(0,0,0,.15);-moz-box-shadow:0px .5rem 1rem 0px rgba(0,0,0,.15);box-shadow:0px .5rem 1rem 0px rgba(0,0,0,.15)}.shadow-large{-webkit-box-shadow:0px 1rem 3rem 0px rgba(0,0,0,.175);-moz-box-shadow:0px 1rem 3rem 0px rgba(0,0,0,.175);box-shadow:0px 1rem 3rem 0px rgba(0,0,0,.175)}.container-page{width:100%;margin:0px auto;max-width:1920px}.container{width:100%;margin:0px auto;max-width:1440px}@media(max-width: 767px){.container{padding-left:24px;padding-right:24px}}@media(min-width: 768px)and (max-width: 1024px){.container{padding-left:40px;padding-right:40px}}@media(min-width: 1025px){.container{padding-left:80px;padding-right:80px}}.container-small{width:100%;margin:0px auto;max-width:1225px}@media(max-width: 767px){.container-small{padding-left:24px;padding-right:24px}}@media(min-width: 768px)and (max-width: 1024px){.container-small{padding-left:40px;padding-right:40px}}@media(min-width: 1025px){.container-small{padding-left:80px;padding-right:80px}}.flex{display:flex}@media(max-width: 767px){.flex-m{display:flex}}@media(min-width: 768px)and (max-width: 1024px){.flex-t{display:flex}}@media(min-width: 768px){.flex-td{display:flex}}@media(min-width: 1025px){.flex-d{display:flex}}.flex-wrap{flex-wrap:wrap}@media(max-width: 767px){.flex-wrap-m{flex-wrap:wrap}}@media(min-width: 768px)and (max-width: 1024px){.flex-wrap-t{flex-wrap:wrap}}@media(min-width: 768px){.flex-wrap-td{flex-wrap:wrap}}@media(min-width: 1025px){.flex-wrap-d{flex-wrap:wrap}}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-column{flex-direction:column}.flex-column-reverse{flex-direction:column-reverse}@media(max-width: 1024px){.flex-column-mt{flex-direction:column}.flex-column-reverse-mt{flex-direction:column-reverse}}@media(max-width: 767px){.flex-row-m{flex-direction:row}.flex-row-reverse-m{flex-direction:row-reverse}.flex-column-m{flex-direction:column}.flex-column-reverse-m{flex-direction:column-reverse}}@media(min-width: 768px)and (max-width: 1024px){.flex-row-t{flex-direction:row}.flex-row-reverse-t{flex-direction:row-reverse}.flex-column-t{flex-direction:column}.flex-column-reverse-t{flex-direction:column-reverse}}@media(min-width: 768px){.flex-row-td{flex-direction:row}.flex-row-reverse-td{flex-direction:row-reverse}.flex-column-td{flex-direction:column}.flex-column-reverse-td{flex-direction:column-reverse}}@media(min-width: 1025px){.flex-row-d{flex-direction:row}.flex-row-reverse-d{flex-direction:row-reverse}.flex-column-d{flex-direction:column}.flex-column-reverse-d{flex-direction:column-reverse}}.justify-content-start{justify-content:flex-start}.justify-content-end{justify-content:flex-end}.justify-content-center{justify-content:center}.justify-content-between{justify-content:space-between}.justify-content-around{justify-content:space-around}@media(max-width: 767px){.justify-content-start-m{justify-content:flex-start}.justify-content-end-m{justify-content:flex-end}.justify-content-center-m{justify-content:center}.justify-content-between-m{justify-content:space-between}.justify-content-around-m{justify-content:space-around}}@media(min-width: 768px)and (max-width: 1024px){.justify-content-start-t{justify-content:flex-start}.justify-content-end-t{justify-content:flex-end}.justify-content-center-t{justify-content:center}.justify-content-between-t{justify-content:space-between}.justify-content-around-t{justify-content:space-around}}@media(min-width: 768px){.justify-content-start-td{justify-content:flex-start}.justify-content-end-td{justify-content:flex-end}.justify-content-center-td{justify-content:center}.justify-content-between-td{justify-content:space-between}.justify-content-around-td{justify-content:space-around}}@media(min-width: 1025px){.justify-content-start-d{justify-content:flex-start}.justify-content-end-d{justify-content:flex-end}.justify-content-center-d{justify-content:center}.justify-content-between-d{justify-content:space-between}.justify-content-around-d{justify-content:space-around}}.align-items-start{align-items:flex-start}.align-items-end{align-items:flex-end}.align-items-center{align-items:center}@media(max-width: 767px){.align-items-start-m{align-items:flex-start}.align-items-end-m{align-items:flex-end}.align-items-center-m{align-items:center}}@media(min-width: 768px)and (max-width: 1024px){.align-items-start-t{align-items:flex-start}.align-items-end-t{align-items:flex-end}.align-items-center-t{align-items:center}}@media(min-width: 768px){.align-items-start-td{align-items:flex-start}.align-items-end-td{align-items:flex-end}.align-items-center-td{align-items:center}}@media(min-width: 1025px){.align-items-start-d{align-items:flex-start}.align-items-end-d{align-items:flex-end}.align-items-center-d{align-items:center}}.align-self-start{align-self:flex-start}.align-self-end{align-self:flex-end}.align-self-center{align-self:center}@media(max-width: 767px){.align-self-start-m{align-self:flex-start}.align-self-end-m{align-self:flex-end}.align-self-center-m{align-self:center}}@media(min-width: 768px)and (max-width: 1024px){.align-self-start-t{align-self:flex-start}.align-self-end-t{align-self:flex-end}.align-self-center-t{align-self:center}}@media(min-width: 768px){.align-self-start-td{align-self:flex-start}.align-self-end-td{align-self:flex-end}.align-self-center-td{align-self:center}}@media(min-width: 1025px){.align-self-start-d{align-self:flex-start}.align-self-end-d{align-self:flex-end}.align-self-center-d{align-self:center}}.align-content-start{align-content:flex-start}.align-content-end{align-content:flex-end}.align-content-center{align-content:center}@media(max-width: 767px){.align-content-start-m{align-content:flex-start}.align-content-end-m{align-content:flex-end}.align-content-center-m{align-content:center}}@media(min-width: 768px)and (max-width: 1024px){.align-content-start-t{align-content:flex-start}.align-content-end-t{align-content:flex-end}.align-content-center-t{align-content:center}}@media(min-width: 768px){.align-content-start-td{align-content:flex-start}.align-content-end-td{align-content:flex-end}.align-content-center-td{align-content:center}}@media(min-width: 1025px){.align-content-start-d{align-content:flex-start}.align-content-end-d{align-content:flex-end}.align-content-center-d{align-content:center}}.order-1{order:1}.order-2{order:2}.order-3{order:3}@media(max-width: 767px){.order-m-1{order:1}.order-m-2{order:2}.order-m-3{order:3}}@media(min-width: 768px)and (max-width: 1024px){.order-t-1{order:1}.order-t-2{order:2}.order-t-3{order:3}}@media(min-width: 768px){.order-td-1{order:1}.order-td-2{order:2}.order-td-3{order:3}}@media(min-width: 1025px){.order-d-1{order:1}.order-d-2{order:2}.order-d-3{order:3}}.col-1{width:8.3333333333%}.col-2{width:16.6666666667%}.col-3{width:25%}.col-4{width:33.3333333333%}.col-5{width:41.6666666667%}.col-6{width:50%}.col-7{width:58.3333333333%}.col-8{width:66.6666666667%}.col-9{width:75%}.col-10{width:83.3333333333%}.col-11{width:91.6666666667%}.col-12{width:100%}@media(max-width: 767px){.col-m-1{width:8.3333333333%}.col-m-2{width:16.6666666667%}.col-m-3{width:25%}.col-m-4{width:33.3333333333%}.col-m-5{width:41.6666666667%}.col-m-6{width:50%}.col-m-7{width:58.3333333333%}.col-m-8{width:66.6666666667%}.col-m-9{width:75%}.col-m-10{width:83.3333333333%}.col-m-11{width:91.6666666667%}.col-m-12{width:100%}}@media(min-width: 768px)and (max-width: 1024px){.col-t-1{width:8.3333333333%}.col-t-2{width:16.6666666667%}.col-t-3{width:25%}.col-t-4{width:33.3333333333%}.col-t-5{width:41.6666666667%}.col-t-6{width:50%}.col-t-7{width:58.3333333333%}.col-t-8{width:66.6666666667%}.col-t-9{width:75%}.col-t-10{width:83.3333333333%}.col-t-11{width:91.6666666667%}.col-t-12{width:100%}}@media(min-width: 1025px){.col-d-1{width:8.3333333333%}.col-d-2{width:16.6666666667%}.col-d-3{width:25%}.col-d-4{width:33.3333333333%}.col-d-5{width:41.6666666667%}.col-d-6{width:50%}.col-d-7{width:58.3333333333%}.col-d-8{width:66.6666666667%}.col-d-9{width:75%}.col-d-10{width:83.3333333333%}.col-d-11{width:91.6666666667%}.col-d-12{width:100%}}.offset-1{margin-right:8.3333333333%}.offset-2{margin-right:16.6666666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.3333333333%}.offset-5{margin-right:41.6666666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.3333333333%}.offset-8{margin-right:66.6666666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.3333333333%}.offset-11{margin-right:91.6666666667%}.offset-12{margin-right:100%}@media(max-width: 767px){.offset-m-1{margin-right:8.3333333333%}.offset-m-2{margin-right:16.6666666667%}.offset-m-3{margin-right:25%}.offset-m-4{margin-right:33.3333333333%}.offset-m-5{margin-right:41.6666666667%}.offset-m-6{margin-right:50%}.offset-m-7{margin-right:58.3333333333%}.offset-m-8{margin-right:66.6666666667%}.offset-m-9{margin-right:75%}.offset-m-10{margin-right:83.3333333333%}.offset-m-11{margin-right:91.6666666667%}.offset-m-12{margin-right:100%}}@media(min-width: 768px)and (max-width: 1024px){.offset-t-1{margin-right:8.3333333333%}.offset-t-2{margin-right:16.6666666667%}.offset-t-3{margin-right:25%}.offset-t-4{margin-right:33.3333333333%}.offset-t-5{margin-right:41.6666666667%}.offset-t-6{margin-right:50%}.offset-t-7{margin-right:58.3333333333%}.offset-t-8{margin-right:66.6666666667%}.offset-t-9{margin-right:75%}.offset-t-10{margin-right:83.3333333333%}.offset-t-11{margin-right:91.6666666667%}.offset-t-12{margin-right:100%}}@media(min-width: 1025px){.offset-d-1{margin-right:8.3333333333%}.offset-d-2{margin-right:16.6666666667%}.offset-d-3{margin-right:25%}.offset-d-4{margin-right:33.3333333333%}.offset-d-5{margin-right:41.6666666667%}.offset-d-6{margin-right:50%}.offset-d-7{margin-right:58.3333333333%}.offset-d-8{margin-right:66.6666666667%}.offset-d-9{margin-right:75%}.offset-d-10{margin-right:83.3333333333%}.offset-d-11{margin-right:91.6666666667%}.offset-d-12{margin-right:100%}}.bg-primary{background-color:#000}.bg-secondary{background-color:#ebff00}.bg-light{background-color:#f5f5f5}.bg-medium{background-color:#a9a9a9}.bg-dark{background-color:#313131}.bg-grey{background-color:#8a959c}.bg-red{background-color:#d53d0b}.bg-green{background-color:#198754}.bg-black{background-color:#000}.bg-white{background-color:#fff}.m-small{margin:30px}.m-t-small{margin-top:30px}.m-b-small{margin-bottom:30px}.m-l-small{margin-left:30px}.m-r-small{margin-left:30px}.m-medium{margin:60px}.m-t-medium{margin-top:60px}.m-b-medium{margin-bottom:60px}.m-l-medium{margin-left:60px}.m-r-medium{margin-left:60px}.m-large{margin:100px}.m-t-large{margin-top:100px}.m-b-large{margin-bottom:100px}.m-l-large{margin-left:100px}.m-r-large{margin-left:100px}@media(max-width: 767px){.m-t-large{margin-top:56px}}@media(min-width: 768px)and (max-width: 1024px){.m-t-large{margin-top:60px}}@media(min-width: 1025px){.m-t-large{margin-top:100px}}@media(max-width: 767px){.m-b-large{margin-bottom:56px}}@media(min-width: 768px)and (max-width: 1024px){.m-b-large{margin-bottom:60px}}@media(min-width: 1025px){.m-b-large{margin-bottom:100px}}@media(max-width: 767px){.m-l-large{margin-left:56px}}@media(min-width: 768px)and (max-width: 1024px){.m-l-large{margin-left:60px}}@media(min-width: 1025px){.m-l-large{margin-left:100px}}@media(max-width: 767px){.m-r-large{margin-right:56px}}@media(min-width: 768px)and (max-width: 1024px){.m-r-large{margin-right:60px}}@media(min-width: 1025px){.m-r-large{margin-right:100px}}@media(max-width: 767px){.m-t-medium{margin-top:32px}}@media(min-width: 768px)and (max-width: 1024px){.m-t-medium{margin-top:60px}}@media(min-width: 1025px){.m-t-medium{margin-top:60px}}@media(max-width: 767px){.m-b-medium{margin-bottom:32px}}@media(min-width: 768px)and (max-width: 1024px){.m-b-medium{margin-bottom:60px}}@media(min-width: 1025px){.m-b-medium{margin-bottom:60px}}@media(max-width: 767px){.m-l-medium{margin-left:32px}}@media(min-width: 768px)and (max-width: 1024px){.m-l-medium{margin-left:60px}}@media(min-width: 1025px){.m-l-medium{margin-left:60px}}@media(max-width: 767px){.m-r-medium{margin-right:32px}}@media(min-width: 768px)and (max-width: 1024px){.m-r-medium{margin-right:60px}}@media(min-width: 1025px){.m-r-medium{margin-right:60px}}@media(max-width: 767px){.m-t-small{margin-top:24px}}@media(min-width: 768px)and (max-width: 1024px){.m-t-small{margin-top:30px}}@media(min-width: 1025px){.m-t-small{margin-top:30px}}@media(max-width: 767px){.m-b-small{margin-bottom:24px}}@media(min-width: 768px)and (max-width: 1024px){.m-b-small{margin-bottom:30px}}@media(min-width: 1025px){.m-b-small{margin-bottom:30px}}@media(max-width: 767px){.m-l-small{margin-left:24px}}@media(min-width: 768px)and (max-width: 1024px){.m-l-small{margin-left:30px}}@media(min-width: 1025px){.m-l-small{margin-left:30px}}@media(max-width: 767px){.m-r-small{margin-right:24px}}@media(min-width: 768px)and (max-width: 1024px){.m-r-small{margin-right:30px}}@media(min-width: 1025px){.m-r-small{margin-right:30px}}@media(max-width: 767px){.m-t-extrasmall{margin-top:8px}}@media(min-width: 768px)and (max-width: 1024px){.m-t-extrasmall{margin-top:5px}}@media(min-width: 1025px){.m-t-extrasmall{margin-top:5px}}@media(max-width: 767px){.m-b-extrasmall{margin-bottom:8px}}@media(min-width: 768px)and (max-width: 1024px){.m-b-extrasmall{margin-bottom:5px}}@media(min-width: 1025px){.m-b-extrasmall{margin-bottom:5px}}@media(max-width: 767px){.m-l-extrasmall{margin-left:8px}}@media(min-width: 768px)and (max-width: 1024px){.m-l-extrasmall{margin-left:5px}}@media(min-width: 1025px){.m-l-extrasmall{margin-left:5px}}@media(max-width: 767px){.m-r-extrasmall{margin-right:8px}}@media(min-width: 768px)and (max-width: 1024px){.m-r-extrasmall{margin-right:5px}}@media(min-width: 1025px){.m-r-extrasmall{margin-right:5px}}.text-left{text-align:left}@media(max-width: 767px){.text-m-left{text-align:left}}@media(min-width: 768px)and (max-width: 1024px){.text-t-left{text-align:left}}@media(min-width: 768px){.text-td-left{text-align:left}}@media(min-width: 1025px){.text-d-left{text-align:left}}.text-center{text-align:center}@media(max-width: 767px){.text-m-center{text-align:center}}@media(min-width: 768px)and (max-width: 1024px){.text-t-center{text-align:center}}@media(min-width: 768px){.text-td-center{text-align:center}}@media(min-width: 1025px){.text-d-center{text-align:center}}.text-right{text-align:right}@media(max-width: 767px){.text-m-right{text-align:right}}@media(min-width: 768px)and (max-width: 1024px){.text-t-right{text-align:right}}@media(min-width: 768px){.text-td-right{text-align:right}}@media(min-width: 1025px){.text-d-right{text-align:right}}.text-primary{color:#000}.text-secondary{color:#ebff00}.text-light{color:#f5f5f5}.text-medium{color:#a9a9a9}.text-dark{color:#313131}.text-grey{color:#8a959c}.text-red{color:#d53d0b}.text-green{color:#198754}.text-black{color:#000}.text-white{color:#fff}@keyframes rotating{from{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loop-anim{0%{margin-left:0}100%{margin-left:var(--to-width)}}@media(max-width: 767px){.padding{padding-top:56px;padding-bottom:56px}}@media(min-width: 768px)and (max-width: 1024px){.padding{padding-top:60px;padding-bottom:60px}}@media(min-width: 1025px){.padding{padding-top:100px;padding-bottom:100px}}@media(max-width: 767px){.padding-top{padding-top:56px}}@media(min-width: 768px)and (max-width: 1024px){.padding-top{padding-top:60px}}@media(min-width: 1025px){.padding-top{padding-top:100px}}@media(max-width: 767px){.padding-bottom{padding-bottom:56px}}@media(min-width: 768px)and (max-width: 1024px){.padding-bottom{padding-bottom:60px}}@media(min-width: 1025px){.padding-bottom{padding-bottom:100px}}@media(min-width: 1025px){.padding-d{padding-top:100px;padding-bottom:100px}}@media(min-width: 1025px){.padding-top-d{padding-top:100px}}@media(min-width: 1025px){.padding-bottom-d{padding-bottom:100px}}@media(max-width: 767px){.padding-m{padding-top:56px;padding-bottom:56px}}@media(min-width: 768px)and (max-width: 1024px){.padding-m{padding-top:60px;padding-bottom:60px}}@media(max-width: 767px){.padding-top-m{padding-top:56px}}@media(min-width: 768px)and (max-width: 1024px){.padding-top-m{padding-top:60px}}@media(max-width: 767px){.padding-bottom-m{padding-bottom:56px}}@media(min-width: 768px)and (max-width: 1024px){.padding-bottom-m{padding-bottom:60px}}@media(max-width: 767px){.margin{margin-top:56px;margin-bottom:56px}}@media(min-width: 768px)and (max-width: 1024px){.margin{margin-top:60px;margin-bottom:60px}}@media(min-width: 1025px){.margin{margin-top:100px;margin-bottom:100px}}@media(max-width: 767px){.margin-top{margin-top:56px}}@media(min-width: 768px)and (max-width: 1024px){.margin-top{margin-top:60px}}@media(min-width: 1025px){.margin-top{margin-top:100px}}@media(max-width: 767px){.margin-bottom{margin-bottom:56px}}@media(min-width: 768px)and (max-width: 1024px){.margin-bottom{margin-bottom:60px}}@media(min-width: 1025px){.margin-bottom{margin-bottom:100px}}@media(min-width: 1025px){.margin-d{margin-top:100px;margin-bottom:100px}}@media(min-width: 1025px){.margin-top-d{margin-top:100px}}@media(min-width: 1025px){.margin-bottom-d{margin-bottom:100px}}@media(max-width: 767px){.margin-m{margin-top:56px;margin-bottom:56px}}@media(min-width: 768px)and (max-width: 1024px){.margin-m{margin-top:60px;margin-bottom:60px}}@media(max-width: 767px){.margin-top-m{margin-top:56px}}@media(min-width: 768px)and (max-width: 1024px){.margin-top-m{margin-top:60px}}@media(max-width: 767px){.margin-bottom-m{margin-bottom:56px}}@media(min-width: 768px)and (max-width: 1024px){.margin-bottom-m{margin-bottom:60px}}.swiper-button-next::after,.swiper-button-prev::after{display:none}.swiper-button-next svg,.swiper-button-prev svg{width:24px;height:24px}.swiper-container-horizontal>.swiper-pagination-progressbar{top:auto !important;bottom:0px}.swiper{overflow:visible !important;position:relative}.swiper .swiper-wrapper{position:relative}.swiper .swiper-slide{height:auto !important}.swiper .swiper-nav{display:flex;align-items:center}@media(max-width: 767px){.swiper .swiper-nav{margin-top:24px;gap:24px}}@media(min-width: 768px){.swiper .swiper-nav{margin-top:30px;gap:30px}}.swiper .arrow-wrap{display:flex;gap:16px}.swiper .arrow-wrap .swiper-button-prev,.swiper .arrow-wrap .swiper-button-next{margin-top:0;position:static;width:33px;height:33px;border-radius:50%;border:1px solid var(--primary)}.swiper .arrow-wrap .swiper-button-prev svg,.swiper .arrow-wrap .swiper-button-next svg{display:block;width:16px;height:16px;fill:var(--primary)}.swiper .arrow-wrap .swiper-button-prev{padding-right:2px}.swiper .arrow-wrap .swiper-button-next{padding-left:2px}.swiper .swiper-pagination{position:static;z-index:1;background-color:rgba(0,0,0,0);border-radius:20px;height:6px;overflow:hidden}.swiper .swiper-pagination::before{content:"";width:100%;height:1px;background-color:#d8d8d8;position:absolute;top:50%;bottom:initial;left:50%;right:initial;transform:translate(-50%, -50%)}.swiper .swiper-pagination .swiper-pagination-progressbar-fill{background-color:var(--secondary);border-radius:20px}
