@charset "UTF-8";
/**
 * Swiper 4.1.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 11, 2018
 */
.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-invisible-blank-slide {
  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 {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar {
  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; }

body.fancybox-active {
  overflow: hidden; }

body.fancybox-iosfix {
  position: fixed;
  left: 0;
  right: 0; }

.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden; }

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99992;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption-wrap {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility 0s linear .25s;
  box-sizing: border-box; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s, visibility 0s; }

.fancybox-infobar {
  top: 0;
  left: 0;
  font-size: 13px;
  padding: 0 10px;
  height: 44px;
  min-width: 44px;
  line-height: 44px;
  color: #ccc;
  text-align: center;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
  mix-blend-mode: exclusion; }

.fancybox-toolbar {
  top: 0;
  right: 0;
  margin: 0;
  padding: 0; }

.fancybox-stage {
  overflow: hidden;
  direction: ltr;
  z-index: 99994;
  -webkit-transform: translate3d(0, 0, 0); }

.fancybox-is-closing .fancybox-stage {
  overflow: visible; }

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: visible; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
  background: #000; }

.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
  background: #E5E3DF; }

.fancybox-slide--next {
  z-index: 99995; }

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box; }

.fancybox-slide > title,
.fancybox-slide > style,
.fancybox-slide > meta,
.fancybox-slide > link,
.fancybox-slide > script,
.fancybox-slide > base {
  display: none; }

.fancybox-slide .fancybox-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform; }

.fancybox-can-zoomOut .fancybox-image-wrap {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-image-wrap {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.fancybox-can-drag .fancybox-image-wrap {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-dragging .fancybox-image-wrap {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: calc(100% - 100px);
  max-height: calc(100% - 88px);
  overflow: visible;
  background: #fff; }

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff; }

.fancybox-error {
  margin: 0;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  background: #fff;
  cursor: default; }

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font-size: 16px;
  line-height: 20px; }

/* Buttons */
.fancybox-button {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: rgba(30, 30, 30, 0.6);
  transition: color .3s ease;
  cursor: pointer;
  outline: none; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff; }

.fancybox-button[disabled] {
  color: #ccc;
  cursor: default;
  opacity: 0.6; }

.fancybox-button svg {
  display: block;
  position: relative;
  overflow: visible;
  shape-rendering: geometricPrecision; }

.fancybox-button svg path {
  fill: currentColor;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3; }

.fancybox-button--share svg path {
  stroke-width: 1; }

.fancybox-button--play svg path:nth-child(2) {
  display: none; }

.fancybox-button--pause svg path:nth-child(1) {
  display: none; }

.fancybox-button--zoom svg path {
  fill: transparent; }

/* Navigation arrows */
.fancybox-navigation {
  display: none; }

.fancybox-show-nav .fancybox-navigation {
  display: block; }

.fancybox-navigation button {
  position: absolute;
  top: 50%;
  margin: -50px 0 0 0;
  z-index: 99997;
  background: transparent;
  width: 60px;
  height: 100px;
  padding: 17px; }

.fancybox-navigation button:before {
  content: "";
  position: absolute;
  top: 30px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(30, 30, 30, 0.6); }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0; }

.fancybox-navigation .fancybox-button--arrow_right {
  right: 0; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  z-index: 10;
  cursor: pointer; }

.fancybox-close-small:after {
  content: '×';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 22px/30px Arial,"Helvetica Neue",Helvetica,sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background-color: transparent;
  transition: background-color .25s;
  box-sizing: border-box;
  z-index: 2; }

.fancybox-close-small:focus {
  outline: none; }

.fancybox-close-small:focus:after {
  outline: 1px dotted #888; }

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee; }

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  top: 0;
  right: -40px; }

.fancybox-slide--image .fancybox-close-small:after,
.fancybox-slide--iframe .fancybox-close-small:after {
  font-size: 35px;
  color: #aaa; }

.fancybox-slide--image .fancybox-close-small:hover:after,
.fancybox-slide--iframe .fancybox-close-small:hover:after {
  color: #fff;
  background: transparent; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none; }

/* Caption */
.fancybox-caption-wrap {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 2vw 0 2vw;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none; }

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none; }

.fancybox-caption a,
.fancybox-caption button,
.fancybox-caption select {
  pointer-events: all;
  position: relative;
  /* Fix IE11 */ }

.fancybox-caption a {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-slide > .fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: fancybox-rotate .8s infinite linear;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  z-index: 99999; }

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  opacity: 0; }

.fancybox-fx-slide.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  opacity: 0; }

.fancybox-fx-slide.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1; }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0; }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0; }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1; }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
  opacity: 0; }

.fancybox-fx-rotate.fancybox-slide--next {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  opacity: 0; }

.fancybox-fx-rotate.fancybox-slide--current {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1; }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0; }

.fancybox-fx-circular.fancybox-slide--next {
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0; }

.fancybox-fx-circular.fancybox-slide--current {
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1; }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1); }

/* Share */
.fancybox-share {
  padding: 30px;
  border-radius: 3px;
  background: #f4f4f4;
  max-width: 90%;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  margin: 0 0 20px 0;
  font-size: 35px;
  font-weight: 700; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

p.fancybox-share__links {
  margin-right: -10px; }

.fancybox-share__button {
  display: inline-block;
  text-decoration: none;
  margin: 0 10px 10px 0;
  padding: 0 15px;
  min-width: 130px;
  border: 0;
  border-radius: 3px;
  background: #fff;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  transition: all .2s; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  position: relative;
  top: -1px;
  width: 25px;
  height: 25px;
  margin-right: 7px;
  vertical-align: middle; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  box-sizing: border-box;
  width: 100%;
  margin: 10px 0 0 0;
  padding: 10px 15px;
  background: transparent;
  color: #5d5b5b;
  font-size: 14px;
  outline: none;
  border: 0;
  border-bottom: 2px solid #d7d7d7; }

/* Thumbs */
.fancybox-thumbs {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 212px;
  margin: 0;
  padding: 2px 2px 4px 2px;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  box-sizing: border-box;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-y: hidden;
  overflow-x: auto; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
  white-space: nowrap; }

.fancybox-thumbs-x > ul {
  overflow: hidden; }

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  padding: 0;
  margin: 2px;
  width: 100px;
  height: 75px;
  max-width: calc(50% - 4px);
  max-height: calc(100% - 8px);
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box; }

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1); }

.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-thumbs > ul > li:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px; }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }

  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px); } }
