/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure{display:block}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}main{display:block}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}input{overflow:visible}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;display:table;max-width:100%;padding:0;color:inherit;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}details{display:block}summary{display:list-item}menu{display:block}canvas{display:inline-block}[hidden],template{display:none}@font-face{font-family:Gotham Pro;src:url(.././assets/fonts/GothamPro-Medium6fe466da15644ccc370d3b2ce3a19f6f.eot);src:local("Gotham Pro Medium"),local("GothamPro-Medium"),url(.././assets/fonts/GothamPro-Medium6fe466da15644ccc370d3b2ce3a19f6f.eot?#iefix) format("embedded-opentype"),url(.././assets/fonts/GothamPro-Mediumb86e995a10856a8b8e222fe8ff00a74f.woff) format("woff"),url(.././assets/fonts/GothamPro-Mediumc161369173f822acd66d2ff8eea64c52.ttf) format("truetype");font-weight:500;font-style:normal}@font-face{font-family:Gotham Pro;src:url(.././assets/fonts/GothamPro-Boldee9b8c537d217fef51d4bca8cf436d7d.eot);src:local("Gotham Pro Bold"),local("GothamPro-Bold"),url(.././assets/fonts/GothamPro-Boldee9b8c537d217fef51d4bca8cf436d7d.eot?#iefix) format("embedded-opentype"),url(.././assets/fonts/GothamPro-Bolda3d7d652af07c3610c453b4a51c788c7.woff) format("woff"),url(.././assets/fonts/GothamPro-Boldc15ee62b232cedc240947b6d814fb750.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:Gotham Pro;src:url(.././assets/fonts/GothamPro-Black3309bc970fb9a0c54595de5973a365e9.eot);src:local("Gotham Pro Black"),local("GothamPro-Black"),url(.././assets/fonts/GothamPro-Black3309bc970fb9a0c54595de5973a365e9.eot?#iefix) format("embedded-opentype"),url(.././assets/fonts/GothamPro-Blackd563ad87622a3dfeea9ff9ee22678caa.woff) format("woff"),url(.././assets/fonts/GothamPro-Blackefb0c02a5dbe65a7115b477e74c7a661.ttf) format("truetype");font-weight:900;font-style:normal}@font-face{font-family:Gotham Pro;src:url(.././assets/fonts/GothamProc31a8e097cb6c2901857d8c686f0063d.eot);src:local("Gotham Pro"),local("GothamPro"),url(.././assets/fonts/GothamProc31a8e097cb6c2901857d8c686f0063d.eot?#iefix) format("embedded-opentype"),url(.././assets/fonts/GothamPro3cb46b372ab77d032576b9f70c83d1ff.woff) format("woff"),url(.././assets/fonts/GothamPro3100f91bbd9e9ca9ecd00255cac7d11c.ttf) format("truetype");font-weight:400;font-style:normal}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box;outline:none}body,html{min-height:100%}body{-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;opacity:1;-webkit-transition:opacity .4s ease;transition:opacity .4s ease;font-family:Gotham Pro,sans-serif;font-weight:400;color:#000;background-color:#1a1a23;font-size:1.125rem;line-height:1.8125rem;overflow-x:hidden}@media screen and (max-width:767px){body{font-size:.9375rem;line-height:1.4375rem}}body.transition{opacity:0}html{-webkit-transition:background-color .4s ease;transition:background-color .4s ease}html.transition{background-color:#fff}.main{overflow:hidden;position:relative}p{margin:0;display:block}button,input,textarea{border-radius:0;-webkit-box-shadow:none;box-shadow:none;outline:none;font-family:inherit}a{color:inherit}input:-webkit-autofill,input:-webkit-autofill:active,input:-webkit-autofill:focus,input:-webkit-autofill:hover{-webkit-box-shadow:inset 0 0 0 1.875rem #fff!important;box-shadow:inset 0 0 0 1.875rem #fff!important}@media screen and (max-width:767px){input:-webkit-autofill,input:-webkit-autofill:active,input:-webkit-autofill:focus,input:-webkit-autofill:hover{-webkit-box-shadow:inset 0 0 0 1.875rem #fff!important;box-shadow:inset 0 0 0 1.875rem #fff!important}}@media screen and (max-width:767px){.container{padding-left:.9375rem;padding-right:.9375rem}}p{margin-bottom:1em}@media screen and (max-width:767px){p{margin-bottom:1.2em}}@media screen and (max-width:767px){.show--desktop-and-tablet{display:none}}@media screen and (min-width:768px){.show--mobile{display:none}}.link{text-decoration:none}.link--yellow{color:#c4b153}.link--yellow:active,.link--yellow:hover{color:#fdf8e0}.link--yellow:visited{color:#c4b153}.link--blue{color:#4e75fa}.link--blue:active,.link--blue:hover{color:#839efb}.link--blue:visited{color:#3651af}.link--red{color:#ff362f}.link--red:active,.link--red:hover{color:#ff8682}.link--red:visited{color:#b22520}.text--yellow{color:#f5de68}.text--blue{color:#4e76f9}.text--red{color:#ff362f}html{font-size:16px}@media screen and (min-width:1024px) and (max-width:1439px){html{font-size:1.1111111vw}}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;width:10.5rem;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.nav{width:12rem}}.nav__item{width:2.0625rem;height:1.875rem;background:url(.././assets/images/heart458b416d330634fcdce5e456bf7b7fa1.svg) no-repeat 50%/contain}.nav__item--active,.nav__item:hover{background-image:url(.././assets/images/heart--hover5547326ecb45e5305472a4e4c54dde92.svg)}.nav__item:active{background-image:url(.././assets/images/heart--activeb9125b37bcdaa496a8218444bd665bdd.svg)}.header{position:fixed;z-index:9;top:0;left:0;width:100%;opacity:1;visibility:visible}@media screen and (min-width:768px){.header--hidden{opacity:0;visibility:hidden}}@media screen and (min-width:768px){.header--top{position:absolute;opacity:1;visibility:visible}}@media screen and (min-width:768px){.header--ready{-webkit-transition:opacity .2s ease-in-out,visibility .2s ease-in-out;transition:opacity .2s ease-in-out,visibility .2s ease-in-out}}.header__container{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (min-width:1024px){.header__container{width:69.75rem;top:1.3125rem;padding:.5625rem 1.4375rem .5625rem 1.875rem;left:50%;-webkit-transform:translateX(-27.5625rem);transform:translateX(-27.5625rem)}}@media screen and (min-width:768px) and (max-width:1023px){.header__container{position:absolute;left:2.3125rem;top:1.8125rem;right:2.3125rem;width:auto;padding:.625rem 1.5625rem .625rem .6875rem}}@media screen and (max-width:767px){.header__container{position:absolute;left:1rem;top:.9375rem;right:0;width:auto;padding:.6875rem 1rem .6875rem .375rem}}.header__container:before{content:"";position:absolute;z-index:-2;background-color:#303038;top:-.1875rem;left:-.1875rem;bottom:0;right:0;-webkit-box-shadow:0 -.1875rem #303038,-.1875rem 0 #303038,-.1875rem .1875rem #0f0f17,0 .375rem #0f0f17,.1875rem -.1875rem #0f0f17,.375rem 0 #0f0f17,.1875rem .375rem #0f0f17,.375rem .1875rem #0f0f17;box-shadow:0 -.1875rem #303038,-.1875rem 0 #303038,-.1875rem .1875rem #0f0f17,0 .375rem #0f0f17,.1875rem -.1875rem #0f0f17,.375rem 0 #0f0f17,.1875rem .375rem #0f0f17,.375rem .1875rem #0f0f17}.header__container:after{content:"";position:absolute;z-index:-1;top:0;left:0;width:100%;height:100%;background-color:#1a1a23;-webkit-box-shadow:0 -.1875rem #1a1a23,-.1875rem 0 #1a1a23,0 .1875rem #1a1a23,.1875rem 0 #1a1a23;box-shadow:0 -.1875rem #1a1a23,-.1875rem 0 #1a1a23,0 .1875rem #1a1a23,.1875rem 0 #1a1a23}@media screen and (max-width:767px){.header__nav{display:none}}.header__slogan{color:#fcfcfc;width:6.875rem;font-size:.75rem;line-height:120%;text-decoration:none;display:block}@media screen and (min-width:1024px){.header__slogan{display:none}}@media screen and (min-width:768px) and (max-width:1023px){.header__slogan{display:none}}.header__slogan--blue{color:#4e76f9}.header__slogan--red{color:#ff362f}.header__slogan--yellow{color:#f5de68}.header__logos{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:11.25rem}@media screen and (max-width:767px){.header__logos{width:8.625rem}}.header__logo{display:block}.header__logo--pb{height:2.5rem}@media screen and (max-width:767px){.header__logo--pb{height:1.5rem}}.header__logo--ya{height:1.125rem}@media screen and (max-width:767px){.header__logo--ya{height:.8125rem}}.header__logo-img{display:block;height:100%}.header__logo-divider{margin:auto;height:.9375rem;width:.9375rem;background:url(.././assets/images/flashff3c9e928694625612f69b3701529c52.svg) no-repeat 50%/contain}.header__progress{position:absolute;top:100%;left:-.1875rem;right:-.1875rem;margin-top:.375rem;height:.1875rem}.header__progress-line{position:absolute;width:0;top:0;right:0;height:100%;background-color:#ff3d2f}.footer__container{position:relative;background-color:#0f0f17;color:#fff;-webkit-box-shadow:0 -.375rem 0 -.1875rem #303038;box-shadow:0 -.375rem 0 -.1875rem #303038}@media screen and (min-width:1024px){.footer__container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:85rem;margin:3.5625rem auto 0;padding:3rem 7.25rem 4.25rem}}@media screen and (min-width:768px) and (max-width:1023px){.footer__container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:auto;margin:3.5625rem auto 0;padding:3rem 2.125rem 5.5rem}}@media screen and (max-width:767px){.footer__container{-webkit-box-shadow:0 -.1875rem 0 0 #303038;box-shadow:0 -.1875rem 0 0 #303038;padding-bottom:5.625rem;padding-top:3rem}}.footer__title{font-weight:500;width:100%;font-size:1.25rem;line-height:130%;margin-bottom:1.3125rem}.footer__list{list-style:none;margin-top:auto;padding:0}@media screen and (min-width:768px){.footer__list{width:41.25rem;font-size:1rem;line-height:150%;-webkit-column-count:2;-moz-column-count:2;column-count:2;-webkit-column-gap:2.5rem;-moz-column-gap:2.5rem;column-gap:2.5rem}}@media screen and (max-width:767px){.footer__list{font-size:.8125rem;line-height:140%;margin-bottom:4.375rem}}.footer__list-item{margin-bottom:.75rem}@media screen and (max-width:767px){.footer__list-item{margin-bottom:.5rem}}.footer__list-item b{font-weight:500}.footer__list-link{color:#f5de68;text-decoration:none}.footer__list-link:hover{color:inherit}.footer__logos{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:auto}@media screen and (min-width:768px){.footer__logos{width:19.3125rem}}@media screen and (min-width:768px) and (max-width:1023px){.footer__logos{margin-left:auto}}@media screen and (max-width:767px){.footer__logos{width:auto}}.footer__logo{display:block;text-decoration:none;margin-top:auto}.footer__logo--ya{height:1.9375rem}@media screen and (max-width:767px){.footer__logo--ya{height:1.625rem;margin-bottom:.3125rem}}.footer__logo--pb{height:4.375rem}@media screen and (max-width:767px){.footer__logo--pb{height:3.625rem}}.footer__logo-img{display:block;height:100%}.social{position:fixed;z-index:8}@media screen and (min-width:1024px){.social{top:50%;left:3.5625rem;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.social--fixed{position:absolute;bottom:0;top:auto;-webkit-transform:translateY(0);transform:translateY(0)}}@media screen and (max-width:1023px){.social{bottom:0;left:0;width:100%;background-color:#0f0f17;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-shadow:0 -.1875rem 0 #1a1a23;box-shadow:0 -.1875rem 0 #1a1a23;padding:.75rem .5625rem .5625rem;opacity:0;visibility:hidden;-webkit-transform:translateY(100%);transform:translateY(100%);-webkit-transition:opacity .2s ease-in-out,visibility .2s ease-in-out,-webkit-transform .2s ease-in-out;transition:opacity .2s ease-in-out,visibility .2s ease-in-out,-webkit-transform .2s ease-in-out;transition:opacity .2s ease-in-out,visibility .2s ease-in-out,transform .2s ease-in-out;transition:opacity .2s ease-in-out,visibility .2s ease-in-out,transform .2s ease-in-out,-webkit-transform .2s ease-in-out}.social--shown{opacity:1;visibility:visible;-webkit-transform:translateY(0);transform:translateY(0)}}.social__holder{position:fixed;z-index:-1}@media screen and (min-width:1024px){.social__holder{top:50%;left:3.5625rem;-webkit-transform:translateY(-50%);transform:translateY(-50%);height:12.1875rem;width:3.75rem}}.ya-share2__list{padding:0;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;list-style:none}@media screen and (max-width:1023px){.ya-share2__list{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:1024px){.ya-share2__item{margin-top:.25rem;margin-bottom:.3125rem}.ya-share2__item:first-child{margin-top:0}}@media screen and (max-width:1023px){.ya-share2__item{margin-left:.25rem;margin-right:.3125rem}.ya-share2__item:first-child{margin-left:auto}}.ya-share2__link{display:block;position:relative;width:3.75rem;height:2.625rem;background:no-repeat 50%/contain;text-decoration:none;visibility:visible}.ya-share2__link:after,.ya-share2__link:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;visibility:hidden;background:no-repeat 50%/contain}.ya-share2__link:hover{visibility:hidden}.ya-share2__link:hover:before{visibility:visible}.ya-share2__link:active{visibility:hidden}.ya-share2__link:active:after{visibility:visible}.ya-share2__item.ya-share2__item_service_facebook .ya-share2__link{background-image:url(.././assets/images/social-fb95710c1363bba851d7d797129e37925a.svg)}.ya-share2__item.ya-share2__item_service_facebook .ya-share2__link:before{background-image:url(.././assets/images/social-fb--hover3b5c3971e334721aa4ec0488e2980859.svg)}.ya-share2__item.ya-share2__item_service_facebook .ya-share2__link:after{background-image:url(.././assets/images/social-fb--activea40eb437bc5c9413d521afbea5152bd2.svg)}.ya-share2__item.ya-share2__item_service_vkontakte .ya-share2__link{background-image:url(.././assets/images/social-vkb008ed38e1532e6377f154a622efcd5b.svg)}.ya-share2__item.ya-share2__item_service_vkontakte .ya-share2__link:before{background-image:url(.././assets/images/social-vk--hovere0395694f572b6a9ebb971bf66f718ba.svg)}.ya-share2__item.ya-share2__item_service_vkontakte .ya-share2__link:after{background-image:url(.././assets/images/social-vk--activeb5b15b2e4843b1c04d42880fb1becc02.svg)}.ya-share2__item.ya-share2__item_service_telegram .ya-share2__link{background-image:url(.././assets/images/social-tg7fe7dab4d0dd569cf106aa0b831b1728.svg)}.ya-share2__item.ya-share2__item_service_telegram .ya-share2__link:before{background-image:url(.././assets/images/social-tg--hover81a743efd63a86aab665f88bb04e271b.svg)}.ya-share2__item.ya-share2__item_service_telegram .ya-share2__link:after{background-image:url(.././assets/images/social-tg--active67e4a6bdaaaa1155ecb20101bdb99ad7.svg)}.ya-share2__item.ya-share2__item_service_twitter .ya-share2__link{background-image:url(.././assets/images/social-tw8e6cddd7984c281c791fab7b23c06e43.svg)}.ya-share2__item.ya-share2__item_service_twitter .ya-share2__link:before{background-image:url(.././assets/images/social-tw--hoverc7f0745a0f6863b39d93fb4787ac1432.svg)}.ya-share2__item.ya-share2__item_service_twitter .ya-share2__link:after{background-image:url(.././assets/images/social-tw--active9c0472f4e838754c8ce572be20dcb4a1.svg)}@media screen and (max-width:1023px){.ya-share2{margin-left:auto}}@media screen and (min-width:1024px){.ya-share2__item.ya-share2__item_service_telegram{margin-bottom:0}}@media screen and (max-width:1023px){.ya-share2__item.ya-share2__item_service_telegram{margin-right:auto}}.ya-share2__badge,.ya-share2__title{display:none}.float-nav{position:fixed;z-index:7;bottom:0;left:0;width:100%;background-color:#0f0f17;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;-webkit-box-shadow:0 -.1875rem 0 #1a1a23;box-shadow:0 -.1875rem 0 #1a1a23;padding:1.0625rem .5625rem 1rem}@media screen and (min-width:768px){.float-nav{display:none}}.float-nav__nav{margin:auto}.section{position:relative}@media screen and (min-width:1024px){.section+.section{margin-top:5rem}}@media screen and (min-width:768px) and (max-width:1023px){.section+.section{margin-top:5rem}}@media screen and (max-width:767px){.section+.section{margin-top:.5625rem}}.section__container{position:relative;background-color:#fff}@media screen and (min-width:1024px){.section__container{left:50%;-webkit-transform:translateX(-35.1875rem);transform:translateX(-35.1875rem);-webkit-box-shadow:0 .375rem 0 -.1875rem #ebebeb,0 -.1875rem 0 #0f0f17;box-shadow:0 .375rem 0 -.1875rem #ebebeb,0 -.1875rem 0 #0f0f17;width:55.8125rem;padding:5.1875rem 7.25rem 2rem}}@media screen and (min-width:768px) and (max-width:1023px){.section__container{width:auto;padding:5.125rem 2.125rem 1.6875rem}}@media screen and (max-width:767px){.section__container{padding-top:1.875rem;padding-bottom:2.1875rem}}.section__img{position:absolute;display:block;top:100%;left:50%;max-width:100%;pointer-events:none;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media screen and (max-width:767px){.section__img{display:none}}.section__img-mobile{display:none}@media screen and (max-width:767px){.section__img-mobile{display:block}}.section__blockquote{font-weight:900;font-size:1.375rem;line-height:2.1875rem;padding:0;margin:2.25rem 0}@media screen and (max-width:767px){.section__blockquote{margin:1.3125rem 0;font-size:1rem;line-height:1.5rem}}.section__blockquote--yellow{color:#c4b153}.section__blockquote--blue{color:#4e76f9}.section__blockquote--red{color:#ff362f}.section__list{margin:1.25rem 0;padding:0 0 0 5.8125rem;list-style:none}@media screen and (min-width:768px) and (max-width:1023px){.section__list{padding-left:2.875rem}}@media screen and (max-width:767px){.section__list{padding-left:.875rem}}.section__list-item{position:relative;padding-left:1.5rem;margin-bottom:1.0625rem}.section__list-item:before{content:"";position:absolute;top:.3125rem;left:0;width:.875rem;height:.875rem;background:url(.././assets/images/flash--yellowe0c7962e4f8febbfea34e90d1f2fbd10.svg) no-repeat 50%/contain}.section__title{position:relative;font-weight:900;font-size:1.625rem;line-height:2.375rem;margin:0 -.3125rem 1.25rem 0}@media screen and (max-width:767px){.section__title{font-size:1.125rem;line-height:145%}}.section__counter{display:block}@media screen and (min-width:1024px){.section__counter{position:absolute;top:.5rem;left:-5rem}}@media screen and (min-width:768px) and (max-width:1023px){.section__counter{margin-top:-2.1875rem;margin-bottom:.875rem}}@media screen and (max-width:767px){.section__counter{margin-top:.4375rem;margin-bottom:.9375rem}}.section__counter-img{display:block;height:1.125rem}@media screen and (min-width:1024px){.section__person{margin-top:3.25rem;margin-bottom:1.625rem}}@media screen and (min-width:768px) and (max-width:1023px){.section__person{margin-top:3.25rem;margin-bottom:1.625rem}}@media screen and (max-width:767px){.section__person{margin-bottom:1.125rem;margin-top:2.3125rem}}.section__title+.section__person{margin-top:2.5rem}@media screen and (max-width:767px){.section__title+.section__person{margin-top:2.0625rem}}.section__person-name{font-weight:900;font-size:1.375rem;line-height:2.1875rem}@media screen and (max-width:767px){.section__person-name{font-size:1rem;line-height:1.625rem}}.section__person-position{font-size:.875rem;line-height:1.6}@media screen and (max-width:767px){.section__person-position{font-size:.75rem;line-height:1.6}}.section__person-link{text-decoration:none;color:#ff362f}.section__person-link:hover{text-decoration:underline}.main-intro{color:#fff}.main-intro__container{position:relative;background-color:#0f0f17;-webkit-box-shadow:0 .375rem 0 -.1875rem #303038;box-shadow:0 .375rem 0 -.1875rem #303038}@media screen and (min-width:1024px){.main-intro__container{left:50%;-webkit-transform:translateX(-35.1875rem);transform:translateX(-35.1875rem);background:#0f0f17 url(.././assets/images/main-intro--desktopc62ea151763207b9528045ddb6aa12d4.svg) no-repeat 99.5% 79%/30rem auto;width:77.6875rem;padding:9.4375rem 21.625rem 6.5rem 7.25rem;margin-bottom:5.3125rem}}@media screen and (min-width:768px) and (max-width:1023px){.main-intro__container{background:#0f0f17 url(.././assets/images/main-intro--desktopc62ea151763207b9528045ddb6aa12d4.svg) no-repeat 99.5% 79%/27.625rem auto;width:auto;padding:9.4375rem 21.625rem 6.5rem 2.125rem;margin-bottom:5.3125rem}}@media screen and (max-width:767px){.main-intro__container{text-align:center;background:#0f0f17 url(.././assets/images/main-intro--mobilec2df0d2b79ff618c1fea942560a3b416.svg) no-repeat 50% 100%;padding:9.4375rem .9375rem;min-height:39rem;margin-bottom:2.3125rem}}.main-intro__logos{margin-bottom:3.4375rem}@media screen and (max-width:767px){.main-intro__logos{display:none}}.main-intro__title{font-weight:900}@media screen and (min-width:768px){.main-intro__title{font-size:5.4375rem;line-height:90%;margin:0 0 1.875rem}}@media screen and (max-width:767px){.main-intro__title{font-size:3rem;line-height:2.6875rem;margin:0 0 1.125rem}}@media screen and (max-width:767px){.main-intro__text{font-size:1rem;line-height:1.375rem;margin-bottom:1.25rem}}.main-intro__scroll-to{display:none}@media screen and (max-width:767px){.main-intro__scroll-to{display:block;height:1.875rem;width:1.875rem;margin:auto;background:transparent url(.././assets/images/scroll-down941fa243d14427dd7865e306910a2410.svg) no-repeat 50%/contain;border:none;outline:none}}.intro{color:#fff}.intro__container{position:relative;background-color:#0f0f17;-webkit-box-shadow:0 .375rem 0 -.1875rem #303038;box-shadow:0 .375rem 0 -.1875rem #303038}@media screen and (min-width:1024px){.intro__container{left:50%;-webkit-transform:translateX(-35.1875rem);transform:translateX(-35.1875rem);width:80.1875rem;padding:10.5rem 23.9375rem 3.25rem 7.25rem;margin-bottom:3rem}}@media screen and (min-width:768px) and (max-width:1023px){.intro__container{width:auto;padding:10.5rem 2.125rem 5.5625rem;margin-bottom:2.375rem}}@media screen and (max-width:767px){.intro__container{padding-top:7.9375rem;padding-bottom:4.125rem}}.intro__pre{font-size:.75rem;line-height:1.1875rem;margin-bottom:2.1875rem}@media screen and (max-width:767px){.intro__pre{display:none}}.intro__pre--yellow{color:#f5de68}.intro__pre--blue{color:#4e75fa}.intro__pre--red{color:#ff362f}.intro__title{font-size:2.8125rem;line-height:3.375rem;margin:0 0 .875rem;font-weight:400}@media screen and (max-width:767px){.intro__title{font-size:1.5rem;line-height:120%;margin-bottom:1.25rem}}.intro__text{max-width:41.25rem}@media screen and (min-width:768px) and (max-width:1023px){.intro__text{margin-right:15.875rem}}@media screen and (max-width:767px){.intro__text{font-size:1rem;line-height:140%;margin-bottom:1.875rem}}.intro__img{position:absolute;bottom:0;right:0}.intro__scroll-to{display:none}@media screen and (max-width:767px){.intro__scroll-to{display:block;height:1.875rem;width:1.875rem;background:transparent url(.././assets/images/scroll-down941fa243d14427dd7865e306910a2410.svg) no-repeat 50%/contain;border:none;outline:none}}.pane{position:relative;width:25.875rem;z-index:1}.pane--wide{width:40.5rem}@media screen and (min-width:768px) and (max-width:1023px){.pane{margin-left:auto;margin-right:2.4375rem}.pane+.pane{margin-left:2.4375rem;margin-right:auto}.container .pane{margin-left:auto;margin-right:.375rem}.container .pane+.pane{margin-left:.375rem;margin-right:auto}}@media screen and (max-width:767px){.pane{margin-left:1.3125rem;margin-right:0;width:auto}.pane+.pane{margin-left:0;margin-right:1.3125rem;width:auto}.container .pane{margin-left:.375rem;margin-right:-.9375rem}.container .pane+.pane{margin-left:-.9375rem;margin-right:.375rem}}.pane__header{position:relative;z-index:2;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:.375rem .375rem .375rem 1.6875rem}@media screen and (max-width:767px){.pane__header{min-height:2.8125rem;padding:.3125rem .875rem .3125rem .8125rem}}.pane__header:after{content:"";display:block;width:7.3125rem;height:2.0625rem;background:no-repeat 50%/contain;margin-left:auto}.pane__header--black{background-color:#1a1a23;-webkit-box-shadow:0 -.1875rem #1a1a23,0 .1875rem #1a1a23,-.1875rem 0 #1a1a23,.1875rem 0 #1a1a23,-.1875rem .1875rem #1a1a23,.1875rem .1875rem #1a1a23,-.1875rem -.375rem #303038,0 -.375rem #303038,-.1875rem 0 0 .1875rem #303038,.1875rem -.375rem #0f0f17,.1875rem 0 0 .1875rem #0f0f17,0 .1875rem 0 .1875rem #0f0f17;box-shadow:0 -.1875rem #1a1a23,0 .1875rem #1a1a23,-.1875rem 0 #1a1a23,.1875rem 0 #1a1a23,-.1875rem .1875rem #1a1a23,.1875rem .1875rem #1a1a23,-.1875rem -.375rem #303038,0 -.375rem #303038,-.1875rem 0 0 .1875rem #303038,.1875rem -.375rem #0f0f17,.1875rem 0 0 .1875rem #0f0f17,0 .1875rem 0 .1875rem #0f0f17}.pane__header--black:after{background-image:url(.././assets/images/controls--black1e4b11e93b6e54aba902bb73a7c29536.svg)}.pane__header--blue{background-color:#4e76f9;-webkit-box-shadow:0 -.1875rem #4e76f9,0 .1875rem #4e76f9,-.1875rem 0 #4e76f9,.1875rem 0 #4e76f9,-.1875rem .1875rem #4e76f9,.1875rem .1875rem #4e76f9,-.1875rem -.375rem #839efb,0 -.375rem #839efb,-.1875rem 0 0 .1875rem #839efb,.1875rem -.375rem #3651af,.1875rem 0 0 .1875rem #3651af,0 .1875rem 0 .1875rem #839efb;box-shadow:0 -.1875rem #4e76f9,0 .1875rem #4e76f9,-.1875rem 0 #4e76f9,.1875rem 0 #4e76f9,-.1875rem .1875rem #4e76f9,.1875rem .1875rem #4e76f9,-.1875rem -.375rem #839efb,0 -.375rem #839efb,-.1875rem 0 0 .1875rem #839efb,.1875rem -.375rem #3651af,.1875rem 0 0 .1875rem #3651af,0 .1875rem 0 .1875rem #839efb}.pane__header--blue:after{background-image:url(.././assets/images/controls--blue7915a0426a8e0fc6ea83058969e029fb.svg)}.pane__header--yellow{background-color:#f5de68;-webkit-box-shadow:0 -.1875rem #f5de68,0 .1875rem #f5de68,-.1875rem 0 #f5de68,.1875rem 0 #f5de68,-.1875rem .1875rem #f5de68,.1875rem .1875rem #f5de68,-.1875rem -.375rem #f9eba4,0 -.375rem #f9eba4,-.1875rem 0 0 .1875rem #f9eba4,.1875rem -.375rem #c4b153,.1875rem 0 0 .1875rem #c4b153,0 .1875rem 0 .1875rem #f9eba4;box-shadow:0 -.1875rem #f5de68,0 .1875rem #f5de68,-.1875rem 0 #f5de68,.1875rem 0 #f5de68,-.1875rem .1875rem #f5de68,.1875rem .1875rem #f5de68,-.1875rem -.375rem #f9eba4,0 -.375rem #f9eba4,-.1875rem 0 0 .1875rem #f9eba4,.1875rem -.375rem #c4b153,.1875rem 0 0 .1875rem #c4b153,0 .1875rem 0 .1875rem #f9eba4}.pane__header--yellow:after{background-image:url(.././assets/images/controls--yellowc1dc9d693ccbc8743b50d038aafeb74c.svg)}.pane__header--red{background-color:#ff362f;-webkit-box-shadow:0 -.1875rem #ff362f,0 .1875rem #ff362f,-.1875rem 0 #ff362f,.1875rem 0 #ff362f,-.1875rem .1875rem #ff362f,.1875rem .1875rem #ff362f,-.1875rem -.375rem #dc2b25,0 -.375rem #dc2b25,-.1875rem 0 0 .1875rem #dc2b25,.1875rem -.375rem #aa1812,.1875rem 0 0 .1875rem #aa1812,0 .1875rem 0 .1875rem #dc2b25;box-shadow:0 -.1875rem #ff362f,0 .1875rem #ff362f,-.1875rem 0 #ff362f,.1875rem 0 #ff362f,-.1875rem .1875rem #ff362f,.1875rem .1875rem #ff362f,-.1875rem -.375rem #dc2b25,0 -.375rem #dc2b25,-.1875rem 0 0 .1875rem #dc2b25,.1875rem -.375rem #aa1812,.1875rem 0 0 .1875rem #aa1812,0 .1875rem 0 .1875rem #dc2b25}.pane__header--red:after{background-image:url(.././assets/images/controls--rede50f1a4834f897884f669d77bec2dc03.svg)}.pane__header--wide{padding-left:2.9375rem}@media screen and (max-width:767px){.pane__header--wide{padding-left:.875rem}}.pane__body{position:relative;z-index:1;padding:1.75rem 1.75rem 1.25rem;font-size:1rem;line-height:1.5rem}@media screen and (max-width:767px){.pane__body{font-size:.875rem;line-height:150%;padding:1.5rem .8125rem 1.3125rem}}.pane__body--black{background-color:#1a1a23;color:#fdf8e0;-webkit-box-shadow:0 -.1875rem #1a1a23,0 .1875rem #1a1a23,-.1875rem 0 #1a1a23,.1875rem 0 #1a1a23,-.1875rem -.1875rem 0 .1875rem #303038,0 -.1875rem 0 .375rem #0f0f17,0 .1875rem 0 .1875rem #0f0f17;box-shadow:0 -.1875rem #1a1a23,0 .1875rem #1a1a23,-.1875rem 0 #1a1a23,.1875rem 0 #1a1a23,-.1875rem -.1875rem 0 .1875rem #303038,0 -.1875rem 0 .375rem #0f0f17,0 .1875rem 0 .1875rem #0f0f17}.pane__body--blue{background-color:#dbe3fe;color:#17234a;-webkit-box-shadow:0 -.1875rem #dbe3fe,0 .1875rem #dbe3fe,-.1875rem 0 #dbe3fe,.1875rem 0 #dbe3fe,-.1875rem -.1875rem 0 .1875rem #ecf0ff,0 -.1875rem 0 .375rem #b4c4fa,0 .1875rem 0 .1875rem #b4c4fa;box-shadow:0 -.1875rem #dbe3fe,0 .1875rem #dbe3fe,-.1875rem 0 #dbe3fe,.1875rem 0 #dbe3fe,-.1875rem -.1875rem 0 .1875rem #ecf0ff,0 -.1875rem 0 .375rem #b4c4fa,0 .1875rem 0 .1875rem #b4c4fa}.pane__body--yellow{background-color:#fdf8e0;color:#49421f;-webkit-box-shadow:0 -.1875rem #fdf8e0,0 .1875rem #fdf8e0,-.1875rem 0 #fdf8e0,.1875rem 0 #fdf8e0,-.1875rem -.1875rem 0 .1875rem #fff,0 -.1875rem 0 .375rem #e3d79e,0 .1875rem 0 .1875rem #e3d79e;box-shadow:0 -.1875rem #fdf8e0,0 .1875rem #fdf8e0,-.1875rem 0 #fdf8e0,.1875rem 0 #fdf8e0,-.1875rem -.1875rem 0 .1875rem #fff,0 -.1875rem 0 .375rem #e3d79e,0 .1875rem 0 .1875rem #e3d79e}.pane__body--red{background-color:#ffdfde;color:#470a09;-webkit-box-shadow:0 -.1875rem #ffdfde,0 .1875rem #ffdfde,-.1875rem 0 #ffdfde,.1875rem 0 #ffdfde,-.1875rem -.1875rem 0 .1875rem #fff,0 -.1875rem 0 .375rem #ffb3b0,0 .1875rem 0 .1875rem #ffb3b0;box-shadow:0 -.1875rem #ffdfde,0 .1875rem #ffdfde,-.1875rem 0 #ffdfde,.1875rem 0 #ffdfde,-.1875rem -.1875rem 0 .1875rem #fff,0 -.1875rem 0 .375rem #ffb3b0,0 .1875rem 0 .1875rem #ffb3b0}.pane__body--wide{padding:1.625rem 2.875rem .25rem}@media screen and (max-width:767px){.pane__body--wide{padding-left:.8125rem;padding-right:.8125rem}}.pane__body b{font-weight:500}.pane__btn{display:block;width:11.875rem;margin:1.5625rem auto .3125rem;font-size:1.125rem;line-height:1.75rem;padding:.6875rem;text-align:center;text-decoration:none}@media screen and (max-width:767px){.pane__btn{font-size:1rem;line-height:150%;margin-top:1.0625rem;margin-bottom:0}}.pane__btn--blue{background-color:#4e76f9;color:#ecf0ff;-webkit-box-shadow:-.0625rem -.0625rem 0 .0625rem #839efb,-.125rem .1875rem 0 0 #3651af,.1875rem .1875rem 0 0 #3651af,.1875rem -.125rem 0 0 #3651af;box-shadow:-.0625rem -.0625rem 0 .0625rem #839efb,-.125rem .1875rem 0 0 #3651af,.1875rem .1875rem 0 0 #3651af,.1875rem -.125rem 0 0 #3651af}.pane__btn--blue:active,.pane__btn--blue:hover{-webkit-box-shadow:-.0625rem -.0625rem 0 .0625rem #3651af,-.125rem .1875rem 0 0 #839efb,.1875rem .1875rem 0 0 #839efb,.1875rem -.125rem 0 0 #839efb;box-shadow:-.0625rem -.0625rem 0 .0625rem #3651af,-.125rem .1875rem 0 0 #839efb,.1875rem .1875rem 0 0 #839efb,.1875rem -.125rem 0 0 #839efb}.pane__btn--yellow{background-color:#f5de68;color:#49421f;-webkit-box-shadow:-.0625rem -.0625rem 0 .0625rem #f9eba4,-.125rem .1875rem 0 0 #c4b153,.1875rem .1875rem 0 0 #c4b153,.1875rem -.125rem 0 0 #c4b153;box-shadow:-.0625rem -.0625rem 0 .0625rem #f9eba4,-.125rem .1875rem 0 0 #c4b153,.1875rem .1875rem 0 0 #c4b153,.1875rem -.125rem 0 0 #c4b153}.pane__btn--yellow:active,.pane__btn--yellow:hover{-webkit-box-shadow:-.0625rem -.0625rem 0 .0625rem #c4b153,-.125rem .1875rem 0 0 #f9eba4,.1875rem .1875rem 0 0 #f9eba4,.1875rem -.125rem 0 0 #f9eba4;box-shadow:-.0625rem -.0625rem 0 .0625rem #c4b153,-.125rem .1875rem 0 0 #f9eba4,.1875rem .1875rem 0 0 #f9eba4,.1875rem -.125rem 0 0 #f9eba4}.pane__btn--red{background-color:#ff362f;color:#fff6f5;-webkit-box-shadow:-.0625rem -.0625rem 0 .0625rem #dc2b25,-.125rem .1875rem 0 0 #aa1812,.1875rem .1875rem 0 0 #aa1812,.1875rem -.125rem 0 0 #aa1812;box-shadow:-.0625rem -.0625rem 0 .0625rem #dc2b25,-.125rem .1875rem 0 0 #aa1812,.1875rem .1875rem 0 0 #aa1812,.1875rem -.125rem 0 0 #aa1812}.pane__btn--red:active,.pane__btn--red:hover{-webkit-box-shadow:-.0625rem -.0625rem 0 .0625rem #aa1812,-.125rem .1875rem 0 0 #dc2b25,.1875rem .1875rem 0 0 #dc2b25,.1875rem -.125rem 0 0 #dc2b25;box-shadow:-.0625rem -.0625rem 0 .0625rem #aa1812,-.125rem .1875rem 0 0 #dc2b25,.1875rem .1875rem 0 0 #dc2b25,.1875rem -.125rem 0 0 #dc2b25}.pane__coin{margin-right:.75rem;height:2.0625rem}.pane__link{font-weight:500;text-decoration:underline}.pane__link:hover{text-decoration:none}.pane__link--yellow{color:#f5de68}.pane__link--yellow:active,.pane__link--yellow:hover{color:#fdf8e0}.pane__link--yellow:visited{color:#c4b153}.pane__link--blue{color:#4e76f9}.pane__link--blue:active,.pane__link--blue:hover{color:#839efb}.pane__link--blue:visited{color:#3651af}.pane__link--red{color:#ff362f}.pane__link--red:active,.pane__link--red:hover{color:#ff8682}.pane__link--red:visited{color:#b22520}.pane__img{position:absolute;bottom:100%;left:0}.link-group{list-style:none;margin:3.375rem 0 2.625rem;padding:0}@media screen and (max-width:767px){.link-group{margin-top:2.5625rem;margin-bottom:1.6875rem}}.link-group__item{position:relative;margin-bottom:2.3125rem}@media screen and (max-width:767px){.link-group__item{margin-bottom:1.75rem}}.link-group__item:last-child{margin-bottom:0}.link-group__link{padding-left:3.5rem;font-weight:900;font-size:1.125rem;line-height:160%;text-decoration:underline;display:block}@media screen and (max-width:767px){.link-group__link{font-size:.9375rem;line-height:150%;padding-left:2.4375rem}}.link-group__link:after,.link-group__link:before{content:"";position:absolute;top:-.25rem;left:0;height:1.875rem;width:1.875rem;background:url(.././assets/images/link-arrow442279daeda30cb1d5ebd2c746daed56.svg) no-repeat 50%/contain}@media screen and (max-width:767px){.link-group__link:after,.link-group__link:before{top:-.25rem}}.link-group__link:after{opacity:0}.link-group__link--blue:hover{color:#4e75fa}.link-group__link--blue:after{background-image:url(.././assets/images/link-arrow--blue70b59c1e77ecea352f05bd349487ee07.svg)}.link-group__link--red:hover{color:#ff362f}.link-group__link--red:after{background-image:url(.././assets/images/link-arrow--red7c76b1c2b28e2beec5414bfb86eefc8e.svg)}.link-group__link--yellow:hover{color:#c4b153}.link-group__link--yellow:after{background-image:url(.././assets/images/link-arrow--yellow62a49b6f61d38bf24887a5a357f3a9ca.svg)}.link-group__link:hover{text-decoration:none}.link-group__link:hover:before{opacity:0}.link-group__link:hover:after{opacity:1}.jumper{z-index:20;position:relative;background-color:#f5de68;text-align:center;height:130vh;padding-bottom:14rem;-webkit-box-sizing:content-box;box-sizing:content-box}.jumper__overlay{position:absolute;left:0;bottom:100%;height:100%;width:100%;background-color:#1a1b22;pointer-events:none;opacity:0;will-change:opacity}.jumper__header{position:sticky;top:0;padding-top:3.125rem;padding-left:1.25rem;padding-right:1.25rem}@media screen and (max-width:767px){.jumper__header{padding-top:2.1875rem}}.jumper__text{font-size:1.1875rem;line-height:1.7;max-width:46.25rem;margin-left:auto;margin-right:auto;margin-bottom:1.25rem}@media screen and (max-width:767px){.jumper__text br{display:none}}.jumper__text a{text-decoration:none;color:#4e75fa}@media screen and (max-width:767px){.jumper__text{font-size:.875rem;line-height:1.5;margin-bottom:1.25rem}}.jumper__title{font-weight:700;font-size:1.4375rem;line-height:150%;max-width:36.875rem;margin-left:auto;margin-right:auto;margin-bottom:4.375rem}@media screen and (max-width:767px){.jumper__title{font-size:.875rem;line-height:1.5}}.jumper__pic{position:absolute;-webkit-transform-origin:center top;transform-origin:center top;margin-top:14rem;top:30vh;left:0;width:100%;height:100vh;-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);will-change:transform;-webkit-box-shadow:0 0 3.125rem rgba(0,0,0,.4);box-shadow:0 0 3.125rem rgba(0,0,0,.4);border-top-left-radius:.9375rem;border-top-right-radius:.9375rem;background:#f4f4f4 no-repeat top/100% auto}@media screen and (min-width:1024px){.jumper__pic{background-image:url(.././assets/images/jumper-desktop157510cd8abf5125552cd9bf76b7ad4a.jpg)}}@media screen and (max-width:1023px){.jumper__pic{background-image:url(.././assets/images/jumper-mobile6b8d26cc75b2912b801b24eddb5bb6fc.jpg);border-radius:0}}@media screen and (min-width:1024px){.page-index__body .main{background:#1a1a23 url(.././assets/images/page-bg-150f91c5b45cafdee1c6160886c674efb.svg) no-repeat 50% 50.1875rem/102.625rem auto}}.page-index__section-1{margin-bottom:15.75rem}@media screen and (min-width:768px) and (max-width:1023px){.page-index__section-1{margin-bottom:7.5rem}}@media screen and (max-width:767px){.page-index__section-1{margin-bottom:0}.page-index__section-1 .section__container{padding-bottom:3.125rem}}@media screen and (min-width:1024px){.page-index__section-1-img-1{-webkit-transform:translate(-133%,145%);transform:translate(-133%,145%);height:5.25rem}}@media screen and (min-width:768px) and (max-width:1023px){.page-index__section-1-img-1{-webkit-transform:translate(.125rem,1.125rem);transform:translate(.125rem,1.125rem)}}@media screen and (min-width:1024px){.page-index__pane-1{position:absolute;left:50%;top:100%;-webkit-transform:translate(16.1875rem,-18.75rem);transform:translate(16.1875rem,-18.75rem)}}@media screen and (min-width:768px) and (max-width:1023px){.page-index__pane-1{margin-top:-1.25rem;margin-bottom:-.9375rem}}@media screen and (max-width:767px){.page-index__pane-1{margin-top:-2.125rem}}@media screen and (min-width:1024px){.page-index__pane-2{position:absolute;left:50%;top:100%;-webkit-transform:translate(1.625rem,-2.625rem);transform:translate(1.625rem,-2.625rem)}}@media screen and (max-width:767px){.page-index__pane-2{margin-top:-.3125rem;margin-bottom:3.3125rem}}.page-index__footer-container:before{content:"";position:absolute;bottom:100%;right:0;margin-bottom:.1875rem;margin-right:5.0625rem;width:8.0625rem;height:5.5625rem;background:url(.././assets/images/lama-196750ef9ecfd6c99fa4e04b814a1ec95.svg) no-repeat 50%/contain}@media screen and (max-width:767px){.page-index__footer-container{margin-top:6.8125rem}.page-index__footer-container:before{margin-right:.6875rem}}@media screen and (min-width:1024px){.page-inner-1__body .main{background:#1a1a23 url(.././assets/images/page-bg-2193f5638de2b9a427765a7076e2ed2d3.svg) no-repeat 50% 96.8125rem/107.125rem auto}}@media screen and (min-width:1024px){.page-inner-1__intro-img{-webkit-transform:translate(-5.8125rem);transform:translate(-5.8125rem);height:17.25rem}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-1__intro-img{max-width:8.9375rem;max-height:8.9375rem;-webkit-transform:translate(-5.5625rem,-.0625rem);transform:translate(-5.5625rem,-.0625rem)}}@media screen and (max-width:767px){.page-inner-1__intro-img{width:5.0625rem;-webkit-transform:translate(-1.3125rem,-.1875rem);transform:translate(-1.3125rem,-.1875rem)}}@media screen and (min-width:1024px){.page-inner-1__section-2-img-1{top:0;-webkit-transform:translate(14.5625rem,42rem);transform:translate(14.5625rem,42rem);height:11.25rem}}@media screen and (max-width:1023px){.page-inner-1__section-2-img-1{display:none}}.page-inner-1__section-2-img-mobile-1{position:absolute;top:.4375rem;right:1.75rem;height:1.875rem;width:1.875rem}.page-inner-1__section-2-img-mobile-2{width:2.4375rem;margin:-.3125rem 2.3125rem .625rem auto;-webkit-transform:translateY(.625rem);transform:translateY(.625rem)}@media screen and (min-width:1024px){.page-inner-1__pane-1{margin-top:2rem;margin-bottom:2.375rem;-webkit-transform:translate(15rem);transform:translate(15rem)}}@media screen and (min-width:1024px) and (min-width:1024px){.page-inner-1__pane-1:before{content:"";position:absolute;z-index:-1;top:0;left:0;height:.375rem;width:37.5rem;background-color:#303038;-webkit-box-shadow:0 -.375rem 0 -.1875rem #ebebeb;box-shadow:0 -.375rem 0 -.1875rem #ebebeb;-webkit-transform:translate(-15rem,11.25rem);transform:translate(-15rem,11.25rem)}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-1__pane-1{margin-top:9.8125rem;margin-bottom:2.5625rem}}@media screen and (max-width:767px){.page-inner-1__pane-1{margin-top:6.1875rem;margin-bottom:2.0625rem}}@media screen and (min-width:1024px){.page-inner-1__pane-1-img{height:9.75rem;-webkit-transform:translate(-13.6875rem,11.125rem);transform:translate(-13.6875rem,11.125rem)}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-1__pane-1-img{-webkit-transform:translate(4.125rem,-.125rem);transform:translate(4.125rem,-.125rem);height:8rem;left:auto;right:0;-webkit-transform:translate(-7.1875rem,-.375rem);transform:translate(-7.1875rem,-.375rem)}}@media screen and (max-width:767px){.page-inner-1__pane-1-img{height:5.0625rem;left:auto;right:1.9375rem}}@media screen and (min-width:1024px){.page-inner-1__pane-2{position:absolute;bottom:0;left:50%;-webkit-transform:translate(16.1875rem,-3.8125rem);transform:translate(16.1875rem,-3.8125rem)}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-1__pane-2{margin:5.1875rem auto .8125rem}}@media screen and (max-width:767px){.page-inner-1__pane-2{margin:5.1875rem 1.3125rem .8125rem 0}}@media screen and (min-width:1024px){.page-inner-1__pane-2-img{-webkit-transform:translate(8.0625rem,-.3125rem);transform:translate(8.0625rem,-.3125rem)}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-1__pane-2-img{left:auto;right:0;-webkit-transform:translate(-.0625rem,-.4375rem);transform:translate(-.0625rem,-.4375rem)}}@media screen and (max-width:767px){.page-inner-1__pane-2-img{left:auto;right:0;-webkit-transform:translate(-.0625rem,-.4375rem);transform:translate(-.0625rem,-.4375rem)}}@media screen and (max-width:767px){.page-inner-1__section-6-img-mobile-1{margin-left:auto;margin-right:-.9375rem;margin-bottom:-1.3125rem}}@media screen and (min-width:1024px){.page-inner-2__body .main{background:#1a1a23 url(.././assets/images/page-bg-37b9d8ba7333e37ff9c5c4d9f7ad84791.svg) no-repeat 50% 70.75rem/116.6875rem auto}}@media screen and (min-width:1024px){.page-inner-2__intro-img{-webkit-transform:translate(-7.3125rem);transform:translate(-7.3125rem);height:12rem}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-2__intro-img{max-width:8.9375rem;max-height:8.9375rem;-webkit-transform:translate(-5.5625rem,-.125rem);transform:translate(-5.5625rem,-.125rem)}}@media screen and (max-width:767px){.page-inner-2__intro-img{width:4.375rem;-webkit-transform:translate(-2.0625rem,-.3125rem);transform:translate(-2.0625rem,-.3125rem)}}@media screen and (min-width:1024px){.page-inner-2__pane-1{margin-top:2.125rem;margin-bottom:2.375rem;-webkit-transform:translate(22.125rem);transform:translate(22.125rem)}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-2__pane-1{margin-top:9.8125rem;margin-bottom:2.5625rem}}@media screen and (max-width:767px){.page-inner-2__pane-1{margin-top:6.1875rem;margin-bottom:2.25rem}}@media screen and (min-width:1024px){.page-inner-2__pane-1:before{content:"";position:absolute;z-index:-1;top:0;left:0;height:.375rem;width:37.5rem;background-color:#303038;-webkit-box-shadow:0 -.375rem 0 -.1875rem #ebebeb;box-shadow:0 -.375rem 0 -.1875rem #ebebeb;-webkit-transform:translate(-22.125rem,10.25rem);transform:translate(-22.125rem,10.25rem)}}@media screen and (min-width:1024px){.page-inner-2__pane-1-img{-webkit-transform:translate(-9.25rem,10.125rem);transform:translate(-9.25rem,10.125rem);height:10.5rem}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-2__pane-1-img{-webkit-transform:translate(4.125rem,-.125rem);transform:translate(4.125rem,-.125rem);height:8rem;left:auto;right:0;-webkit-transform:translate(-7.1875rem,-.375rem);transform:translate(-7.1875rem,-.375rem)}}@media screen and (max-width:767px){.page-inner-2__pane-1-img{height:5.25rem;-webkit-transform:translate(4.125rem,-.125rem);transform:translate(4.125rem,-.125rem)}}@media screen and (min-width:1024px){.page-inner-2__section-4-img-1{top:0;-webkit-transform:translate(21.4375rem,29.1875rem);transform:translate(21.4375rem,29.1875rem);height:6.75rem}}@media screen and (max-width:1023px){.page-inner-2__section-4-img-1{max-width:100%;display:block;position:relative;top:0;left:0;-webkit-transform:translate(0);transform:translate(0);height:3.375rem;margin-right:-.9375rem;margin-left:auto;margin-top:2.4375rem}}@media screen and (min-width:1024px){.page-inner-2__section-4{margin-bottom:15rem}}@media screen and (min-width:1024px){.page-inner-2__pane-2{position:absolute;bottom:0;left:50%;-webkit-transform:translate(1.625rem,12.75rem);transform:translate(1.625rem,12.75rem)}}@media screen and (max-width:1023px){.page-inner-2__pane-2{margin-top:3.125rem;margin-bottom:.375rem}}@media screen and (min-width:1024px){.page-inner-2__pane-2-img-1{top:auto;left:0;bottom:100%;-webkit-transform:translate(-25.1875rem,16.5625rem);transform:translate(-25.1875rem,16.5625rem);height:9.75rem}}@media screen and (max-width:1023px){.page-inner-2__pane-2-img-1{height:4.875rem;top:auto;left:0;bottom:100%;-webkit-transform:translate(11rem,-.375rem);transform:translate(11rem,-.375rem);z-index:1}}.page-inner-2__section-5-img-1{display:none}@media screen and (max-width:767px){.page-inner-2__section-5-img-1{display:block;position:relative;height:4.75rem;left:auto;right:1.4375rem;-webkit-transform:none;transform:none;margin-left:auto;margin-top:-2.1875rem;margin-bottom:1.5rem}}@media screen and (min-width:1024px){.page-inner-2__footer-container:before{content:"";position:absolute;bottom:100%;right:0;margin-bottom:.375rem;margin-right:3.5625rem;width:9.75rem;height:9.75rem;background:url(.././assets/images/treee7ba45106f50cf2700d48e39d8657f70.svg) no-repeat 50%/contain}}@media screen and (min-width:1024px){.page-inner-3__body .main{background:#1a1a23 url(.././assets/images/page-bg-43269b0408f6dfd5b2e6b6908b999645d.svg) no-repeat 50% 79.0625rem/96rem auto}}@media screen and (min-width:1024px){.page-inner-3__intro-img{-webkit-transform:translate(-10.375rem);transform:translate(-10.375rem);height:16.5rem}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-3__intro-img{max-width:8.9375rem;max-height:8.9375rem;-webkit-transform:translate(-5.5625rem,-.25rem);transform:translate(-5.5625rem,-.25rem)}}@media screen and (max-width:767px){.page-inner-3__intro-img{height:5.9375rem;-webkit-transform:translate(-2rem,-.4375rem);transform:translate(-2rem,-.4375rem)}}@media screen and (min-width:1024px){.page-inner-3__section-1{margin-bottom:16.625rem}}@media screen and (max-width:767px){.page-inner-3__section-2{overflow:hidden}}.page-inner-3__section-2-img-1{display:none}@media screen and (max-width:767px){.page-inner-3__section-2-img-1{display:block;height:1.875rem;position:relative;right:0;left:auto;margin:1.375rem -.25rem -3.125rem auto}}.page-inner-3__section-2-img-2{display:none}@media screen and (max-width:767px){.page-inner-3__section-2-img-2{position:relative;display:block;left:0;height:2.625rem;-webkit-transform:none;transform:none;margin:-1.875rem -.375rem -.75rem auto}}@media screen and (max-width:767px){.page-inner-3__section-2-person-offset-1{padding-right:5.3125rem}}.page-inner-3__section-2-img-3{display:none}@media screen and (max-width:767px){.page-inner-3__section-2-img-3{position:relative;display:block;left:0;height:5.625rem;-webkit-transform:none;transform:none;margin:-3.25rem -13.4375rem -2.375rem auto}}@media screen and (min-width:1024px){.page-inner-3__section-2-img-4{-webkit-transform:translate(14.6875rem,-34.75rem);transform:translate(14.6875rem,-34.75rem);height:11.25rem}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-3__section-2-img-4{display:none}}.page-inner-3__section-3-img-1{display:none}@media screen and (max-width:767px){.page-inner-3__section-3-img-1{position:relative;display:block;left:0;height:1.875rem;-webkit-transform:none;transform:none;margin:-1.9375rem .4375rem .0625rem auto}}.page-inner-3__section-4-img-1{display:none}@media screen and (max-width:767px){.page-inner-3__section-4-img-1{position:relative;display:block;left:0;height:1.125rem;-webkit-transform:none;transform:none;margin:.3125rem 1.9375rem -1.3125rem auto}}.page-inner-3__section-4-img-2{display:none}@media screen and (max-width:767px){.page-inner-3__section-4-img-2{position:relative;display:block;left:0;height:1.875rem;-webkit-transform:none;transform:none;margin:-1.9375rem 3.0625rem .0625rem auto}}@media screen and (min-width:1024px){.page-inner-3__pane-1{position:absolute;bottom:0;left:50%;-webkit-transform:translate(6%,81%);transform:translate(6%,81%)}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-3__pane-1{margin:-1.9375rem auto 1.125rem}}@media screen and (max-width:767px){.page-inner-3__pane-1{margin:-1.9375rem 1.3125rem 1.125rem 0}}@media screen and (min-width:1024px){.page-inner-3__pane-2{margin-top:2.125rem;margin-bottom:2.375rem;-webkit-transform:translate(15.0625rem);transform:translate(15.0625rem)}}@media screen and (max-width:1023px){.page-inner-3__pane-2{margin-top:2.375rem}}@media screen and (min-width:1024px){.page-inner-3__pane-3{margin-top:-2.625rem;margin-bottom:2.375rem;-webkit-transform:translate(22.3125rem);transform:translate(22.3125rem)}.page-inner-3__pane-3+.section__person{margin-top:2.75rem}}@media screen and (max-width:767px){.page-inner-3__pane-3{margin-top:-.375rem}}@media screen and (min-width:1024px){.page-inner-3__pane-3:before{content:"";position:absolute;z-index:-1;top:0;left:0;height:.375rem;width:37.5rem;background-color:#303038;-webkit-box-shadow:0 -.375rem 0 -.1875rem #ebebeb;box-shadow:0 -.375rem 0 -.1875rem #ebebeb;-webkit-transform:translate(-22.3125rem,5.625rem);transform:translate(-22.3125rem,5.625rem)}}@media screen and (min-width:1024px){.page-inner-3__pane-3-img{-webkit-transform:translate(-17.4375rem,5.4375rem);transform:translate(-17.4375rem,5.4375rem);height:12rem}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-3__pane-3-img{height:6.1875rem;top:auto;left:auto;right:0;bottom:0;-webkit-transform:translate(3.5rem,4.3125rem);transform:translate(3.5rem,4.3125rem)}}@media screen and (max-width:767px){.page-inner-3__pane-3-img{height:3rem;top:auto;left:auto;right:0;bottom:0;z-index:2;-webkit-transform:translate(-1.25rem,.125rem);transform:translate(-1.25rem,.125rem)}}@media screen and (min-width:1024px){.page-inner-3__pane-3-br{display:none}}@media screen and (min-width:768px) and (max-width:1023px){.page-inner-3__pane-3-br{display:none}}@media screen and (min-width:1024px){.page-inner-3__pane-4{position:absolute;bottom:0;left:50%;-webkit-transform:translate(23.4375rem,-16.25rem);transform:translate(23.4375rem,-16.25rem)}}@media screen and (min-width:768px) and (max-width:1023px){.container .page-inner-3__pane-4{margin:9.8125rem auto 2.5625rem}}@media screen and (max-width:767px){.container .page-inner-3__pane-4{margin:7.3125rem .375rem 3.125rem -.9375rem}}@media screen and (min-width:1024px){.page-inner-3__pane-4-img{-webkit-transform:translate(8rem,-.1875rem);transform:translate(8rem,-.1875rem);height:7.125rem}}@media screen and (max-width:1023px){.page-inner-3__pane-4-img{-webkit-transform:translate(-.3125rem,-.4375rem);transform:translate(-.3125rem,-.4375rem);left:auto;right:0}}@media screen and (min-width:1024px){.page-inner-3__pane-5-img{height:3.75rem;-webkit-transform:translate(17.5625rem,-10.125rem);transform:translate(17.5625rem,-10.125rem)}}@media screen and (max-width:1023px){.page-inner-3__pane-5-img{display:none}}.page-inner-3__section-4 span.pane__link--red{font-weight:500}
