/**
 * 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%}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:Druk Wide Cy TT;src:url(.././assets/fonts/DrukWideCyTT-Bold5ecafb2c550d9beeaf1fd41c6ca92871.eot);src:url(.././assets/fonts/DrukWideCyTT-Bold5ecafb2c550d9beeaf1fd41c6ca92871.eot?#iefix) format("embedded-opentype"),url(.././assets/fonts/DrukWideCyTT-Bold6710421bf2fc2384ccc1e6142bfbe585.woff2) format("woff2"),url(.././assets/fonts/DrukWideCyTT-Boldf7f424abaa6f1e33758be980ec7d16dd.woff) format("woff"),url(.././assets/fonts/DrukWideCyTT-Bold81e909e169b5459f4cbfb756f3c79ce6.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:PT Sans Caption;src:url(.././assets/fonts/PTSans-CaptionBold07e814ed168eb7e2c679f2cbcec56c88.eot);src:url(.././assets/fonts/PTSans-CaptionBold07e814ed168eb7e2c679f2cbcec56c88.eot?#iefix) format("embedded-opentype"),url(.././assets/fonts/PTSans-CaptionBold77ad98b2bf03384eb2f04d869c111ee2.woff2) format("woff2"),url(.././assets/fonts/PTSans-CaptionBold3e7c593b3f82337b0ee51c085e3b4838.woff) format("woff"),url(.././assets/fonts/PTSans-CaptionBoldc5008b0ccbda04c87dded4e89fb36733.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:PT Sans Caption;src:url(.././assets/fonts/PTSans-Caption9a17e1497124f845263aac7c0d0e79cd.eot);src:url(.././assets/fonts/PTSans-Caption9a17e1497124f845263aac7c0d0e79cd.eot?#iefix) format("embedded-opentype"),url(.././assets/fonts/PTSans-Caption064b5644c47e465a0d32cfb5a577573c.woff2) format("woff2"),url(.././assets/fonts/PTSans-Caption50980c98343c4644d639b2d796e1c93b.woff) format("woff"),url(.././assets/fonts/PTSans-Caption862db7e041df8063523a6d8fe97c1dc9.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{font-size:19px;line-height:1.53;margin:0;font-family:PT Sans Caption;font-weight:400;color:#000;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden;opacity:1;-webkit-transition:opacity .4s ease;transition:opacity .4s ease}@media screen and (max-width:767px){body{font-size:17px}}body.transition{opacity:0}html{-webkit-transition:background-color .4s ease;transition:background-color .4s ease}html.transition{background-color:#1a1b22}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 30px #fff!important;box-shadow:inset 0 0 0 30px #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 30px #fff!important;box-shadow:inset 0 0 0 30px #fff!important}}.container{max-width:1180px;margin-left:auto;margin-right:auto}@media screen and (min-width:1301px){.container{-webkit-transform:translateX(40px);transform:translateX(40px)}}@media screen and (min-width:960px) and (max-width:1220px){.container{padding-left:20px;padding-right:20px}}@media screen and (min-width:768px) and (max-width:959px){.container{margin-left:32px;margin-right:36px}}@media screen and (max-width:767px){.container{width:auto;margin-left:11px;margin-right:10px}}a{color:#4e75fa;text-decoration:none}a:hover{color:#ff3631}a:active{color:#bf100c}h1{font-family:Druk Wide Cy TT;font-weight:700;font-size:88px;line-height:1.21;margin:0 0 16px}@media screen and (min-width:768px) and (max-width:959px){h1{font-size:53px}}@media screen and (max-width:767px){h1{font-size:34px}}h2{font-family:Druk Wide Cy TT;font-weight:700;font-size:37px;line-height:1.3;margin:0}@media screen and (min-width:768px) and (max-width:959px){h2{font-size:33px}}@media screen and (max-width:767px){h2{font-size:22px;line-height:1.32}}@media screen and (min-width:960px){h2{margin-bottom:41px}}@media screen and (min-width:768px) and (max-width:959px){h2{margin-bottom:34px}}@media screen and (max-width:767px){h2{margin-bottom:37px}}p{margin-bottom:1em}@media screen and (max-width:767px){.show--desktop-and-tablet{display:none}}@media screen and (min-width:768px){.show--mobile{display:none}}.svg{position:absolute;top:0;left:0;right:0;bottom:0;display:block;width:100%;height:100%}@media screen and (max-width:959px){.svg--mask{display:none}}.svg__wrap{position:relative}.svg__holder{opacity:0;width:100%}.cursor{display:block;position:fixed;width:400px;height:400px;top:0;left:0;z-index:-1;will-change:transform;-webkit-transform:transflate3d(0,0,0);transform:transflate3d(0,0,0)}@media screen and (max-width:959px){.cursor{display:none}}.cursor-path{opacity:1;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.cursor-path--hide{opacity:0}.ya-share2{position:absolute;height:0;width:0;opacity:0;visibility:hidden;overflow:hidden}@media screen and (min-width:960px){.cursor-hide{position:relative;z-index:1}.cursor-hide:before{content:"";position:absolute;top:-50px;left:-100px;right:-100px;bottom:-50px;z-index:-1}}.grid{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (min-width:960px){.grid{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media screen and (max-width:959px){.grid{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:960px){.grid--reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}}.grid__column{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}@media screen and (min-width:960px){.grid__column--side{position:relative;width:340px}}@media screen and (min-width:960px) and (max-width:1220px){.grid__column--side{min-width:270px;width:29%}}@media screen and (min-width:960px){.grid__column--body{width:700px;margin-right:120px}}@media screen and (min-width:960px) and (max-width:1220px){.grid__column--body{margin-right:0;width:62%}}@media screen and (max-width:959px){.grid__column--device-order-up{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}@media screen and (max-width:959px){.grid__column--device-order-down{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}}.grid__column--order-up{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.grid__column--order-down{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.section{margin-top:0}@media screen and (min-width:960px){.section{margin-bottom:160px}}@media screen and (min-width:768px) and (max-width:959px){.section{margin-bottom:148px}}@media screen and (max-width:767px){.section{margin-bottom:48px}}@media screen and (min-width:960px){.section--intro{margin-bottom:58px}}@media screen and (min-width:768px) and (max-width:959px){.section--intro{margin-bottom:31px}}@media screen and (max-width:767px){.section--intro{margin-bottom:11px}}@media screen and (min-width:960px){.section--nav{margin-bottom:67px}}@media screen and (min-width:768px) and (max-width:959px){.section--nav{margin-bottom:37px}}@media screen and (max-width:767px){.section--nav{margin-bottom:39px}}@media screen and (min-width:960px){.section--begin{margin-bottom:117px}}@media screen and (min-width:768px) and (max-width:959px){.section--begin{margin-bottom:45px}}@media screen and (max-width:767px){.section--begin{margin-bottom:47px}}.section--begin .section__side-img{display:none;width:286px}@media screen and (min-width:960px){.section--begin .section__side-img{display:block;position:absolute;bottom:-18px;left:0}}@media screen and (min-width:960px){.section--termin{margin-bottom:130px}}@media screen and (min-width:768px) and (max-width:959px){.section--termin{margin-bottom:58px}}@media screen and (max-width:767px){.section--termin{margin-bottom:49px}}@media screen and (min-width:960px){.section--count{margin-bottom:185px}}@media screen and (min-width:768px) and (max-width:959px){.section--count{margin-bottom:148px}}@media screen and (max-width:767px){.section--count{margin-bottom:48px}}@media screen and (min-width:768px) and (max-width:959px){.section--count .important-number{margin-bottom:87px}}@media screen and (max-width:767px){.section--count .important-number{margin-bottom:68px}}.section--protonomads .section__side-img{display:none}@media screen and (min-width:960px){.section--protonomads .section__side-img{display:block;position:absolute;width:409px;top:-81px;right:0}}@media screen and (max-width:767px){.section--protonomads .section__side-img{display:block;width:229px;width:76.58%;margin:25px auto 38px;-webkit-transform:translateX(-10px);transform:translateX(-10px)}}@media screen and (min-width:960px){.section--protonomads .side-link{position:absolute;top:590px;left:0;width:100%}}@media screen and (min-width:768px) and (max-width:959px){.section--protonomads .side-link{margin-top:48px}}@media screen and (min-width:960px){.section--dark-zone{margin-bottom:150px}}@media screen and (min-width:768px) and (max-width:959px){.section--dark-zone{margin-bottom:96px}}@media screen and (max-width:767px){.section--dark-zone{margin-bottom:76px}}.section--dark-zone .section__side-img{display:none;width:249px}@media screen and (min-width:960px){.section--dark-zone .section__side-img{display:block;position:absolute;top:39px;left:0}}@media screen and (min-width:960px){.section--digital-nomads{margin-bottom:60px}}@media screen and (min-width:768px) and (max-width:959px){.section--digital-nomads{margin-bottom:32px}}@media screen and (max-width:767px){.section--digital-nomads{margin-bottom:36px}}.section--digital-nomads h2{max-width:600px}@media screen and (max-width:767px){.section--digital-nomads h2{margin-right:-5px}}@media screen and (min-width:960px){.section--changes{margin-bottom:206px}}@media screen and (min-width:768px) and (max-width:959px){.section--changes{margin-bottom:197px}}@media screen and (max-width:767px){.section--changes{margin-bottom:60px}}.section--changes h2{max-width:600px}@media screen and (min-width:960px){.section--challenges{margin-bottom:197px}}@media screen and (min-width:768px) and (max-width:959px){.section--challenges{margin-bottom:365px}}@media screen and (max-width:767px){.section--challenges{margin-bottom:60px}}@media screen and (min-width:960px){.section--challenges h2{max-width:600px}}@media screen and (min-width:768px) and (max-width:959px){.section--challenges h2{max-width:620px}}@media screen and (min-width:960px){.section--challenges .section__title-img{width:527px;top:-112px;right:87px}}@media screen and (min-width:960px) and (max-width:1220px){.section--challenges .section__title-img{max-width:527px;width:35%}}@media screen and (min-width:768px) and (max-width:959px){.section--challenges .section__title-img{width:333px;top:-154px;right:16px}}@media screen and (max-width:767px){.section--challenges .section__title-img{width:264px;width:88.29%;margin-top:-45px;margin-bottom:65px}}@media screen and (min-width:960px){.section--challenges .side-link{position:absolute;top:474px;left:0;width:100%}}@media screen and (min-width:768px) and (max-width:959px){.section--challenges .side-link{margin-top:52px}}@media screen and (max-width:767px){.section--challenges .side-link{margin-top:34px}}@media screen and (min-width:960px){.section--troubles{margin-bottom:135px}}@media screen and (min-width:768px) and (max-width:959px){.section--troubles{margin-bottom:82px}}@media screen and (max-width:767px){.section--troubles{margin-bottom:73px}}.section--troubles h2{max-width:660px}@media screen and (max-width:767px){.section--troubles h2{margin-right:5px}}.section--troubles .section__title-img{width:314px}@media screen and (min-width:960px){.section--troubles .section__title-img{top:-124px;left:0}}@media screen and (min-width:960px) and (max-width:1220px){.section--troubles .section__title-img{left:10px}}@media screen and (min-width:768px) and (max-width:959px){.section--troubles .section__title-img{top:-289px;left:2px}}@media screen and (max-width:767px){.section--troubles .section__title-img{width:243px;width:81.27%;margin-top:-27px;margin-left:7.35%;margin-bottom:62px}}@media screen and (min-width:960px){.section--intro-story{margin-bottom:72px}}@media screen and (min-width:768px) and (max-width:959px){.section--intro-story{margin-bottom:72px}}@media screen and (max-width:767px){.section--intro-story{margin-bottom:19px}}.section--info{line-height:1.7}@media screen and (min-width:960px){.section--info{margin-bottom:89px}}@media screen and (min-width:768px) and (max-width:959px){.section--info{margin-bottom:89px}}@media screen and (max-width:767px){.section--info{margin-bottom:46px;line-height:1.57}.section--info p{margin-bottom:1.2em}}@media screen and (max-width:767px){.section--info .important-number{display:none}}@media screen and (min-width:960px){.section--about{margin-bottom:81px}}@media screen and (min-width:768px) and (max-width:959px){.section--about{margin-bottom:81px}}@media screen and (max-width:767px){.section--about{margin-bottom:69px}}@media screen and (min-width:960px){.section--about .section__side-img--1{position:absolute;top:-24px;left:-53px;width:273px}}@media screen and (min-width:768px) and (max-width:959px){.section--about .section__side-img--1{display:none}}@media screen and (max-width:767px){.section--about .section__side-img--1{width:155px;width:51.84%;margin-left:auto;margin-right:auto;margin-top:28px}}@media screen and (min-width:960px){.section--about .section__side-img--2{position:absolute;top:-24px;left:0;width:240px}}@media screen and (min-width:768px) and (max-width:959px){.section--about .section__side-img--2{display:none}}@media screen and (max-width:767px){.section--about .section__side-img--2{width:136px;width:45.484949%;margin-left:auto;margin-right:auto;margin-top:28px}}@media screen and (min-width:960px){.section--money{margin-bottom:77px}}@media screen and (min-width:768px) and (max-width:959px){.section--money{margin-bottom:77px}}@media screen and (max-width:767px){.section--money{margin-bottom:45px}}@media screen and (min-width:960px){.section--future{margin-bottom:80px}}@media screen and (min-width:768px) and (max-width:959px){.section--future{margin-bottom:40px}}@media screen and (max-width:767px){.section--future{margin-bottom:67px}}.section--future h2{max-width:555px}.section--future .important-number{bottom:995px}@media screen and (max-width:959px){.section--future .important-number{display:none}}.section--future .section__side-img{width:118px}@media screen and (min-width:960px){.section--future .section__side-img{position:absolute;bottom:277px;left:-37px}}@media screen and (min-width:768px) and (max-width:959px){.section--future .section__side-img{margin-left:auto;margin-top:-42px;margin-bottom:-40px}}@media screen and (max-width:767px){.section--future .section__side-img{margin-top:60px;width:39.46%;margin-left:4.68%;margin-bottom:14px}}@media screen and (min-width:960px){.section--future .side-link{position:absolute;bottom:0;width:100%}}.section--story-end{line-height:1.7}@media screen and (min-width:960px){.section--story-end{margin-bottom:69px}}@media screen and (min-width:768px) and (max-width:959px){.section--story-end{margin-bottom:69px}}@media screen and (max-width:767px){.section--story-end{margin-bottom:42px;line-height:1.57}.section--story-end p{margin-bottom:1.2em}}.section--story-end .social{margin-top:54px}.section--story-end .section__side-img--1{width:292px}@media screen and (min-width:960px){.section--story-end .section__side-img--1{position:absolute;bottom:270px;left:1px}}@media screen and (min-width:960px) and (max-width:1220px){.section--story-end .section__side-img--1{max-width:100%}}@media screen and (min-width:768px) and (max-width:959px){.section--story-end .section__side-img--1{margin-left:auto;margin-top:-42px;margin-bottom:-40px}}@media screen and (max-width:767px){.section--story-end .section__side-img--1{width:180px;width:60.200668%;margin-top:43px;margin-left:.33444%;margin-bottom:22px}}.section--story-end .section__side-img--2{width:390px}@media screen and (min-width:1301px){.section--story-end .section__side-img--2{max-width:none}}@media screen and (min-width:960px){.section--story-end .section__side-img--2{position:absolute;bottom:255px;left:-23px}}@media screen and (min-width:960px) and (max-width:1220px){.section--story-end .section__side-img--2{max-width:100%}}@media screen and (min-width:768px) and (max-width:959px){.section--story-end .section__side-img--2{margin-left:auto;margin-top:-42px;margin-bottom:-40px;width:330px}}@media screen and (max-width:767px){.section--story-end .section__side-img--2{width:263px;width:87.959866%;margin-top:49px;margin-left:.33444%;margin-bottom:13px}}@media screen and (min-width:960px){.section--story-end .side-link{position:absolute;bottom:8px;width:100%}}@media screen and (min-width:960px){.section--pane-1{margin-bottom:80px}}@media screen and (min-width:768px) and (max-width:959px){.section--pane-1{margin-bottom:93px}}@media screen and (max-width:767px){.section--pane-1{margin-bottom:64px}}@media screen and (min-width:960px){.section--pane-2{margin-bottom:86px}}@media screen and (min-width:768px) and (max-width:959px){.section--pane-2{margin-bottom:60px}}@media screen and (max-width:767px){.section--pane-2{margin-bottom:59px}}.section--pane-3,.section--pane-story{margin-bottom:0}@media screen and (max-width:767px){.section--pane-story .pane__container{padding-top:45px}}@media screen and (max-width:767px){.section--pane-story .pane__text{padding-left:18px;padding-right:18px}}@media screen and (max-width:767px){.section--pane-story .pane__accent{font-size:14px;line-height:1.7}}.section__side-img{display:block}.section__title-img{display:block;max-width:100%}@media screen and (min-width:768px){.section__title-img{position:absolute;top:0}}@media screen and (min-width:960px){.social{display:none}}@media screen and (max-width:959px){.social{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}@media screen and (min-width:768px) and (max-width:959px){.social{margin-top:98px}}@media screen and (max-width:767px){.social{margin-top:35px}}.social__title{margin-right:23px}@media screen and (max-width:767px){.social__title{font-size:14px;line-height:1.3;margin-right:auto}}.social__list{display:-webkit-box;display:-ms-flexbox;display:flex}.social__link{position:relative;border:2px solid #000;display:block;height:42px;width:42px;background-color:transparent;-webkit-transition:background-color .2s ease,border-color .2s ease;transition:background-color .2s ease,border-color .2s ease;fill:#000}@media screen and (min-width:1301px){.social__link{margin-bottom:11px}}@media screen and (min-width:960px) and (max-width:1220px){.social__link{margin-right:11px}.social__link:last-child{margin-right:0}}@media screen and (min-width:768px) and (max-width:959px){.social__link{margin-right:11px}.social__link:last-child{margin-right:0}}@media screen and (max-width:767px){.social__link{margin-left:11px}.social__link:first-child{margin-left:0}}.social__link--white{border-color:#fff;fill:#fff}.social__link--white:hover,.social__link:hover{background-color:#f5de68;border-color:#f5de68;fill:#000}.social__icon{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);fill:inherit}.social__icon--fb{width:11px;height:23px}.social__icon--vk{width:21px;height:13px}.social__icon--tg{width:23px;height:19px}.social__icon--em{width:25px;height:17px}.social__path{fill:inherit}.header{position:fixed;z-index:3;top:0;left:0;background-color:#000}@media screen and (min-width:960px){.header{height:100vh}}@media screen and (max-width:959px){.header{width:100%}}@media screen and (min-width:960px) and (max-width:1300px){.header{width:100%;height:auto;padding-top:16px;padding-bottom:19px}}@media screen and (min-width:768px) and (max-width:959px){.header{padding-top:16px;padding-bottom:19px}}@media screen and (max-width:767px){.header{padding-top:9px;padding-bottom:8px}}@media screen and (min-width:1301px){.header__container{position:relative;-webkit-transform:translateX(0);transform:translateX(0);height:100%;min-height:720px;overflow:auto;width:80px;padding-left:10px;padding-right:9px}}@media screen and (min-width:960px) and (max-width:1300px){.header__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media screen and (max-width:959px){.header__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:1301px){.header__column{margin-left:auto;margin-right:auto}}@media screen and (min-width:960px) and (max-width:1300px){.header__column{margin-top:auto;margin-bottom:auto}}@media screen and (max-width:959px){.header__column{margin-top:auto;margin-bottom:auto}}.header__logos{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (min-width:1301px){.header__logos{width:154px;position:absolute;top:90px;-webkit-transform:translateX(-49px) rotate(-90deg);transform:translateX(-49px) rotate(-90deg);-webkit-transform-origin:center;transform-origin:center}}@media screen and (min-width:960px) and (max-width:1300px){.header__logos{width:157px}}@media screen and (min-width:768px) and (max-width:959px){.header__logos{width:157px}}@media screen and (max-width:767px){.header__logos{width:120px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}.header__logo{display:block;text-decoration:none;margin:auto}.header__logo--prt{margin-left:0;width:22px}@media screen and (max-width:767px){.header__logo--prt{width:17px}}.header__logo--ya{margin-right:0;width:106px}@media screen and (max-width:767px){.header__logo--ya{width:83px}}.header__logo-divider{margin-left:auto;margin-right:auto}.header__img{display:block;width:100%}.header__nomads{display:block;width:61px;text-decoration:none}@media screen and (min-width:1301px){.header__nomads{position:absolute;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-87.5px);transform:translateX(-50%) translateY(-87.5px)}}@media screen and (min-width:960px) and (max-width:1300px){.header__nomads{width:88px;margin-left:25px}}@media screen and (min-width:768px) and (max-width:959px){.header__nomads{width:88px;margin-left:25px}}@media screen and (max-width:767px){.header__nomads{width:66px;margin-right:-2px}}@media screen and (min-width:1301px){.header__menu{position:absolute;top:50%;left:50%;margin-top:82px;-webkit-transform:translateX(-50%) translateY(-87.5px);transform:translateX(-50%) translateY(-87.5px)}}@media screen and (min-width:960px) and (max-width:1300px){.header__menu{display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:28px}}@media screen and (min-width:768px) and (max-width:959px){.header__menu{display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:28px}}@media screen and (max-width:767px){.header__menu{display:none}}.header__menu-link{font-family:Druk Wide Cy TT;font-size:21px;line-height:31px;text-align:center;letter-spacing:-1px;text-transform:uppercase;color:#fff;display:block;-webkit-transition:color .2s ease;transition:color .2s ease}@media screen and (min-width:960px) and (max-width:1300px){.header__menu-link{margin:0 11px}}@media screen and (min-width:768px) and (max-width:959px){.header__menu-link{margin:0 11px}}.header__menu-link--blue.header__menu-link--active,.header__menu-link--blue:hover{color:#4e75fa}.header__menu-link--yellow.header__menu-link--active,.header__menu-link--yellow:hover{color:#f5de68}.header__menu-link--red.header__menu-link--active,.header__menu-link--red:hover{color:#ff3631}@media screen and (min-width:1301px){.header__social{position:absolute;bottom:8px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}}@media screen and (min-width:960px) and (max-width:1300px){.header__social{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:10px;margin-right:-2px}}@media screen and (min-width:768px) and (max-width:959px){.header__social{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:10px;margin-right:-2px}}@media screen and (max-width:767px){.header__social{display:none}}.header__progress{position:absolute}.header__progress--blue{background-color:#4e75fa}.header__progress--yellow{background-color:#f5de68}.header__progress--red{background-color:#ff3631}@media screen and (min-width:1301px){.header__progress{top:0;left:100%;width:4px!important}}@media screen and (min-width:960px) and (max-width:1300px){.header__progress{top:100%;left:0;height:4px!important}}@media screen and (max-width:959px){.header__progress{top:100%;left:0;height:4px!important}}.intro{position:relative;overflow:hidden}@media screen and (min-width:768px) and (max-width:959px){.intro{padding-top:80px}}@media screen and (max-width:767px){.intro{padding-top:50px}}.intro__background{cursor:none;position:relative;overflow:hidden;max-height:691px}@media screen and (min-width:1301px){.intro__background{margin-left:80px}}.intro__background:before{content:"";display:block;padding-top:50.8088%}@media screen and (max-width:767px){.intro__background:before{padding-top:78%}}.intro__background--tall{max-height:884px}.intro__background--tall:before{padding-top:65%}@media screen and (max-width:767px){.intro__background--tall:before{padding-top:72.1875%}}.intro__background-img-wrap:before{content:"";display:block;padding-top:50.8088%}@media screen and (max-width:767px){.intro__background-img-wrap:before{display:none}}.intro__background--tall .intro__background-img-wrap:before{padding-top:65%}@media screen and (max-width:767px){.intro__background--tall .intro__background-img-wrap:before{display:none}}.intro__background-img-wrap{position:absolute;overflow:hidden;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:100%;height:100%}@media screen and (min-width:960px){.intro__background-img-wrap{height:auto}}@media screen and (max-width:959px){.intro__background-img-wrap{width:auto}}.intro__background-img{position:relative;display:none;height:100%;width:auto;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}@media screen and (max-width:959px){.intro__background-img{display:block}}@media screen and (max-width:959px){.intro__background-img .svg__holder{width:auto}}.intro__background-title{position:absolute;top:100px;left:0;background-color:#000;font-size:51px;line-height:1.2;padding:23px 44px 35px 92px}@media screen and (min-width:768px) and (max-width:959px){.intro__background-title{top:auto;bottom:0;margin:0;font-size:32px;padding:20px 32px}}@media screen and (max-width:767px){.intro__background-title{display:none}}.intro__background-title--yellow{color:#f5de68}.intro__background-title--red{color:#ff3631}.intro__container{position:relative;z-index:1}@media screen and (min-width:960px){.intro__container{padding-top:4px;margin-top:-58px}}@media screen and (min-width:768px) and (max-width:959px){.intro__container{padding-top:17px}}@media screen and (max-width:767px){.intro__container{margin-top:-19px}}@media screen and (min-width:960px){.intro__header{margin-bottom:112px}}@media screen and (min-width:768px) and (max-width:959px){.intro__header{margin-bottom:40px}}@media screen and (max-width:767px){.intro__header{margin-bottom:37px}}.intro__title{background-color:#fff;-webkit-box-decoration-break:clone;box-decoration-break:clone;-webkit-box-shadow:22px 0 0 0 #fff,-91px 0 0 0 #fff;box-shadow:22px 0 0 0 #fff,-91px 0 0 0 #fff;display:inline}@media screen and (max-width:767px){.intro__title{padding-top:5px;-webkit-box-shadow:12px 0 0 0 #fff,-12px 0 0 0 #fff;box-shadow:12px 0 0 0 #fff,-12px 0 0 0 #fff}}.intro__text{margin-top:16px}@media screen and (max-width:767px){.intro__text{font-size:18px;line-height:1.5;font-weight:700;margin-top:17px}}.intro__body{max-width:758px}.intro__story-container{padding-top:36px}@media screen and (max-width:767px){.intro__story-container{padding-top:16px}}.intro__story-subtitle,.intro__story-title{font-family:Druk Wide Cy TT;font-size:39px;line-height:1.32}@media screen and (min-width:768px) and (max-width:959px){.intro__story-subtitle,.intro__story-title{font-size:33px}}@media screen and (max-width:767px){.intro__story-subtitle,.intro__story-title{font-size:22px}}.intro__story-title{margin-bottom:21px}@media screen and (max-width:767px){.intro__story-title{margin-bottom:13px}}.intro__story-subtitle{max-width:940px}.nav__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media screen and (min-width:768px) and (max-width:959px){.nav__list{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (max-width:767px){.nav__list{display:block}}.nav__link{width:340px}@media screen and (min-width:768px) and (max-width:959px){.nav__link{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;margin-bottom:21px;width:48.3%;width:calc(50% - 10px)}}@media screen and (max-width:767px){.nav__link{width:100%;margin-bottom:16px}}.nav__link--blue{display:block;position:relative;font-family:Druk Wide Cy TT;color:#000;fill:#000;font-size:23px;line-height:1.3;padding:12px 60px 12px 22px;-webkit-transition:color .2s ease,background-color .2s ease;transition:color .2s ease,background-color .2s ease;background-color:#4e75fa}.nav__link--blue:hover{background-color:#000}.nav__link--blue .arrow-icon{position:absolute;top:0;right:14px;bottom:0;margin:auto;width:39px;height:32px;fill:inherit}.nav__link--blue .path{-webkit-transition:fill .2s ease;transition:fill .2s ease;fill:inherit}.nav__link--blue:hover{color:#4e75fa;fill:#4e75fa}.nav__link--yellow{display:block;position:relative;font-family:Druk Wide Cy TT;color:#000;fill:#000;font-size:23px;line-height:1.3;padding:12px 60px 12px 22px;-webkit-transition:color .2s ease,background-color .2s ease;transition:color .2s ease,background-color .2s ease;background-color:#f5de68}.nav__link--yellow:hover{background-color:#000}.nav__link--yellow .arrow-icon{position:absolute;top:0;right:14px;bottom:0;margin:auto;width:39px;height:32px;fill:inherit}.nav__link--yellow .path{-webkit-transition:fill .2s ease;transition:fill .2s ease;fill:inherit}.nav__link--yellow:hover{color:#f5de68;fill:#f5de68}.nav__link--red{display:block;position:relative;font-family:Druk Wide Cy TT;color:#000;fill:#000;font-size:23px;line-height:1.3;padding:12px 60px 12px 22px;-webkit-transition:color .2s ease,background-color .2s ease;transition:color .2s ease,background-color .2s ease;background-color:#ff3631}.nav__link--red:hover{background-color:#000}.nav__link--red .arrow-icon{position:absolute;top:0;right:14px;bottom:0;margin:auto;width:39px;height:32px;fill:inherit}.nav__link--red .path{-webkit-transition:fill .2s ease;transition:fill .2s ease;fill:inherit}.nav__link--red:hover{color:#ff3631;fill:#ff3631}.pane{position:relative;overflow:hidden}.pane__container{background-color:#4e75fa;color:#fff}@media screen and (min-width:960px){.pane__container{padding:50px 120px 53px}}@media screen and (min-width:768px) and (max-width:959px){.pane__container{padding:51px 34px 53px}}@media screen and (max-width:767px){.pane__container{padding:33px 10px 37px 11px;margin-left:0;margin-right:0}}@media screen and (min-width:960px){.pane__text{padding-left:9px;padding-right:4px}}@media screen and (min-width:768px) and (max-width:959px){.pane__text{padding-left:12px;padding-right:7px}}@media screen and (max-width:767px){.pane__text{padding-left:23px;padding-right:7px;font-size:14px;line-height:1.7}}.pane__accent{position:relative;z-index:1;color:#000;background-color:#f5de68;font-weight:700;margin-left:5px;margin-right:7px;-webkit-box-shadow:0 0 0 5px #f5de68,inset 0 0 1px 1px #f5de68;box-shadow:0 0 0 5px #f5de68,inset 0 0 1px 1px #f5de68;-webkit-box-decoration-break:clone;box-decoration-break:clone;line-height:32px}@media screen and (min-width:768px) and (max-width:959px){.pane__accent{font-size:16px;line-height:30px}}@media screen and (max-width:767px){.pane__accent{font-size:16px;line-height:24px}}.pane__btn{cursor:pointer;display:block;width:100%;background-color:transparent;border:4px solid #f5de68;font-family:Druk Wide Cy TT;font-size:27px;line-height:1.6;color:#fff;text-transform:uppercase;text-align:center;-webkit-transition:background-color .2s ease,border-color .2s ease,color .2s ease;transition:background-color .2s ease,border-color .2s ease,color .2s ease;padding:21px;margin-top:34px}@media screen and (max-width:767px){.pane__btn{font-size:19px;padding:29px 20px}}.pane__btn:hover{border-color:#f5de68}.pane__btn:active,.pane__btn:hover{background-color:#f5de68;color:#000}.pane__btn:active{border-color:#000}.blockquote{font-size:24px;line-height:1.7}@media screen and (max-width:767px){.blockquote{font-size:19px}}.blockquote__text{position:relative;max-width:820px}@media screen and (min-width:960px){.blockquote__text{padding-left:42px}}@media screen and (min-width:768px) and (max-width:959px){.blockquote__text{padding-left:36px}}@media screen and (max-width:767px){.blockquote__text{padding-left:35px;line-height:1.64}}.blockquote__text:after{content:"";position:absolute;top:10px;left:0;bottom:7px;width:10px;background-color:#4e75fa}@media screen and (min-width:960px){.important-number{white-space:nowrap}}.important-number__value{font-family:Druk Wide Cy TT;font-size:80px;line-height:1.3}@media screen and (max-width:767px){.important-number__value{font-size:40px}}.important-number__value--small{font-size:60px}.important-number__description{font-size:19px;line-height:1.5}@media screen and (max-width:767px){.important-number__description{font-size:17px}}@media screen and (min-width:960px){.important-number--rotate-left-side{position:absolute;bottom:1em;left:0;-webkit-transform:translateY(100%) rotate(-90deg);transform:translateY(100%) rotate(-90deg);-webkit-transform-origin:left top;transform-origin:left top}}@media screen and (min-width:960px){.important-number--rotate-right-side{position:absolute;bottom:1em;right:-10px;-webkit-transform:translateY(-100%) rotate(-90deg);transform:translateY(-100%) rotate(-90deg);-webkit-transform-origin:right bottom;transform-origin:right bottom}}.important-number--blue{color:#4e75fa}.important-number--red{color:#ff3631}.important-number--yellow{color:#f5de68}.side-link__title{font-family:Druk Wide Cy TT;font-size:33px;line-height:1.3;margin-bottom:27px}@media screen and (max-width:767px){.side-link__title{font-size:25px;margin-bottom:24px}}@media screen and (min-width:768px) and (max-width:959px){.side-link__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}.side-link__link{margin-bottom:21px}@media screen and (min-width:960px){.side-link__link{max-width:340px}}@media screen and (min-width:768px) and (max-width:959px){.side-link__link{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:48.3%;width:calc(50% - 10px)}}@media screen and (max-width:767px){.side-link__link{margin-bottom:0;margin-top:21px}}.side-link__link--blue{display:block;position:relative;font-family:Druk Wide Cy TT;color:#000;fill:#000;font-size:23px;line-height:1.3;padding:12px 60px 12px 22px;-webkit-transition:color .2s ease,background-color .2s ease;transition:color .2s ease,background-color .2s ease;background-color:#4e75fa}.side-link__link--blue:hover{background-color:#000}.side-link__link--blue .arrow-icon{position:absolute;top:0;right:14px;bottom:0;margin:auto;width:39px;height:32px;fill:inherit}.side-link__link--blue .path{-webkit-transition:fill .2s ease;transition:fill .2s ease;fill:inherit}.side-link__link--blue:hover{color:#4e75fa;fill:#4e75fa}.side-link__link--yellow{display:block;position:relative;font-family:Druk Wide Cy TT;color:#000;fill:#000;font-size:23px;line-height:1.3;padding:12px 60px 12px 22px;-webkit-transition:color .2s ease,background-color .2s ease;transition:color .2s ease,background-color .2s ease;background-color:#f5de68}.side-link__link--yellow:hover{background-color:#000}.side-link__link--yellow .arrow-icon{position:absolute;top:0;right:14px;bottom:0;margin:auto;width:39px;height:32px;fill:inherit}.side-link__link--yellow .path{-webkit-transition:fill .2s ease;transition:fill .2s ease;fill:inherit}.side-link__link--yellow:hover{color:#f5de68;fill:#f5de68}.side-link__link--red{display:block;position:relative;font-family:Druk Wide Cy TT;color:#000;fill:#000;font-size:23px;line-height:1.3;padding:12px 60px 12px 22px;-webkit-transition:color .2s ease,background-color .2s ease;transition:color .2s ease,background-color .2s ease;background-color:#ff3631}.side-link__link--red:hover{background-color:#000}.side-link__link--red .arrow-icon{position:absolute;top:0;right:14px;bottom:0;margin:auto;width:39px;height:32px;fill:inherit}.side-link__link--red .path{-webkit-transition:fill .2s ease;transition:fill .2s ease;fill:inherit}.side-link__link--red:hover{color:#ff3631;fill:#ff3631}.side-link__text{max-width:635px;font-size:16px;line-height:1.7;color:#4e75fa;margin-top:26px}@media screen and (max-width:767px){.side-link__text{margin-top:11px;line-height:1.46}}.dark-zone{position:relative;color:#fff}@media screen and (min-width:960px){.dark-zone{margin-top:367px}}@media screen and (min-width:768px) and (max-width:959px){.dark-zone{margin-top:324px}}@media screen and (max-width:767px){.dark-zone{margin-top:186px}}.dark-zone:before{content:"";position:absolute;z-index:-1;height:530px;width:100%;left:0;background:url(.././assets/images/black-top1b9b3c8248870d58ee61bc7d5363c1b2.png) repeat-x 50%/auto 100%}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:144dpi){.dark-zone:before{background-image:url(.././assets/images/black-top@2xc6a777ee4be23f5d062fab8b2bf62b85.png)}}@media screen and (min-width:960px){.dark-zone:before{top:-435px}}@media screen and (min-width:768px) and (max-width:959px){.dark-zone:before{top:-377px}}@media screen and (max-width:767px){.dark-zone:before{top:-208px;height:246px}}.dark-zone:after{content:"";position:absolute;z-index:-2;display:block;top:0;left:0;width:100%;height:99%;background-color:#131313}.dark-zone__container{z-index:1}.dark-zone__lama{position:relative}.dark-zone__lama:after{content:"";display:block}@media screen and (min-width:960px){.dark-zone__lama:after{padding-bottom:49.6%}}@media screen and (min-width:768px) and (max-width:959px){.dark-zone__lama:after{padding-bottom:59.2%}}@media screen and (max-width:767px){.dark-zone__lama:after{padding-bottom:54%}}.dark-zone__lama-img{position:absolute;bottom:0;left:0;display:block;width:100%}@media screen and (max-width:959px){.dark-zone__lama-img{z-index:-1}}@media screen and (min-width:960px){.footer{margin-top:80px;padding-bottom:52px}}@media screen and (min-width:768px) and (max-width:959px){.footer{margin-top:45px;padding-bottom:42px}}@media screen and (max-width:767px){.footer{margin-top:52px;padding-bottom:39px}}@media screen and (min-width:768px){.footer--short{display:none}}@media screen and (max-width:767px){.footer--short{margin-top:68px}}@media screen and (min-width:960px){.footer__title{margin-bottom:28px}}@media screen and (min-width:768px) and (max-width:959px){.footer__title{margin-bottom:37px}}@media screen and (max-width:767px){.footer__title{line-height:1.5;margin-right:20px;margin-bottom:30px}}.footer__body{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media screen and (max-width:767px){.footer__body{display:block}}@media screen and (min-width:960px){.footer__side--left{width:807px}}@media screen and (min-width:960px){.footer__side--right{width:340px}}@media screen and (max-width:767px){.footer__side--right{position:relative;margin-top:-32px}}@media screen and (min-width:960px){.footer__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:960px) and (max-width:1220px){.footer__list{display:block}}.footer__column{list-style:none;padding:0 25px 0 0;margin:0}.footer__list-item{font-size:16px;line-height:1.5;color:#333;margin-bottom:20px}@media screen and (max-width:767px){.footer__list-item{margin-bottom:21px}}.footer__link{font-size:16px;line-height:1.5}@media screen and (max-width:767px){.footer__link{position:relative;z-index:1}}.footer__logo{display:block;position:relative;z-index:1}.footer__logo--ya{width:221px}@media screen and (min-width:960px){.footer__logo--ya{margin-top:-18px;margin-bottom:9px}}@media screen and (min-width:768px) and (max-width:959px){.footer__logo--ya{margin-left:auto;margin-top:159px;margin-bottom:10px}}@media screen and (max-width:767px){.footer__logo--ya{position:absolute;bottom:0;left:0;width:197px}}.footer__logo--lovelama{width:120px}@media screen and (max-width:767px){.footer__logo--lovelama{margin-top:auto;margin-left:auto;width:110px}}.footer__logo-img{display:block;width:100%}.jumper{z-index:20;position:relative;background-color:#f5de68;text-align:center;height:130vh;height:calc(130vh + 224px)}.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:50px;padding-left:20px;padding-right:20px}@media screen and (max-width:767px){.jumper__header{padding-top:35px}}.jumper__text{font-size:19px;line-height:1.7;max-width:740px;margin-left:auto;margin-right:auto;margin-bottom:5px}@media screen and (max-width:767px){.jumper__text{font-size:16px;line-height:1.5;margin-bottom:20px}}.jumper__title{font-weight:700;font-size:23px;line-height:150%;max-width:590px;margin-left:auto;margin-right:auto;margin-bottom:70px}@media screen and (max-width:767px){.jumper__title{font-size:16px;line-height:1.5}}.jumper__pic{position:absolute;-webkit-transform-origin:center top;transform-origin:center top;top:calc(30vh + 224px);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 50px rgba(0,0,0,.4);box-shadow:0 0 50px rgba(0,0,0,.4);border-top-left-radius:15px;border-top-right-radius:15px;background:#1a1b22 no-repeat top/100% auto}@media screen and (min-width:960px){.jumper__pic{background-image:url(.././assets/images/jumper-desktopf25cfade99f05b21de66691cfcb65ba5.jpg)}}@media screen and (max-width:959px){.jumper__pic{background-image:url(.././assets/images/jumper-mobile91338bb9e0d8cc4d53870abac1b94c7b.jpg);border-radius:0}}