.infobox {
  box-sizing: border-box;
  margin: 80px 0; }
  .infobox *,
  .infobox ::before,
  .infobox ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .infobox {
      margin: 60px 0; } }
  @media screen and (max-width: 599px) {
    .infobox {
      margin: 40px 0; } }
  .infobox._bg_filled {
    background: #f6f2fb; }
  .infobox__inner {
    display: flex;
    max-width: 1190px;
    margin: 0 auto;
    padding-right: 40px;
    padding-left: 40px; }
    @media screen and (max-width: 1189px) {
      .infobox__inner {
        display: block; } }
    @media screen and (max-width: 599px) {
      .infobox__inner {
        padding-right: 10px;
        padding-left: 10px; } }
    .infobox._bg_filled .infobox__inner {
      padding-top: 60px;
      padding-bottom: 60px; }
      @media screen and (max-width: 599px) {
        .infobox._bg_filled .infobox__inner {
          padding-top: 40px;
          padding-bottom: 40px; } }
  .infobox__header {
    width: 350px; }
    .infobox__header > *:last-child {
      margin-bottom: 0; }
    @media screen and (max-width: 1189px) {
      .infobox__header {
        width: auto;
        margin-bottom: 15px; } }
  .infobox__body {
    width: calc(100% - 350px);
    padding-left: 30px; }
    .infobox__body > *:last-child {
      margin-bottom: 0; }
    @media screen and (max-width: 1189px) {
      .infobox__body {
        width: auto;
        padding-left: 0; } }

.h1,
.h2,
.h3 {
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 25px;
  padding: 0; }
  @media screen and (max-width: 599px) {
    .h1,
    .h2,
    .h3 {
      text-align: center; } }
  .h1._center,
  .h2._center,
  .h3._center {
    text-align: center; }

.h1 {
  font-size: 42px; }
  @media screen and (max-width: 599px) {
    .h1 {
      font-size: 35px; } }

.h2 {
  font-size: 35px; }
  @media screen and (max-width: 599px) {
    .h2 {
      font-size: 28px; } }

.h3 {
  font-size: 28px; }
  @media screen and (max-width: 599px) {
    .h3 {
      font-size: 24px; } }

.tech-tree {
  box-sizing: border-box;
  max-width: 1190px;
  margin: 80px auto;
  padding: 0 40px; }
  .tech-tree *,
  .tech-tree ::before,
  .tech-tree ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .tech-tree {
      margin: 60px auto; } }
  @media screen and (max-width: 599px) {
    .tech-tree {
      margin: 40px auto;
      padding: 0 10px; } }
  .tech-tree__hero {
    position: relative;
    display: block;
    border: 1px solid #f0ebff; }
    @media screen and (min-width: 600px) {
      .tech-tree__hero {
        margin-top: 40px; } }
    .tech-tree__hero::before {
      position: absolute;
      top: calc(50% - 42px);
      left: calc(50% - 42px);
      display: block;
      width: 84px;
      height: 84px;
      content: '';
      transition: opacity .4s ease;
      opacity: 0;
      background: url(../images/zoom.svg) no-repeat 50% 50%/contain; }
      @media screen and (max-width: 599px) {
        .tech-tree__hero::before {
          top: calc(50% - 21px);
          left: calc(50% - 21px);
          width: 42px;
          height: 42px; } }
    .tech-tree__hero:hover::before {
      opacity: 1; }
  .tech-tree__image {
    display: block;
    max-width: 100%;
    height: auto; }

.companies {
  box-sizing: border-box;
  max-width: 1190px;
  margin: 80px auto;
  padding: 0 40px; }
  .companies *,
  .companies ::before,
  .companies ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .companies {
      margin: 60px auto; } }
  @media screen and (max-width: 599px) {
    .companies {
      margin: 40px auto;
      padding: 0 10px; } }
  .companies__text {
    margin-top: 40px;
    text-align: center; }
    @media screen and (max-width: 599px) {
      .companies__text {
        margin-top: 25px; } }

