/**
 * Swiper 4.5.0
 * 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: February 22, 2019
 */
.swiper-container {
  margin: 0 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:YS Text;src:url(../../static/fonts/YS-Text-Regular0ec2a4c2955b7687285333014814ae3d.eot);src:url(../../static/fonts/YS-Text-Regular0ec2a4c2955b7687285333014814ae3d.eot?#iefix) format("embedded-opentype"),url(../../static/fonts/YS-Text-Regularb274e950c7a69477c672363bad546418.woff2) format("woff2"),url(../../static/fonts/YS-Text-Regular0a50515733ee6b0cc4d49bc291479e00.woff) format("woff"),url(../../static/fonts/YS-Text-Regular37be61a19a50a1be31509a5f23b3702e.ttf) format("truetype"),url(../../static/fonts/YS-Text-Regular65cff5719942d2cc8d8cd0fe4b526bd8.svg#YSText-Regular) format("svg");font-weight:400;font-style:normal}@font-face{font-family:YS Text;src:url(../../static/fonts/YS-Text-Medium70b6c8c98b8e887a39209c84f7728353.eot);src:url(../../static/fonts/YS-Text-Medium70b6c8c98b8e887a39209c84f7728353.eot?#iefix) format("embedded-opentype"),url(../../static/fonts/YS-Text-Medium03b52d8fb5ad6815bb40342c25b1fafd.woff2) format("woff2"),url(../../static/fonts/YS-Text-Mediumce334b6ef513c277a3c4f0cd68c2c0dd.woff) format("woff"),url(../../static/fonts/YS-Text-Mediumc160110b66dffc85dfbff4ceda9c693b.ttf) format("truetype"),url(../../static/fonts/YS-Text-Mediumd6564274804ca23192ce105e1346f65b.svg#YSText-Medium) format("svg");font-weight:500;font-style:normal}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box;outline:none}body,html{min-height:100%}body{font-family:YS Text;font-size:1.125rem;line-height:1.33;font-weight:400;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}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 #eee!important;box-shadow:inset 0 0 0 1.875rem #eee!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}}.container{max-width:79.75rem;margin-left:auto;margin-right:auto}@media screen and (max-width:767px){.container{width:auto;margin-left:2.25rem;margin-right:2.25rem}}html{font-size:1em}@media screen and (min-width:960px) and (max-width:1400px){html{font-size:1.11111vw}}@media screen and (min-width:768px) and (max-width:959px){html{font-size:1.11111vw}}.preview-info{color:#fff;font-size:1.125rem;line-height:1.3125rem;position:absolute;top:1.1875rem;left:1.5rem}@media screen and (max-width:767px){.preview-info{font-size:.75rem;line-height:.875rem}}.preview-info__name{position:relative;display:inline-block;font-weight:500;font-size:1.25rem;line-height:1.4375rem;margin-bottom:.125rem}@media screen and (max-width:767px){.preview-info__name{font-size:.875rem;line-height:1rem;margin-bottom:.187rem}}.preview-info__priority{position:absolute;bottom:100%;left:100%;margin-left:.312rem;margin-bottom:-.625rem;height:1.25rem;width:1.25rem;background:url(../../static/images/priorityb34cfde283479395ca9749937bc00c70.svg) no-repeat 50%/contain}.preview-info__type{margin-bottom:.5rem}@media screen and (max-width:767px){.preview-info__type{margin-bottom:.25rem}}.preview-info__reviews-stars{display:inline-block;width:6.0625rem;height:1.0625rem;background:url(../../static/images/stars974b3560f8367ae1ddd5630d232a72c2.svg) no-repeat 50%/contain;margin-bottom:-.062rem;margin-right:.375rem}@media screen and (max-width:767px){.preview-info__reviews-stars{width:4rem;height:.6875rem;margin-right:.25rem}}.preview-info__reviews-rating{display:inline-block;font-weight:500;margin-right:.375rem}@media screen and (max-width:767px){.preview-info__reviews-rating{margin-right:.125rem}}.preview-info__reviews-count{display:inline-block}.header{position:absolute;z-index:10;top:0;left:0;width:100%;padding-top:1rem;padding-bottom:1rem}@media screen and (min-width:768px){.header{-webkit-box-shadow:none;box-shadow:none;background-color:transparent;-webkit-transition:-webkit-box-shadow .2s ease;transition:-webkit-box-shadow .2s ease;transition:box-shadow .2s ease;transition:box-shadow .2s ease, -webkit-box-shadow .2s ease}.header--show{position:fixed;background-color:#fff;-webkit-box-shadow:0 0 0 rgba(0,0,0,.11);box-shadow:0 0 0 rgba(0,0,0,.11);-webkit-transition:-webkit-box-shadow .2s ease-in-out;transition:-webkit-box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out, -webkit-box-shadow .2s ease-in-out}.header--shadow{-webkit-box-shadow:0 .125rem 4.25rem rgba(0,0,0,.11);box-shadow:0 .125rem 4.25rem rgba(0,0,0,.11)}}@media screen and (max-width:767px){.header{position:fixed;background-color:#fff;padding-top:.75rem;padding-bottom:.75rem;border-bottom:1px solid #f5f5f5}.header--center{padding-top:.625rem;padding-bottom:.625rem}}.header__mobile-logo{display:none;text-decoration:none}@media screen and (max-width:767px){.header__mobile-logo{display:block;float:left}.header__mobile-logo--center{float:none}}@media screen and (max-width:767px){.header__mobile-logo-img{width:6.3125rem;display:block;margin-left:0;margin-right:auto}.header__mobile-logo-img--center{width:8.5625rem;margin-left:auto}}.header__column{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}@media screen and (max-width:767px){.header__column{display:none}}.header__column--left{width:15rem;float:left}@media screen and (max-width:767px){.header__column--left{width:auto}}.header__column--right{margin-left:15rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media screen and (max-width:767px){.header__column--right{margin-left:auto;float:right}}.header__swiper{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.header__logo-text{font-size:.9375rem;line-height:1.5rem;color:#737373;opacity:1;visibility:visible;-webkit-transition:opacity .2s ease,visibility .2s ease;transition:opacity .2s ease,visibility .2s ease}@media screen and (min-width:768px){.header__logo-text{padding-top:.75rem;padding-bottom:.75rem}}@media screen and (min-width:768px){.header__logo-text--hidden{opacity:0;visibility:hidden}}@media screen and (max-width:767px){.header__logo-text{width:9.25rem;font-size:.9375rem;line-height:1.125rem;color:#737373}}.header__nav{margin-right:auto;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:26.4375rem}@media screen and (max-width:767px){.header__nav{display:none}}.header__nav-link{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-size:.9375rem;line-height:1.5rem;padding-top:.75rem;padding-bottom:.75rem;color:#737373;text-decoration:none;-webkit-transition:color .2s ease;transition:color .2s ease}.header__nav-link:hover{color:#60b033}.header__button{cursor:pointer;height:3rem;width:12rem;border:none;background-color:#60b033;-webkit-transition:background-color .2s ease;transition:background-color .2s ease;color:#fff;border-radius:.625rem;font-size:1rem;line-height:1.5rem;font-weight:500;text-align:center;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}@media screen and (min-width:768px){.header__button:hover{background-color:#398027}}.header__button:active{background-color:#398027}@media screen and (max-width:767px){.header__button{width:14.25rem;font-weight:500;width:7.4375rem;height:2.25rem;font-size:.75rem;border-radius:.375rem}}@media screen and (min-width:768px){.header__button{visibility:hidden;opacity:0;-webkit-transition:opacity .2s ease,visibility .2s ease,background-color .2s ease;transition:opacity .2s ease,visibility .2s ease,background-color .2s ease}.header__button:before{content:attr(data-desktop-text)}}@media screen and (max-width:767px){.header__button{display:none}.header__button:before{content:attr(data-mobile-text)}}.header__button--show{visibility:visible;opacity:1}.header__button--light{background-color:transparent;color:#60b033;margin-right:1.3125rem;letter-spacing:-.5px}.header__button--light:hover{color:#398027;background-color:transparent}@media screen and (max-width:767px){.header__button--main{display:block}}@media screen and (max-width:767px){.header__button--hidden{display:none}}.header__logo,.header__logo-img{display:block}@media screen and (min-width:768px){.header__logo-img{width:8.875rem}}.intro{position:relative}.intro:before{content:"";position:absolute;top:0;left:0;height:1px;width:1px;opacity:.1;z-index:-1;background:url(../../static/images/pin-barber32a8dbe054b69aecdaab80cb68d8f95b.svg) no-repeat 50%/contain,url(../../static/images/pin-cafe-109c755a190b4c1436dce768979105194.svg) no-repeat 50%/contain,url(../../static/images/pin-cafe-2cc96d7537eadc6c2a785cec956b61afd.svg) no-repeat 50%/contain,url(../../static/images/pin-servicedbd2afcf9e875655090a27fba770e553.svg) no-repeat 50%/contain}@media screen and (min-width:768px){.intro{z-index:1;padding-bottom:22.5rem}}@media screen and (min-width:1401px){.intro{padding-bottom:25vw}}@media screen and (max-width:767px){.intro{padding-top:0;padding-bottom:96.774193vw}}.intro__transition{-webkit-transform:translateZ(0);transform:translateZ(0);will-change:transform}@media screen and (max-width:767px){.intro__transition{-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out, -webkit-transform .3s ease-out}}@media screen and (min-width:768px){.intro__wrap{position:relative;z-index:1;background-color:#fff;border-radius:0 0 2.8125rem 2.8125rem;-webkit-box-shadow:0 0 2.5rem .5rem rgba(0,0,0,.15);box-shadow:0 0 2.5rem .5rem rgba(0,0,0,.15);overflow:hidden}}@media screen and (max-width:767px){.intro__wrap{margin:0;will-change:auto;position:static;-webkit-transform:none!important;transform:none!important}}.intro__container{position:relative}@media screen and (max-width:767px){.intro__container{margin:0;position:static}}.intro__title{font-weight:400;font-size:4rem;line-height:4.5rem;color:#000}@media screen and (max-width:767px){.intro__title{font-size:1.75rem;line-height:2.25rem}}@media screen and (min-width:768px){.intro__title{margin:0 0 1.0625rem}}@media screen and (max-width:767px){.intro__title{margin:0 0 1.5625rem}}.intro__text{font-weight:400;font-size:1.125rem;line-height:1.5rem;color:#969696;margin:0 0 2.0625rem}@media screen and (max-width:767px){.intro__text{font-size:1rem;line-height:1.25rem;margin-right:-.9375rem}}.intro__button{cursor:pointer;height:3rem;width:12rem;border:none;background-color:#60b033;-webkit-transition:background-color .2s ease;transition:background-color .2s ease;color:#fff;border-radius:.625rem;font-size:1rem;line-height:1.5rem;font-weight:500;text-align:center}@media screen and (min-width:768px){.intro__button:hover{background-color:#398027}}.intro__button:active{background-color:#398027}@media screen and (max-width:767px){.intro__button{width:14.25rem;font-weight:500;width:7.4375rem;height:2.25rem;font-size:.75rem;border-radius:.375rem}}@media screen and (min-width:768px){.intro__button--mobile-fixed{display:none}}@media screen and (max-width:767px){.intro__button{display:none}.intro__button--mobile-fixed{font-size:1rem;height:3rem;margin:auto;border-radius:.625rem;z-index:5;display:block;position:fixed;left:2.25rem;right:2.25rem;top:auto;width:auto;width:70%;width:calc(100vw - 4.5rem);bottom:5.5rem;-webkit-transform:translateY(300%);transform:translateY(300%);-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease, -webkit-transform .3s ease}.intro__button--mobile-fixed:last-child{bottom:1.25rem}.intro__button--mobile-fixed.show{-webkit-transform:translateY(0);transform:translateY(0)}}@media screen and (min-width:768px){.intro__info{padding-top:6.875rem;padding-bottom:1.25rem;margin-right:37.5rem;height:36rem;-webkit-transform:none!important;transform:none!important}}@media screen and (max-width:767px){.intro__info{background:#fff;border-radius:0 0 1.5625rem 1.5625rem;-webkit-box-shadow:0 -.625rem 2.5rem rgba(0,0,0,.25);box-shadow:0 -.625rem 2.5rem rgba(0,0,0,.25);padding:5.75rem 2.25rem .125rem;position:relative;z-index:3}}@media screen and (min-width:768px){.intro__map{position:absolute;z-index:-1;bottom:0;left:0;width:100%}.intro__map:before{content:"";display:block;width:100%;padding-bottom:37.9861%}}@media screen and (max-width:767px){.intro__map{position:absolute;z-index:2;left:0;bottom:11.25rem;bottom:48.387096vw;width:100%;overflow:hidden;border-radius:0 0 1.5625rem 1.5625rem;-webkit-box-shadow:0 -.25rem 2.40278rem rgba(0,0,0,.8);box-shadow:0 -.25rem 2.40278rem rgba(0,0,0,.8)}.intro__map:before{content:"";display:block;width:100%;padding-bottom:61.021505%}}.intro__map-inner{background:#fffff7 url(../../static/images/map52d5f1c73c757f5f86ec0c2f7af7617f.jpg) no-repeat 50%/cover;position:absolute}@media screen and (min-width:768px){.intro__map-inner{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:100%;border-radius:0 0 2.8125rem 2.8125rem;overflow:hidden;z-index:1;-webkit-box-shadow:0 0 2.5rem .5rem rgba(0,0,0,.15);box-shadow:0 0 2.5rem .5rem rgba(0,0,0,.15)}}@media screen and (max-width:767px){.intro__map-inner{top:50%;left:50%;-webkit-transform:translate(-47%,-50%);transform:translate(-47%,-50%);width:168%}}.intro__map-inner:before{content:"";display:block;width:100%;padding-bottom:37.9861%}@media screen and (min-width:768px){.intro__slider{position:absolute;top:0;right:-5.25rem;width:36.75rem;height:36rem;-webkit-transform:none!important;transform:none!important}}@media screen and (max-width:767px){.intro__slider{position:absolute;z-index:1;bottom:0;left:0;width:100%;overflow:hidden;border-radius:0 0 1.5625rem 1.5625rem;-webkit-box-shadow:0 -.25rem 2.40278rem rgba(0,0,0,.8);box-shadow:0 -.25rem 2.40278rem rgba(0,0,0,.8)}}.intro__swiper-container{height:100%;width:100%}@media screen and (min-width:768px){.intro__preview{position:relative;z-index:1;width:36.75rem;height:36rem}}@media screen and (max-width:767px){.intro__preview{position:relative;z-index:1}.intro__preview:before{content:"";display:block;width:100%;padding-bottom:97.959183%}}.intro__preview-img{position:absolute;top:0;left:0;height:100%;width:100%;-o-object-fit:cover;object-fit:cover;z-index:-1}@media screen and (min-width:768px){.intro__preview-img--mobile{display:none}}@media screen and (max-width:767px){.intro__preview-img--desktop{display:none}}@media screen and (min-width:768px){.intro__preview-info{top:auto;left:2.8125rem;bottom:2.8125rem}}@media screen and (max-width:767px){.intro__preview-info{top:auto;left:2.1875rem;bottom:2.0625rem}}.intro__pin{position:absolute;z-index:1;display:none;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);opacity:0;visibility:hidden;-webkit-transition:opacity .3s ease,visibility .3s ease;transition:opacity .3s ease,visibility .3s ease}.intro__pin--run{opacity:1;visibility:visible}.intro__pin:nth-child(3n+1){-webkit-transition-delay:0s;transition-delay:0s}.intro__pin:nth-child(3n+2){-webkit-transition-delay:.2s;transition-delay:.2s}.intro__pin:nth-child(3n+3){-webkit-transition-delay:.4s;transition-delay:.4s}.intro__pin--dot{background:#198cff;border-radius:50%}@media screen and (min-width:768px){.intro__pin--dot{height:1.625rem;width:1.625rem;border:.25rem solid #fff;-webkit-box-shadow:0 0 .59375rem rgba(134,163,191,.6);box-shadow:0 0 .59375rem rgba(134,163,191,.6)}}@media screen and (max-width:767px){.intro__pin--dot{height:1.125rem;width:1.125rem;border:.148180625rem solid #fff;-webkit-box-shadow:0 0 .39515rem rgba(134,163,191,.6);box-shadow:0 0 .39515rem rgba(134,163,191,.6)}}.intro__pin--icon{background:#198cff;border-radius:50%}@media screen and (min-width:768px){.intro__pin--icon{height:3rem;width:3rem;border:.21875rem solid #fff;-webkit-box-shadow:0 0 1.25rem rgba(134,163,191,.6);box-shadow:0 0 1.25rem rgba(134,163,191,.6)}}@media screen and (max-width:767px){.intro__pin--icon{height:2rem;width:2rem;border:.145580625rem solid #fff;-webkit-box-shadow:0 0 .83189rem rgba(134,163,191,.6);box-shadow:0 0 .83189rem rgba(134,163,191,.6)}}.intro__pin--icon-barber{background:#198cff url(../../static/images/pin-barber32a8dbe054b69aecdaab80cb68d8f95b.svg) no-repeat 50%/contain}.intro__pin--icon-cafe-1{background:#198cff url(../../static/images/pin-cafe-109c755a190b4c1436dce768979105194.svg) no-repeat 50%/contain}.intro__pin--icon-cafe-2{background:#198cff url(../../static/images/pin-cafe-2cc96d7537eadc6c2a785cec956b61afd.svg) no-repeat 50%/contain}.intro__pin--icon-service{background:#198cff url(../../static/images/pin-servicedbd2afcf9e875655090a27fba770e553.svg) no-repeat 50%/contain}.intro__pin--marker{z-index:2;-webkit-transition-delay:.6s!important;transition-delay:.6s!important;-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.intro__pin--marker:before{content:"";display:block;padding-bottom:136.8692%}@media screen and (min-width:768px){.intro__pin--marker{width:5.461875rem}.intro__pin--marker:after{width:8rem;height:9.375rem}}@media screen and (max-width:767px){.intro__pin--marker{width:3.635rem}.intro__pin--marker:after{width:5.3125rem;height:6.25rem}}.intro__pin--marker-barber{display:block}@media screen and (min-width:768px){.intro__pin--marker-barber{top:62.5%;left:72.4%}}@media screen and (max-width:767px){.intro__pin--marker-barber{top:58.5%;left:66.4%}}.intro__pin--marker-cafe{display:block}@media screen and (min-width:768px){.intro__pin--marker-cafe{top:59.5%;left:56.6%}}@media screen and (max-width:767px){.intro__pin--marker-cafe{top:56.5%;left:56.6%}}.intro__pin--marker-service{display:block}@media screen and (min-width:768px){.intro__pin--marker-service{top:66.9%;left:27.8%}}@media screen and (max-width:767px){.intro__pin--marker-service{top:62.9%;left:27.8%}}@media screen and (min-width:768px){.intro__pin--barber:first-child{display:block;top:71.4%;left:4.8%}.intro__pin--barber:nth-child(2){display:block;top:41%;left:31.7%}.intro__pin--barber:nth-child(3){display:block;top:45.4%;left:40.15%}.intro__pin--barber:nth-child(4){display:block;top:65%;left:44.6%}.intro__pin--barber:nth-child(5){display:block;top:93.6%;left:55.1%}.intro__pin--barber:nth-child(6){display:block;top:49.6%;left:60.1%}.intro__pin--barber:nth-child(7){display:block;top:76%;left:75%}.intro__pin--barber:nth-child(8){display:block;top:82.5%;left:86.78%}.intro__pin--barber:nth-child(9){display:block;top:92%;left:20%}.intro__pin--barber:nth-child(10){display:block;top:47%;left:47%}.intro__pin--barber:nth-child(11){display:block;top:70.6%;left:49.6%}.intro__pin--barber:nth-child(12){display:block;top:87%;left:67.5%}.intro__pin--barber:nth-child(13){display:block;top:72.6%;left:78.9%}.intro__pin--barber:nth-child(14){display:block;top:64%;left:93.6%}}@media screen and (max-width:767px){.intro__pin--barber:first-child{display:block;top:81%;left:21.4%}.intro__pin--barber:nth-child(2){display:block;top:39%;left:47%}.intro__pin--barber:nth-child(3){display:block;top:89%;left:64%}.intro__pin--barber:nth-child(4){display:block;top:83%;left:70.3%}.intro__pin--barber:nth-child(9){display:block;top:71%;left:50%}.intro__pin--barber:nth-child(10){display:block;top:36%;left:57%}}@media screen and (min-width:768px){.intro__pin--cafe:first-child{display:block;top:63.1%;left:10.1%}.intro__pin--cafe:nth-child(2){display:block;top:85.4%;left:34.4%}.intro__pin--cafe:nth-child(3){display:block;top:53.4%;left:49.85%}.intro__pin--cafe:nth-child(4){display:block;top:75%;left:54%}.intro__pin--cafe:nth-child(5){display:block;top:53.3%;left:85.1%}.intro__pin--cafe:nth-child(6){display:block;top:73%;left:4%}.intro__pin--cafe:nth-child(7){display:block;top:46%;left:40.3%}.intro__pin--cafe:nth-child(8){display:block;top:62%;left:51.7%}.intro__pin--cafe:nth-child(9){display:block;top:67%;left:66.7%}.intro__pin--cafe:nth-child(10){display:block;top:86%;left:80.8%}.intro__pin--cafe:nth-child(11){display:block;top:71%;left:86%}}@media screen and (max-width:767px){.intro__pin--cafe:first-child{display:block;top:48%;left:46%}.intro__pin--cafe:nth-child(2){display:block;top:79.3%;left:52.3%}.intro__pin--cafe:nth-child(6){display:block;top:36%;left:31.7%}.intro__pin--cafe:nth-child(8){display:block;top:59.4%;left:49%}.intro__pin--cafe:nth-child(9){display:block;top:66.3%;left:71.7%}}@media screen and (min-width:768px){.intro__pin--service:first-child{display:block;top:40.4%;left:5.1%}.intro__pin--service:nth-child(2){display:block;top:89.4%;left:25.1%}.intro__pin--service:nth-child(3){display:block;top:62.8%;left:33.2%}.intro__pin--service:nth-child(4){display:block;top:44.8%;left:75.8%}.intro__pin--service:nth-child(5){display:block;top:51.8%;left:20.8%}.intro__pin--service:nth-child(6){display:block;top:75.8%;left:37.8%}.intro__pin--service:nth-child(7){display:block;top:88.8%;left:63.7%}}@media screen and (max-width:767px){.intro__pin--service:first-child{display:block;top:86.6%;left:25.2%}.intro__pin--service:nth-child(2){display:block;top:57.1%;left:35.7%}.intro__pin--service:nth-child(5){display:block;top:43%;left:20.5%}.intro__pin--service:nth-child(6){display:block;top:75%;left:38.7%}.intro__pin--service:nth-child(7){display:block;top:84%;left:64%}}.intro__pin-marker-img{position:absolute;bottom:0;left:50%;-webkit-transform:translate(-50%);transform:translate(-50%);opacity:0;-webkit-transform:translate(-50%) scale(.7) rotateX(45deg);transform:translate(-50%) scale(.7) rotateX(45deg);-webkit-transition:opacity .3s ease,-webkit-transform .3s ease;transition:opacity .3s ease,-webkit-transform .3s ease;transition:transform .3s ease,opacity .3s ease;transition:transform .3s ease,opacity .3s ease,-webkit-transform .3s ease;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transition-delay:.6s;transition-delay:.6s}@media screen and (min-width:768px){.intro__pin-marker-img{width:8rem;height:9.375rem}}@media screen and (max-width:767px){.intro__pin-marker-img{width:5.3125rem;height:6.25rem}}.intro__pin-marker-img--run{opacity:1;-webkit-transform:translate(-50%) scale(1) rotateX(0deg);transform:translate(-50%) scale(1) rotateX(0deg)}.intro__pin-group{position:relative;display:none}.intro__pin-group--ready{position:static;display:block}.intro__pin-blow{position:absolute;z-index:1;top:50%;left:50%;width:259.7848477%;height:183.1409934%;-webkit-transform:translate(-52%,-63%);transform:translate(-52%,-63%)}.intro__pin-path--in{stroke-dasharray:65;stroke-dashoffset:65}.intro__pin-path--in.intro__pin-path--run{-webkit-animation:line-intro-in .6s ease 1.1s forwards;animation:line-intro-in .6s ease 1.1s forwards}.intro__pin-path--out{stroke-dasharray:65;stroke-dashoffset:195}.intro__pin-path--out.intro__pin-path--run{-webkit-animation:line-intro-out .6s ease 1.1s forwards;animation:line-intro-out .6s ease 1.1s forwards}@-webkit-keyframes line-intro-in{to{stroke-dashoffset:195}}@keyframes line-intro-in{to{stroke-dashoffset:195}}@-webkit-keyframes line-intro-out{to{stroke-dashoffset:65}}@keyframes line-intro-out{to{stroke-dashoffset:65}}.how{overflow:hidden}@media screen and (min-width:768px){.how{position:relative;padding-top:6.1875rem;-webkit-transform:translateZ(0);transform:translateZ(0);will-change:transform}}@media screen and (max-width:767px){.how{padding-top:5.1rem;-webkit-transform:none!important;transform:none!important;margin-top:0!important}}.how__positions{padding-top:10.8125rem;padding-bottom:6.25rem;overflow:hidden}@media screen and (min-width:768px){.how__positions{position:relative;z-index:1;min-height:31.125rem}.how__positions:after{content:"";position:absolute;z-index:-1;left:0;bottom:0;width:100%;height:3rem;background:-webkit-gradient(linear,left top, left bottom,from(hsla(0,0%,100%,0)),to(hsla(0,0%,96.1%,.8)));background:linear-gradient(180deg,hsla(0,0%,100%,0),hsla(0,0%,96.1%,.8));mix-blend-mode:multiply}}@media screen and (min-width:768px) and (max-width:767px){.how__positions:after{height:3rem}}@media screen and (max-width:767px){.how__positions{padding-top:0;padding-bottom:1.5rem;overflow:visible}}.how__competitors{padding-top:10.8125rem;padding-bottom:5rem}@media screen and (min-width:768px){.how__competitors{position:relative;z-index:1;min-height:30rem}.how__competitors:after{content:"";position:absolute;z-index:-1;left:0;bottom:0;width:100%;height:3rem;background:-webkit-gradient(linear,left top, left bottom,from(hsla(0,0%,100%,0)),to(hsla(0,0%,96.1%,.8)));background:linear-gradient(180deg,hsla(0,0%,100%,0),hsla(0,0%,96.1%,.8));mix-blend-mode:multiply}}@media screen and (min-width:768px) and (max-width:767px){.how__competitors:after{height:3rem}}@media screen and (max-width:767px){.how__competitors{padding-top:0;padding-bottom:6.75rem}}.how__tell{position:relative;padding-top:11.125rem;padding-bottom:7.0625rem}@media screen and (min-width:768px){.how__tell{min-height:37.5rem}}@media screen and (max-width:767px){.how__tell{padding-top:0;padding-bottom:0;margin-bottom:3.75rem}}.how__bottom{padding:2.25rem 0}@media screen and (min-width:768px){.how__bottom{position:relative;z-index:1;min-height:7rem}.how__bottom:before{content:"";position:absolute;z-index:-1;top:0;left:0;width:100%;height:3rem;background:-webkit-gradient(linear,left top, left bottom,from(hsla(0,0%,96.1%,.8)),to(hsla(0,0%,100%,0)));background:linear-gradient(180deg,hsla(0,0%,96.1%,.8),hsla(0,0%,100%,0));mix-blend-mode:multiply}}@media screen and (min-width:768px) and (max-width:767px){.how__bottom:before{height:3rem}}@media screen and (max-width:767px){.how__bottom{display:none;text-align:center;padding:1.8rem 0 1.85rem}}.how__title{font-weight:400;font-size:4rem;line-height:4.5rem;color:#000;margin:0 0 1rem}@media screen and (max-width:767px){.how__title{font-size:1.75rem;line-height:2.25rem;margin-bottom:.562rem}}.how__title-text{font-weight:400;font-size:1.125rem;line-height:1.5rem;color:rgba(0,0,0,.4);margin:0}@media screen and (max-width:767px){.how__title-text{font-size:.75rem;line-height:1.125rem;margin-bottom:2.25rem}}.how__subtitle{font-weight:400;font-size:2.25rem;line-height:3rem;color:#000;margin:0 0 2.0625rem}@media screen and (max-width:767px){.how__subtitle{font-size:1.125rem;line-height:1.5rem;margin-bottom:.7rem}}.how__subtitle-text{font-weight:400;font-size:1.125rem;line-height:1.5rem;color:#969696;margin:0}@media screen and (min-width:768px){.how__subtitle-text--positions{max-width:37.5rem}}.how__text-column{max-width:45rem;margin-left:auto;margin-right:auto}.how__text-column--to-left{margin-left:0}.how__text-column--to-right{margin-right:0}@media screen and (max-width:767px){.how__inner-container{margin-left:.75rem;margin-right:.75rem;padding-left:1.5rem;padding-right:1.5rem;padding-top:1.125rem;-webkit-box-shadow:0 .312rem 1.125rem rgba(0,0,0,.25);box-shadow:0 .312rem 1.125rem rgba(0,0,0,.25);border-radius:.437rem}}.how__tabs{display:-webkit-box;display:-ms-flexbox;display:flex;max-width:41.25rem;margin-top:4.5625rem}@media screen and (max-width:767px){.how__tabs{display:none}}.how__tab-item{font-weight:400;font-size:1.125rem;line-height:1.5rem;color:rgba(0,0,0,.4);width:33.3%;color:#c2c2c2;padding-right:.9375rem;cursor:pointer}@media screen and (max-width:767px){.how__tab-item{font-size:.75rem;line-height:1.125rem}}.how__tab-item--active{font-weight:500;color:#000}.how__arrow-link{font-weight:400;font-size:1.125rem;line-height:1.5rem;color:#969696;text-decoration:none;color:#c2c2c2}.how__arrow-link:after{content:"";display:inline-block;background:url(../../static/images/link-arrow1fe7e9be9b238202e2e351ba3634b2ae.svg) no-repeat 50%/contain,url(../../static/images/link-arrow-accent2d512e7c453b06e862266484743a15d5.svg) no-repeat 50%/contain;width:1.75rem;height:.625rem;margin-left:.625rem;margin-bottom:.062rem}@media screen and (max-width:767px){.how__arrow-link:after{width:1.0625rem;height:.375rem}}.how__arrow-link:hover{color:#60b033}.how__arrow-link:hover:after{background-image:url(../../static/images/link-arrow-accent2d512e7c453b06e862266484743a15d5.svg)}@media screen and (max-width:767px){.how__arrow-link{font-size:1rem;line-height:1.5rem}}@media screen and (min-width:768px){.how__scroll-image{z-index:-1;position:absolute;width:38.625rem;height:32.5rem;left:50%;bottom:-2.5rem;margin-left:6.375rem;background:no-repeat top/100% auto;background-image:url(../../static/images/how-positions-map7b03e9bafb30170b8a64afe226bf7aa9.png)}}@media only screen and (min-width:768px) and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-width:768px) and (min-resolution:144dpi){.how__scroll-image{background-image:url(../../static/images/how-positions-map@2x8cd27600da8080f02fb259d109108fcd.png)}}@media screen and (max-width:767px){.how__scroll-image{display:none}}@media screen and (min-width:768px){.how__scroll-wrap{position:absolute;top:5.6875rem;left:1.9375rem;width:22.75rem;height:24.5rem}}@media screen and (min-width:768px){.how__scroll-content{position:relative;background:url(../../static/images/how-positions-card21accbb7242d1a4b2c6bcb5e2300fcfe.png) no-repeat top/contain;width:99%;height:8.5rem}}@media only screen and (min-width:768px) and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-width:768px) and (min-resolution:144dpi){.how__scroll-content{background-image:url(../../static/images/how-positions-card@2xf904c0f147febcf80cff555be376fe1e.png)}}@media screen and (min-width:768px){.how__competitors-image{position:absolute;right:50%;top:6.5625rem;margin-right:10.9375rem;width:30.625rem;height:30.5625rem;background:no-repeat 50%/100% auto;background-image:url(../../static/images/how-competitors-mapea71229e5d6f1bb06be5eaca518485bd.png)}}@media only screen and (min-width:768px) and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-width:768px) and (min-resolution:144dpi){.how__competitors-image{background-image:url(../../static/images/how-competitors-map@2x1a5817fb53ebd8e94e4075463d30ad55.png)}}@media screen and (max-width:767px){.how__competitors-image{display:none}}.how__competitors-marker{position:absolute;top:11.375rem;left:12.0625rem;width:6.8125rem;height:9.1875rem;opacity:0;-webkit-transform-origin:bottom;transform-origin:bottom;background:url(../../static/images/marker6a7568eeb76e0ebc2b1b140a652a8198.svg) no-repeat 50%/contain}@media screen and (max-width:767px){.how__competitors-marker{display:none}}.animation--run .how__competitors-marker{-webkit-animation:marker .5s ease-in .5s forwards;animation:marker .5s ease-in .5s forwards}.how__competitors-dot{position:absolute;top:0;left:0;height:.9375rem;width:.9375rem;border-radius:50%;-webkit-box-shadow:0 0 0 .187rem #fff,0 .062rem .125rem .187rem rgba(0,0,0,.2);box-shadow:0 0 0 .187rem #fff,0 .062rem .125rem .187rem rgba(0,0,0,.2);background-color:#198cff;opacity:0;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-transform:translate(-2.3125rem,-2.75rem);transform:translate(-2.3125rem,-2.75rem)}@media screen and (max-width:767px){.how__competitors-dot{display:none}}.animation--run .how__competitors-dot{opacity:1}.how__competitors-dot--1{top:8rem;left:7.25rem;-webkit-transition-delay:.1s;transition-delay:.1s}.how__competitors-dot--2{top:24.3125rem;left:8.5rem;-webkit-transition-delay:.3s;transition-delay:.3s}.how__competitors-dot--3{top:26.5625rem;left:15.625rem;-webkit-transition-delay:.5s;transition-delay:.5s}.how__competitors-dot--4{top:6.125rem;left:21.25rem;-webkit-transition-delay:0s;transition-delay:0s}.how__competitors-dot--5{top:22.1875rem;left:20.75rem;-webkit-transition-delay:.2s;transition-delay:.2s}.how__competitors-dot--6{top:5.1875rem;left:26rem;-webkit-transition-delay:.5s;transition-delay:.5s}.how__competitors-dot--7{top:26.125rem;left:25.5rem;-webkit-transition-delay:.1s;transition-delay:.1s}@media screen and (min-width:768px){.how__tell-image{position:absolute;z-index:2;left:50%;bottom:-7.4375rem;margin-left:6.375rem;width:35.75rem;height:39.75rem;background:no-repeat 50%/100% auto;background-image:url(../../static/images/how-tell-map256d56a1b9e0c53f89df583c102227b1.png)}}@media only screen and (min-width:768px) and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-width:768px) and (min-resolution:144dpi){.how__tell-image{background-image:url(../../static/images/how-tell-map@2x7e96eb0214bc4ffa56c79d0e95260ff0.png)}}@media screen and (max-width:767px){.how__tell-image{display:none}}.how__video{display:none}@media screen and (max-width:767px){.how__video{display:block}}.how__tell-video{position:relative;z-index:-1;left:.25rem;top:.062rem;margin-top:-.25rem;margin-left:auto;margin-right:auto;width:16.75rem}.how__tell-video-item{display:block}.how__competitors-video{position:relative;z-index:1;margin-left:auto;margin-right:auto;width:11.25rem;border-radius:.25rem;margin-top:-3.5rem;top:5.125rem}.how__competitors-video:before{content:"";z-index:-1;position:absolute;display:block;top:.5rem;left:.75rem;right:.69rem;bottom:.75rem;-webkit-box-shadow:0 2.1875rem 2.1875rem rgba(0,0,0,.2);box-shadow:0 2.1875rem 2.1875rem rgba(0,0,0,.2);border-radius:.25rem}.how__competitors-video-item{display:block;border-radius:.25rem;overflow:hidden}.how__positions-video{position:relative;z-index:-1;left:.25rem;margin-top:.187rem;margin-left:auto;margin-right:auto;width:16.75rem}.how__positions-video-item{display:block}.how__line{position:absolute;top:0;left:0}@media screen and (max-width:767px){.how__line{display:none}}.how__line--scroll{top:-2.625rem;left:-4.1875rem;width:30.0625rem;height:15.0625rem}.how__line--scroll .path{stroke-dasharray:2499;stroke-dashoffset:2500;-webkit-transition:stroke-dashoffset .5s ease-out;transition:stroke-dashoffset .5s ease-out}.how__line--scroll .path--run{stroke-dashoffset:0}.how__line--competitors{top:8.0625rem;left:8.4375rem;width:18.25rem;height:17.125rem;-webkit-transform:translate(-2.3125rem,-2.75rem);transform:translate(-2.3125rem,-2.75rem)}.how__line--competitors .path--to{stroke-dasharray:82;stroke-dashoffset:83}.how__line--competitors .path--to.path--run{-webkit-animation:line-competitors-to .8s ease 1s forwards;animation:line-competitors-to .8s ease 1s forwards}.how__line--competitors .path--special{stroke-dasharray:78;stroke-dashoffset:236}.how__line--competitors .path--special.path--run{-webkit-animation:line-competitors-special .8s ease 1s forwards;animation:line-competitors-special .8s ease 1s forwards}.how__line--competitors .path--out{stroke-dasharray:75;stroke-dashoffset:228}.how__line--competitors .path--out.path--run{-webkit-animation:line-competitors-out .8s ease 1s forwards;animation:line-competitors-out .8s ease 1s forwards}.how__line--tell-1{top:8.25rem;left:12.625rem;width:13.75rem;height:13.75rem;-webkit-transform:translate(.75rem,-4.3125rem);transform:translate(.75rem,-4.3125rem)}.how__line--tell-1 .path{stroke-dasharray:783;stroke-dashoffset:784;-webkit-transition:stroke-dashoffset .2s ease-out;transition:stroke-dashoffset .2s ease-out}.how__line--tell-1 .path--run{-webkit-transition-delay:.3s;transition-delay:.3s;-webkit-transition-duration:.5s;transition-duration:.5s;stroke-dashoffset:0}.how__line--tell-2{top:29.875rem;left:-30.8125rem;width:32.6875rem;height:9.8125rem;-webkit-transform:translate(.75rem,-4.3125rem);transform:translate(.75rem,-4.3125rem)}.how__line--tell-2 .path--one{stroke-dasharray:508;stroke-dashoffset:509;-webkit-transition:stroke-dashoffset .3s ease-out;transition:stroke-dashoffset .3s ease-out}.how__line--tell-2 .path--two{stroke-dasharray:133;stroke-dashoffset:134;-webkit-transition:stroke-dashoffset .3s ease-out .3s;transition:stroke-dashoffset .3s ease-out .3s}.how__line--tell-2 .path--run{stroke-dashoffset:0}.how__line--tell-3{top:26.0625rem;left:-.312rem;width:25.375rem;height:2rem;-webkit-transform:translate(.75rem,-4.3125rem);transform:translate(.75rem,-4.3125rem)}.how__line--tell-3 .path{stroke-dasharray:436;stroke-dashoffset:437;-webkit-transition:stroke-dashoffset .2s ease-out;transition:stroke-dashoffset .2s ease-out}.how__line--tell-3 .path--run{-webkit-transition-delay:.3s;transition-delay:.3s;-webkit-transition-duration:.4s;transition-duration:.4s;stroke-dashoffset:0}@-webkit-keyframes line-competitors-to{to{stroke-dashoffset:247}}@keyframes line-competitors-to{to{stroke-dashoffset:247}}@-webkit-keyframes line-competitors-special{to{stroke-dashoffset:80}}@keyframes line-competitors-special{to{stroke-dashoffset:80}}@-webkit-keyframes line-competitors-out{to{stroke-dashoffset:76}}@keyframes line-competitors-out{to{stroke-dashoffset:76}}@-webkit-keyframes marker{50%{opacity:0;-webkit-transform:scaleY(.6) translateY(.625rem);transform:scaleY(.6) translateY(.625rem)}to{opacity:1;-webkit-transform:scaleY(1) translateY(0);transform:scaleY(1) translateY(0)}}@keyframes marker{50%{opacity:0;-webkit-transform:scaleY(.6) translateY(.625rem);transform:scaleY(.6) translateY(.625rem)}to{opacity:1;-webkit-transform:scaleY(1) translateY(0);transform:scaleY(1) translateY(0)}}.reasons{padding-top:9.125rem;padding-bottom:9.0625rem;overflow:hidden}@media screen and (max-width:767px){.reasons{position:relative;z-index:1;padding-top:5.1rem;padding-bottom:2.2rem}.reasons:before{content:"";position:absolute;z-index:-1;top:0;left:0;width:100%;height:3rem;background:-webkit-gradient(linear,left top, left bottom,from(hsla(0,0%,96.1%,.8)),to(hsla(0,0%,100%,0)));background:linear-gradient(180deg,hsla(0,0%,96.1%,.8),hsla(0,0%,100%,0));mix-blend-mode:multiply}}@media screen and (max-width:767px) and (max-width:767px){.reasons:before{height:3rem}}.reasons__title{font-weight:400;font-size:4rem;line-height:4.5rem;color:#000;margin:0 0 1.1875rem}@media screen and (max-width:767px){.reasons__title{font-size:1.75rem;line-height:2.25rem;margin-bottom:.5rem}}.reasons__subtitle{font-weight:400;font-size:1.125rem;line-height:1.5rem;color:rgba(0,0,0,.4);margin:0 0 4rem}@media screen and (max-width:767px){.reasons__subtitle{font-size:.75rem;line-height:1.125rem;margin-bottom:2.4375rem}}.reasons__grid{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;margin-left:-2.5625rem;margin-right:-2.5625rem}@media screen and (max-width:767px){.reasons__grid{display:none}}.reasons__mobile-swiper-container{display:none}@media screen and (max-width:767px){.reasons__mobile-swiper-container{display:block;overflow:visible}}.reasons__item{position:relative;max-width:9rem;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;margin-left:2.5625rem;margin-right:2.5625rem;margin-bottom:4.5625rem}@media screen and (min-width:768px){.reasons__item{opacity:0;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.reasons__item:nth-child(3n){-webkit-transition-delay:.1s;transition-delay:.1s}.reasons__item:nth-child(5n){-webkit-transition-delay:.3s;transition-delay:.3s}.reasons__item:nth-child(7n){-webkit-transition-delay:.4s;transition-delay:.4s}.reasons__item.animation--run{opacity:1}}@media screen and (max-width:767px){.reasons__item{margin-left:0;margin-right:0}}.reasons__item--single{-webkit-box-shadow:0 .75rem 1.5625rem rgba(0,0,0,.25),inset 0 0 0 .312rem rgba(0,0,0,.15);box-shadow:0 .75rem 1.5625rem rgba(0,0,0,.25),inset 0 0 0 .312rem rgba(0,0,0,.15)}@media screen and (max-width:767px){.reasons__item--single{width:9rem;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-shadow:.312rem .5rem 1.25rem rgba(0,0,0,.15),inset 0 0 0 .312rem rgba(0,0,0,.15);box-shadow:.312rem .5rem 1.25rem rgba(0,0,0,.15),inset 0 0 0 .312rem rgba(0,0,0,.15);margin-bottom:1.5rem}}.reasons__item--double{max-width:23.125rem}@media screen and (max-width:767px){.reasons__item--double{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%;width:auto;-webkit-box-shadow:.187rem .312rem 1.125rem rgba(0,0,0,.25);box-shadow:.187rem .312rem 1.125rem rgba(0,0,0,.25);border-radius:.437rem;margin-bottom:1.5rem;padding:1rem 1.375rem}}.reasons__item:not(.reasons__item--double){border-radius:.625rem;overflow:hidden}.reasons__item-img{display:block;width:100%}.reasons__item-title{font-size:4rem;line-height:3rem;margin-bottom:1rem}@media screen and (max-width:767px){.reasons__item-title{font-weight:500;font-size:2.25rem;line-height:2.25rem;margin-bottom:.125rem}}.reasons__item-text{font-weight:400;font-size:1.125rem;line-height:1.5rem;color:rgba(0,0,0,.4);color:rgba(0,0,0,.5)}@media screen and (max-width:767px){.reasons__item-text{font-size:.75rem;line-height:1.125rem;font-weight:500;font-size:1rem;line-height:1.5rem}}.reasons__line{position:absolute;top:0;left:0}@media screen and (max-width:767px){.reasons__line{display:none}}.reasons__line--line-1{top:-3.3125rem;left:-3.1875rem;width:28.6875rem;height:14.875rem}.reasons__line--line-1 .path{opacity:1;stroke-dasharray:1749;stroke-dashoffset:1750}.reasons__line--line-1 .path--run{-webkit-animation:reasons-dash-1 1s ease-out forwards;animation:reasons-dash-1 1s ease-out forwards}.reasons__line--line-2{top:-3.3125rem;left:-3.6875rem;width:27.9375rem;height:14.8125rem}.reasons__line--line-2 .path{opacity:1;stroke-dasharray:1419;stroke-dashoffset:1420}.reasons__line--line-2 .path--run{-webkit-animation:reasons-dash-2 1s ease-out forwards;animation:reasons-dash-2 1s ease-out forwards}.reasons__line--line-3{top:10rem;left:-3.3125rem;width:26.1875rem;height:4.75rem}.reasons__line--line-3 .path{opacity:1;stroke-dasharray:1999;stroke-dashoffset:2000}.reasons__line--line-3 .path--run{-webkit-animation:reasons-dash-3 1s ease-out forwards;animation:reasons-dash-3 1s ease-out forwards}@-webkit-keyframes reasons-dash-1{to{stroke-dashoffset:0}}@keyframes reasons-dash-1{to{stroke-dashoffset:0}}@-webkit-keyframes reasons-dash-2{to{stroke-dashoffset:0}}@keyframes reasons-dash-2{to{stroke-dashoffset:0}}@-webkit-keyframes reasons-dash-3{to{stroke-dashoffset:0}}@keyframes reasons-dash-3{to{stroke-dashoffset:0}}.stories{position:relative;z-index:1;padding-top:5.375rem}.stories:before{content:"";position:absolute;z-index:-1;top:0;left:0;width:100%;height:3rem;background:-webkit-gradient(linear,left top, left bottom,from(hsla(0,0%,96.1%,.8)),to(hsla(0,0%,100%,0)));background:linear-gradient(180deg,hsla(0,0%,96.1%,.8),hsla(0,0%,100%,0));mix-blend-mode:multiply}@media screen and (max-width:767px){.stories:before{height:3rem}}@media screen and (max-width:767px){.stories{padding-top:5.1rem;display:none}}.stories__title{font-weight:400;font-size:4rem;line-height:4.5rem;color:#000;margin:0 0 1.1875rem}@media screen and (max-width:767px){.stories__title{font-size:1.75rem;line-height:2.25rem;margin-bottom:.5rem}}.stories__subtitle{font-weight:400;font-size:1.125rem;line-height:1.5rem;color:rgba(0,0,0,.4);margin:0 0 4.125rem}@media screen and (max-width:767px){.stories__subtitle{font-size:.75rem;line-height:1.125rem;margin-bottom:0}}.stories__body{position:relative;overflow:hidden;padding-bottom:9.6875rem}@media screen and (max-width:767px){.stories__body{padding-top:2.3125rem;padding-bottom:3.7rem}}.stories__swiper-container{z-index:auto;overflow:visible;max-width:72.0625rem;margin-left:0}@media screen and (max-width:767px){.stories__swiper-container{max-width:18.75rem}}@media screen and (max-width:360px){.stories__swiper-container{margin-left:-1.625rem;margin-right:-1.625rem}}.stories__item{display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (max-width:767px){.stories__item{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.stories__preview{position:relative;z-index:1;display:block;height:25.5rem;width:25.5rem;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;float:left}.stories__preview:after{content:"";position:absolute;z-index:-1;top:.25rem;left:1.25rem;right:.25rem;bottom:1.25rem;-webkit-box-shadow:-5.9375rem 5.9375rem 5.9375rem rgba(0,0,0,.25);box-shadow:-5.9375rem 5.9375rem 5.9375rem rgba(0,0,0,.25);border-radius:.625rem}@media screen and (max-width:767px){.stories__preview{margin-top:auto;width:18.75rem;height:18.75rem;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.stories__preview:after{position:absolute;top:.9375rem;left:1.3125rem;right:.312rem;bottom:.375rem;-webkit-box-shadow:1rem 1rem 2.0625rem rgba(0,0,0,.25);box-shadow:1rem 1rem 2.0625rem rgba(0,0,0,.25);border-radius:.625rem}.stories__preview .preview-info{font-size:1.125rem;line-height:1.3125rem;top:.9375rem;left:1.125rem}.stories__preview .preview-info__name{font-size:1.25rem;line-height:1.4375rem}.stories__preview .preview-info__type{margin-bottom:.062rem}.stories__preview .preview-info__reviews-rating{margin-right:.25rem}.stories__preview .preview-info__reviews-stars{width:4.375rem;height:.875rem;margin-right:.312rem}}.stories__preview-inner{position:relative;width:100%;height:100%;border-radius:.625rem;overflow:hidden}@media screen and (max-width:767px){.stories__preview-inner{border-radius:.625rem}}.stories__preview-play{cursor:pointer;position:absolute;top:0;left:0;right:0;bottom:0;height:6rem;width:6rem;border-radius:50%;-webkit-box-shadow:0 .25rem .25rem rgba(0,0,0,.25);box-shadow:0 .25rem .25rem rgba(0,0,0,.25);margin:auto;background-color:hsla(0,0%,94.9%,.8);-webkit-transition:background-color .2s ease;transition:background-color .2s ease}.stories__preview-play:after{content:"";position:absolute;top:0;bottom:0;right:1.5rem;margin:auto;height:3rem;width:2.25rem;background:url(../../static/images/play3f2e4d578fe9eca8aa93771a815d0535.svg) no-repeat 50%/contain}.stories__preview-play:hover{background-color:#f2f2f2}@media screen and (max-width:767px){.stories__preview-info{top:.8125rem;left:.9375rem}}.stories__preview-img{display:block;position:absolute;top:50%;left:50%;width:100%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.stories__description{margin-left:4.5rem;margin-top:auto}@media screen and (min-width:768px){.stories__description{-webkit-transform:none!important;transform:none!important}}@media screen and (max-width:767px){.stories__description{display:none;margin-left:0;margin-top:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform}}.stories__text{font-weight:400;font-size:1.75rem;line-height:2.25rem;color:#000;position:relative;max-width:35.75rem;margin-bottom:8.5625rem}@media screen and (max-width:767px){.stories__text{font-size:1.125rem;line-height:1.5rem;font-size:1rem;margin-bottom:.312rem}}@media screen and (max-width:767px){.stories__text:first-letter{margin-left:-.3rem}}.stories__line{height:8.5625rem;width:100%;position:absolute;top:100%;left:0;margin-top:-.187rem;margin-left:-.312rem}@media screen and (max-width:767px){.stories__line{display:none}}.stories__author{font-weight:400;font-size:1.125rem;line-height:1.5rem;color:rgba(0,0,0,.4);color:rgba(0,0,0,.5);max-width:21rem}@media screen and (max-width:767px){.stories__author{font-size:.75rem;line-height:1.125rem;margin-bottom:1.1875rem;font-size:.6875rem}}@media screen and (max-width:767px){.stories__author-who{display:none}}.stories__video{display:none;font-size:.875rem;line-height:1.125rem;color:rgba(0,0,0,.45);text-decoration:none;margin-top:1.4375rem}@media screen and (min-width:768px){.stories__video{-webkit-transform:none!important;transform:none!important}}@media screen and (max-width:767px){.stories__video{display:none}}.stories__video:after{content:"";height:1rem;width:1rem;display:inline-block;margin-left:.625rem;margin-bottom:-.125rem;background:url(../../static/images/play-mobilecdb57c132042bfc8d64fce114bc9d3f7.svg) no-repeat 50%/contain}@media screen and (min-width:768px){.stories__fade{position:absolute;z-index:1;width:111.5%;width:calc((100vw - 79.75rem)/2 + 17.4375rem);left:100%;top:-10rem;bottom:-10rem;margin-left:-11.5%;background:-webkit-gradient(linear,left top, right top,from(hsla(0,0%,100%,0)),to(#fff));background:linear-gradient(90deg,hsla(0,0%,100%,0),#fff)}}@media screen and (max-width:767px){.stories__fade{display:none}}.stories__slide{opacity:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}@media screen and (min-width:768px){.stories__slide{opacity:0}}@media screen and (min-width:768px){.stories__slide--active,.stories__slide--next{opacity:1}}.stories__slide-nav--disabled{opacity:0;visibility:hidden}.stories__next{position:absolute;background:hsla(0,0%,100%,.8);-webkit-transition:background-color .2s ease;transition:background-color .2s ease;-webkit-box-shadow:0 .125rem .25rem rgba(0,0,0,.2);box-shadow:0 .125rem .25rem rgba(0,0,0,.2);border-radius:.25rem;height:3rem;width:3rem;right:-1.5rem;z-index:2}.stories__next:hover{background:#fff}.stories__next:before{position:absolute;content:"";display:block;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);border-top:.312rem solid transparent;border-bottom:.312rem solid transparent;border-left:.562rem solid #666}@media screen and (max-width:767px){.stories__next{display:none}}.stories__prev{position:absolute;background:hsla(0,0%,100%,.8);-webkit-transition:background-color .2s ease;transition:background-color .2s ease;-webkit-box-shadow:0 .125rem .25rem rgba(0,0,0,.2);box-shadow:0 .125rem .25rem rgba(0,0,0,.2);border-radius:.25rem;height:3rem;width:3rem;left:-1.5rem;z-index:2}.stories__prev:hover{background:#fff}.stories__prev:before{position:absolute;content:"";display:block;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);border-top:.312rem solid transparent;border-bottom:.312rem solid transparent;border-right:.562rem solid #666}@media screen and (max-width:767px){.stories__prev{display:none}}.stories__slide .path{opacity:0;-webkit-transition:opacity .2s ease;transition:opacity .2s ease}.stories__slide--active .path--run{opacity:1;stroke-dasharray:1520;stroke-dashoffset:1520;-webkit-animation:stories-dash 1s ease-out .5s forwards;animation:stories-dash 1s ease-out .5s forwards}@-webkit-keyframes stories-dash{to{stroke-dashoffset:0}}@keyframes stories-dash{to{stroke-dashoffset:0}}.reviews{position:relative;z-index:1;display:none;padding-top:5.1rem;padding-bottom:1.4rem}.reviews:before{content:"";position:absolute;z-index:-1;top:0;left:0;width:100%;height:3rem;background:-webkit-gradient(linear,left top, left bottom,from(hsla(0,0%,96.1%,.8)),to(hsla(0,0%,100%,0)));background:linear-gradient(180deg,hsla(0,0%,96.1%,.8),hsla(0,0%,100%,0));mix-blend-mode:multiply}@media screen and (max-width:767px){.reviews:before{height:3rem}}@media screen and (max-width:767px){.reviews{display:block}}.reviews__title{font-weight:400;font-size:4rem;line-height:4.5rem;color:#000;margin:0 0 .562rem}@media screen and (max-width:767px){.reviews__title{font-size:1.75rem;line-height:2.25rem}}.reviews__subtitle{font-weight:400;font-size:1.125rem;line-height:1.5rem;color:rgba(0,0,0,.4);margin-bottom:2.25rem}@media screen and (max-width:767px){.reviews__subtitle{font-size:.75rem;line-height:1.125rem}}.reviews__item{-webkit-box-shadow:.187rem .312rem 1.125rem rgba(0,0,0,.25);box-shadow:.187rem .312rem 1.125rem rgba(0,0,0,.25);border-radius:.375rem;margin-bottom:2.25rem;padding:1.5rem 1.5rem 1rem}.reviews__photo{position:relative;overflow:hidden;float:left;margin-right:.75rem;height:2.5rem;width:2.5rem;border-radius:50%}.reviews__photo-img{display:block;height:100%;width:100%;-o-object-fit:contain;object-fit:contain}.reviews__name{padding-top:.187rem;font-size:1.125rem;line-height:1.3333;margin-bottom:.062rem}.reviews__who{font-size:.6875rem;line-height:1.125;opacity:.45}.reviews__stars{background:url(../../static/images/stars-reviews5b6e10076dcc87a57244368b3e25d38e.svg) no-repeat 50%/contain;width:6.75rem;height:1.125rem;margin-top:1.0625rem;margin-bottom:.437rem}.reviews__text{font-size:1rem;line-height:1.5}.form{position:relative;z-index:1;padding-top:7.5625rem;z-index:13;background-color:#fff}.form:before{content:"";position:absolute;z-index:-1;top:0;left:0;width:100%;height:3rem;background:-webkit-gradient(linear,left top, left bottom,from(hsla(0,0%,96.1%,.8)),to(hsla(0,0%,100%,0)));background:linear-gradient(180deg,hsla(0,0%,96.1%,.8),hsla(0,0%,100%,0));mix-blend-mode:multiply}@media screen and (max-width:767px){.form:before{height:3rem}}@media screen and (max-width:767px){.form{padding-top:5.1rem;overflow:hidden}}.form__title{font-weight:400;font-size:4rem;line-height:4.5rem;color:#000;margin:0 0 1.8125rem}@media screen and (max-width:767px){.form__title{font-size:1.75rem;line-height:2.25rem;margin-bottom:.625rem}}.form__subtitle{font-weight:400;font-size:1.125rem;line-height:1.5rem;color:#969696;margin:0 0 3.25rem}@media screen and (max-width:767px){.form__subtitle{display:none;font-size:1rem;line-height:1.5rem;margin-bottom:1.875rem}}.form__pane{display:none}@media screen and (max-width:767px){.form__pane{display:block;text-align:center;font-size:1rem;line-height:1.5;margin-top:1.5625rem;margin-bottom:3.3125rem}}@media screen and (max-width:360px){.form__pane{margin-left:-1.625rem;margin-right:-1.625rem}}.form__pane-in{position:relative;-webkit-box-shadow:.187rem .312rem 1.125rem rgba(0,0,0,.25);box-shadow:.187rem .312rem 1.125rem rgba(0,0,0,.25);border-radius:.437rem;padding:1.1875rem 1.5rem 1rem;margin-bottom:1.25rem;text-align:left}.form__pane-text{width:45%}.form__pane-price{position:absolute;top:45%;right:2.1875rem;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.form__pane-price-sum{position:relative;display:inline-block;font-weight:500;font-size:2.25rem;line-height:1;letter-spacing:-.04em;margin-left:-5px}.form__pane-line{position:absolute;top:-1.9375rem;left:-3.375rem;width:11.75rem}.form__pane-line .path{stroke-dasharray:570;stroke-dashoffset:570}.form__pane-line .path--run{-webkit-animation:line-form-pane 1s ease .5s forwards;animation:line-form-pane 1s ease .5s forwards}.form__pane-link{text-decoration:none;color:#c2c2c2}.form__pane-link:after{content:"";display:inline-block;background:url(../../static/images/link-arrow1fe7e9be9b238202e2e351ba3634b2ae.svg) no-repeat 50%/contain,url(../../static/images/link-arrow-accent2d512e7c453b06e862266484743a15d5.svg) no-repeat 50%/contain;width:1.75rem;height:.625rem;margin-left:.625rem;margin-bottom:.062rem}@media screen and (max-width:767px){.form__pane-link:after{width:1.0625rem;height:.375rem}}.form__pane-link:hover{color:#60b033}.form__pane-link:hover:after{background-image:url(../../static/images/link-arrow-accent2d512e7c453b06e862266484743a15d5.svg)}.form__pane-link:hover{color:#c2c2c2}.form__pane-link:after,.form__pane-link:hover:after{background:url(../../static/images/link-arrow1fe7e9be9b238202e2e351ba3634b2ae.svg) no-repeat 50%/contain}.form__arrow-link{text-decoration:none}.form__arrow-link:after{content:"";display:inline-block;background:url(../../static/images/link-arrow1fe7e9be9b238202e2e351ba3634b2ae.svg) no-repeat 50%/contain,url(../../static/images/link-arrow-accent2d512e7c453b06e862266484743a15d5.svg) no-repeat 50%/contain;width:1.75rem;height:.625rem;margin-left:.625rem;margin-bottom:.062rem}@media screen and (max-width:767px){.form__arrow-link:after{width:1.0625rem;height:.375rem}}.form__arrow-link:hover{color:#60b033}.form__arrow-link:hover:after{background-image:url(../../static/images/link-arrow-accent2d512e7c453b06e862266484743a15d5.svg)}.form__field{position:relative;display:block;max-width:25.5rem;margin-bottom:1.5rem}@media screen and (max-width:767px){.form__field{margin-bottom:.75rem}}.form__field--checkbox{max-width:none;margin-top:3rem;margin-bottom:3rem;padding-left:6rem}@media screen and (max-width:767px){.form__field--checkbox{margin-top:1.5rem;margin-bottom:1.5rem;padding-left:3.75rem;min-height:3.25rem}}.form__input{display:block;background-color:#eee;-webkit-box-shadow:none;box-shadow:none;border-radius:.312rem;border:1px solid transparent;height:3rem;width:100%;padding-left:1.0625rem;padding-right:1.0625rem;font-size:18px;line-height:24px;-webkit-transition:border-color,background-color .2s ease;transition:border-color,background-color .2s ease}@media screen and (min-width:768px) and (max-width:959px){.form__input{font-size:16px;line-height:1.3333}}@media screen and (max-width:767px){.form__input{font-size:16px;line-height:24px;max-width:18.75rem}}.form__input::-webkit-input-placeholder{color:rgba(0,0,0,.3)}.form__input::-moz-placeholder{color:rgba(0,0,0,.3)}.form__input:-ms-input-placeholder{color:rgba(0,0,0,.3)}.form__input::-ms-input-placeholder{color:rgba(0,0,0,.3)}.form__input::placeholder{color:rgba(0,0,0,.3)}.form__input--invalid{background-color:#f47d75;border-color:#f47d75;color:#fff}.form__input--invalid::-webkit-input-placeholder{color:#fff}.form__input--invalid::-moz-placeholder{color:#fff}.form__input--invalid:-ms-input-placeholder{color:#fff}.form__input--invalid::-ms-input-placeholder{color:#fff}.form__input--invalid::placeholder{color:#fff}.form__input:focus{border-color:#000;background-color:#eee;color:#000}.form__input:focus::-webkit-input-placeholder{color:rgba(0,0,0,.3)}.form__input:focus::-moz-placeholder{color:rgba(0,0,0,.3)}.form__input:focus:-ms-input-placeholder{color:rgba(0,0,0,.3)}.form__input:focus::-ms-input-placeholder{color:rgba(0,0,0,.3)}.form__input:focus::placeholder{color:rgba(0,0,0,.3)}.form__input--valid{background-color:#eee;color:#000;border-color:transparent}@media screen and (max-width:767px){.form__input--valid{color:#000;border-color:#000}.form__input--valid,.form__input--valid:focus{background-color:#fff}}.form__input--valid-blink{-webkit-animation:valid-blink 1.2s linear 1s forwards;animation:valid-blink 1.2s linear 1s forwards}.form__checkbox{position:absolute;visibility:hidden;z-index:-1;height:0;width:0;overflow:hidden}.form__checkbox-placeholder{cursor:pointer;position:absolute;top:.25rem;left:0;background-color:#ededed;border-radius:.312rem;height:3rem;width:3rem;-webkit-transition:background-color .2s ease;transition:background-color .2s ease}.form__checkbox-placeholder--invalid{background-color:#f47d75}input:checked+.form__checkbox-placeholder .form__line--valid .path{stroke-dashoffset:0}.form__checkbox-text{font-size:1rem;line-height:1.5rem;color:rgba(0,0,0,.4)}@media screen and (max-width:767px){.form__checkbox-text{font-size:.5rem;line-height:.75rem}}.form__checkbox-link{color:inherit;-webkit-transition:color .2s ease;transition:color .2s ease}.form__checkbox-link:hover{text-decoration:none;color:#60b033}.form__control{display:-webkit-box;display:-ms-flexbox;display:flex}@media screen and (max-width:767px){.form__control{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.form__button{cursor:pointer;max-width:25.5rem;width:100%;height:6rem;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0;font-size:16px;font-weight:500;text-align:center;-webkit-transition:border-color,background-color .2s ease;transition:border-color,background-color .2s ease;background-color:#60b033;border:.125rem solid #60b033;border-radius:5px;color:#fff}@media screen and (max-width:767px){.form__button{height:3rem;background-color:#60b033;border-color:#60b033;color:#fff}}.form__button:hover{background-color:#398027;border-color:#398027;color:#fff}.form__button:active{background-color:#60b033;border-color:#60b033;color:#fff}.form__button--disabled{border:.125rem solid #ededed;color:#737373;background-color:#ededed}.form__button--disabled:hover{background-color:#60b033;border-color:#60b033;color:#fff;border-radius:.3125rem}.form__button--disabled:active{background-color:#d0d0d0;border-color:#d0d0d0;color:#fff}.form__button-light{margin-left:1.5rem;border:.125rem solid rgba(0,0,0,.55);display:block;line-height:6rem;text-decoration:none;border-radius:.3125rem;background-color:transparent;color:rgba(0,0,0,.55);display:none}@media screen and (max-width:767px){.form__button-light{line-height:3rem;margin-left:0;margin-top:1.5rem}}.form__footer{display:none;margin-top:1.6875rem;margin-bottom:2.0625rem;text-align:center}@media screen and (max-width:767px){.form__footer{display:block;font-size:.875rem;line-height:1.5rem;color:#bfbfbf}}.form__footer-link{display:inline-block}.form__line{position:absolute;top:0;left:0;z-index:-1}.form__line--show{z-index:1}.form__line--valid-input{top:0;left:105%;width:5.1875rem;height:2.875rem}@media screen and (max-width:767px){.form__line--valid-input{display:none}}.form__line--valid-input .path{stroke-dasharray:102;stroke-dashoffset:103;-webkit-transition:stroke-dashoffset .2s ease-out;transition:stroke-dashoffset .2s ease-out}.form__line--valid-input .path--run{stroke-dashoffset:0}.form__line--valid-checkbox-desktop{z-index:1;top:0;left:105%;margin-left:-2.9375rem;width:5.1875rem;height:2.875rem}@media screen and (max-width:767px){.form__line--valid-checkbox-desktop{display:none}}.form__line--valid-checkbox-desktop .path{stroke-dasharray:101;stroke-dashoffset:102;-webkit-transition:stroke-dashoffset .2s ease-out;transition:stroke-dashoffset .2s ease-out}.form__line--valid-checkbox-mobile{z-index:1;top:.312rem;left:105%;margin-left:-2.9375rem;width:2.9375rem;height:2.375rem}@media screen and (min-width:768px){.form__line--valid-checkbox-mobile{display:none}}.form__line--valid-checkbox-mobile .path{stroke-dasharray:73;stroke-dashoffset:73;-webkit-transition:stroke-dashoffset .2s ease-out;transition:stroke-dashoffset .2s ease-out}.form__line--invalid-input-desktop{top:-1.4375rem;left:-2.625rem;width:31.75rem;height:6.125rem}@media screen and (max-width:767px){.form__line--invalid-input-desktop{display:none}}.form__line--invalid-input-desktop .path{stroke-dasharray:1470;stroke-dashoffset:1471}.form__line--invalid-input-desktop .path--run{-webkit-animation:line-form-invalid-input-desktop 2.5s ease .5s forwards;animation:line-form-invalid-input-desktop 2.5s ease .5s forwards}.form__line--invalid-input-mobile{top:-.625rem;left:-1rem;width:20.875rem;height:4.25rem;max-width:89vw}@media screen and (min-width:768px){.form__line--invalid-input-mobile{display:none}}.form__line--invalid-input-mobile .path{stroke-dasharray:740;stroke-dashoffset:740}.form__line--invalid-input-mobile .path--run{-webkit-animation:line-form-invalid-input-mobile 2.5s ease .5s forwards;animation:line-form-invalid-input-mobile 2.5s ease .5s forwards}.form__line--invalid-checkbox{top:-2.1875rem;left:-2.375rem;width:8rem;height:8.0625rem}.form__line--invalid-checkbox .path{stroke-dasharray:445;stroke-dashoffset:446}.form__line--invalid-checkbox .path--run{-webkit-animation:line-form-invalid-checkbox 2.5s ease .5s forwards;animation:line-form-invalid-checkbox 2.5s ease .5s forwards}@-webkit-keyframes line-form-invalid-checkbox{0%{stroke-dashoffset:1335}40%{stroke-dashoffset:890}60%{stroke-dashoffset:890}to{stroke-dashoffset:445}}@keyframes line-form-invalid-checkbox{0%{stroke-dashoffset:1335}40%{stroke-dashoffset:890}60%{stroke-dashoffset:890}to{stroke-dashoffset:445}}@-webkit-keyframes line-form-invalid-input-desktop{0%{stroke-dashoffset:4410}40%{stroke-dashoffset:2940}60%{stroke-dashoffset:2940}to{stroke-dashoffset:1470}}@keyframes line-form-invalid-input-desktop{0%{stroke-dashoffset:4410}40%{stroke-dashoffset:2940}60%{stroke-dashoffset:2940}to{stroke-dashoffset:1470}}@-webkit-keyframes line-form-invalid-input-mobile{0%{stroke-dashoffset:2220}40%{stroke-dashoffset:1480}60%{stroke-dashoffset:1480}to{stroke-dashoffset:740}}@keyframes line-form-invalid-input-mobile{0%{stroke-dashoffset:2220}40%{stroke-dashoffset:1480}60%{stroke-dashoffset:1480}to{stroke-dashoffset:740}}@-webkit-keyframes line-form-pane{to{stroke-dashoffset:0}}@keyframes line-form-pane{to{stroke-dashoffset:0}}@-webkit-keyframes valid-blink{10%{border--color:#60b033;background-color:#60b033;color:#fff}90%{border-color:#60b033;background-color:#60b033;color:#fff}}@keyframes valid-blink{10%{border--color:#60b033;background-color:#60b033;color:#fff}90%{border-color:#60b033;background-color:#60b033;color:#fff}}.footer{position:relative;z-index:13;background-color:#fff;margin-top:4.5rem;padding-bottom:4.5rem}@media screen and (max-width:767px){.footer{position:relative;z-index:1;z-index:13;margin-top:0;padding-top:1.75rem;padding-bottom:1.375rem}.footer:before{content:"";position:absolute;z-index:-1;top:0;left:0;width:100%;height:3rem;background:-webkit-gradient(linear,left top, left bottom,from(hsla(0,0%,96.1%,.8)),to(hsla(0,0%,100%,0)));background:linear-gradient(180deg,hsla(0,0%,96.1%,.8),hsla(0,0%,100%,0));mix-blend-mode:multiply}}@media screen and (max-width:767px) and (max-width:767px){.footer:before{height:3rem}}.footer__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.footer__text{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:inline-block;font-size:1.125rem;line-height:2.25rem;color:rgba(0,0,0,.45)}@media screen and (max-width:767px){.footer__text{font-size:.6875rem;line-height:1.125rem}}.footer__text--copy{margin-right:auto}@media screen and (max-width:767px){.footer__text--copy{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;margin-right:0;margin-left:auto}}@media screen and (max-width:767px){.footer__text--phone{display:none}}.footer__text--personal{margin-left:3.125rem}@media screen and (max-width:767px){.footer__text--personal{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0;margin-left:0;margin-right:auto}}.footer__link{text-decoration:none}.footer__link:hover{color:#60b033}.modal__wrap{display:none;position:fixed;z-index:15;top:0;height:100%;height:100vh;width:100%;left:0;right:0;padding-top:1.25rem;padding-bottom:1.25rem;overflow:auto}.modal__wrap--active{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.modal__overlay{background:hsla(0,0%,100%,.95);position:fixed;z-index:0;left:0;right:0;top:0;height:100%;height:100vh;width:100%}.modal__popup{position:relative;z-index:1;margin:auto;background-color:#fff;-webkit-box-shadow:0 .312rem .625rem rgba(0,0,0,.46);box-shadow:0 .312rem .625rem rgba(0,0,0,.46);border-radius:.437rem}@media screen and (max-width:767px){.modal__popup{-webkit-box-shadow:0 .312rem 1.125rem rgba(0,0,0,.25);box-shadow:0 .312rem 1.125rem rgba(0,0,0,.25)}}.modal__popup--video{width:50rem;max-width:95%;position:relative;border-radius:.312rem;background-color:#000}.modal__popup--video:before{content:"";display:block;padding-bottom:56.25%}.modal__popup--video .modal__close{top:auto;bottom:100%;background-color:#fff;-webkit-box-shadow:0 0 0 .625rem #fff,0 0 .625rem .312rem rgba(0,0,0,.46);box-shadow:0 0 0 .625rem #fff,0 0 .625rem .312rem rgba(0,0,0,.46);margin:.625rem}.modal__popup--video #player{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;border-radius:.25rem;overflow:hidden}.modal__popup--error,.modal__popup--thanks{width:34.5rem;padding:3rem 1.25rem 2.5625rem;max-width:95%}@media screen and (max-width:767px){.modal__popup--error,.modal__popup--thanks{width:18.75rem;padding:2.25rem 1.25rem 1.75rem}}.modal__close{cursor:pointer;position:absolute;z-index:2;top:1.375rem;right:1.375rem;height:1.75rem;width:1.75rem;border:none;-webkit-box-shadow:none;box-shadow:none;background:url(../../static/images/closeb803d3bd203fff2c5d3850c853545af3.svg) no-repeat 50%/contain}@media screen and (max-width:767px){.modal__close{top:.625rem;right:.625rem;height:1.25rem;width:1.25rem}}.modal__icon{position:relative;height:3rem;width:3rem;border-radius:.312rem;background-color:#ededed;margin:0 auto .8rem}@media screen and (max-width:767px){.modal__icon{margin-bottom:1.375rem}}.modal__icon-check{position:absolute;top:0;left:0}.modal__title{font-weight:400;font-size:1.75rem;line-height:2.25rem;color:#000;text-align:center;margin-bottom:1.9375rem}@media screen and (max-width:767px){.modal__title{font-size:1.125rem;line-height:1.5rem;font-size:1.75rem;line-height:2.25rem;margin-bottom:1.3125rem}}.modal__text{font-weight:400;font-size:1.125rem;line-height:1.5rem;color:rgba(0,0,0,.4);text-align:center;padding:0 1.25rem;max-width:25.5rem;margin-left:auto;margin-right:auto;color:#000}@media screen and (max-width:767px){.modal__text{font-size:.75rem;line-height:1.125rem;width:15.75rem;font-size:1.125rem;line-height:1.5rem}}.modal__link{color:#60b033;display:inline-block;text-decoration:none}.modal__icon-img--check{position:absolute;top:-.6875rem;left:-.25rem;width:5.75rem;height:3.6875rem}@media screen and (max-width:767px){.modal__icon-img--check{top:-.8125rem;left:-.375rem}}.modal__path{stroke-dasharray:124;stroke-dashoffset:124;-webkit-transition:stroke-dashoffset .5s ease-out;transition:stroke-dashoffset .5s ease-out}.modal__path--run{stroke-dashoffset:0}
