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

.is-mobile-block,
.is-mobile-flex,
.is-mobile-inline {
  display: none !important;
}
.mobile .is-not-mobile {
  display: none !important;
}
.mobile .is-mobile-block {
  display: block !important;
}
.mobile .is-mobile-flex {
  display: flex !important;
}
.mobile .is-mobile-inline {
  display: inline !important;
}
@media (orientation: portrait) {
  .mobile .is-not-portrait {
    display: none !important;
  }
}
@media (orientation: landscape) {
  .mobile .is-not-landscape {
    display: none !important;
  }
}
.tablet .is-not-tablet {
  display: none !important;
}
.header {
  background: linear-gradient(90deg, #00be28 0%, #00bcd5 100%);
  font-size: 16px;
}
.header__main {
  display: flex;
  height: 100px;
  align-items: center;
  max-width: 1420px;
  padding: 0 40px;
  margin: 0 auto;
}
.header__logo {
  width: 200px;
  margin-right: 40px;
  display: flex;
  align-items: center;
}
.header__logo img {
  width: 200px;
}
.header__menu {
  display: flex;
  align-items: center;
  flex-basis: 100%;
}
.header__menu__item {
  color: #ffffff;
  margin-right: 20px;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__menu__item:hover {
  text-decoration: underline;
}
.header__menu__item.selected {
  position: relative;
  pointer-events: none;
  color: #fff;
  height: 100px;
}
.header__menu__item.selected::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
  bottom: 0;
  left: 50%;
  margin-left: -5px;
}
.header__menu__item--head {
  margin-right: 0;
}
.header__menu__item--folder {
  position: relative;
  pointer-events: unset !important;
}
.header__menu__item--folder:hover {
  height: 100px;
  text-decoration: none;
}
.header__menu__item--folder:hover .header__menu__popup {
  visibility: visible;
}
.header__menu__item--folder:hover::after {
  margin-top: 6px;
  transform: rotate(45deg);
  border-color: #fff;
}
.header__menu__item--folder::after {
  content: "";
  display: flex;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  margin-left: 6px;
  transform-origin: 4px 4px;
  transform: rotate(-135deg);
}
.header__menu__item--folder.selected::after {
  border-color: #fff;
}
.header__menu__subgroup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 6px;
  padding-left: 16px;
  padding-right: 16px;
}
.header__menu__subgroup .header__menu__subitem {
  line-height: 28px;
}
.header__menu__subname {
  color: #333;
  font-weight: bold;
  margin-left: -16px;
  margin-bottom: 4px;
  text-decoration: none;
}
.header__menu__subname:hover {
  text-decoration: underline;
}
.header__menu__subitem {
  color: #333333;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
  line-height: 32px;
  font-weight: normal;
}
.header__menu__subitem--disabled {
  color: #808080;
  pointer-events: none;
  cursor: default;
}
.header__menu__subitem:hover {
  text-decoration: underline;
  color: #00BE28;
}
.header__menu__subitem--blank {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__menu__subitem--blank::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/res/common/i/blank.svg") transparent no-repeat 0 0;
  background-size: contain;
  margin-left: 4px;
  opacity: 0.5;
}
.header__menu__subitem--blank:hover::after {
  background: url("/res/common/i/blank-blue.svg") transparent no-repeat 0 0;
  background-size: contain;
  opacity: 1;
}
.header__menu__subitem--join {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__menu__subitem--join::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/res/common/i/join.svg") transparent no-repeat 0 0;
  background-size: contain;
  margin-right: 4px;
  opacity: 0.5;
}
.header__menu__subitem--join:hover::before {
  background: url("/res/common/i/join-blue.svg") transparent no-repeat 0 0;
  background-size: contain;
  opacity: 1;
}
.header__menu__separator {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin: 6px 0;
}
.header__menu__soon {
  display: inline-block;
  font-weight: normal;
  margin-left: 10px;
  color: #5987FB;
  font-size: 12px;
}
.header__menu__button {
  border-radius: 12px;
  margin-right: 0;
  margin-left: 16px;
  background: rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
  border: 2px solid #FFFFFF;
  height: 40px;
  line-height: 36px;
  padding: 0 24px;
  color: #ffffff;
  display: block;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  justify-content: center;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
}
.header__menu__button:hover {
  background: rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #ffffff;
}
.header__menu__button:active {
  background: rgba(0, 0, 0, 0.25);
}
.header__menu__button--dashboard {
  padding-left: 16px;
}
.header__menu__button--dashboard::before {
  content: "";
  display: inline-block;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: url("/res/common/i/account.svg") transparent no-repeat 0 0;
  vertical-align: middle;
  margin-top: -4px;
  margin-right: 6px;
}
.header__menu__popup {
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  cursor: default;
  padding: 10px 20px;
  z-index: 200000;
  top: 75px;
  left: -16px;
  display: flex;
  flex-direction: column;
  visibility: hidden;
}
.header__language {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 40px;
}
.header__hamburger {
  width: 20px;
  height: 17px;
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  text-align: left;
  position: absolute;
  right: 20px;
  top: 30px;
  display: none;
  z-index: 100002;
}
.header__hamburger:after {
  content: " ";
  position: absolute;
  width: 20px;
  height: 3px;
  background: #ffffff;
  margin-top: 4px;
}
.header__hamburger:before {
  content: "";
  position: absolute;
  background: #ffffff;
  opacity: 0;
  width: 59px;
  height: 75px;
  top: -32px;
  left: -20px;
}
.mobile .header {
  display: block;
  height: auto;
  margin: 0;
  max-width: none;
  position: relative;
}
.mobile .header__main {
  height: 80px;
  padding: 0;
}
.mobile .header__logo {
  position: absolute;
  z-index: 100001;
  left: 20px;
}
.mobile .header__menu {
  background: linear-gradient(90deg, #00be28 0%, #00bcd5 100%);
  position: absolute;
  z-index: 100000;
  top: 0;
  display: block;
  width: 100%;
  padding: 80px 20px 20px 20px;
  box-shadow: 0 9px 20px 0 rgba(0, 0, 0, 0.4);
  border-radius: 0 0 16px 16px;
  display: none;
}
.mobile .header__menu__item {
  display: block;
  margin: 0;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
}
.mobile .header__menu__item--download {
  display: flex;
  justify-content: center;
}
.mobile .header__menu__item.selected {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.mobile .header__menu__item.selected::before {
  display: none;
}
.mobile .header__menu__item--folder {
  height: unset;
  flex-direction: column !important;
}
.mobile .header__menu__item--folder::after {
  display: none;
}
.mobile .header__menu__subgroup {
  align-items: center;
  padding: 0;
  margin: 0;
}
.mobile .header__menu__subname {
  margin: 0;
  color: #ffffff;
  font-weight: normal;
  opacity: 0.8;
}
.mobile .header__menu__subitem {
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
}
.mobile .header__menu__subitem--disabled {
  color: #c3d9fd;
}
.mobile .header__menu__subitem--join {
  justify-content: center;
  font-size: 16px;
}
.mobile .header__menu__subitem--join::before {
  background: url("/res/common/i/join-white.svg") transparent no-repeat 0 0 !important;
  background-size: contain;
  opacity: 0.75 !important;
}
.mobile .header__menu__subitem--blank {
  justify-content: center;
}
.mobile .header__menu__subitem--blank::after {
  background: url("/res/common/i/blank-white.svg") transparent no-repeat 0 0 !important;
  background-size: contain !important;
  opacity: 0.75 !important;
}
.mobile .header__menu__popup {
  background: none;
  visibility: visible;
  position: static;
  box-shadow: none;
  padding: 0 0 10px 0;
}
.mobile .header__menu__button {
  margin-top: 10px;
  margin-left: 0;
  max-width: unset;
  text-align: center;
}
.mobile .header__menu__soon {
  color: #ffffff;
  font-size: 10px;
}
.mobile .header__language {
  display: none;
}
.mobile .header__hamburger {
  display: block;
}
.tablet .header__main {
  max-width: unset;
  width: 100%;
  padding: 0 40px;
}
.tablet .header__menu__item {
  font-size: 16px;
  margin-right: 18px;
}
.tablet .header__language {
  display: none;
}
.sale {
  background: #fafd94;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}
.sale__title {
  color: #333;
  font-size: 18px;
  font-weight: bold;
}
.sale__message {
  color: #333;
  font-size: 18px;
  margin-left: 10px;
}
.sale__button {
  height: 36px !important;
  line-height: 36px !important;
  margin-left: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.mobile .sale__title {
  font-size: 16px;
}
.mobile .sale__message {
  font-size: 14px;
}
@media (orientation: portrait) {
  .mobile .sale {
    flex-direction: column;
  }
  .mobile .sale__title {
    font-size: 16px;
  }
  .mobile .sale__message {
    margin: 0;
    font-size: 14px;
  }
  .mobile .sale__button {
    margin: 6px 0 0 0;
  }
}
.footer {
  background: #1F2536;
  padding: 34px 0;
  color: #f0f0f0;
  font-size: 14px;
  line-height: 20px;
}
.footer__box {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footer__columns {
  display: flex;
  justify-content: space-between;
}
.footer__soon {
  font-size: 12px;
}
.footer__menu {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.footer__menu__title {
  font-weight: bold;
}
.footer__menu__item {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 20px;
  line-height: 16px;
}
.footer__menu__item--sub {
  margin-left: 10px;
}
.footer__menu__item--disabled {
  pointer-events: none;
  color: #aaaaaa !important;
}
.footer a {
  color: #ffffff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer__left {
  width: 100%;
}
.footer__right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  max-width: 250px;
}
.footer__social {
  margin-bottom: 8px;
}
.footer__social__title {
  color: #ffffff;
}
.footer__social__items {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer__social__item {
  width: 38px;
  height: 38px;
  background: #2C3348;
  border-radius: 8px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile .footer {
  padding: 20px;
}
.mobile .footer__box {
  display: block;
}
.mobile .footer__columns {
  flex-direction: column;
}
.mobile .footer__menu {
  line-height: 22px;
  margin: 5px 0;
  width: 100%;
}
.mobile .footer__menu__item {
  margin-right: 0;
  display: block;
}
.mobile .footer__logo {
  margin-top: 20px;
  display: none;
}
.mobile .footer__right {
  margin-top: 20px;
}
.mobile .footer__gp {
  margin-top: 10px;
}
.mobile .footer__social {
  margin-top: 16px;
}
.tablet .footer {
  padding-left: 40px;
  padding-right: 40px;
}
.button {
  border-radius: 12px;
  display: inline-block;
  line-height: 44px;
  height: 44px;
  font-size: 16px;
  font-weight: bold;
  padding: 0 30px;
  color: #00BE28;
  background: #ffffff;
  text-decoration: none;
  outline: none;
}
.button:hover {
  background: #F1F4FF;
}
.button:active {
  background: #DDE1F0;
}
.button--primary {
  background: #00BE28;
  color: #ffffff !important;
}
.button--primary:hover {
  background: #00BE28;
}
.button--primary:active {
  background: #00AF24;
}
.button--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.mobile .button {
  display: block;
  text-align: center;
}
.tooltip {
  position: absolute;
  z-index: 100001;
  left: -5000px;
  top: -5000px;
  transition: opacity 0.25s;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 18px;
  max-width: 300px;
  display: block;
}
.cookie {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1000;
  padding: 18px;
  display: flex;
  align-items: center;
}
.cookie__message {
  color: #666674;
  font-size: 16px;
  line-height: 20px;
  max-width: 400px;
}
.cookie__message a {
  color: #00BE28;
}
.cookie__message a:hover {
  color: #00AF24;
}
.cookie__close {
  opacity: 0.5;
  width: 20px;
  height: 20px;
  background: transparent;
  cursor: pointer;
  margin-left: 10px;
  flex-shrink: 0;
}
.cookie__close::before,
.cookie__close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: #555555;
  margin-top: 9px;
  margin-left: 2px;
}
.cookie__close::before {
  transform: rotate(-45deg);
}
.cookie__close::after {
  transform: rotate(45deg);
}
.cookie__close:hover {
  opacity: 0.75;
}
.cookie__close:active {
  opacity: 1;
}
.mobile .cookie {
  left: 10px;
  right: 100px;
  bottom: 10px;
  padding: 14px 18px;
  flex-direction: row-reverse;
}
.mobile .cookie__message {
  max-width: unset;
  font-size: 14px;
  line-height: 18px;
}
.mobile .cookie__close {
  margin-left: 0;
  margin-right: 10px;
}
.option {
  padding: 8px;
  font-size: 18px;
  display: flex;
}
.option::before {
  content: "";
  display: flex;
  width: 16px;
  height: 16px;
  background: url("/res/for/i/tick.svg") transparent no-repeat 0 0;
  flex-shrink: 0;
  margin-right: 12px;
}
.mobile .option {
  font-size: 16px;
  line-height: 20px;
  padding: 6px;
}
.button {
  height: 60px;
  line-height: 60px;
}
.mobile .button {
  height: 44px;
  line-height: 44px;
  padding: 0 20px;
}
.link {
  color: #00BE28;
  text-decoration: none;
}
.link:hover {
  color: #00AF24;
  text-decoration: underline;
}
.faq {
  background: white;
  padding: 40px;
  color: #333333;
}
.faq__title {
  margin: 0;
  text-align: center;
  font-size: 30px;
}
.faq__items {
  display: flex;
  margin: 40px auto 0 auto;
  max-width: 800px;
  flex-direction: column;
}
.faq__item {
  background: #E6F8EA;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 16px 0 0 0;
}
.faq__item:hover {
  background: #E6F8EA;
}
.faq__question {
  padding-left: 20px;
  cursor: pointer;
}
.faq__question:hover {
  color: #000000;
}
.faq__question::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  position: absolute;
  margin-left: -22px;
  margin-top: 4px;
  transform: rotate(-135deg);
}
.expanded .faq__question {
  font-weight: bold;
}
.expanded .faq__question::before {
  margin-top: 8px;
  transform: rotate(45deg);
}
.faq__answer {
  margin-top: 10px;
  padding-left: 20px;
  display: none;
}
.expanded .faq__answer {
  display: block;
}
.faq__answer li {
  margin: 6px 0;
}
.faq__answer a {
  color: #00BE28;
}
.faq__answer a:hover {
  color: #00AF24;
}
.faq__answer i {
  background: #cee3d1;
  border-radius: 6px;
}
.faq__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.mobile .faq__title {
  font-size: 20px;
}
.mobile .faq__title::before {
  width: 24px;
  height: 24px;
  margin-left: -34px;
  margin-top: -2px;
}
.mobile .faq__items {
  margin-top: 16px;
}
.mobile .faq__item {
  padding: 14px 16px;
  margin: 10px 0 0 0;
}
.mobile .faq__item ul {
  padding-left: 16px;
}
.mobile .faq__answer {
  font-size: 14px;
}
@media (orientation: portrait) {
  .mobile .faq {
    padding: 20px;
  }
  .mobile .faq__items {
    margin-top: 24px;
  }
}
@media (orientation: landscape) {
  .mobile .faq {
    padding: 30px;
  }
}
.tablet .faq__title {
  font-size: 26px;
}
.tabs {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.tabs__items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: #CCF2F7;
  border-radius: 12px;
  height: 55px;
  padding: 4px;
}
.tabs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  color: #00BE28;
  text-decoration: none;
  height: 47px;
  border-radius: 12px;
}
.tabs__item:hover {
  text-decoration: underline;
}
.tabs__item--selected {
  background: #00BE28;
  color: #ffffff;
  pointer-events: none;
  padding: 0 20px;
}
.mobile .tabs {
  padding: 20px;
}
.mobile .tabs__item {
  height: 36px;
  border-radius: 10px;
}
.mobile .tabs__items {
  height: 42px;
  border-radius: 10px;
}
.overview {
  text-align: center;
  padding: 0 40px 40px 40px;
  background: #ffffff;
}
.overview__title {
  margin: 0;
  font-size: 46px;
  line-height: 46px;
  color: #333333;
}
.overview__description {
  margin-top: 30px;
  font-size: 20px;
  line-height: 24px;
  color: #333333;
}
.overview__book {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
  text-align: left;
}
.overview__page--left {
  padding-right: 50px;
}
.overview__image {
  width: 484px;
  height: 447px;
}
.overview__downloads {
  margin-top: 40px;
}
.overview__download {
  margin-top: 12px;
  display: flex;
  align-items: center;
}
.overview__download__title {
  font-size: 16px;
  color: #00B726;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.overview__download__title::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.overview__download__title--win::before {
  background: url("/res/get/i/logo-win.svg") transparent no-repeat center center;
  background-size: contain;
}
.overview__download__title--mac::before {
  background: url("/res/get/i/logo-mac.svg") transparent no-repeat center center;
  background-size: contain;
}
.overview__download__title--linux::before {
  background: url("/res/get/i/logo-linux.svg") transparent no-repeat center center;
  background-size: contain;
}
.overview__download__title:hover {
  color: #00BE28;
  text-decoration: underline;
}
.overview__download__title--disabled {
  cursor: default;
  color: #333333;
  pointer-events: none;
}
.overview__download__link {
  font-size: 14px;
  color: #00B726;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 10px;
}
.overview__download__link:hover {
  color: #00BE28;
  text-decoration: underline;
}
.overview__download__size,
.overview__download__soon,
.overview__download__version {
  color: #888888;
  margin-left: 16px;
  font-size: 14px;
  font-style: italic;
  cursor: default;
}
.overview__download__size:hover,
.overview__download__soon:hover,
.overview__download__version:hover {
  color: #333;
}
.mobile .overview__image {
  display: none;
}
.mobile .overview__downloads {
  margin-top: 20px;
}
.tablet .overview__description {
  font-size: 16px;
  line-height: 20px;
}
.tablet .overview__page {
  width: 50%;
}
.tablet .overview__image {
  width: 100%;
  height: auto;
}
@media (orientation: portrait) {
  .mobile .overview {
    padding: 10px 20px 20px 20px;
  }
  .mobile .overview__title {
    font-size: 20px;
    line-height: 24px;
    margin: 0;
  }
  .mobile .overview__description {
    margin-top: 8px;
    font-size: 14px;
    line-height: 18px;
  }
  .mobile .overview__book {
    flex-direction: column;
    padding: 0;
  }
  .mobile .overview__page {
    text-align: center;
  }
  .mobile .overview__page--right {
    display: none;
  }
  .mobile .overview__page--left {
    padding-right: 0;
  }
  .mobile .overview__downloads {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mobile .overview__download__size,
  .mobile .overview__download__version {
    display: none;
  }
}
@media (orientation: landscape) {
  .mobile .overview {
    padding: 0 30px 30px 30px;
  }
  .mobile .overview__title {
    font-size: 26px;
    line-height: 30px;
    margin: 0;
  }
  .mobile .overview__description {
    font-size: 14px;
    line-height: 18px;
    margin-top: 8px;
  }
  .mobile .overview__book {
    padding-top: 0;
  }
  .mobile .overview__page--left {
    padding-right: 10px;
  }
  .mobile .overview__image {
    width: 268px;
    height: 223px;
  }
  .mobile .overview__download__version {
    display: none;
  }
}
.features {
  background: #fff;
  padding: 0 80px 60px 80px;
  position: relative;
}
.features__title {
  margin: 0;
  font-size: 30px;
  color: #333;
  text-align: center;
}
.features__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  max-width: 1280px;
  margin: 60px auto 0 auto;
}
.features__item {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 30px;
}
.features__icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}
.features__icon--keyboard {
  background: url("/res/get/i/dashboard/option-keyboard.png") transparent no-repeat 0 0;
  background-size: contain;
}
.features__icon--design {
  background: url("/res/get/i/dashboard/option-design.png") transparent no-repeat 0 0;
  background-size: contain;
}
.features__icon--notification {
  background: url("/res/get/i/dashboard/option-notification.png") transparent no-repeat 0 0;
  background-size: contain;
}
.features__text {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  line-height: 22px;
}
.mobile .features {
  padding: 0 20px 20px 20px;
}
.mobile .features__title {
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}
.mobile .features__items {
  margin-top: 20px;
}
.mobile .features__item {
  margin: 0 20px;
}
.mobile .features__text {
  font-size: 14px;
  line-height: 18px;
}
@media (orientation: portrait) {
  .mobile .features {
    padding-top: 20px;
  }
  .mobile .features__items {
    flex-direction: column;
  }
  .mobile .features__item {
    flex-direction: row;
    width: 100%;
    margin: 0 0 16px 0;
    justify-content: flex-start;
  }
  .mobile .features__text {
    text-align: left;
    margin-left: 16px;
  }
}
.screenshots {
  background: #F2FCFD;
  padding: 40px 80px 100px 80px;
  position: relative;
}
.screenshots__title {
  margin: 0;
  font-size: 30px;
  color: #333;
  text-align: center;
}
.screenshots__items {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: visible !important;
}
.screenshots__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 592px;
}
.screenshots__image {
  border: 1px solid #E2E2E2;
  border-radius: 10px;
  overflow: hidden;
}
.screenshots__label {
  margin-top: 10px;
  font-style: italic;
}
.screenshots__pagination {
  bottom: 40px !important;
  width: 100px;
  left: 50%;
  margin-left: -50px;
}
.screenshots__pagination span {
  margin: 0 2px;
}
.screenshots__pagination .swiper-pagination-bullet-active {
  background: #00BE28;
}
.mobile .screenshots {
  padding: 20px 30px 40px 30px;
}
.mobile .screenshots__title {
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}
.mobile .screenshots__items {
  margin-top: 16px;
}
.mobile .screenshots__item,
.mobile .screenshots__image {
  width: 296px;
}
.mobile .screenshots__label {
  font-size: 12px;
  margin-top: 6px;
}
.mobile .screenshots__pagination {
  bottom: 16px !important;
}