.partners {
  box-sizing: border-box;
  margin: -15px -15px 0; }
  .partners *,
  .partners ::before,
  .partners ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 599px) {
    .partners {
      margin: 0 -10px; } }
  .partners__wrapper {
    display: flex; }
    .partners__wrapper:not(.swiper-wrapper) {
      flex-wrap: wrap;
      justify-content: center; }
  .partners__item {
    width: calc(25% - 30px);
    margin: 30px 15px 0; }
    @media screen and (max-width: 905px) {
      .partners__item {
        width: calc(33.3333% - 30px); } }
    @media screen and (max-width: 599px) {
      .partners__item {
        width: calc(50% - 20px);
        margin: 0 10px; } }
    @media screen and (max-width: 399px) {
      .partners__item {
        width: calc(100% - 20px); } }
  .partners__link {
    position: relative;
    display: block;
    max-width: 255px;
    margin: 0 auto; }
  .partners__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border: 1px solid #f0ebff; }
    .partners__image._color {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      transition: opacity .4s ease;
      opacity: 0; }
    .partners__link:hover .partners__image._color {
      opacity: 1; }
  .partners__pagination {
    display: flex;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center; }
    @media screen and (min-width: 600px) {
      .partners__pagination {
        display: none; } }
  .partners__bullet {
    display: block;
    width: 13px;
    height: 13px;
    margin: 0 5px;
    cursor: pointer;
    transition: background .4s ease;
    border-radius: 50%;
    background: #c2a7d0; }
    .partners__bullet._active {
      background: #8e74b0; }

.links {
  box-sizing: border-box;
  background: #f6f2fb; }
  .links *,
  .links ::before,
  .links ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 599px) {
    .links {
      background: none; } }
  .links__list {
    font-size: 11px;
    line-height: 25px;
    display: flex;
    max-width: 1190px;
    margin: 0 auto;
    padding: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-wrap: wrap;
    justify-content: center; }
    @media screen and (max-width: 1189px) {
      .links__list {
        max-width: 800px;
        padding: 30px 25px; } }
    @media screen and (max-width: 599px) {
      .links__list {
        display: block;
        padding: 0; } }
  @media screen and (max-width: 1189px) {
    .links__item {
      width: calc(50% - 30px);
      margin: 0 15px;
      padding: 10px 0; } }
  @media screen and (max-width: 599px) {
    .links__item {
      width: auto;
      margin: 0;
      padding: 0;
      border-top: 1px solid #e4d6f5; } }
  @media screen and (min-width: 1190px) {
    .links__item:nth-last-child(n+2) {
      margin-right: 40px;
      padding-right: 40px;
      border-right: 1px solid #b09cc9; } }
  .links__link {
    display: inline-block;
    color: #404750; }
    @media screen and (max-width: 599px) {
      .links__link {
        display: block;
        padding: 18px 20px; } }
    .links__link::before {
      display: inline-block;
      width: 25px;
      margin-right: 9px;
      content: '';
      vertical-align: top;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: contain; }
    .links__link._type_service::before {
      height: 25px;
      background-image: url(../images/service.svg); }
    .links__link._type_spec::before {
      height: 24px;
      background-image: url(../images/spec.svg); }
    .links__link._type_api::before {
      height: 22px;
      margin-top: 1px;
      background-image: url(../images/api.svg); }
    .links__link._type_doc::before {
      height: 21px;
      margin-top: 2px;
      background-image: url(../images/doc.svg); }
    .links__link:hover {
      color: #404750; }
  .links__text {
    padding-bottom: 1px;
    border-bottom: 2px solid #b09cc9; }

.separator {
  height: 1px;
  margin: 80px 0;
  background: #e4d6f5; }
  @media screen and (max-width: 1189px) {
    .separator {
      margin: 60px 0; } }
  @media screen and (max-width: 599px) {
    .separator {
      margin: 40px 0; } }

.subheading {
  margin: -5px 0 60px;
  text-align: center; }
  @media screen and (max-width: 1189px) {
    .subheading {
      margin-bottom: 40px; } }
  @media screen and (max-width: 599px) {
    .subheading {
      margin-bottom: 25px; } }

.services {
  box-sizing: border-box;
  margin: 80px 0; }
  .services *,
  .services ::before,
  .services ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .services {
      margin: 60px 0; } }
  @media screen and (max-width: 767px) {
    .services {
      margin: 40px 0 0; } }
  .services__header {
    max-width: 1190px;
    margin: 0 auto 60px;
    padding: 0 40px; }
    @media screen and (max-width: 1189px) {
      .services__header {
        margin-bottom: 0; } }
    @media screen and (max-width: 599px) {
      .services__header {
        padding: 0 10px; } }
  .services__thumbs-holder {
    position: relative;
    z-index: 2;
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 118px; }
    @media screen and (max-width: 599px) {
      .services__thumbs-holder {
        padding: 0 83px; } }
  .services__thumbs {
    padding: 53px 0 46px; }
    @media screen and (max-width: 599px) {
      .services__thumbs {
        padding: 0; } }
  .services__thumb {
    position: relative;
    width: calc(25% - 30px);
    height: auto;
    margin: 0 15px;
    padding: 69px 29px 29px;
    cursor: pointer;
    border: 1px solid #f0ebff; }
    @media screen and (max-width: 1189px) {
      .services__thumb {
        width: calc(33.3333% - 30px); } }
    @media screen and (max-width: 1023px) {
      .services__thumb {
        width: calc(50% - 30px); } }
    @media screen and (max-width: 767px) {
      .services__thumb {
        width: calc(100% - 30px); } }
    @media screen and (max-width: 599px) {
      .services__thumb {
        width: 100%;
        margin: 0;
        padding: 0;
        border: 0; } }
    .services__thumb::before, .services__thumb::after {
      position: absolute;
      left: calc(50% - 14px);
      display: block;
      content: '';
      opacity: 0;
      border-right: 14px solid transparent;
      border-left: 14px solid transparent; }
      @media screen and (max-width: 599px) {
        .services__thumb::before, .services__thumb::after {
          display: none; } }
    .services__thumb::before {
      bottom: -47px;
      border-bottom: 10px solid #b09cc9; }
    .services__thumb::after {
      bottom: -48px;
      border-bottom: 10px solid white; }
    .services__thumb._active {
      background: #f6f2fb; }
      @media screen and (max-width: 599px) {
        .services__thumb._active {
          background: none; } }
      .services__thumb._active::before, .services__thumb._active::after {
        opacity: 1; }
  .services__thumb-hero {
    position: absolute;
    top: -53px;
    left: calc(50% - 46px);
    display: block;
    width: 92px; }
    @media screen and (max-width: 599px) {
      .services__thumb-hero {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto 16px; } }
  .services__icon {
    display: block;
    max-width: 100%;
    height: auto; }
  .services__icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto; }
  .services__icon-overlay-path {
    fill: none;
    stroke: transparent;
    stroke-width: 3px; }
    @media screen and (min-width: 600px) {
      .services__thumb._active .services__icon-overlay-path {
        stroke: white; } }
  .services__caption {
    font-size: 20px;
    line-height: 1.3;
    text-align: center; }
  .services__content {
    margin-top: -1px;
    border-top: 1px solid #b09cc9; }
    @media screen and (max-width: 599px) {
      .services__content {
        margin-top: 0;
        border-top: 0; } }
  .services__item {
    width: 100%; }
  .services__item-inner {
    display: flex;
    max-width: 1190px;
    margin: 0 auto;
    padding: 35px 40px 0;
    justify-content: space-between; }
    @media screen and (max-width: 1189px) {
      .services__item-inner {
        display: block; } }
    @media screen and (max-width: 599px) {
      .services__item-inner {
        padding: 25px 10px 0; } }
  .services__hero {
    width: 380px; }
    @media screen and (max-width: 1189px) {
      .services__hero {
        width: auto;
        margin-bottom: 40px; } }
  .services__image {
    display: block;
    max-width: 100%;
    height: auto; }
  .services__body {
    width: 100%; }
    .services__hero + .services__body {
      width: calc(100% - 380px);
      max-width: 695px;
      padding-left: 30px; }
      @media screen and (max-width: 1189px) {
        .services__hero + .services__body {
          width: auto;
          max-width: none;
          padding-left: 0; } }
  .services__item-text {
    padding-bottom: 40px; }
    .services__item-text > *:last-child {
      margin-bottom: 0; }
  .services__arrow {
    position: absolute;
    top: calc(50% - 25px);
    width: 63px;
    height: 63px;
    padding: 0;
    cursor: pointer;
    transition: opacity .4s ease;
    border: none;
    border-radius: 50%;
    outline: none;
    background: rgba(197, 170, 209, 0.65) url(../images/services-arrow.svg) no-repeat 50% 50%/16px 25px; }
    @media screen and (max-width: 599px) {
      .services__arrow {
        top: 21px; } }
    .services__arrow._type_prev {
      left: 40px;
      transform: rotate(180deg); }
      @media screen and (max-width: 599px) {
        .services__arrow._type_prev {
          left: 10px; } }
    .services__arrow._type_next {
      right: 40px; }
      @media screen and (max-width: 599px) {
        .services__arrow._type_next {
          right: 10px; } }
    .services__arrow.swiper-button-disabled {
      cursor: default;
      opacity: .5; }

.s-links {
  box-sizing: border-box; }
  .s-links *,
  .s-links ::before,
  .s-links ::after {
    box-sizing: border-box; }
  .s-links__list {
    font-size: 11px;
    line-height: 25px;
    display: flex;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-wrap: wrap; }
    @media screen and (max-width: 767px) {
      .s-links__list {
        display: block;
        margin: 0 -40px;
        padding: 0; } }
    @media screen and (max-width: 599px) {
      .s-links__list {
        margin: 0 -10px; } }
  @media screen and (max-width: 767px) {
    .s-links__item {
      width: auto;
      margin: 0;
      padding: 0;
      border-top: 1px solid #e4d6f5; } }
  @media screen and (min-width: 768px) {
    .s-links__item:nth-last-child(n+2) {
      margin-right: 30px;
      padding-right: 30px;
      border-right: 1px solid #b09cc9; } }
  .s-links__link {
    display: inline-block;
    color: #404750; }
    @media screen and (max-width: 767px) {
      .s-links__link {
        display: block;
        padding: 18px 40px; } }
    @media screen and (max-width: 599px) {
      .s-links__link {
        padding: 18px 20px; } }
    .s-links__link::before {
      display: inline-block;
      width: 25px;
      margin-right: 9px;
      content: '';
      vertical-align: top;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: contain; }
    .s-links__link._type_service::before {
      height: 25px;
      background-image: url(../images/service.svg); }
    .s-links__link._type_spec::before {
      height: 24px;
      background-image: url(../images/spec.svg); }
    .s-links__link._type_api::before {
      height: 22px;
      margin-top: 1px;
      background-image: url(../images/api.svg); }
    .s-links__link._type_doc::before {
      height: 21px;
      margin-top: 2px;
      background-image: url(../images/doc.svg); }
    .s-links__link:hover {
      color: #404750; }
  .s-links__text {
    padding-bottom: 1px;
    border-bottom: 2px solid #b09cc9; }

.wallets {
  box-sizing: border-box;
  margin: 80px 0;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f6f2fb; }
  .wallets *,
  .wallets ::before,
  .wallets ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .wallets {
      margin: 60px 0; } }
  @media screen and (max-width: 767px) {
    .wallets {
      padding-bottom: 0; } }
  @media screen and (max-width: 599px) {
    .wallets {
      padding-top: 40px; } }
  .wallets__header {
    max-width: 1190px;
    margin: 0 auto;
    padding-right: 40px;
    padding-left: 40px; }
    @media screen and (max-width: 599px) {
      .wallets__header {
        padding-right: 10px;
        padding-left: 10px; } }
  .wallets__wrapper {
    position: relative;
    margin-top: 60px; }
    @media screen and (max-width: 1189px) {
      .wallets__wrapper {
        margin-top: 40px; } }
    @media screen and (max-width: 767px) {
      .wallets__wrapper {
        margin-top: 0; } }
    .wallets__wrapper::before {
      position: absolute;
      top: 57px;
      right: 0;
      left: 0;
      display: block;
      height: 1px;
      content: '';
      background: #e4d6f5; }
      @media screen and (max-width: 767px) {
        .wallets__wrapper::before {
          display: none; } }
  .wallets__body {
    position: relative;
    display: flex;
    max-width: 1190px;
    margin: 0 auto;
    padding-right: 25px;
    padding-left: 25px;
    flex-wrap: wrap;
    justify-content: space-around; }
    @media screen and (max-width: 767px) {
      .wallets__body {
        display: block;
        padding-right: 0;
        padding-left: 0; } }
  .wallets__tab {
    font-size: 20px;
    line-height: 1;
    position: relative;
    display: flex;
    width: 214px;
    height: 60px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    color: #404750;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    background: none;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 767px) {
      .wallets__tab {
        width: 100%;
        height: 90px;
        padding: 20px 40px;
        border-top: 1px solid #e4d6f5;
        border-bottom: 0; } }
    @media screen and (max-width: 599px) {
      .wallets__tab {
        padding: 20px 10px; } }
    .wallets__tab:hover {
      color: #404750; }
    @media screen and (max-width: 899px) {
      .wallets__tab:first-child {
        display: none; } }
    .wallets__tab._active {
      border-bottom-color: #b09cc9; }
      .wallets__tab._active::after {
        position: absolute;
        top: 100%;
        left: calc(50% - 7px);
        display: block;
        content: '';
        border-top: 10px solid #b09cc9;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent; }
        @media screen and (max-width: 767px) {
          .wallets__tab._active::after {
            display: none; } }
  .wallets__tab-icon {
    display: block;
    margin-right: 12px;
    align-self: flex-start; }
  .wallets__tab-text {
    display: block; }
  .wallets__content {
    display: none;
    width: 100%;
    padding: 50px 15px 0;
    order: 1; }
    @media screen and (max-width: 767px) {
      .wallets__content {
        padding: 0 40px 15px;
        order: 0; } }
    @media screen and (max-width: 599px) {
      .wallets__content {
        padding: 0 10px 15px; } }
    .wallets__tab._active + .wallets__content {
      display: block; }
    @media screen and (max-width: 899px) {
      .wallets__tab:first-child + .wallets__content {
        display: none; } }

.wallets-list {
  box-sizing: border-box;
  display: flex;
  margin: 0 -15px;
  justify-content: center; }
  .wallets-list *,
  .wallets-list ::before,
  .wallets-list ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 767px) {
    .wallets-list {
      display: block;
      margin: 0; } }
  .wallets-list__item {
    display: block;
    width: calc(33.3333% - 30px);
    margin: 0 15px;
    padding: 20px 10px;
    transition: none;
    color: #404750;
    border: 1px solid #f0ebff;
    background: white; }
    @media screen and (max-width: 767px) {
      .wallets-list__item {
        width: auto;
        margin: 0 0 10px; } }
    .wallets-list__item:hover {
      color: #404750; }
    @media screen and (max-width: 899px) {
      .wallets-list._double .wallets-list__item {
        width: calc(50% - 30px); } }
    @media screen and (max-width: 767px) {
      .wallets-list._double .wallets-list__item {
        width: auto;
        margin: 0 0 10px; } }
  .wallets-list__hero {
    display: flex;
    height: 35px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center; }
  .wallets-list__icon {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto; }
  .wallets-list__caption {
    font-size: 11px;
    line-height: 1.37;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase; }
  .wallets-list__os {
    font-size: 12px;
    line-height: 1;
    display: flex;
    margin-top: 10px;
    color: #858585;
    flex-wrap: wrap;
    justify-content: center; }
  .wallets-list__os-item:nth-last-child(n+2) {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #b09cc9; }
  .wallets-list__markets {
    display: flex;
    margin: 17px -10px -20px;
    border-top: 1px solid #e4d6f5;
    justify-content: center; }
  .wallets-list__markets-item {
    display: block;
    width: 50%;
    padding: 10px; }
    .wallets-list__markets-item:nth-child(2) {
      padding-left: 9px;
      border-left: 1px solid #e4d6f5; }
  .wallets-list__markets-icon {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto; }

.article {
  box-sizing: border-box;
  max-width: 1190px;
  margin: 60px auto 80px;
  padding: 0 40px; }
  .article *,
  .article ::before,
  .article ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .article {
      margin: 40px auto 60px; } }
  @media screen and (max-width: 599px) {
    .article {
      margin: 25px auto 40px;
      padding: 0 10px; } }
  .article__back {
    font-size: 11px;
    line-height: 1.37;
    letter-spacing: 1px;
    text-transform: uppercase; }
    .article__back:nth-child(n+2) {
      margin-top: 40px; }
      @media screen and (max-width: 1189px) {
        .article__back:nth-child(n+2) {
          margin-top: 30px; } }
      @media screen and (max-width: 599px) {
        .article__back:nth-child(n+2) {
          margin-top: 25px; } }
    .article__back:nth-last-child(n+2) {
      margin-bottom: 15px; }
      @media screen and (max-width: 1189px) {
        .article__back:nth-last-child(n+2) {
          margin-bottom: 30px; } }
      @media screen and (max-width: 599px) {
        .article__back:nth-last-child(n+2) {
          margin-bottom: 25px; } }
    .article__back._bottom {
      padding-left: 190px; }
      @media screen and (max-width: 1189px) {
        .article__back._bottom {
          padding-left: 0;
          text-align: center; } }
  .article__back-link {
    padding-bottom: 2px;
    color: #404750;
    border-bottom: 2px solid #b09cc9; }
    .article__back-link:hover {
      color: #404750; }
  .article__share {
    display: flex;
    width: 190px;
    padding-right: 45px;
    justify-content: flex-end; }
    @media screen and (max-width: 1189px) {
      .article__share {
        display: block;
        width: auto;
        margin-top: 25px;
        padding-right: 0; } }
  .article__content {
    display: flex;
    justify-content: flex-end; }
    @media screen and (max-width: 1189px) {
      .article__content {
        display: block; } }
  .article__header {
    margin-bottom: 40px;
    padding-left: 190px; }
    @media screen and (max-width: 1189px) {
      .article__header {
        margin-bottom: 30px;
        padding-left: 0; } }
    @media screen and (max-width: 599px) {
      .article__header {
        margin-bottom: 25px; } }
  .article__title {
    font-size: 42px;
    font-weight: normal;
    line-height: 1.2;
    margin: 0; }
    @media screen and (max-width: 599px) {
      .article__title {
        font-size: 28px; } }
  .article__body {
    width: calc(100% - 190px);
    order: 1; }
    @media screen and (max-width: 1189px) {
      .article__body {
        width: auto;
        order: 0; } }
  .article__meta {
    display: flex;
    margin: 0 -6px 18px;
    flex-wrap: wrap; }
  .article__date {
    font-size: 11px;
    line-height: 2;
    display: block;
    margin: 0 6px;
    letter-spacing: 1px;
    text-transform: uppercase; }
  .article__tag {
    font-size: 11px;
    line-height: 2;
    display: block;
    margin: 0 6px;
    padding: 0 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #f5f1ff; }
  .article__text > *:last-child {
    margin-bottom: 0; }
  .article__text:nth-last-child(n+2) {
    margin-bottom: 40px; }
    @media screen and (max-width: 599px) {
      .article__text:nth-last-child(n+2) {
        margin-bottom: 25px; } }
  .article__intro {
    font-size: 18px;
    line-height: 1.45;
    color: #8b9096; }

.share {
  box-sizing: border-box; }
  .share *,
  .share ::before,
  .share ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .share {
      display: flex;
      margin: 0 -10px;
      flex-wrap: wrap;
      justify-content: center; } }
  @media screen and (max-width: 1189px) {
    .share__item {
      margin: 0 10px; } }
  .share__item:nth-last-child(n+2) {
    margin-bottom: 17px; }
    @media screen and (max-width: 1189px) {
      .share__item:nth-last-child(n+2) {
        margin-bottom: 0; } }
  .share__link {
    display: block;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 34px 34px; }
    .share__link._type_twitter {
      background-image: url(../images/twitter.svg); }
    .share__link._type_facebook {
      background-image: url(../images/facebook.svg); }

.gallery {
  box-sizing: border-box;
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap; }
  .gallery *,
  .gallery ::before,
  .gallery ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 599px) {
    .gallery {
      display: block;
      margin: 0; } }
  .gallery:nth-child(n+2) {
    margin-top: 40px; }
    @media screen and (max-width: 599px) {
      .gallery:nth-child(n+2) {
        margin-top: 25px; } }
  .gallery:nth-last-child(n+2) {
    margin-bottom: 40px; }
    @media screen and (max-width: 599px) {
      .gallery:nth-last-child(n+2) {
        margin-bottom: 25px; } }
  .gallery__item {
    width: calc(50% - 30px);
    margin: 0 15px; }
    @media screen and (max-width: 599px) {
      .gallery__item {
        width: auto;
        margin: 0; } }
    @media screen and (min-width: 900px) {
      .gallery__item:nth-child(1):nth-last-child(n+3), .gallery__item:nth-child(2):nth-last-child(n+2) {
        width: calc(50% - 125px); } }
    @media screen and (max-width: 599px) {
      .gallery__item:nth-last-child(n+2) {
        margin-bottom: 10px; } }
  .gallery__link {
    display: block; }
  .gallery__image {
    display: block;
    width: 100%;
    height: auto; }
  .gallery__more {
    display: flex;
    width: 160px;
    margin: 0 15px; }
    @media screen and (max-width: 899px) {
      .gallery__more {
        width: calc(100% - 30px);
        margin-top: 30px; } }
    @media screen and (max-width: 599px) {
      .gallery__more {
        width: auto;
        margin: 0; } }
  .gallery__more-link {
    font-size: 11px;
    line-height: 1.37;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 30px 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #404750;
    background: #f6f2fb;
    align-items: center;
    justify-content: center; }
    .gallery__more-link::before {
      display: block;
      width: 56px;
      height: 56px;
      margin: 0 auto 20px;
      content: '';
      border: 1px solid #b09cc9;
      border-radius: 50%;
      background: url(../images/cross.svg) no-repeat 50% 50%/24px 24px; }
    .gallery__more-link:hover {
      color: #404750; }
  .gallery__more-text {
    border-bottom: 2px solid #b09cc9; }
  .gallery__hidden {
    display: none; }

.channels {
  box-sizing: border-box;
  max-width: 1190px;
  margin: 60px auto 80px;
  padding: 0 40px; }
  .channels *,
  .channels ::before,
  .channels ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .channels {
      margin: 60px auto; } }
  @media screen and (max-width: 599px) {
    .channels {
      margin: 40px auto;
      padding: 0 10px; } }
  .channels__list {
    margin: 60px -15px 0; }
    @media screen and (max-width: 1189px) {
      .channels__list {
        margin-top: 40px; } }
    @media screen and (max-width: 767px) {
      .channels__list {
        margin: 30px -40px 0; } }
    @media screen and (max-width: 599px) {
      .channels__list {
        margin: 30px -10px 0; } }
  .channels__item {
    position: relative;
    display: flex;
    width: 33.3333%;
    padding: 0 15px;
    justify-content: center; }
    @media screen and (max-width: 767px) {
      .channels__item {
        width: 100%;
        padding: 0 40px; } }
    @media screen and (max-width: 599px) {
      .channels__item {
        padding: 0 10px; } }
    .channels__item:nth-child(n+2)::before {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      display: block;
      width: 1px;
      content: '';
      background: #b09cc9; }
      @media screen and (max-width: 1189px) {
        .channels__item:nth-child(n+2)::before {
          top: 50px; } }
      @media screen and (max-width: 767px) {
        .channels__item:nth-child(n+2)::before {
          display: none; } }
  .channels__num {
    font-size: 40px;
    line-height: 1.2;
    position: relative;
    display: block;
    padding-left: 50px;
    color: #b09cc9; }
    @media screen and (max-width: 1189px) and (min-width: 768px) {
      .channels__num {
        padding-top: 50px;
        padding-left: 0; } }
    @media screen and (max-width: 767px) {
      .channels__num {
        padding-right: 50px; } }
    .channels__num::before {
      position: absolute;
      display: block;
      content: '';
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: contain; }
    .channels__num._type_subscribers::before {
      top: 5px;
      left: 0;
      width: 35px;
      height: 32px;
      background-image: url(../images/subscribers.svg); }
      @media screen and (max-width: 1189px) and (min-width: 768px) {
        .channels__num._type_subscribers::before {
          top: 0;
          left: calc(50% - 18px); } }
    .channels__num._type_tweets::before {
      top: 9px;
      left: 5px;
      width: 28px;
      height: 24px;
      background-image: url(../images/tweet.svg); }
      @media screen and (max-width: 1189px) and (min-width: 768px) {
        .channels__num._type_tweets::before {
          top: 4px;
          left: calc(50% - 14px); } }
    .channels__num._type_emercoin::before {
      top: 6px;
      left: 3px;
      width: 29px;
      height: 29px;
      background-image: url(../images/emercoin.svg); }
      @media screen and (max-width: 1189px) and (min-width: 768px) {
        .channels__num._type_emercoin::before {
          top: 2px;
          left: calc(50% - 15px); } }
  .channels__text {
    font-size: 18px;
    line-height: 1.45;
    display: block;
    padding-left: 50px;
    text-align: center; }
    @media screen and (max-width: 1189px) and (min-width: 768px) {
      .channels__text {
        padding-left: 0; } }
    @media screen and (max-width: 767px) {
      .channels__text {
        padding-right: 50px; } }
  .channels__pagination {
    display: flex;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center; }
    @media screen and (min-width: 768px) {
      .channels__pagination {
        display: none; } }
  .channels__bullet {
    display: block;
    width: 13px;
    height: 13px;
    margin: 0 5px;
    cursor: pointer;
    transition: background .4s ease;
    border-radius: 50%;
    background: #c2a7d0; }
    .channels__bullet._active {
      background: #8e74b0; }

.videobox {
  box-sizing: border-box;
  max-width: 1190px;
  margin: 80px auto;
  padding: 0 40px; }
  .videobox *,
  .videobox ::before,
  .videobox ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .videobox {
      margin: 60px auto; } }
  @media screen and (max-width: 599px) {
    .videobox {
      margin: 40px auto;
      padding: 0 10px; } }
  .videobox__body {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap; }
    @media screen and (max-width: 899px) {
      .videobox__body {
        margin: 0; } }
  .videobox__item {
    position: relative;
    display: none;
    width: calc(70% - 30px);
    margin: 0 15px; }
    @media screen and (max-width: 899px) {
      .videobox__item {
        width: 100%;
        margin: 0 0 30px; } }
    @media screen and (max-width: 599px) {
      .videobox__item {
        margin-bottom: 10px; } }
    .videobox__item::before {
      display: block;
      width: 100%;
      padding-top: 56.25%;
      content: ''; }
    .videobox__item._active {
      display: flex; }
  .videobox__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover; }
    .videobox__link::before {
      position: absolute;
      top: calc(50% - 43px);
      left: calc(50% - 43px);
      display: block;
      width: 86px;
      height: 86px;
      content: '';
      background: url(../images/youtube-play.svg) no-repeat 50% 50%/contain; }
      @media screen and (max-width: 599px) {
        .videobox__link::before {
          top: calc(50% - 24px);
          left: calc(50% - 24px);
          width: 48px;
          height: 48px; } }
  .videobox__iframe {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%; }
  .videobox__tabs {
    position: relative;
    width: calc(30% - 30px);
    margin: 0 15px;
    order: 1; }
    @media screen and (max-width: 899px) {
      .videobox__tabs {
        display: flex;
        width: calc(100% + 30px);
        margin: 0 -15px; } }
    @media screen and (max-width: 599px) {
      .videobox__tabs {
        width: calc(100% + 10px);
        margin: 0 -5px; } }
  .videobox__tab {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: calc(50% - 15px);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover; }
    @media screen and (max-width: 899px) {
      .videobox__tab {
        position: relative;
        width: calc(50% - 30px);
        height: auto;
        margin: 0 15px; } }
    @media screen and (max-width: 599px) {
      .videobox__tab {
        width: calc(50% - 10px);
        margin: 0 5px; } }
    @media screen and (max-width: 899px) {
      .videobox__tab::before {
        display: block;
        width: 100%;
        padding-top: 56.25%;
        content: ''; } }
    .videobox__tab::after {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: block;
      content: '';
      transition: background .4s ease;
      background: rgba(176, 156, 201, 0.65); }
    .videobox__tab:first-child {
      top: 0; }
    .videobox__tab:nth-child(2) {
      bottom: 0; }
    .videobox__tab._active::after {
      border: 2px solid #7b6696;
      background: transparent; }

.community {
  box-sizing: border-box;
  margin: 80px 0;
  background: #f6f2fb; }
  .community *,
  .community ::before,
  .community ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .community {
      margin: 60px 0; } }
  @media screen and (max-width: 599px) {
    .community {
      margin: 40px 0; } }
  .community__inner {
    max-width: 1190px;
    margin: 0 auto;
    padding: 60px 40px; }
    @media screen and (max-width: 599px) {
      .community__inner {
        padding: 40px 10px; } }
  .community__list {
    display: flex;
    margin: -15px -15px 0;
    flex-wrap: wrap; }
    @media screen and (max-width: 599px) {
      .community__list {
        margin: -20px -10px 0; } }
  .community__item {
    display: block;
    width: calc(16.6666% - 30px);
    margin: 30px 15px 0;
    padding: 27px 15px;
    text-align: center;
    color: #404750;
    border: 1px solid #f0ebff;
    background: white; }
    @media screen and (max-width: 1189px) {
      .community__item {
        width: calc(33.3333% - 30px); } }
    @media screen and (max-width: 599px) {
      .community__item {
        width: calc(50% - 20px);
        margin: 20px 10px 0; } }
    .community__item::before {
      display: block;
      width: 80px;
      height: 80px;
      margin: 0 auto 12px;
      content: '';
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: 80px 80px; }
      @media screen and (max-width: 599px) {
        .community__item::before {
          width: 50px;
          height: 50px;
          background-size: 50px 50px; } }
    .community__item:hover {
      color: #404750; }
    .community__item._type_facebook::before {
      background-image: url(../images/facebook.svg); }
    .community__item._type_twitter::before {
      background-image: url(../images/twitter.svg); }
    .community__item._type_telegram::before {
      background-image: url(../images/telegram.svg); }
    .community__item._type_youtube::before {
      background-image: url(../images/youtube.svg); }
    .community__item._type_medium::before {
      border: 1px solid #d3d3d3;
      border-radius: 50%;
      background-image: url(../images/medium.svg); }
  .community__caption {
    font-size: 16px;
    line-height: 1.375; }
  .community__text {
    font-size: 14px;
    line-height: 1.29;
    margin-top: 12px; }

.chatbots {
  box-sizing: border-box;
  max-width: 1190px;
  margin: 80px auto;
  padding: 0 40px; }
  .chatbots *,
  .chatbots ::before,
  .chatbots ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .chatbots {
      margin: 60px auto; } }
  @media screen and (max-width: 599px) {
    .chatbots {
      margin: 40px auto;
      padding: 0 10px; } }
  .chatbots__buttons {
    text-align: center; }

.twitter-feed {
  box-sizing: border-box;
  margin: 80px 0;
  background: #f6f2fb; }
  .twitter-feed *,
  .twitter-feed ::before,
  .twitter-feed ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .twitter-feed {
      margin: 60px 0; } }
  @media screen and (max-width: 599px) {
    .twitter-feed {
      margin: 40px 0; } }
  .twitter-feed__inner {
    max-width: 1190px;
    margin: 0 auto;
    padding: 60px 40px 40px; }
    @media screen and (max-width: 599px) {
      .twitter-feed__inner {
        padding: 40px 10px 20px; } }

.history {
  box-sizing: border-box;
  overflow: hidden;
  padding-bottom: 60px;
  color: white;
  background: #291f40 url(../images/space.jpg) no-repeat 50% 50%/cover; }
  .history *,
  .history ::before,
  .history ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 599px) {
    .history {
      padding-bottom: 40px; } }
  .history__header {
    position: relative;
    padding: 60px 40px 40px; }
    @media screen and (max-width: 599px) {
      .history__header {
        padding: 40px 10px 30px; } }
    .history__header::before, .history__header::after {
      position: absolute;
      top: 0;
      display: block;
      height: 100%;
      content: ''; }
      @media screen and (max-width: 599px) {
        .history__header::before, .history__header::after {
          display: none; } }
    .history__header::before {
      right: calc(50% + 555px);
      left: 0;
      background: linear-gradient(to left, rgba(41, 31, 64, 0), #291f40 50px, #291f40); }
      @media screen and (max-width: 1369px) {
        .history__header::before {
          right: calc(100% - 90px); } }
      @media screen and (max-width: 899px) {
        .history__header::before {
          right: calc(100% - 30px); } }
    .history__header::after {
      right: 0;
      left: calc(50% + 555px);
      background: linear-gradient(to right, rgba(41, 31, 64, 0), #291f40 50px, #291f40); }
      @media screen and (max-width: 1369px) {
        .history__header::after {
          left: calc(100% - 90px); } }
      @media screen and (max-width: 899px) {
        .history__header::after {
          left: calc(100% - 30px); } }
  .history__title {
    position: relative;
    z-index: 1;
    max-width: 1110px;
    margin: 0 auto;
    color: white; }
  .history__body {
    position: relative; }
    @media screen and (max-width: 899px) {
      .history__body {
        padding-bottom: 85px; } }
    .history__body::before {
      position: absolute;
      top: 273px;
      right: 0;
      left: 0;
      display: block;
      height: 1px;
      content: '';
      background: #7b6696; }
      @media screen and (max-width: 899px) {
        .history__body::before {
          display: none; } }
  .history__fade {
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%; }
    @media screen and (max-width: 599px) {
      .history__fade {
        display: none; } }
    .history__fade::before {
      position: absolute;
      top: 273px;
      right: 0;
      left: 0;
      display: block;
      height: 1px;
      content: '';
      background: #7b6696; }
      @media screen and (max-width: 899px) {
        .history__fade::before {
          display: none; } }
    .history__fade._direction_left {
      right: calc(50% + 555px);
      left: 0;
      background: linear-gradient(to left, rgba(41, 31, 64, 0), #291f40 50px, #291f40); }
      @media screen and (max-width: 1369px) {
        .history__fade._direction_left {
          right: calc(100% - 90px); } }
      @media screen and (max-width: 899px) {
        .history__fade._direction_left {
          right: calc(100% - 30px); } }
    .history__fade._direction_right {
      right: 0;
      left: calc(50% + 555px);
      background: linear-gradient(to right, rgba(41, 31, 64, 0), #291f40 50px, #291f40); }
      @media screen and (max-width: 1369px) {
        .history__fade._direction_right {
          left: calc(100% - 90px); } }
      @media screen and (max-width: 899px) {
        .history__fade._direction_right {
          left: calc(100% - 30px); } }
  .history__inner {
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 115px; }
    @media screen and (max-width: 899px) {
      .history__inner {
        padding: 0 25px; } }
    @media screen and (max-width: 599px) {
      .history__inner {
        padding: 0; } }
  .history__container {
    overflow: visible; }
  .history__item {
    position: relative;
    width: 160px;
    height: 547px;
    margin: 0 15px; }
    @media screen and (max-width: 899px) {
      .history__item {
        display: flex;
        width: calc(50% - 30px);
        height: auto; } }
    @media screen and (max-width: 599px) {
      .history__item {
        width: calc(100% - 20px);
        margin: 0 10px; } }
    .history__item::before {
      position: absolute;
      top: 263px;
      left: 13px;
      display: block;
      width: 21px;
      height: 21px;
      content: '';
      border: 1px solid #6f4b9c;
      border-radius: 50%;
      background: #1f284d; }
      @media screen and (max-width: 899px) {
        .history__item::before {
          display: none; } }
    .history__item::after {
      position: absolute;
      top: 267px;
      left: 17px;
      display: block;
      width: 13px;
      height: 13px;
      content: '';
      border-radius: 50%;
      background: #d2c1ff; }
      @media screen and (max-width: 899px) {
        .history__item::after {
          display: none; } }
    @media screen and (min-width: 900px) {
      .history__item:last-child {
        width: 350px; } }
  .history__link {
    position: absolute;
    z-index: 1;
    left: 0;
    display: block;
    width: 350px;
    height: 226px;
    padding: 30px 30px 0;
    color: white; }
    @media screen and (max-width: 899px) {
      .history__link {
        position: static;
        width: 100%;
        height: auto;
        padding: 29px;
        transition: border-color .4s ease, background .4s ease;
        border: 1px solid #7b6696;
        background: rgba(123, 102, 150, 0); } }
    .history__link::before, .history__link::after {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 100%;
      content: '';
      transition: opacity .4s ease;
      background-image: url(../images/history-frame.svg);
      background-repeat: no-repeat;
      background-size: 350px 904px; }
      @media screen and (max-width: 899px) {
        .history__link::before, .history__link::after {
          display: none; } }
    .history__link::after {
      opacity: 0; }
    .history__item:nth-child(2n+1) .history__link {
      top: 0; }
      .history__item:nth-child(2n+1) .history__link::before {
        background-position: 0 0; }
      .history__item:nth-child(2n+1) .history__link::after {
        background-position: 0 -226px; }
    .history__item:nth-child(2n) .history__link {
      bottom: 0; }
      .history__item:nth-child(2n) .history__link::before {
        background-position: 0 -452px; }
      .history__item:nth-child(2n) .history__link::after {
        background-position: 0 -678px; }
    .history__link:hover {
      color: white; }
      @media screen and (max-width: 899px) {
        .history__link:hover {
          border-color: #6f4b9c;
          background: #7b6696; } }
      .history__link:hover::before {
        opacity: 0; }
      .history__link:hover::after {
        opacity: 1; }
  .history__meta {
    position: relative;
    z-index: 1;
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between; }
  .history__year {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 3px;
    color: #d2c1ff; }
  .history__more {
    font-size: 11px;
    line-height: 1.37;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid #d2c1ff; }
  .history__text {
    font-size: 14px;
    line-height: 1.58;
    position: relative;
    z-index: 1; }
    .history__text p {
      margin-bottom: 1.58em; }
      .history__text p:last-child {
        margin-bottom: 0; }
  .history__arrow {
    position: absolute;
    z-index: 2;
    top: 158px;
    width: 63px;
    height: 63px;
    padding: 0;
    cursor: pointer;
    transition: opacity .4s ease;
    border: none;
    border-radius: 50%;
    outline: none;
    background: rgba(197, 170, 209, 0.35) url(../images/services-arrow.svg) no-repeat 50% 50%/16px 25px; }
    @media screen and (max-width: 899px) {
      .history__arrow {
        top: auto;
        bottom: 0;
        width: 55px;
        height: 55px; } }
    .history__arrow._type_prev {
      left: calc(50% - 645px);
      transform: rotate(180deg); }
      @media screen and (max-width: 1369px) {
        .history__arrow._type_prev {
          left: 40px; } }
      @media screen and (max-width: 899px) {
        .history__arrow._type_prev {
          left: calc(50% - 63px); } }
    .history__arrow._type_next {
      right: calc(50% - 645px); }
      @media screen and (max-width: 1369px) {
        .history__arrow._type_next {
          right: 40px; } }
      @media screen and (max-width: 899px) {
        .history__arrow._type_next {
          right: calc(50% - 63px); } }
    .history__arrow.swiper-button-disabled {
      cursor: default;
      opacity: .5; }

.filter {
  box-sizing: border-box;
  position: relative;
  margin: 30px 0 25px; }
  .filter *,
  .filter ::before,
  .filter ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1099px) {
    .filter {
      max-width: 300px;
      height: 36px;
      margin: 21px auto 8px; } }
  .filter._news {
    margin: 0 auto 40px; }
    @media screen and (max-width: 1099px) {
      .filter._news {
        max-width: 300px;
        height: 36px;
        margin: 0 auto 40px; } }
  .filter__list {
    display: flex;
    margin: -10px -16px 0;
    flex-wrap: wrap;
    justify-content: center; }
    @media screen and (max-width: 1099px) {
      .filter__list {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        margin: 0;
        padding-top: 34px;
        border: 1px solid #c1a7cf;
        border-radius: 5px;
        background: white; } }
  .filter__link {
    font-size: 11px;
    line-height: 1.28;
    display: block;
    margin: 10px 16px 0;
    padding: 10px 25px;
    transition: color .4s ease, border-color .4s ease, background .4s ease;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #404750;
    border: 1px solid #c1a7cf;
    border-radius: 5px; }
    @media screen and (max-width: 1099px) {
      .filter__link {
        display: none;
        margin: 0;
        padding: 10px 11px;
        text-align: left;
        color: #404750 !important;
        border: 0;
        border-top: 1px solid #e4d6f5;
        border-radius: 0; } }
    @media screen and (min-width: 1100px) {
      .filter__link:hover {
        color: white;
        border-color: #b09cc9;
        background: #b09cc9; } }
    @media screen and (max-width: 1099px) {
      .filter__link:hover {
        color: #404750;
        background: #f6f2fb; } }
    @media screen and (min-width: 1100px) {
      .filter__link._active {
        color: white;
        border-color: #b09cc9;
        background: #b09cc9; } }
    @media screen and (max-width: 1099px) {
      .filter__link._active {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        padding-right: 31px;
        border-top: 0;
        border-radius: 4px; } }
    @media screen and (max-width: 1099px) {
      .filter__link._active::after {
        position: absolute;
        top: calc(50% - 2.5px);
        right: 11px;
        display: block;
        width: 8px;
        height: 5px;
        content: '';
        transition: transform .4s ease;
        transform: rotate(-180deg);
        background: url(../images/filter-arrow.svg) no-repeat 50% 50%/8px 5px; } }
    @media screen and (max-width: 1099px) {
      .filter__link._active:hover {
        background: none; } }
    @media screen and (max-width: 1099px) {
      .filter._open .filter__link {
        display: block; } }
    @media screen and (max-width: 1099px) {
      .filter._open .filter__link._active::after {
        transform: rotate(0deg); } }
  @media screen and (max-width: 1099px) {
    .filter__link._active .filter__text {
      white-space: nowrap;
      text-overflow: ellipsis; } }

.clients {
  box-sizing: border-box;
  margin: 0 0 60px; }
  .clients *,
  .clients ::before,
  .clients ::after {
    box-sizing: border-box; }
  @media screen and (max-width: 1189px) {
    .clients {
      margin: 0 0 40px; } }
  @media screen and (max-width: 767px) {
    .clients {
      margin: 0 0 20px; } }
  .clients__header {
    padding: 0 10px; }
  .clients__body {
    position: relative;
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 118px; }
    @media screen and (max-width: 599px) {
      .clients__body {
        padding: 0 83px; } }
  .clients__item {
    position: relative;
    width: 20%;
    height: 258px; }
    @media screen and (max-width: 1375px) {
      .clients__item {
        width: 25%; } }
    @media screen and (max-width: 1147px) {
      .clients__item {
        width: 33.3333%; } }
    @media screen and (max-width: 919px) {
      .clients__item {
        width: 50%; } }
    @media screen and (max-width: 691px) {
      .clients__item {
        width: 100%; } }
    .clients__item::after {
      position: absolute;
      bottom: 0;
      left: calc(50% - 25px);
      display: block;
      content: '';
      opacity: 0;
      border-right: 25px solid transparent;
      border-bottom: 20px solid white;
      border-left: 25px solid transparent; }
    .clients__item._active::after {
      opacity: 1; }
  .clients__link {
    position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 112px);
    display: block;
    width: 224px;
    height: 201px;
    transition: transform .4s ease;
    transform: scale(0.75);
    background: url(../images/clients-bg.png) no-repeat 50% 0/224px 603px; }
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .clients__link {
        background-image: url(../images/clients-bg@2x.png); } }
    .clients__link::before, .clients__link::after {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 100%;
      content: '';
      transition: opacity .4s ease; }
    .clients__link::before {
      transition: opacity .4s ease;
      opacity: 0;
      background: url(../images/clients-bg.png) no-repeat 50% 100%/224px 603px; }
      @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .clients__link::before {
          background-image: url(../images/clients-bg@2x.png); } }
    .clients__link::after {
      background: url(../images/clients-bg.png) no-repeat 50% 50%/224px 603px; }
      @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .clients__link::after {
          background-image: url(../images/clients-bg@2x.png); } }
    .clients__link:hover, .clients__item._active .clients__link {
      transform: scale(1); }
      .clients__link:hover::before, .clients__item._active .clients__link::before {
        opacity: 1; }
  .clients__hero {
    position: absolute;
    z-index: 1;
    top: calc(50% - 80px);
    left: calc(50% - 80px);
    width: 160px;
    height: 160px; }
  .clients__image {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    max-width: 100%;
    max-height: 100%;
    transition: opacity .4s ease, filter .4s ease;
    transform: translate(-50%, -50%);
    opacity: .5;
    filter: grayscale(100%); }
    @media screen and (max-width: 1024px) {
      .clients__image {
        opacity: 1;
        filter: grayscale(0%); } }
    .clients__link:hover .clients__image, .clients__item._active .clients__image {
      opacity: 1;
      filter: grayscale(0%); }
  .clients__number {
    font-size: 14px;
    line-height: 36px;
    position: absolute;
    z-index: 1;
    top: calc(50% - 20px);
    left: calc(50% - 18px);
    width: 41px;
    height: 36px;
    transition: font-size .4s ease;
    transform: translate(50px, -90px);
    text-align: center;
    color: white;
    background: url(../images/clients-number.svg) no-repeat 50% 50%/41px 36px; }
    .clients__link:hover .clients__number, .clients__item._active .clients__number {
      font-size: 11px; }
  .clients__arrow {
    position: absolute;
    top: calc(50% - 32px);
    width: 63px;
    height: 63px;
    padding: 0;
    cursor: pointer;
    transition: opacity .4s ease;
    border: none;
    border-radius: 50%;
    outline: none;
    background: rgba(197, 170, 209, 0.65) url(../images/services-arrow.svg) no-repeat 50% 50%/16px 25px; }
    .clients__arrow._type_prev {
      left: 40px;
      transform: rotate(180deg); }
      @media screen and (max-width: 599px) {
        .clients__arrow._type_prev {
          left: 10px; } }
    .clients__arrow._type_next {
      right: 40px; }
      @media screen and (max-width: 599px) {
        .clients__arrow._type_next {
          right: 10px; } }
    .clients__arrow.swiper-button-disabled {
      cursor: default;
      opacity: .5; }
  .clients__contents {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 40px; }
    @media screen and (max-width: 599px) {
      .clients__contents {
        padding: 0 10px; } }
  .clients__contents-wrapper {
    overflow: hidden;
    transition: height .2s ease; }
  .clients__content {
    display: none;
    padding: 35px 15px;
    background: white; }
    @media screen and (max-width: 599px) {
      .clients__content {
        padding: 30px 10px; } }
    .clients__content._active {
      display: block; }
  .clients._media {
    margin: 0;
    padding: 60px 0;
    background: #f6f2fb; }
    @media screen and (max-width: 767px) {
      .clients._media {
        padding: 40px 0; } }

.newsline__item {
  display: block;
  width: calc(25% - 30px);
  margin: 0 15px;
  color: #404750; }
  @media screen and (max-width: 1189px) {
    .newsline__item {
      width: calc(33.3333% - 30px); } }
  @media screen and (max-width: 899px) {
    .newsline__item {
      width: calc(50% - 30px); } }
  @media screen and (max-width: 599px) {
    .newsline__item {
      width: calc(100% - 20px);
      margin: 0 10px;
      text-align: center; } }
  .newsline__item::before {
    display: block;
    width: 37px;
    height: 2px;
    margin-bottom: 30px;
    content: '';
    background: #d2c1ff; }
    @media screen and (max-width: 599px) {
      .newsline__item::before {
        margin-right: auto;
        margin-left: auto; } }
  .newsline__item:hover {
    color: #404750; }
.newsline__date {
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 25px;
  text-transform: uppercase; }
@media screen and (max-width: 599px) {
  .newsline__text {
    max-width: 280px;
    margin-right: auto;
    margin-left: auto; } }
.newsline__pagination {
  display: flex;
  justify-content: center; }
  .newsline__pagination._hidden {
    display: none; }
.newsline__bullet {
  width: 13px;
  height: 13px;
  margin: 0 .4em;
  margin-top: 30px;
  cursor: pointer;
  border-radius: 50%;
  background: #c2a7d0; }
  @media screen and (max-width: 599px) {
    .newsline__bullet {
      margin-top: 20px; } }
  .newsline__bullet._active {
    background: #8e74b0; }

.no-bottom-padding {
  padding-bottom: 0; }

.button-facebook {
  font-size: .7857rem;
  line-height: 1;
  position: relative;
  max-width: 140px;
  margin: 0 2px;
  padding: 1.26rem 2rem 1.2rem .5rem;
  background-color: transparent; }
  @media screen and (min-width: 500px) {
    .button-facebook {
      max-width: 151px;
      margin: 0 8px; } }
  .button-facebook::before {
    position: absolute;
    top: 50%;
    right: 7px;
    display: block;
    width: 35px;
    height: 35px;
    margin: -18px 0 0;
    content: '';
    background-image: url(../images/facebook.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 35px 35px; }
    @media screen and (min-width: 500px) {
      .button-facebook::before {
        right: 12px; } }

.blueBox-gray .box_input .label_input {
  color: #404750; }

/*# sourceMappingURL=new.css.map */
