:root {
  --theme-size: 10px;
  --theme-primary-color: #2e77cf;
  --theme-secondary-color: #2e77cf;
  --body-bg: #101011;
  --body-color: #fff;
  --base-font-family: "Roboto", sans-serif;
  --base-font-size: 16px;
  --base-font-lineheight: 1.5;
  --base-font-weight: 400;
  --bg-no-image: #E9E8F1;
  --safe-area-inset-top: env(safe-area-inset-top);
  --safe-area-inset-bottom: env(safe-area-inset-bottom);
}

/* ==========================================================================
   Utilites
   ========================================================================== */
.ui-title-35 {
  display: block;
  margin: 0 0 2.5rem;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 500;
}

.ui-title-24 {
  display: block;
  margin: 0 0 2.5rem;
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 500;
}

.ui-title-20 {
  display: block;
  margin: 0 0 2.5rem;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 500;
}

/* Defaults
 ========================================================================== */
html, body {
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

picture {
  display: block;
}

img, video {
  max-width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-ms-clear {
  display: none;
}

button, input, textarea, select {
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
}

::selection {
  color: #fff;
  background: #000;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

[class^=icon-], [class*=" icon-"] {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  fill: currentColor;
  fill-rule: evenodd;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Thin.woff2") format("woff2"), url("../fonts/Roboto-Thin.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.ui-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  border: 1px solid transparent;
  background: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  height: 6rem;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  background: var(--theme-primary-color);
  color: #fff;
}
.ui-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.2);
  transition: opacity 0.25s;
  opacity: 0;
}
.ui-btn:hover {
  background: var(--theme-primary-color);
  color: #fff;
  text-decoration: none;
}
.ui-btn:hover:after {
  opacity: 1;
}
.ui-btn:active {
  transition: none;
}

.ui-btn--fullwidth {
  width: 100%;
}

.ui-link, .ui-wysiwyg a:not([class]) {
  text-decoration: none;
  transition: opacity 0.25s, color 0.25s;
}
.ui-link svg.icon-arrow-link, .ui-wysiwyg a:not([class]) svg.icon-arrow-link {
  margin: 0 0 0 0.8rem;
  transition: transform 0.25s;
}
.ui-link svg.icon-video, .ui-wysiwyg a:not([class]) svg.icon-video {
  margin: 0 1.2rem 0 0;
}
.ui-link svg.icon-replace, .ui-wysiwyg a:not([class]) svg.icon-replace {
  margin: 0 0.7rem 0 0;
}
.ui-link svg.icon-repeat, .ui-wysiwyg a:not([class]) svg.icon-repeat {
  margin: 0 0.8rem 0 0;
}
.ui-link:hover, .ui-wysiwyg a:hover:not([class]) {
  text-decoration: none;
}

.ui-link--primary {
  color: var(--theme-primary-color);
}
.ui-link--primary:hover {
  color: var(--theme-primary-color);
  opacity: 0.7;
}
.ui-link--primary.ui-link--underline, .ui-wysiwyg a.ui-link--primary:not([class]) {
  border-bottom: 1px solid #E3EEFF;
}
.ui-link--primary.ui-link--dashed {
  border-bottom: 1px dashed #E3EEFF;
}

.ui-link--blue, .ui-wysiwyg a:not([class]) {
  color: #4791FF;
}
.ui-link--blue:hover, .ui-wysiwyg a:hover:not([class]) {
  color: #4791FF;
  opacity: 0.7;
}
.ui-link--blue.ui-link--underline, .ui-wysiwyg a:not([class]) {
  border-bottom: 1px solid #E3EEFF;
}
.ui-link--blue.ui-link--dashed, .ui-wysiwyg a.ui-link--dashed:not([class]) {
  border-bottom: 1px dashed #E3EEFF;
}

.ui-link--dark {
  color: #343434;
}
.ui-link--dark:hover {
  color: #343434;
  opacity: 0.7;
}
.ui-link--dark.ui-link--underline, .ui-wysiwyg a.ui-link--dark:not([class]) {
  border-bottom: 1px solid #343434;
}
.ui-link--dark.ui-link--dashed {
  border-bottom: 1px dashed #343434;
}

.ui-label {
  display: block;
  margin: 0 0 1.5rem;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
}

.ui-caption {
  display: block;
  margin: 0 0 1.5rem;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
  color: #C2CBD9;
}
.ui-caption a {
  color: #C2CBD9;
}

.ui-mark {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 1.5rem;
  background: linear-gradient(90deg, #02AAB0 0%, #00CDAC 100%);
  color: #fff;
  border-radius: 5px;
  padding: 0.5rem 1.5rem;
  font-size: 2rem;
  line-height: 1.65;
  font-weight: 500;
  min-height: 4.3rem;
}


.ui-ul, .ui-wysiwyg ul:not([class]) {
  margin: 0 0 4rem;
  padding: 0;
  list-style: none;
}
.ui-ul > li, .ui-wysiwyg ul:not([class]) > li {
  padding: 0 0 0 4rem;
  margin: 0 0 2rem;
  position: relative;
}
.ui-ul > li:after, .ui-wysiwyg ul:not([class]) > li:after {
  content: "";
  display: block;
  position: absolute;
  top: 1.4rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--theme-primary-color);
}

.ui-ol, .ui-wysiwyg ol:not([class]) {
  margin: 0 0 4rem;
  padding: 0;
  list-style: none;
  counter-reset: point;
}
.ui-ol > li, .ui-wysiwyg ol:not([class]) > li {
  position: relative;
  padding: 0 0 0 4rem;
  margin: 0 0 2rem;
}
.ui-ol > li:after, .ui-wysiwyg ol:not([class]) > li:after {
  content: counter(point) ".";
  counter-increment: point 1;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
  color: var(--theme-primary-color);
}

.ui-dl, .ui-wysiwyg dl:not([class]) {
  margin: 0 0 4rem;
}
.ui-dl dt, .ui-wysiwyg dl:not([class]) dt {
  display: block;
  font-weight: 500;
  margin: 0 0 0.5rem;
  line-height: inherit;
}
.ui-dl dd, .ui-wysiwyg dl:not([class]) dd {
  display: block;
  padding: 0;
  margin: 0 0 2rem;
  line-height: inherit;
}
.ui-dl dd:last-child, .ui-wysiwyg dl:not([class]) dd:last-child {
  margin: 0;
}

.ui-table, .ui-wysiwyg table:not([class]) {
  width: 100%;
  border: 1px solid #E7EAF3;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 5px;
  overflow: hidden;
  text-align: left;
  margin: 0 0 4rem;
  background: #fff;
}
.ui-table th, .ui-wysiwyg table:not([class]) th, .ui-table td, .ui-wysiwyg table:not([class]) td {
  padding: 1.5rem;
  transition: background 0.25s;
}
.ui-table th:first-child, .ui-wysiwyg table:not([class]) th:first-child, .ui-table td:first-child, .ui-wysiwyg table:not([class]) td:first-child {
  padding-left: 40px;
}
.ui-table th:last-child, .ui-wysiwyg table:not([class]) th:last-child, .ui-table td:last-child, .ui-wysiwyg table:not([class]) td:last-child {
  padding-right: 40px;
}
.ui-table th, .ui-wysiwyg table:not([class]) th {
  background: var(--theme-primary-color);
  color: #fff;
  border-color: var(--theme-primary-color);
  font-weight: 500;
}
.ui-table td, .ui-wysiwyg table:not([class]) td {
  border-top: 1px solid #E7EAF3;
}
.ui-table tbody tr:hover td, .ui-wysiwyg table:not([class]) tbody tr:hover td {
  background: #F7F8FC;
}

.ui-table-delivery {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 3rem;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
}
.ui-table-delivery th, .ui-table-delivery td {
  padding: 1rem;
}
.ui-table-delivery th:first-child, .ui-table-delivery td:first-child {
  padding-left: 0;
}
.ui-table-delivery th:last-child, .ui-table-delivery td:last-child {
  padding-right: 0;
}
.ui-table-delivery th {
  font-weight: 500;
}

.ui-picture {
  overflow: hidden;
  margin: 0 0 4rem;
  display: block;
  background: #000;
  border-radius: 10px;
}
.ui-picture img {
  display: block;
  width: 100%;
  min-height: 20rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.ui-picture.pull-left {
  float: left;
  max-width: 34rem;
  margin: 0 4rem 4rem 0;
}
@media (max-width: 767px) {
  .ui-picture.pull-left {
    margin: 0 0 4rem;
    float: none;
    max-width: none;
  }
}
.ui-picture.pull-right {
  float: right;
  max-width: 34rem;
  margin: 0 0 4rem 4rem;
}
@media (max-width: 767px) {
  .ui-picture.pull-right {
    margin: 0 0 4rem;
    float: none;
    max-width: none;
  }
}

.ui-wysiwyg {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
}
.ui-wysiwyg h1 {
  display: block;
  margin: 0 0 4rem;
  font-size: 2.8rem;
  line-height: 1.25;
  font-weight: 500;
}
.ui-wysiwyg h2 {
  display: block;
  margin: 0 0 4rem;
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 500;
}
.ui-wysiwyg h3 {
  display: block;
  margin: 0 0 4rem;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 500;
}
.ui-wysiwyg h4 {
  display: block;
  margin: 0 0 4rem;
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 500;
}
.ui-wysiwyg h5 {
  display: block;
  margin: 0 0 4rem;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 500;
}
.ui-wysiwyg p {
  margin: 0 0 4rem;
}
.ui-wysiwyg p:last-child {
  margin: 0;
}
.ui-wysiwyg small {
  font-size: 1.4rem;
}
/**
 * Swiper 6.8.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 23, 2021
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  transition-property: transform;
  box-sizing: border-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -ms-flex-align: start;
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  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 {
  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: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  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: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 1rem;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 1rem;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 1rem;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 0.4rem;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 0.4rem;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  -ms-touch-action: none;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: 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: 4.2rem;
  height: 4.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -2.1rem;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid #000;
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    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 {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  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;
  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 {
  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%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.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-reviews-prostore {
  position: relative;
  overflow: visible;
  padding: 0 1rem 0 0;
}
@media (min-width: 1200px) {
  .swiper-reviews-prostore {
    padding: 0;
  }
  .swiper-reviews-prostore:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 120vw;
    margin: 0 0 0 -60vw;
    height: 36.4rem;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 75%, #000000 100%);
    pointer-events: none;
  }
  .swiper-reviews-prostore:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 100%;
    width: 120vw;
    margin: 0 0 0 -60vw;
    height: 36.4rem;
    z-index: 100;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 75%, #000000 100%);
    pointer-events: none;
  }
  .swiper-reviews-prostore .swiper-wrapper {
    display: block;
    columns: 2;
    column-gap: 20px;
  }
  .swiper-reviews-prostore .swiper-slide {
    margin: 0 0 2rem;
    display: inline-block;
    vertical-align: top;
  }
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.intro-prostore {
  position: relative;
  padding: 7rem 0 7.5rem;
  text-align: center;
}
@media (min-width: 1200px) {
  .intro-prostore {
    padding: 23rem 0 11.3rem;
  }
}

.intro-prostore__shadow {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 116rem;
  height: 116rem;
  background: radial-gradient(50% 50% at 50% 50%, #7266F3 0%, rgba(114, 102, 243, 0) 100%);
  opacity: 0.5;
  margin: -58rem 0 0 -58rem;
  z-index: -1;
}
@media (min-width: 1200px) {
  .intro-prostore__shadow {
    width: 184rem;
    height: 184rem;
    margin: -92rem 0 0 -92rem;
  }
}

.intro-prostore__logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 4.5rem;
}
.intro-prostore__logo img, .intro-prostore__logo svg {
  display: block;
}
@media (min-width: 1200px) {
  .intro-prostore__logo {
    display: none;
  }
}

.intro-prostore__title {
  display: block;
  margin: 0 auto 3.5rem;
  max-width: 44rem;
  font-size: 2.3rem;
  line-height: 1.3;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .intro-prostore__title {
    font-size: 4.6rem;
    line-height: 1.3;
    font-weight: 500;
    margin: 0 auto 6rem;
    max-width: 88.7rem;
  }
}

.intro-prostore__text {
  display: block;
  margin: 0 auto 4.5rem;
  max-width: 64rem;
  font-size: 1.6rem;
  line-height: 1.45;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .intro-prostore__text {
    font-size: 3rem;
    line-height: 1.45;
    font-weight: 400;
    margin: 0 auto 8rem;
    max-width: 112rem;
  }
}

.intro-prostore__image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
}
.intro-prostore__image img {
  display: block;
  width: auto;
  height: auto;
}
.template {
  margin: 0 0 10rem;
}
@media (min-width: 1200px) {
  .template {
    margin: 0 0 14rem;
  }
}

.template__title {
  display: block;
  margin: 0 0 2.5rem;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .template__title {
    margin: 0 0 5rem;
    font-size: 4.6rem;
    line-height: 1.09;
    font-weight: 500;
  }
}

.template__grid {
  margin: 0 -1rem -2rem;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.template__grid > li {
  padding: 0 1rem 2rem;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .template__grid > li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .template__grid > li {
    -ms-flex: 0 0 33.333%;
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .template__grid > li:nth-of-type(2) {
    -ms-flex: 0 0 66.666%;
    flex: 0 0 66.666%;
    max-width: 66.666%;
  }
  .template__grid > li:nth-of-type(9) {
    -ms-flex: 0 0 66.666%;
    flex: 0 0 66.666%;
    max-width: 66.666%;
  }
}
@media (min-width: 768px) {
  .template__grid > li:nth-of-type(2) .template__item-text {
    max-width: 27.6rem;
  }
  .template__grid > li:nth-of-type(3) .template__item-text {
    max-width: 35.9rem;
  }
  .template__grid > li:nth-of-type(4) .template__item-title {
    max-width: 25.7rem;
  }
  .template__grid > li:nth-of-type(5) .template__item-text {
    max-width: 31.3rem;
  }
  .template__grid > li:nth-of-type(9) .template__item-text {
    max-width: 48.5rem;
  }
  .template__grid > li:nth-of-type(10) .template__item-text {
    max-width: 38rem;
  }
  .template__grid > li:nth-of-type(19) .template__item-title {
    max-width: 36rem;
  }
  .template__grid > li:nth-of-type(21) .template__item-text {
    max-width: 34rem;
  }
  .template__grid > li:nth-of-type(22) .template__item-title {
    max-width: 34rem;
  }
}
@media (max-width: 767px) {
  .template__grid > li:nth-of-type(1) .template__item-title {
    max-width: 22rem;
  }
  .template__grid > li:nth-of-type(1) .template__item-text {
    max-width: 22rem;
  }
  .template__grid > li:nth-of-type(6) .template__item-text {
    max-width: 22rem;
  }
  .template__grid > li:nth-of-type(9) .template__item {
    height: 63.7rem;
  }
  .template__grid > li:nth-of-type(10) .template__item {
    height: 51.3rem;
  }
}

.template__item {
  background: #202022;
  color: #fff;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin: 0;
}
.template__item:before {
  content: "";
  float: left;
  padding: 137.3134% 0 0 0;
}
@media (min-width: 768px) {
  .template__item {
    height: 46rem;
  }
}

.template__item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.template__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 0% 50%;
  object-position: 0% 50%;
}

.template__item-desc {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  padding: 2.5rem;
}
@media (min-width: 1200px) {
  .template__item-desc {
    padding: 3.5rem;
  }
}

.template__item-title {
  display: block;
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 500;
}
.template__item-title:last-child {
  margin: 0;
}

.template__item-text {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.8rem;
  line-height: 1.45;
  font-weight: 400;
}
.template__item-text:last-child {
  margin: 0;
}

.benefits {
  margin: 0 0 10rem;
}
.benefits .container-fluid {
  max-width: 122.2rem;
}
@media (min-width: 1200px) {
  .benefits {
    background: #121213;
    margin: 0;
    padding: 16rem 0 37.5rem;
  }
}

.benefits__title {
  display: block;
  margin: 0 0 4rem;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .benefits__title {
    margin: 0 0 5.8rem;
    font-size: 4.6rem;
    line-height: 1;
    font-weight: 500;
  }
}

.benefits__list {
  margin: 0 -2rem -1.5rem 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
}
.benefits__list > li {
  margin: 0 1rem 1.5rem 0;
  background: linear-gradient(90deg, #02AAB0 0%, #00CDAC 100%);
  border-radius: 100px;
  height: 6.4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 2rem;
}
.benefits__list svg {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 0.8rem 0 0;
}
@media (min-width: 1200px) {
  .benefits__list {
    margin: 0 -6rem -2.5rem 0;
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 500;
  }
  .benefits__list > li {
    margin: 0 2rem 2.5rem 0;
    height: 9rem;
    padding: 0 4rem;
  }
  .benefits__list svg {
    width: auto;
    height: auto;
    margin: 0 1rem 0 0;
  }
}

.mobile {
  display: none;
}
@media (min-width: 1200px) {
  .mobile {
    display: block;
    margin: 0 0 27.3rem;
  }
}

.mobile__wrapper {
  position: relative;
}

.mobile__image {
  position: relative;
  z-index: 1;
  top: -18rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -4rem -18rem;
}
.mobile__image img {
  display: block;
}

.mobile__desc {
  position: absolute;
  top: 30rem;
  left: 12rem;
  width: 38.4rem;
  z-index: 2;
}

.mobile__title {
  display: block;
  margin: 0 0 3rem;
  font-size: 4.6rem;
  line-height: 1.4;
  font-weight: 500;
}

.mobile__text {
  display: block;
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 33.1rem;
}

.demo {
  margin: 0 0 2.5rem;
}
.demo .container-fluid {
  max-width: 160rem;
}
@media (min-width: 1200px) {
  .demo {
    margin: 0;
  }
}

.demo__list {
  margin: 0 -1rem -2rem;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.demo__list > li {
  padding: 0 1rem 2rem;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .demo__list > li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.demo__item {
  display: block;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  background: #111213;
  border-radius: 10px;
  padding: 6rem 2rem 5.3rem;
  text-align: center;
}
.demo__item:hover {
  text-decoration: none;
  color: #fff;
}
.demo__item:hover .demo__item-image {
  transform: scale(1);
  opacity: 1;
}
.demo__item:hover .demo__item-title {
  opacity: 0;
}
@media (min-width: 1200px) {
  .demo__item {
    padding: 7rem 2rem 10rem;
  }
}

.demo__item-circle {
  margin: 0 auto 5rem;
  max-width: 25rem;
  display: block;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1200px) {
  .demo__item-circle {
    max-width: 50rem;
    margin: 0 auto 5rem;
  }
}

.demo__item-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  margin: 0;
  border-radius: 50%;
}
.demo__item-image:before {
  content: "";
  float: left;
  padding: 100% 0 0 0;
}
.demo__item-image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .demo__item-image {
    opacity: 0.2;
    transform: scale(0.88);
    transition: opacity 0.25s, transform 0.25s;
  }
}

.demo__item-title {
  display: none;
}
@media (min-width: 1200px) {
  .demo__item-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    font-size: 2.6rem;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    padding: 1rem 0 0;
    transition: opacity 0.25s;
  }
}

.demo__item-caption {
  display: block;
  margin: 0 0 3rem;
  font-size: 1.8rem;
  line-height: 1.65;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .demo__item-caption {
    font-size: 2.2rem;
    line-height: 1.65;
    font-weight: 400;
    margin: 0 0 4rem;
  }
}

.demo__item-arrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.demo__item-arrow svg {
  display: block;
}

.cms {
  position: relative;
  padding: 20rem 0;
}
@media (min-width: 1200px) {
  .cms {
    padding: 33.2rem 0;
    margin: 0 0 13.8rem;
  }
}

.cms__sticky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.cms__shadow {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 61.6rem;
  height: 61.6rem;
  background: radial-gradient(50% 50% at 50% 50%, #7266F3 0%, rgba(114, 102, 243, 0) 100%);
  opacity: 0.5;
  margin: -30.8rem 0 0 -30.8rem;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 1200px) {
  .cms__shadow {
    width: 150rem;
    height: 150rem;
    margin: -75rem 0 0 -75rem;
  }
}

.cms__logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 11rem;
  margin: 0 auto 3.6rem;
}
.cms__logo svg {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .cms__logo {
    max-width: 13.8rem;
    margin: 0 auto 5.5rem;
  }
}

.cms__caption {
  display: block;
  margin: 0 auto;
  font-size: 2.3rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  max-width: 54rem;
}
.cms__caption a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid;
    transition: opacity 0.25s;
}
.cms__caption a:hover {
    opacity: 0.5;
}
@media (min-width: 1200px) {
  .cms__caption {
    font-size: 3.6rem;
    line-height: 1.4;
    font-weight: 400;
    max-width: 83.2rem;
  }
}

.cms__support {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 13rem;
  height: 13rem;
  background: #E6B407;
  color: #343434;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  transform: rotate(15deg);
  position: absolute;
  top: 7rem;
  left: 50%;
  margin: 0 0 0 7rem;
}
@media (min-width: 1200px) {
  .cms__support {
    top: 24rem;
    left: 50%;
    margin: 0 0 0 46rem;
    width: 20rem;
    height: 20rem;
    font-size: 2.2rem;
    line-height: 1.25;
    font-weight: 500;
  }
}

.guarantee {
  margin: 0 0 15rem;
}
@media (min-width: 1200px) {
  .guarantee {
    margin: 0 0 26rem;
  }
}

.guarantee__icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 4rem;
}
.guarantee__icon svg {
  display: block;
}
@media (min-width: 1200px) {
  .guarantee__icon {
    margin: 0 0 5.5rem;
  }
}

.guarantee__caption {
  display: block;
  margin: 0 auto;
  font-size: 2.3rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  max-width: 54rem;
}
.guarantee__caption mark {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  background: none;
  color: inherit;
  white-space: nowrap;
}
.guarantee__caption mark:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -0.4rem;
  right: -0.4rem;
  z-index: -1;
  height: 3.2rem;
  margin: -1.6rem 0 0;
  background: linear-gradient(90deg, #02AAB0 0%, #00CDAC 100%);
  border-radius: 8px;
}
.guarantee__caption mark:nth-of-type(1):before {
  transform: rotate(-1.93deg);
}
.guarantee__caption mark:nth-of-type(2):before {
  transform: rotate(1.87deg);
}
.guarantee__caption mark:nth-of-type(3):before {
  transform: rotate(-1.48deg);
}
.guarantee__caption mark:nth-of-type(4):before {
  transform: rotate(3.74deg);
}
@media (min-width: 1200px) {
  .guarantee__caption {
    font-size: 4.6rem;
    line-height: 1.35;
    font-weight: 400;
    max-width: 102.1rem;
  }
  .guarantee__caption mark:before {
    height: 6.9rem;
    margin: -3rem 0 0 0;
    border-radius: 15px;
  }
}

.reviews-prostore {
  margin: 0 0 12rem;
}
.reviews-prostore .container-fluid {
  max-width: 122rem;
}
@media (min-width: 1200px) {
  .reviews-prostore {
    margin: 0 0 16rem;
  }
}

.reviews-prostore__title {
  display: block;
  margin: 0 0 4rem;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .reviews-prostore__title {
    margin: 0 0 5rem;
    font-size: 4.6rem;
    line-height: 1.4;
    font-weight: 500;
  }
}

.reviews-prostore__item {
  background: #fff;
  color: #343434;
  border: 1px solid #F0F1F6;
  border-radius: 5px;
  padding: 3rem 2.5rem;
}
@media (min-width: 1200px) {
  .reviews-prostore__item {
    padding: 4rem;
  }
}

.reviews-prostore__item-head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 2rem;
}
@media (min-width: 1200px) {
  .reviews-prostore__item-head {
    margin: 0 0 1.5rem;
  }
}

.reviews-prostore__item-body {
  font-size: 1.8rem;
  line-height: 1.55;
  font-weight: 400;
}
.reviews-prostore__item-body p {
  margin: 0 0 1rem;
}
.reviews-prostore__item-body p:last-child {
  margin: 0;
}
@media (min-width: 1200px) {
  .reviews-prostore__item-body {
    font-size: 2.2rem;
    line-height: 1.65;
    font-weight: 400;
    padding: 0 2.8rem 0 0;
  }
}

.reviews-prostore__item-letter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 1.5rem 0 0;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(90deg, #02AAB0 0%, #00CDAC 100%);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 500;
}

.reviews-prostore__item-author {
  display: block;
  -ms-flex: 1;
  flex: 1;
}

.reviews-prostore__item-author-name {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 500;
}

.reviews-prostore__item-author-rating {
  display: block;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}
.reviews-prostore__item-author-rating svg {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 0 0 0.4rem;
  position: relative;
  top: -1px;
}
.reviews-prostore__item-author-rating mark {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  background: none;
  color: inherit;
  padding: 0;
}

.faq {
  position: relative;
  z-index: 100;
  margin: 0 0 13rem;
  opacity: .9;
}
.faq .container-fluid {
  max-width: 122rem;
}
@media (min-width: 1200px) {
  .faq {
    margin: 0 0 22.5rem;
  }
}

.faq__group {
  padding: 6.5rem 0 0;
}
.faq__group:first-child {
  padding: 0;
}
@media (min-width: 1200px) {
  .faq__group {
    padding: 9rem 0 0;
  }
}

.faq__title {
  display: block;
  margin: 0 0 1rem;
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .faq__title {
    font-size: 3.6rem;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
  }
}

.faq__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq__list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq__list > li:last-child {
  margin: 0;
}

.faq__item {
  font-size: 1.8rem;
  line-height: 1.45;
  font-weight: 400;
}
.faq__item.is-open .faq__item-question:after {
  transform: rotate(180deg);
}
@media (min-width: 1200px) {
  .faq__item {
    font-size: 2.2rem;
    line-height: 1.65;
    font-weight: 400;
  }
  .faq__item.is-open .faq__item-question {
    font-weight: 500;
  }
}

.faq__item-question {
  position: relative;
  padding: 3.5rem 3.5rem 2.5rem 0;
  cursor: pointer;
  transition: transform 0.25s;
  transform-origin: 0 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.faq__item-question:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0.4rem;
  width: 1.4rem;
  height: 0.9rem;
  background: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.361636 2.46489L6.07213 8.57382C6.19588 8.70886 6.3431 8.81605 6.50531 8.88919C6.66752 8.96234 6.8415 9 7.01722 9C7.19295 9 7.36693 8.96234 7.52914 8.88919C7.69135 8.81605 7.83857 8.70886 7.96232 8.57382L13.6063 2.46489C13.731 2.33095 13.83 2.17159 13.8976 1.99602C13.9652 1.82045 14 1.63213 14 1.44193C14 1.25173 13.9652 1.06341 13.8976 0.887834C13.83 0.712261 13.731 0.552909 13.6063 0.418968C13.3569 0.150621 13.0195 -8.67955e-07 12.6678 -8.37211e-07C12.3162 -8.06468e-07 11.9788 0.150621 11.7294 0.418968L7.01722 5.51935L2.30507 0.418969C2.05713 0.152793 1.72249 0.00273335 1.37329 0.0011417C1.1981 4.59419e-05 1.02444 0.0363886 0.862259 0.108089C0.700079 0.179789 0.552571 0.285436 0.42819 0.418969C0.298972 0.54809 0.194674 0.703646 0.121321 0.876649C0.0479672 1.04965 0.00701264 1.23667 0.000824266 1.42691C-0.00536411 1.61714 0.0233358 1.80682 0.0852655 1.98498C0.147195 2.16314 0.241128 2.32625 0.361636 2.46489Z' fill='white'/%3E%3C/svg%3E%0A") 50% 50% no-repeat;
  background-size: contain;
  margin: 0 0 0 0;
  transition: transform 0.25s;
}
@media (min-width: 1200px) {
  .faq__item-question {
    padding: 3.5rem 3.5rem 1.5rem 0;
  }
}

.faq__item-answer {
  display: none;
  padding: 0 0 0.5rem;
  position: relative;
}
.faq__item-answer ul {
	margin: 0 0 1rem;
    padding: 0 0 0 3rem;
    list-style: disc;
}
.faq__item-answer ul:last-child {
  *margin: 0;
}
.faq__item-answer p {
  margin: 0 0 1rem;
}
.faq__item-answer p:last-child {
  *margin: 0;
}
.faq__item-answer a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid;
    transition: opacity 0.25s;
}
.faq__item-answer a:hover {
    opacity: 0.5;
}
.support {
  margin: 0 0 10rem;
}
.support .container-fluid {
  max-width: 122rem;
}
@media (min-width: 1200px) {
  .support {
    margin: 0 0 22rem;
  }
}

.support__title {
  display: block;
  margin: 0 0 3rem;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .support__title {
    margin: 0 0 4.5rem;
    font-size: 2.6rem;
    line-height: 1.4;
    font-weight: 500;
  }
}

.support__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 300;
}
@media (min-width: 1200px) {
  .support__list {
    font-size: 10rem;
    line-height: 1;
    font-weight: 200;
  }
}

.support__link {
  color: #fff;
  text-decoration: none;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.25s;
}
.support__link:hover {
  color: #fff;
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.5);
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
}
@media (min-width: 1200px) and (max-width: 1600px) {
  html {
    font-size: 0.625vw;
  }
}

body {
  font: 400 1.6rem/1.5 "Roboto", Arial, Helvetica, sans-serif;
  background: var(--body-bg);
  color: var(--body-color);
  overflow-x: hidden;
  overflow-y: auto;
}

html:not(.is-loaded) * {
  transition: none !important;
}
html:not(.is-loaded) *:before, html:not(.is-loaded) *:after {
  transition: none !important;
}

.app {
  position: relative;
  min-height: 100%;
  min-width: 32rem;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container-fluid {
  max-width: 146rem;
  padding: 0 2rem;
}

/*@media (min-width: 1200px) {
  .is-sticky .header {
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
  }
}*/
@media (max-width: 1199px) {
  .is-sticky .header__sticky {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/*.header {
  position: relative;
  z-index: 1000;
  transition: background 0.25s, -webkit-backdrop-filter 0.25s;
  transition: background 0.25s, backdrop-filter 0.25s;
  transition: background 0.25s, backdrop-filter 0.25s, -webkit-backdrop-filter 0.25s;
}*/
/*@media (min-width: 1200px) {
  .header {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    height: 10.4rem;
  }
  .header .container-fluid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }
}*/

/*.header__logo {
  display: none;
}*/
/*@media (min-width: 1200px) {
  .header__logo {
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 4rem 0 0;
    width: 12.1rem;
  }
  .header__logo img, .header__logo svg {
    display: block;
    max-width: 100%;
    height: auto;
  }
}*/

/*.header__nav {
  display: none;
}
@media (min-width: 1200px) {
  .header__nav {
    display: block;
    margin: 0 4rem 0 0;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (min-width: 1200px) {
  .header__nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.8rem;
    line-height: 1.89;
    font-weight: 400;
    white-space: nowrap;
  }
  .header__nav-menu > li {
    margin: 0 2.5rem 0 0;
  }
  .header__nav-menu > li:last-child {
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .header__nav-link {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s;
  }
  .header__nav-link:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.5;
  }
}

.header__sticky {
  position: fixed;
  left: 1.6rem;
  right: 1.6rem;
  bottom: calc(1.6rem + var(--safe-area-inset-bottom));
  z-index: 100;
  background: #7266F3;
  border-radius: 10px;
  padding: 1rem 1rem 1rem 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1199px) {
  .header__sticky {
    opacity: 0;
    transform: translate(0, 100%);
    transition: transform 0.25s, opacity 0.25s;
  }
}
@media (min-width: 1200px) {
  .header__sticky {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    background: none;
    border-radius: 0;
    padding: 0;
  }
}

.header__sticky-price {
  display: block;
  margin: 0 1rem 0 0;
  -ms-flex: 1;
  flex: 1;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .header__sticky-price {
    font-size: 3rem;
    margin: 0 3rem 0 0;
  }
}

.header__sticky-scrollto {
  margin: 0 1rem 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  padding: 0.8rem 1.6rem;
  height: 5rem;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
}
.header__sticky-scrollto:hover {
  text-decoration: none;
  color: #fff;
}
@media (min-width: 1200px) {
  .header__sticky-scrollto {
    display: none;
  }
}

.header__sticky-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.8rem 1.6rem;
  background: #fff;
  border-radius: 10px;
  height: 5rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  color: #343434;
  min-width: 17rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.header__sticky-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transition: opacity 0.25s;
  opacity: 0;
}
.header__sticky-btn:hover {
  text-decoration: none;
  color: #343434;
}
.header__sticky-btn:hover:after {
  opacity: 1;
}
.header__sticky-btn svg {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 0 0 1rem;
  width: 1.8rem;
  height: 1.8rem;
}
@media (min-width: 1200px) {
  .header__sticky-btn {
    min-width: 22rem;
    height: 5.4rem;
    background: #7266F3;
    color: #fff;
    border-radius: 4px;
    padding: 0.8rem 2.5rem;
    font-size: 1.8rem;
  }
  .header__sticky-btn:hover {
    background: #7266F3;
    color: #fff;
  }
  .header__sticky-btn svg {
    width: 2.2rem;
    height: 2.2rem;
  }
}*/

.main {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.footer {
  padding: 2rem 0 calc(12.2rem + var(--safe-area-inset-bottom));
}
.footer .container-fluid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 122rem;
}
.footer .container-fluid:before, .footer .container-fluid:after {
  display: none;
}
@media (min-width: 1200px) {
  .footer {
    padding: 2rem 0;
  }
}

.footer__copyright {
  margin: 0 2rem 0 0;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
}

.footer__copyright-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: opacity 0.25s;
}
.footer__copyright-link:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.5;
}

.footer__social {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 500;
}
.footer__social > li {
  margin: 0 2rem 0 0;
}
.footer__social > li:last-child {
  margin: 0;
}

.footer__social-link {
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.25s;
}
.footer__social-link svg {
  margin: 0 0 0 1rem;
}
.footer__social-link:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.5;
}

@media (min-width: 1200px) {
  .order-xl-13 {
    -ms-flex-order: 13;
    order: 13;
  }
}

@media (min-width: 1200px) {
  .order-xl-14 {
    -ms-flex-order: 14;
    order: 14;
  }
}

.text-red {
  color: #F45656 !important;
}

.row-gutter-120 {
  margin: 0 -6rem;
}
.row-gutter-120 > [class^=col-] {
  padding: 0 6rem;
}

.row-gutter-10 {
  margin: 0 -0.5rem -1rem;
}
.row-gutter-10 > [class^=col] {
  padding: 0 0.5rem 1rem;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 575px) {
  .is-sm-visible {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .is-md-visible {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .is-lg-visible {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .is-xl-visible {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-md-hidden {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .is-lg-hidden {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .is-xl-hidden {
    display: none !important;
  }
}




.header__themes {
  height: 7rem;
  background: #232527;
  color: #fff; }
  .header__themes .container-fluid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -ms-flex-pack: justify;
    justify-content: space-between; }

.header__themes-logo a {
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  position: relative;
  padding: 12px 0 0;
  display: block; }
  .header__themes-logo a:before {
    content: '';
    position: absolute;
    width: 6rem;
    height: 3px;
    background: #2a77ed;
    top: 0;
    left: 0; }
  .header__themes-logo a:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.8; }
	
.header__themes-menu {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	padding: 0 20px;
}

.header__themes-menu a {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	margin: 0 20px;
	color: #fff;
	text-decoration: none;
	transition: 0.4s;
}
.header__themes-menu a:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.header__themes-support {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px; }
  .header__themes-support a {
    color: #fff;
    text-decoration: none;
    transition: 0.4s; }
    .header__themes-support a:hover {
      color: #fff;
      text-decoration: none;
      opacity: 0.8; }
.header__themes-support a:last-child {
    margin-left: 40px;
}
@media(max-width: 767px) {
.header__themes-menu {
    padding: 0;
}
.header__themes-menu a {
    letter-spacing: 0;
    margin: 0 10px;
}
.header__themes-support a {
    display: block;
    white-space: nowrap;
}
.header__themes-support {
    letter-spacing: 0;
    text-align: right;
}
}

@media (max-width: 1199px) {
#vk_community_messages {
    bottom: 8rem!important;
}
}

