/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin>.noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin>.noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal
}

:root {
  --swiper-theme-color: #007aff
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1
}

.swiper-container-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-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: translateZ(0);
  transform: translateZ(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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  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;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform
}

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

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto
}

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

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.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-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  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, .5)), to(transparent));
  background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(transparent));
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(transparent));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(transparent));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none
}

.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
}

@font-face {
  font-family: DM;
  src: url(./fonts/DMSans-Regular.eot);
  src: url(./fonts/DMSans-Regular.eot?#iefix) format("embedded-opentype"), url(./fonts/DMSans-Regular.woff2) format("woff2"), url(./fonts/DMSans-Regular.woff) format("woff"), url(./fonts/DMSans-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: DM;
  src: url(./fonts/DMSans-Italic.eot);
  src: url(./fonts/DMSans-Italic.eot?#iefix) format("embedded-opentype"), url(./fonts/DMSans-Italic.woff2) format("woff2"), url(./fonts/DMSans-Italic.woff) format("woff"), url(./fonts/DMSans-Italic.ttf) format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap
}

@font-face {
  font-family: DM;
  src: url(./fonts/DMSans-Medium.eot);
  src: url(./fonts/DMSans-Medium.eot?#iefix) format("embedded-opentype"), url(./fonts/DMSans-Medium.woff2) format("woff2"), url(./fonts/DMSans-Medium.woff) format("woff"), url(./fonts/DMSans-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: DM;
  src: url(./fonts/DMSans-MediumItalic.eot);
  src: url(./fonts/DMSans-MediumItalic.eot?#iefix) format("embedded-opentype"), url(./fonts/DMSans-MediumItalic.woff2) format("woff2"), url(./fonts/DMSans-MediumItalic.woff) format("woff"), url(./fonts/DMSans-MediumItalic.ttf) format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap
}

@font-face {
  font-family: DM;
  src: url(./fonts/DMSans-Bold.eot);
  src: url(./fonts/DMSans-Bold.eot?#iefix) format("embedded-opentype"), url(./fonts/DMSans-Bold.woff2) format("woff2"), url(./fonts/DMSans-Bold.woff) format("woff"), url(./fonts/DMSans-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: DM;
  src: url(./fonts/DMSans-BoldItalic.eot);
  src: url(./fonts/DMSans-BoldItalic.eot?#iefix) format("embedded-opentype"), url(./fonts/DMSans-BoldItalic.woff2) format("woff2"), url(./fonts/DMSans-BoldItalic.woff) format("woff"), url(./fonts/DMSans-BoldItalic.ttf) format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline
}

audio:not([controls]) {
  display: none;
  height: 0
}

[hidden],
template {
  display: none
}

a {
  background-color: transparent
}

a:active,
a:hover {
  outline: 0
}

abbr[title] {
  border-bottom: 1px dotted
}

b,
strong {
  font-weight: 700
}

dfn {
  font-style: italic
}

h1 {
  font-size: 2em;
  margin: .67em 0
}

mark {
  background: #ff0;
  color: #000
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sup {
  top: -.5em
}

sub {
  bottom: -.25em
}

img {
  border: 0
}

svg:not(:root) {
  overflow: visible
}

figure {
  margin: 1em 40px
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0
}

pre {
  overflow: auto
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0
}

button,
select {
  text-transform: none
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer
}

button[disabled],
html input[disabled] {
  cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0
}

input {
  line-height: normal
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box
}

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

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em
}

legend {
  border: 0;
  padding: 0
}

textarea {
  overflow: auto
}

optgroup {
  font-weight: 700
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

td,
th {
  padding: 0
}

blockquote,
q {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none
}

button,
input,
textarea {
  border: none
}

button {
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none
}

button::-moz-focus-inner {
  border: 0;
  padding: 0
}

*,
:after,
:before {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
  color: inherit;
  outline: none;
  border: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility
}

*,
:after,
:before,
button,
input,
select,
textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none
}

select::-ms-expand {
  display: none
}

*,
:after,
:before {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important
}

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

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

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

html {
  font-size: 10px;
  -webkit-text-size-adjust: none
}

@media only screen and (max-width:1439px) {
  html {
    font-size: .78125vw
  }
}

@media only screen and (max-width:767px) {
  html {
    font-size: 10px
  }
}

.background-gray {
  background-color: #b3b3b3
}

.background-dark-gray {
  background-color: #2f2f29
}

body {
  font-family: DM, sans-serif;
  font-weight: 400;
  color: #2f2f29;
  -webkit-overflow-scrolling: touch
}

.h1,
h1 {
  font-size: 6.8rem;
  line-height: 6.8rem;
  font-weight: 700
}

@media only screen and (max-width:767px) {

  .h1,
  h1 {
    font-size: 3.8rem;
    line-height: 4.5rem
  }
}

.h2,
h2 {
  font-size: 5.4rem;
  line-height: 5.4rem;
  font-weight: 700
}

@media only screen and (max-width:767px) {

  .h2,
  h2 {
    font-size: 3.8rem;
    line-height: 5.4rem
  }
}

.h3,
h3 {
  font-size: 3.2rem;
  line-height: 4.2rem;
  font-weight: 400
}

@media only screen and (max-width:767px) {

  .h3,
  h3 {
    font-size: 2.8rem;
    line-height: 3.6rem
  }
}

.p,
p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin: 0
}

@media only screen and (max-width:767px) {

  .p,
  p {
    font-size: 1.4rem
  }
}

a {
  text-decoration: none;
  font-size: inherit;
  color: inherit
}

ul {
  margin: 0;
  padding: 0
}

ul li {
  list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0
}

@media only screen and (max-width:767px) {
  .no-mob {
    display: none !important
  }
}

@media only screen and (min-width:768px) {
  .only-mob {
    display: none !important
  }
}

.container {
  padding: 0 6rem
}

@media only screen and (max-width:767px) {
  .container {
    padding: 0 2rem
  }
}

.logo {
  height: 4rem;
  width: 10.8rem;
  position: relative
}

@media only screen and (max-width:767px) {
  .logo {
    height: 2.7rem;
    width: 7.1rem
  }
}

.logo svg {
  width: 100%;
  height: 100%
}

.menu__item {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700
}

@media only screen and (min-width:768px) {
  .menu__item a {
    position: relative
  }

  .menu__item a:after {
    position: absolute;
    content: "";
    background-color: currentColor;
    width: 100%;
    height: .2rem;
    left: 0;
    bottom: -.2rem;
    -webkit-transform: scale(0) translateZ(0);
    transform: scale(0) translateZ(0);
    -webkit-transition: -webkit-transform .15s cubic-bezier(.175, .885, .32, 1.275);
    transition: -webkit-transform .15s cubic-bezier(.175, .885, .32, 1.275);
    transition: transform .15s cubic-bezier(.175, .885, .32, 1.275);
    transition: transform .15s cubic-bezier(.175, .885, .32, 1.275), -webkit-transform .15s cubic-bezier(.175, .885, .32, 1.275)
  }

  .menu__item a:hover:after {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0)
  }
}

.menu__item+.menu__item {
  margin-left: 3rem
}

.menu__item+.menu__item.smaller {
  margin-left: 2.7rem
}

.menu__item--has-submenu {
  position: relative;
  z-index: 10
}

.menu__item--has-submenu>a:after {
  display: none
}

.menu__item--has-submenu:after {
  position: absolute;
  content: "";
  width: calc(100% + 4rem);
  height: calc(100% + 3.1rem);
  background-color: #fbd131;
  left: -2rem;
  top: -1rem;
  z-index: -1;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: -1rem
}

.menu__item--has-submenu:before {
  position: absolute;
  content: "";
  background-image: url(./images/ic_corner.svg);
  background-size: cover;
  height: 3.5rem;
  width: 4rem;
  background-position: 0 100%;
  top: .65rem;
  right: -5.9rem
}

.menu__item--has-submenu .submenu,
.menu__item--has-submenu:after,
.menu__item--has-submenu:before {
  opacity: 0;
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
  pointer-events: none;
  -webkit-transition: opacity .15s ease-in-out, -webkit-transform .15s ease-in-out;
  transition: opacity .15s ease-in-out, -webkit-transform .15s ease-in-out;
  transition: opacity .15s ease-in-out, transform .15s ease-in-out;
  transition: opacity .15s ease-in-out, transform .15s ease-in-out, -webkit-transform .15s ease-in-out
}

.menu__item--has-submenu:hover .submenu,
.menu__item--has-submenu:hover:after,
.menu__item--has-submenu:hover:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: all;
  opacity: 1
}

.menu--footer {
  height: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@media only screen and (max-width:767px) {
  .menu--footer .menu__item {
    font-size: 1.2rem
  }
}

.button {
  background-color: #fbd131;
  color: #2f2f29;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  padding: .9rem 2.6rem 1rem;
  border-radius: 3rem;
  cursor: pointer;
  display: inline-block;
  border: .2rem solid #fbd131;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out
}

@media only screen and (max-width:767px) {
  .button {
    font-size: 1.4rem
  }
}

@media only screen and (min-width:768px) {
  .button:hover {
    background-color: #2f2f29;
    color: #fbd131;
    border-color: #2f2f29
  }

  .button--bordered:hover {
    border-color: #fbd131
  }
}

.button--lg {
  min-width: 25rem;
  text-align: center;
  padding: 1.43rem 2.6rem 1.47rem
}

@media only screen and (max-width:767px) {
  .button--lg {
    padding: .9rem 3.5rem;
    min-width: unset;
    white-space: nowrap
  }
}

.button--negative {
  background-color: #2f2f29;
  color: #fbd131
}

@media only screen and (min-width:768px) {
  .button--negative:hover {
    background-color: transparent;
    color: #2f2f29;
    border-color: #2f2f29
  }
}

@media only screen and (max-width:767px) {
  .button--submit {
    width: 100%
  }
}

.link {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer
}

@media only screen and (max-width:767px) {
  .link {
    font-size: 1.4rem
  }
}

@media only screen and (min-width:768px) {
  .link:not(.link--has-icon) {
    position: relative
  }

  .link:not(.link--has-icon):after {
    position: absolute;
    content: "";
    background-color: currentColor;
    width: 100%;
    height: .2rem;
    left: 0;
    bottom: -.2rem;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .15s cubic-bezier(.175, .885, .32, 1.275);
    transition: -webkit-transform .15s cubic-bezier(.175, .885, .32, 1.275);
    transition: transform .15s cubic-bezier(.175, .885, .32, 1.275);
    transition: transform .15s cubic-bezier(.175, .885, .32, 1.275), -webkit-transform .15s cubic-bezier(.175, .885, .32, 1.275)
  }

  .link:not(.link--has-icon):hover:after {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

.link--has-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.link--has-icon:hover .link__icon svg {
  fill: #2f2f29
}

.link__icon {
  height: 5rem;
  width: 5rem;
  margin-right: 1.5rem
}

@media only screen and (max-width:767px) {
  .link__icon {
    height: 4rem;
    width: 4rem;
    margin-right: .7rem
  }
}

.link__icon svg {
  height: 5rem;
  width: 5rem;
  fill: #666;
  -webkit-transition: fill .15s ease-in-out;
  transition: fill .15s ease-in-out
}

@media only screen and (max-width:767px) {
  .link__icon svg {
    height: 4rem;
    width: 4rem
  }
}

.centered-button {
  text-align: center
}

.go-back {
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@media only screen and (max-width:767px) {
  .go-back {
    font-size: 1.4rem
  }
}

.go-back svg {
  stroke: currentColor;
  fill: currentColor;
  margin-right: 1rem;
  width: 4rem;
  height: 1.6rem;
  position: relative;
  left: 0;
  -webkit-transition: left .15s ease-in-out;
  transition: left .15s ease-in-out
}

.go-back--white {
  color: #fff
}

.go-back:hover svg {
  left: -.5rem
}

.languages {
  position: relative;
  height: 2rem;
  z-index: 10;
  cursor: pointer
}

.languages__item {
  font-size: 1.6rem;
  font-weight: 700
}

@media only screen and (max-width:767px) {
  .languages__item {
    font-size: 1.4rem
  }
}

.languages__item--active {
  padding-left: 3rem;
  background-image: url(./images/ic_globe.svg);
  background-size: 2rem 2rem;
  background-position: 0 0;
  background-repeat: no-repeat
}

@media only screen and (max-width:767px) {
  .languages__item--active {
    background-size: 1.7rem 1.7rem
  }
}

@media only screen and (min-width:768px) {
  .languages__item a {
    position: relative
  }

  .languages__item a:after {
    position: absolute;
    content: "";
    background-color: currentColor;
    width: 100%;
    height: .2rem;
    left: 0;
    bottom: -.2rem;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .15s cubic-bezier(.175, .885, .32, 1.275);
    transition: -webkit-transform .15s cubic-bezier(.175, .885, .32, 1.275);
    transition: transform .15s cubic-bezier(.175, .885, .32, 1.275);
    transition: transform .15s cubic-bezier(.175, .885, .32, 1.275), -webkit-transform .15s cubic-bezier(.175, .885, .32, 1.275)
  }

  .languages__item a:hover:after {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

.languages__item+.languages__item {
  padding-top: 1rem
}

.languages__sub {
  position: absolute;
  background-color: #fbd131;
  border-radius: 2rem;
  left: -10%;
  min-width: 120%;
  top: -1.3rem;
  padding-top: 4rem;
  z-index: -1;
  opacity: 0;
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
  pointer-events: none;
  -webkit-transition: opacity .15s ease-in-out, -webkit-transform .15s ease-in-out;
  transition: opacity .15s ease-in-out, -webkit-transform .15s ease-in-out;
  transition: opacity .15s ease-in-out, transform .15s ease-in-out;
  transition: opacity .15s ease-in-out, transform .15s ease-in-out, -webkit-transform .15s ease-in-out
}

.languages__sub .languages__item {
  padding: .5rem 1rem .5rem 3.5rem
}

@media only screen and (max-width:767px) {
  .languages__sub .languages__item a {
    display: inline-block;
    position: relative;
    z-index: 2
  }
}

.languages__sub .languages__item:first-child {
  padding-top: 1rem
}

@media only screen and (max-width:767px) {
  .languages__sub .languages__item:first-child {
    padding-top: 0
  }

  .languages__sub .languages__item:first-child a {
    padding-top: .5rem
  }
}

.languages__sub .languages__item:last-child {
  padding-bottom: 1rem
}

@media only screen and (max-width:767px) {
  .languages__sub .languages__item:last-child {
    padding-bottom: 0
  }

  .languages__sub .languages__item:last-child a {
    padding-bottom: 1rem
  }
}

@media only screen and (max-width:767px) {
  .languages__sub .languages__item {
    padding: 0
  }

  .languages__sub .languages__item a {
    padding: .5rem 1rem .5rem 3.5rem
  }
}

.languages:hover .languages__sub {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: all;
  opacity: 1
}

.scroll-to {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer
}

.scroll-to__label {
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: 1.5rem
}

.scroll-to__arrow {
  position: relative;
  top: 0;
  -webkit-transition: top .15s ease-in-out;
  transition: top .15s ease-in-out
}

.scroll-to__arrow svg {
  width: 1.6rem;
  height: 8rem
}

.scroll-to:hover .scroll-to__arrow {
  top: .5rem
}

.scroll-to--to-top {
  position: fixed;
  bottom: 5rem;
  right: 5rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
  z-index: 20
}

.scroll-to--to-top.on-dark-bg {
  color: #fff
}

.scroll-to--to-top.on-dark-bg path {
  fill: #fff
}

.scroll-to--to-top.on-dark-bg line {
  stroke: #fff
}

.scroll-to.is-visible {
  opacity: 1;
  pointer-events: all
}

.full-wd-img img {
  width: 100%;
  height: auto
}

.show-more {
  text-align: center;
  margin-top: 8rem;
  position: relative;
  padding-bottom: 9.5rem
}

.show-more.is-loading .show-more__label {
  pointer-events: none !important;
  opacity: .5
}

.show-more button:hover .thing {
  height: 8rem
}

.show-more__label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  cursor: pointer;
  padding-bottom: .5rem
}

.show-more .thing {
  position: absolute;
  width: 3rem;
  height: 3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 3rem;
  opacity: 1;
  -webkit-transition: height .3s cubic-bezier(.175, .885, .32, 1.275);
  transition: height .3s cubic-bezier(.175, .885, .32, 1.275)
}

.show-more .thing__inner {
  position: relative;
  height: 100%;
  width: 100%
}

.show-more .thing__inner:after,
.show-more .thing__inner:before {
  content: "";
  position: absolute;
  width: 3rem;
  border-radius: 1.5rem;
  bottom: 0;
  left: 0
}

.show-more .thing__inner:after {
  height: 3rem;
  background-color: #2f2f29
}

.show-more .thing__inner:before {
  background: #fbd131;
  background: -webkit-gradient(linear, left top, left bottom, from(#2f2f29), color-stop(60%, #fbd131), to(#fbd131));
  background: linear-gradient(180deg, #2f2f29, #fbd131 60%, #fbd131);
  height: 100%
}

.ind-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.ind-list__item {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  padding: 1.2rem 2.5rem 1.2rem 5.5rem;
  border: .2rem solid #2f2f29;
  border-radius: 10rem;
  background-repeat: no-repeat;
  background-size: 2rem 2rem;
  background-position: left 2.5rem center;
  background-color: transparent;
  -webkit-transition: .3s cubic-bezier(.165, .84, .44, 1);
  transition: .3s cubic-bezier(.165, .84, .44, 1);
  margin: 0 1rem 1.5rem
}

@media only screen and (max-width:767px) {
  .ind-list__item {
    width: 100%;
    text-align: center;
    padding: 1.1rem 4.5rem 1.1rem 5.3rem;
    font-size: 1.4rem;
    line-height: 1.5rem
  }
}

.ind-list__item--active,
.ind-list__item:hover {
  background-color: #fbd131;
  border-color: #fbd131
}

@media only screen and (min-width:768px) {
  .plans {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

.plans__wrapper {
  padding-top: 3rem;
  border-top: 2px solid #b3b3b3
}

.plans__table {
  font-size: 1.6rem;
  width: 33%
}

@media only screen and (min-width:768px) {
  .plans__table {
    -ms-flex-negative: unset;
    flex-shrink: unset
  }
}

@media only screen and (max-width:767px) {
  .plans__table {
    width: 100%;
    font-size: 1.4rem;
    opacity: .2;
    -webkit-transition: opacity .35s ease-in-out;
    transition: opacity .35s ease-in-out
  }
}

.plans__table.swiper-slide-active {
  opacity: 1
}

.plans__table+.plans__table {
  margin-left: 5.5rem
}

@media only screen and (max-width:767px) {
  .plans__table+.plans__table {
    margin: 0
  }
}

.plans__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%
}

.plans__row--wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline
}

@media only screen and (max-width:767px) {
  .plans__row--head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 1.5rem
  }
}

.plans__row--head+div.plans__row,
.plans__row--head+div.plans__row--subhead {
  margin-top: 2rem
}

@media only screen and (max-width:767px) {
  .plans__row--head .small-label {
    position: absolute;
    left: 0;
    bottom: .5rem;
    margin: 0
  }
}

.plans__row--subhead {
  font-size: 3.2rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

@media only screen and (max-width:767px) {
  .plans__row--subhead {
    font-size: 2.6rem
  }
}

.plans__row--subhead+div.plans__row {
  margin-top: 2rem
}

.plans__row--subhead .small-label {
  font-size: 1.6rem;
  padding-bottom: .5rem
}

.plans__row+.plans__row {
  margin-top: 1rem
}

.plans__row:not(.plans__row--head):not(.plans__row--subhead) {
  padding-left: 2.2rem;
  background-image: url(./images/ic_check-yellow.svg);
  background-repeat: no-repeat;
  background-size: 1.5rem 1rem;
  background-position: left .8rem
}

.plans__row--not:not(.plans__row--head):not(.plans__row--subhead) {
  background-image: url(./images/ic_x.svg);
  background-size: 1.4rem 1.4rem;
  background-position: left .6rem
}

.plans__row-text {
  line-height: 2.4rem
}

.plans .small-label {
  font-weight: 400;
  color: #b3b3b3;
  margin: 0 .5rem
}

@media only screen and (max-width:767px) {
  .plans .small-label {
    font-size: 1.4rem
  }
}

.plans .badge {
  color: #2f2f29;
  background-color: #fbd131;
  padding: .2rem 1.2rem .2rem 1.3rem;
  border-radius: 2.5rem;
  margin: 0 0 0 auto;
  white-space: nowrap
}

@media only screen and (max-width:767px) {
  .plans .badge {
    font-size: 1.4rem
  }
}

.plans .badge--sm {
  background-color: #b3b3b3;
  margin: 0;
  font-size: 1.1rem;
  padding: .4rem .8rem
}

.plans__pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 3rem 0 0
}

.plans__pagination .swiper-pagination-bullet {
  height: 1rem;
  width: 1rem;
  background-color: transparent;
  border: .1rem solid #b3b3b3;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 .75rem
}

.plans__pagination .swiper-pagination-bullet-active {
  background-color: #fbd131;
  border-color: #fbd131
}

@media only screen and (max-width:767px) {
  .plans-container {
    padding-top: 5.8rem;
    background-image: url(./images/ic_slide-white.svg);
    background-repeat: no-repeat;
    background-position: center 1rem;
    background-size: 5.2rem 2.6rem
  }
}

.plans-container.swiper-container {
  padding-right: 5rem;
  padding-left: 2rem;
  margin-left: -2rem;
  margin-right: -2rem
}

.form-input {
  position: relative;
  font-size: 1.6rem
}

@media only screen and (max-width:767px) {
  .form-input {
    font-size: 1.4rem
  }
}

.form-input+.form-input {
  margin-top: 4rem
}

@media only screen and (max-width:767px) {
  .form-input+.form-input {
    margin-top: 2.8rem
  }
}

.form-input:after {
  content: "";
  position: absolute;
  height: .2rem;
  width: 0;
  bottom: 0;
  left: 0;
  background-color: #fbd131;
  -webkit-transition: width .3s ease-in-out;
  transition: width .3s ease-in-out
}

.form-input.focus:after {
  width: 100%
}

.form-input input,
.form-input select,
.form-input textarea {
  color: #2f2f29;
  width: 100%;
  height: 4rem;
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  border-bottom: .2rem solid #2f2f29;
  position: relative;
  z-index: 0
}

.form-input textarea {
  padding: 13px 0;
  resize: none;
  border: none
}

.form-input--textarea {
  border-bottom: .2rem solid #2f2f29
}

.form-input--textarea:after {
  bottom: -.2rem
}

.form-input--select {
  position: relative
}

.form-input--select select {
  display: none
}

.form-input__select-icon {
  display: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1rem
}

.form-input__select-icon svg {
  width: 1.2rem;
  height: auto
}

.form-input label {
  position: absolute;
  left: 0;
  top: .3rem;
  font-size: 1.6rem;
  padding-top: .4rem;
  padding-bottom: .6rem;
  z-index: 1;
  color: #666;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: text;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none
}

@media only screen and (max-width:767px) {
  .form-input label {
    font-size: 1.4rem
  }
}

.form-input.focus label,
.form-input.full label {
  font-size: 1.2rem;
  top: -1.5rem
}

.form-input--has-error:after {
  background-color: #fbd131;
  width: 100%
}

.form-input--has-error .form-input__field-message {
  opacity: 1
}

.form-input__field-message {
  position: absolute;
  width: 100%;
  left: 0;
  font-size: 1.2rem;
  color: red;
  bottom: -2rem;
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.form-input-checkbox+.form-input-checkbox {
  margin-top: 0
}

.form-input-checkbox.form-input--has-error:after {
  display: none
}

.form-input-checkbox.form-input--has-error label:before {
  border: .1rem solid #fbd131
}

.form-input-checkbox input[data-check] {
  display: none
}

.form-input-checkbox input[data-check]:not(:checked)+label:after {
  width: 0;
  opacity: 0
}

.form-input-checkbox input[data-check]:checked+label:before {
  background-color: #2f2f29
}

.form-input-checkbox label {
  font-size: 1.6rem;
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0 0 0 2.8rem;
  opacity: 1;
  pointer-events: auto;
  top: 0;
  color: #2f2f29
}

.form-input-checkbox label a {
  position: relative;
  font-weight: 700
}

.form-input-checkbox label a:after {
  position: absolute;
  content: "";
  background-color: currentColor;
  width: 100%;
  height: .2rem;
  left: 0;
  bottom: -.2rem;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform .15s cubic-bezier(.175, .885, .32, 1.275);
  transition: -webkit-transform .15s cubic-bezier(.175, .885, .32, 1.275);
  transition: transform .15s cubic-bezier(.175, .885, .32, 1.275);
  transition: transform .15s cubic-bezier(.175, .885, .32, 1.275), -webkit-transform .15s cubic-bezier(.175, .885, .32, 1.275)
}

.form-input-checkbox label a:hover:after {
  -webkit-transform: scale(1);
  transform: scale(1)
}

.form-input-checkbox label:after,
.form-input-checkbox label:before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  left: 0;
  top: .1rem
}

.form-input-checkbox label:before {
  background-color: transparent;
  border: .2rem solid #2f2f29;
  border-radius: .3rem;
  -webkit-transition: background-color .15s ease;
  transition: background-color .15s ease
}

.form-input-checkbox label:after {
  background-image: url(./images/yes.svg);
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  background-position: .37rem;
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out
}

.form-input input:-webkit-autofill,
.form-input input:-webkit-autofill:active,
.form-input input:-webkit-autofill:focus,
.form-input input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 30px #b3b3b3 inset !important
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.socials,
.socials__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.socials__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex
}

.socials__item+.socials__item {
  margin-left: 3rem
}

@media only screen and (max-width:767px) {
  .socials__item+.socials__item {
    margin-left: .8rem
  }
}

.socials__label {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  margin-right: 1.5rem
}

@media only screen and (max-width:767px) {
  .socials__label {
    display: none
  }
}

.socials__icon svg {
  height: 3.2rem;
  width: 3.2rem;
  display: block;
  fill: #2f2f29
}

.socials__icon--white {
  display: none
}

.store-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@media only screen and (max-width:767px) {
  .store-links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

.store-links__label {
  display: inline-block;
  min-width: 10.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  margin-right: 1.5rem;
  text-align: right
}

@media only screen and (max-width:767px) {
  .store-links__label {
    display: block;
    width: 100%;
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: .5rem
  }
}

.store-links__link {
  width: 10.9rem;
  height: 3.2rem;
  display: block;
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat
}

@media only screen and (max-width:767px) {
  .store-links__link {
    width: 8.8rem;
    height: 2.6rem
  }
}

.store-links__link+.store-links__link {
  margin-left: 1.5rem
}

@media only screen and (max-width:767px) {
  .store-links__link+.store-links__link {
    margin-left: .7rem
  }
}

.store-links__link--app-store {
  background-image: url(./images/apple_store.svg)
}

.store-links__link--google-play {
  background-image: url(./images/google-play.svg)
}

.store-links__link--huawei-app {
  background-image: url(./images/huawei-app-eng.png)
}

.help-list__title {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem
}

@media only screen and (max-width:767px) {
  .help-list__title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem
  }
}

.help-list__list-item {
  font-size: 1.6rem;
  line-height: 2.4rem;
  padding-left: 3rem;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 2rem 2rem
}

@media only screen and (max-width:767px) {
  .help-list__list-item {
    font-size: 1.4rem
  }
}

.help-list__list-item+.help-list__list-item {
  margin-top: 1.5rem
}

.cookie {
  background-color: #fbd131;
  position: fixed;
  bottom: 13rem;
  left: 6rem;
  padding: 2rem 3rem 2rem 1.6rem;
  max-width: 47rem;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  z-index: 99
}

@media only screen and (max-width:767px) {
  .cookie {
    left: 2rem;
    bottom: 2rem;
    max-width: calc(100% - 4rem)
  }
}

.cookie.is-hidden {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none
}

.cookie__submit {
  position: absolute;
  top: 1rem;
  right: 1.3rem
}

.submenu {
  position: absolute;
  background-color: #fbd131;
  z-index: 10;
  padding: 2rem 3.2rem 2.6rem 2rem;
  border-top-right-radius: 3.5rem;
  border-bottom-right-radius: 3.5rem;
  border-bottom-left-radius: 3.5rem;
  left: -2rem;
  top: 4rem;
  min-width: 20rem
}

.submenu__item {
  font-size: 1.6rem;
  font-weight: 400
}

.submenu__item+.submenu__item {
  margin-top: 1.3rem
}

.submenu__item a {
  white-space: nowrap
}

.burger {
  z-index: 999
}

.burger__line {
  height: .25rem;
  width: 2rem;
  background-color: #fbd131;
  margin: .4rem 0;
  border-radius: .5rem;
  position: relative;
  -webkit-transition: .15s ease-in-out;
  transition: .15s ease-in-out;
  z-index: 80
}

.burger__line:first-child {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  top: 0
}

.burger__line:nth-child(2) {
  opacity: 1
}

.burger__line:last-child {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  bottom: 0
}

.burger.is-active .burger__line:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: .65rem
}

.burger.is-active .burger__line:nth-child(2) {
  opacity: 0
}

.burger.is-active .burger__line:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: .65rem
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 70;
  background-color: #b3b3b3;
  overflow: auto;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out
}

.drawer.is-open {
  -webkit-transform: translateX(0);
  transform: translateX(0)
}

.drawer__inner {
  padding: 20vh 2rem 6.2rem
}

.drawer--dark {
  background-color: #2f2f29;
  color: #fff
}

.drawer--white {
  background-color: #fff
}

.mobile-menu__item {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700
}

.mobile-menu__item+.mobile-menu__item {
  margin-top: 1.5rem
}

.mobile-menu__item--has-submenu>a {
  padding-right: 1.5rem;
  position: relative
}

.mobile-menu__item--has-submenu>a:after {
  position: absolute;
  content: "";
  width: 1rem;
  height: .8rem;
  background-image: url(./images/ic_has-sub.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(50% - .4rem);
  right: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out
}

.mobile-menu__item--has-submenu.is-active>a:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}

.mobile-menu__submenu {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height .3s ease-in-out;
  transition: max-height .3s ease-in-out
}

.mobile-menu__submenu-item {
  font-weight: 400
}

.mobile-menu__submenu-item:first-child {
  margin-top: 1.5rem
}

.mobile-menu__submenu-item+.mobile-menu__submenu-item {
  margin-top: 1rem
}

.mobile-controls {
  margin-top: 4.5rem
}

.mobile-controls__item {
  text-align: center
}

.mobile-controls__item+.mobile-controls__item {
  margin-top: 1rem
}

.animated-block,
.animated-block--not-found {
  opacity: 1
}

#mobile-line.founded,
#Path_1.founded {
  -webkit-animation: offset 5s linear forwards;
  animation: offset 5s linear forwards;
  -webkit-animation-timing-function: cubic-bezier(.25, .46, .45, .94);
  animation-timing-function: cubic-bezier(.25, .46, .45, .94)
}

@-webkit-keyframes offset {
  to {
    stroke-dashoffset: 0
  }
}

@keyframes offset {
  to {
    stroke-dashoffset: 0
  }
}

.select-selected {
  background-color: transparent;
  border-bottom: .2rem solid #2f2f29
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 1.5rem;
  right: 1rem;
  width: 0;
  height: 0;
  border: .5rem solid transparent;
  border-top-color: #2f2f29
}

.select-selected:before {
  content: "";
  position: absolute;
  height: .2rem;
  width: 0;
  bottom: 0;
  left: 0;
  background-color: #fbd131;
  -webkit-transition: width .3s ease-in-out;
  transition: width .3s ease-in-out
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #2f2f29;
  top: 1rem
}

.select-selected.select-arrow-active:before {
  width: 100%
}

.select-items div,
.select-selected {
  color: #666;
  padding: .8rem 1.6rem .8rem 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.select-items div {
  padding-left: 1.5rem;
  background-color: hsla(0, 0%, 100%, .1);
  border-bottom: .2rem solid hsla(0, 0%, 100%, .2)
}

.form-input--select-lighter .select-items div {
  background-color: hsla(0, 0%, 100%, .3)
}

.select-items {
  position: absolute;
  background-color: #b3b3b3;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99
}

.select-hide {
  display: none
}

.same-as-selected,
.select-items div:hover {
  background-color: #fbd131
}

#trial-modal .select-items div {
  background-color: hsla(0, 0%, 100%, .9);
  border-bottom: .2rem solid #fff
}

#trial-modal .select-items div:hover {
  background-color: #fbd131
}

.socials-text {
  max-width: 33rem;
  text-align: left;
  font-size: 1.2rem;
  margin: .5rem 0 0
}

.socials-text--padding {
  width: 100%;
  max-width: 100%;
  padding-left: 12rem
}

@media only screen and (max-width:767px) {
  .socials-text--padding {
    padding-left: 0
  }
}

@media only screen and (min-width:1441px) {
  .socials-text {
    text-align: center;
    margin: .5rem auto 0
  }
}

.socials-text p {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #666
}

.socials-text a {
  color: #666
}

.plans-v2 {
  display: none
}

@media only screen and (min-width:768px) {
  .plans-v2 {
    display: block
  }
}

.plans-v2__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.plans-v2__row--h {
  border-bottom: 2px solid #b3b3b3;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

.plans-v2__row--h .plans-v2__col {
  padding-bottom: 3.5rem
}

.plans-v2__row--h+.plans-v2__row .plans-v2__col {
  padding-top: 3rem
}

.plans-v2__row--f {
  border-top: 2px solid #b3b3b3;
  margin-top: 1.5rem
}

.plans-v2__row--f .plans-v2__col {
  padding-top: 3rem
}

.plans-v2__col {
  width: calc(25% - 4rem);
  padding: 1.25rem 0
}

.plans-v2__col-holder {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center
}

.plans-v2__cell,
.plans-v2__col-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.plans-v2__cell {
  height: 4.6rem
}

.plans-v2__title+.plans-v2__label {
  margin-top: .5rem
}

.plans-v2__title+.button {
  margin-top: 2rem
}

.plans-v2__label {
  color: #b3b3b3
}

.plans-v2__label+.button,
.plans-v2__price {
  margin-top: 2rem
}

.plans-v2__price span+span {
  padding-left: 1rem
}

.plans-v2__price .h3 {
  font-size: 3.1rem
}

@media only screen and (max-width:767px) {
  .plans-v2__price .h3 {
    font-size: 2.8rem
  }
}

.plans-v2__check svg {
  width: 2rem;
  height: 1.33rem
}

.plans-v2__x svg {
  width: 2rem;
  height: 2rem
}

.plans-v2 .button {
  padding: .6rem 3.6rem
}

.plans-v2 .badge {
  background-color: #d5d5d5;
  color: #2f2f29;
  font-size: 1.4rem;
  padding: .5rem 1.2rem;
  border-radius: 2.5rem
}

@media only screen and (max-width:767px) {
  .plans-v2 .badge {
    font-size: 1rem;
    padding: .3rem .5rem
  }
}

.calculator .range-slider.noUi-horizontal {
  height: 3px;
  border-radius: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative
}

.calculator .range-slider.noUi-horizontal:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #d5d5d5
}

.calculator .range-slider.noUi-horizontal .noUi-connects {
  border-radius: 0
}

.calculator .range-slider.noUi-horizontal .noUi-connects .noUi-connect {
  background: #fbd131;
  height: 3px
}

.calculator .range-slider.noUi-horizontal .noUi-handle {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #fbd131;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  top: -1rem;
  right: -1.2rem
}

.calculator .range-slider.noUi-horizontal .noUi-handle:after,
.calculator .range-slider.noUi-horizontal .noUi-handle:before {
  display: none
}

.tab {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  border-radius: 1.6rem;
  overflow: hidden;
  background-color: #fff
}

.tab__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 4px solid #fbd131;
  line-height: 0
}

.tab__button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  font-size: 2rem;
  padding: 1.1rem;
  -webkit-transition: background-color .15s ease-in-out;
  transition: background-color .15s ease-in-out;
  position: relative
}

@media only screen and (max-width:767px) {
  .tab__button {
    font-size: 1.4rem;
    font-weight: 700
  }
}

.tab__button:not(:last-of-type):after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: -1px;
  z-index: 2
}

.tab__button.isActive,
.tab__button:hover {
  background-color: #fbd131
}

.tab__content {
  display: none
}

.tab__content.isActive {
  display: block
}

.rating {
  background-color: #fff;
  padding: 5rem 6rem 6rem;
  position: relative
}

.rating:after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  max-width: 56rem;
  background-color: #2f2f29;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2
}

@media only screen and (max-width:767px) {
  .rating:after {
    width: calc(100% - 4rem)
  }
}

.rating__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: 128rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  row-gap: 6rem;
  -webkit-column-gap: 9rem;
  -moz-column-gap: 9rem;
  column-gap: 9rem
}

@media only screen and (min-width:1480px) {
  .rating__container {
    max-width: 140rem
  }
}

@media only screen and (max-width:767px) {
  .rating__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5rem
  }
}

.rating__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.rating__logo {
  max-width: 21rem;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 auto auto
}

.rating__logo img {
  max-width: 100%
}

.rating__logo--second img {
  margin-top: .7rem
}

.rating__logo--theerd img {
  margin-top: .9rem
}

.rating__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-top: 2rem
}

.rating__number {
  font-size: 1.6rem;
  margin-right: 1.5rem
}

@media only screen and (max-width:767px) {
  .rating__number {
    font-size: 1.4rem
  }
}

.rating__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.rating__star {
  display: block
}

.rating__star svg {
  width: 2.4rem;
  height: 2.4rem
}

.rating__star:not(:last-child) {
  margin-right: .8rem
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem
}

@media only screen and (max-width:767px) {
  .pagination {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem
  }
}

.pagination__bullet {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #d5d5d5;
  font-size: 1.6rem;
  font-weight: 700
}

.pagination__bullet.is-active {
  background-color: #fbd131
}

@media only screen and (max-width:767px) {
  .pagination__bullet {
    height: 4rem;
    width: 4rem;
    font-size: 1.4rem
  }
}

.pagination__empty {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700
}

@media only screen and (max-width:767px) {
  .pagination__empty {
    height: 4rem;
    width: 4rem;
    font-size: 1.4rem
  }
}

.pagination__prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='16'%3E%3Cpath data-name='Polygon 8' d='M0 8l12-8v16z' fill='%232f2f29'/%3E%3Cpath data-name='Line 76' fill='none' stroke='%232f2f29' stroke-width='2' d='M40 8H6'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  display: block;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  margin: 0 2rem 0 0;
  position: relative;
  -webkit-transition: left .15s ease-in-out;
  transition: left .15s ease-in-out;
  left: 0
}

@media only screen and (max-width:767px) {
  .pagination__prev {
    height: 4rem;
    width: 4rem;
    margin: 0 .5rem 0 0
  }
}

.pagination__prev:hover {
  left: -.3rem
}

.pagination__next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='16'%3E%3Cpath data-name='Polygon 8' d='M40 8l-12 8V0z' fill='%232f2f29'/%3E%3Cpath data-name='Line 76' fill='none' stroke='%232f2f29' stroke-width='2' d='M0 8h34'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  display: block;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  margin: 0 0 0 2rem;
  position: relative;
  -webkit-transition: right .15s ease-in-out;
  transition: right .15s ease-in-out;
  right: 0
}

@media only screen and (max-width:767px) {
  .pagination__next {
    height: 4rem;
    width: 4rem;
    margin: 0 0 0 .5rem
  }
}

.pagination__next:hover {
  right: -.3rem
}

.sharing-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  margin: 6rem 0 12rem
}

@media only screen and (max-width:767px) {
  .sharing-controls {
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    margin: 5rem 0 8rem
  }
}

.sharing-controls a,
.sharing-controls button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.sharing-controls__icon {
  margin: 0 1rem 0 0
}

@media only screen and (max-width:767px) {
  .sharing-controls__icon {
    margin: 0
  }
}

.sharing-controls__icon svg {
  height: 3.2rem;
  width: 3.2rem;
  fill: #2f2f29
}

.sharing-controls__label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem
}

@media only screen and (max-width:767px) {
  .sharing-controls__label {
    display: none
  }
}

.form-check {
  display: inline-block;
  min-height: 1.5rem;
  padding-left: 1.5em
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right
}

.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: .25em;
  vertical-align: top;
  background-color: #fbd131;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  border: 1px solid #fbd131;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact
}

.form-check-input[type=checkbox] {
  border-radius: .25em
}

.form-check-input[type=radio] {
  border-radius: 50%
}

.form-check-input:active {
  -webkit-filter: brightness(90%);
  filter: brightness(90%)
}

.form-check-input:focus {
  outline: 0
}

.form-check-input:checked {
  background-color: #fbd131;
  border-color: #fbd131
}

.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3 6-6'/%3E%3C/svg%3E")
}

.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23fff'/%3E%3C/svg%3E")
}

.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E")
}

.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: .5
}

.form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
  cursor: default;
  opacity: .5
}

.form-switch {
  padding-top: .3rem
}

@media only screen and (max-width:767px) {
  .form-switch {
    padding-top: 0
  }
}

.form-switch .form-check-input {
  width: 2.2em;
  height: 1.7rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3.7' fill='%232f2f29'/%3E%3C/svg%3E");
  background-position: 0;
  border-radius: 2em;
  cursor: pointer;
  -webkit-transition: background-position .15s ease-in-out;
  transition: background-position .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
  .form-switch .form-check-input {
    -webkit-transition: none;
    transition: none
  }
}

.form-switch .form-check-input:checked,
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3.7' fill='%232f2f29'/%3E%3C/svg%3E")
}

.form-switch .form-check-input:checked {
  background-position: 100%
}

.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0
}

.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem
}

#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-main-logo,
a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText {
  display: none
}

.hero {
  background-color: #b3b3b3;
  padding: 13rem 5.9rem 0;
  height: auto;
  z-index: 10
}

@media screen and (max-width:1024px)and (height:1366px) {
  .hero {
    padding-top: 18rem
  }
}

@media only screen and (max-width:767px) {
  .hero {
    height: auto;
    padding: 12rem 2rem 0
  }
}

.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  overflow: hidden
}

.hero__left {
  width: 100%;
  max-width: 120rem;
  text-align: center
}

@media screen and (max-width:1024px)and (height:1366px) {
  .hero__left {
    width: 100%;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

@media only screen and (max-width:768px) {
  .hero__left {
    width: 100%;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

@media only screen and (min-width:1440px) {
  .hero__left {
    max-width: 120rem
  }
}

.hero__headline {
  opacity: 1;
  font-size: 6rem;
  line-height: 100%;
  font-weight: 700
}

@media only screen and (min-width:1440px) {
  .hero__headline {
    font-size: 6.2rem
  }
}

@media only screen and (min-width:1920px) {
  .hero__headline {
    font-size: 7rem
  }
}

@media only screen and (max-width:768px) {
  .hero__headline {
    font-size: 4.2rem
  }
}

@media only screen and (max-width:767px) {
  .hero__headline {
    max-width: 100%;
    font-size: 3.2rem
  }
}

.hero__headline--sm {
  font-size: 5rem;
  line-height: 5.8rem
}

@media only screen and (max-width:767px) {
  .hero__headline--sm {
    font-size: 3.4rem;
    line-height: 4rem
  }
}

.hero__text {
  opacity: 1;
  margin-top: 1.6rem
}

@media only screen and (max-width:767px) {
  .hero__text {
    margin: 1rem 0 3.1rem
  }
}

@media only screen and (max-width:767px) {
  .hero__mob-img {
    text-align: center;
    margin: 0 0 3.1rem
  }
}

.hero__mob-img img {
  width: 100%;
  height: auto
}

.hero__tab-img {
  display: none
}

@media screen and (max-width:1024px)and (height:1366px) {
  .hero__tab-img {
    display: block;
    margin-top: 6rem
  }
}

@media only screen and (max-width:768px) {
  .hero__tab-img {
    display: block;
    margin-top: 6rem
  }
}

.hero__tab-img img {
  width: 100%;
  height: auto
}

.hero__buttons {
  margin-top: 2.4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.hero__buttons>*+* {
  margin-left: 1.5rem
}

@media screen and (max-width:1024px)and (height:1366px) {
  .hero__buttons {
    margin: auto 0 0
  }
}

@media only screen and (max-width:768px) {
  .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: auto 0 0
  }

  .hero__buttons .button {
    width: 100%
  }

  .hero__buttons>*+* {
    margin-left: 0;
    margin-top: 1.6rem
  }
}

@media only screen and (max-width:767px) {
  .hero__buttons {
    margin: 0
  }
}

.hero__tablet-scroll-to {
  display: none
}

@media screen and (max-width:1024px)and (height:1366px) {
  .hero__tablet-scroll-to {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

@media only screen and (max-width:768px) {
  .hero__tablet-scroll-to {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

.hero__right {
  margin-top: 6.2rem;
  width: 100%
}

.hero__media {
  position: relative;
  max-width: 64rem;
  width: 100%;
  margin-inline: auto
}

@media only screen and (min-width:1440px) {
  .hero__media {
    max-width: 80rem
  }
}

@media only screen and (min-width:1920px) {
  .hero__media {
    max-width: 100rem
  }
}

.hero__media-img:not(.hero__media-img--main) {
  position: absolute
}

.hero__media-img--main {
  width: 100%;
  z-index: 1;
  margin-inline: auto;
  margin-bottom: -5.2rem
}

.hero__media-img--main img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain
}

@media only screen and (max-width:767px) {
  .hero__media-img--main {
    margin-bottom: 2.4rem;
    max-width: 80%
  }
}

.hero__media-img {
  will-change: transform
}

.hero__media-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain
}

.hero__media-img--left-top {
  top: 0;
  left: -20rem;
  width: 24.6rem;
  height: auto
}

@media only screen and (max-width:767px) {
  .hero__media-img--left-top {
    left: -2%;
    top: 8%;
    width: 25%
  }
}

.hero__media-img--left-bottom {
  top: 14.5rem;
  left: -16.5rem;
  width: 17.9rem;
  height: auto
}

@media only screen and (max-width:767px) {
  .hero__media-img--left-bottom {
    width: 20%;
    left: 0;
    top: 45%
  }
}

.hero__media-img--right-top {
  top: 1.5rem;
  right: -21rem;
  width: 18.5rem;
  height: auto;
  z-index: 3
}

@media only screen and (max-width:767px) {
  .hero__media-img--right-top {
    top: 2%;
    right: -3%;
    width: 20%
  }
}

.hero__media-img--right-bottom {
  top: 6rem;
  right: -11rem;
  width: 14rem;
  height: auto;
  margin-bottom: -.4rem;
  z-index: 2
}

@media only screen and (max-width:767px) {
  .hero__media-img--right-bottom {
    height: 70%;
    width: auto;
    top: 15%;
    right: 6%
  }

  .hero__media-img--right-bottom img {
    width: auto;
    height: 100%
  }
}

.hero__scroll-to {
  position: absolute;
  bottom: 0;
  right: 0
}

@-webkit-keyframes heroAnim {
  0% {
    opacity: 0;
    -webkit-transform: translateY(4rem);
    transform: translateY(4rem)
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes heroAnim {
  0% {
    opacity: 0;
    -webkit-transform: translateY(4rem);
    transform: translateY(4rem)
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

.header {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  position: fixed;
  width: 100%;
  z-index: 30;
  overflow: visible;
  background-color: #b3b3b3
}

@media only screen and (max-width:767px) {
  .header {
    z-index: 71
  }
}

.header--bg-white {
  background-color: #fff
}

.header.is-shrinked .header__inner {
  padding: 1.5rem 0
}

@media only screen and (max-width:767px) {
  .header.is-shrinked .header__inner {
    padding: 1rem 0
  }
}

.header--white {
  color: #fff;
  background-color: #2f2f29
}

.header--white .languages__item--active {
  background-image: url(./images/ic_globe-white.svg)
}

.header.is-open .header__controls>:not(.burger),
.header.is-open .logo {
  opacity: 0
}

.header .header__controls>:not(.burger):not(.button),
.header .logo {
  opacity: 1;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.header__inner {
  padding: 3.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

@media only screen and (max-width:767px) {
  .header__inner {
    padding: 2rem 0
  }
}

.header__nav {
  margin: 0 0 0 10.2rem
}

.header__controls {
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.header__controls>*+* {
  margin-left: 3rem
}

@media only screen and (max-width:767px) {
  .header__controls>*+* {
    margin-left: 2.5rem
  }
}

.body-loaded .header__inner {
  -webkit-transition: padding .1s ease-in-out;
  transition: padding .1s ease-in-out
}

@-webkit-keyframes headerAnim {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    overflow: visible
  }
}

@keyframes headerAnim {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    overflow: visible
  }
}

.features {
  padding-bottom: 8rem;
  background-color: #fff
}

.features__head {
  padding: 3rem 0 12.1rem
}

@media only screen and (max-width:767px) {
  .features__head {
    padding: 5rem 0 7rem
  }
}

.features__head-text {
  max-width: 56rem;
  margin: auto;
  text-align: center
}

.features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1
}

@media only screen and (max-width:767px) {
  .features__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

.features__item+.features__item {
  margin-top: 7.5rem
}

.features__item--rev-order .features__item-left {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding: 0 6rem 0 17rem
}

@media only screen and (max-width:767px) {
  .features__item--rev-order .features__item-left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0 2rem 5rem;
    text-align: left
  }
}

.features__item--rev-order .features__item-right {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

@media only screen and (max-width:767px) {
  .features__item--rev-order .features__item-right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 0 2rem 0 0
  }
}

@media only screen and (max-width:767px) {
  .features__item--rev-order .features__item-right--has-slider {
    padding: 0
  }
}

.features__item--rev-order .features__item-img-wrap img {
  width: 110%;
  left: -10%;
  position: relative
}

.features__item-left,
.features__item-right {
  width: 50%
}

@media only screen and (max-width:767px) {

  .features__item-left,
  .features__item-right {
    width: 100%
  }
}

@media only screen and (max-width:767px) {
  .features__item-right {
    padding-left: 2rem
  }
}

@media only screen and (max-width:767px) {
  .features__item-right--has-slider {
    padding: 0
  }
}

.features__item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 17rem 0 6rem
}

@media only screen and (max-width:767px) {
  .features__item-left {
    padding: 0 2rem 5rem;
    text-align: left
  }
}

.features__text-cont {
  border-top: .2rem solid #2f2f29;
  padding-top: 1.5rem
}

.features__item-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden
}

.features__item-img-wrap img {
  width: 125%;
  height: auto;
  position: relative;
  right: 0
}

.features .animated-visual img {
  opacity: 1
}

.features .animated-visual--not-found img {
  opacity: 0
}

@media only screen and (max-width:767px) {
  .features__slider {
    padding: 6rem 7.7rem 0;
    background-image: url(./images/ic_slide.svg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 5.2rem 2.6rem
  }
}

.features__slide {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden
}

@media only screen and (max-width:767px) {
  .features__slide {
    width: calc(100% - 15.4rem);
    opacity: .4;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out
  }

  .features__slide.swiper-slide-active {
    opacity: 1
  }

  .features__slide img {
    width: 100%;
    height: auto
  }
}

@media only screen and (max-width:767px)and (min-device-width:320px)and (max-device-width:767px)and (-webkit-min-device-pixel-ratio:2)and (orientation:landscape) {
  .features__slide img {
    width: auto;
    max-height: 33.6rem
  }
}

.features__pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 3rem 0 0
}

.features__pagination .swiper-pagination-bullet {
  height: .8rem;
  width: .8rem;
  background-color: #2f2f29;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 .75rem
}

.features__pagination .swiper-pagination-bullet-active {
  background-color: #fbd131;
  border-color: #fbd131
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.text-container--article .h3,
.text-container--article h3 {
  font-size: 2.8rem;
  line-height: 3.8rem;
  font-weight: 400
}

@media only screen and (max-width:767px) {

  .text-container--article .h3,
  .text-container--article h3 {
    font-size: 1.8rem;
    line-height: 2.4rem
  }
}

.text-container--article .h3+*,
.text-container--article h3+* {
  margin-top: 4rem
}

.text-container--article .h2,
.text-container--article h2 {
  font-size: 3.2rem;
  line-height: 4.2rem;
  font-weight: 400;
  position: relative;
  padding-top: 1.5rem
}

@media only screen and (max-width:767px) {

  .text-container--article .h2,
  .text-container--article h2 {
    font-size: 2.8rem;
    line-height: 3.6rem
  }
}

.text-container--article .h2:after,
.text-container--article h2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: .2rem;
  background-color: currentColor;
  top: 0;
  left: 0
}

.text-container--article img {
  border-radius: 1.6rem;
  max-width: 100%;
  height: auto;
  width: auto !important;
}

.text-container--article img:not(:last-child) {
  margin: 0 0 6rem
}

@media only screen and (max-width:767px) {
  .text-container--article img:not(:last-child) {
    margin: 0 0 4rem
  }
}

.text-container h1+*,
.text-container h2+*,
.text-container h3+*,
.text-container h4+*,
.text-container h5+*,
.text-container h6+*,
.text-container ol+*,
.text-container p+*,
.text-container table+*,
.text-container ul+* {
  margin-top: 3.6rem
}

@media only screen and (max-width:767px) {

  .text-container h1+*,
  .text-container h2+*,
  .text-container h3+*,
  .text-container h4+*,
  .text-container h5+*,
  .text-container h6+*,
  .text-container ol+*,
  .text-container p+*,
  .text-container table+*,
  .text-container ul+* {
    margin-top: 3rem
  }
}

.text-container p+p {
  margin-top: 2rem
}

.text-container ul li {
  font-size: 1.6rem;
  position: relative;
  padding-left: 1.7rem
}

@media only screen and (max-width:767px) {
  .text-container ul li {
    font-size: 1.4rem
  }
}

.text-container ul li:not(:last-child) {
  margin-bottom: .5rem
}

.text-container ul li:after {
  position: absolute;
  content: "";
  height: .4rem;
  width: .4rem;
  border-radius: 50%;
  background-color: #fbd131;
  top: .9rem;
  left: 0
}

.text-container ol {
  padding: 0 0 0 2rem
}

.text-container ol li {
  font-size: 1.6rem
}

@media only screen and (max-width:767px) {
  .text-container ol li {
    font-size: 1.4rem
  }
}

.text-container ol li:not(:last-child) {
  margin-bottom: 1.5rem
}

.text-container table {
  border-spacing: 0;
  border-collapse: collapse;
  margin-right: -66.6666666667%
}

@media only screen and (max-width:767px) {
  .text-container table {
    display: block;
    width: 100%;
    overflow: auto;
    padding-top: 4.1rem;
    background-image: url(./images/ic_slide.svg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 5.2rem 2.6rem
  }
}

.text-container table td,
.text-container table th {
  border: .2rem solid #d1d3d4;
  padding: 2rem;
  font-size: 1.6rem
}

@media only screen and (max-width:767px) {

  .text-container table td,
  .text-container table th {
    font-size: 1.4rem
  }
}

.text-container table th {
  text-align: left;
  font-weight: 500;
  padding: 3.6rem 2rem
}

.text-container table td {
  vertical-align: top;
  color: #000
}

.text-container .h2+*,
.text-container h2+* {
  margin-top: 1.5rem
}

.text-container .h4,
.text-container h4 {
  font-size: 2.8rem;
  line-height: 3.8rem;
  font-weight: 400
}

@media only screen and (max-width:767px) {

  .text-container .h4,
  .text-container h4 {
    font-size: 2rem;
    line-height: 2.6rem
  }
}

.text-container .h5,
.text-container .h6,
.text-container h5,
.text-container h6 {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 400
}

@media only screen and (max-width:767px) {

  .text-container .h5,
  .text-container .h6,
  .text-container h5,
  .text-container h6 {
    font-size: 1.6rem;
    line-height: 2.4rem
  }
}

.text-container h1:not(:first-child),
.text-container h2:not(:first-child) {
  margin-top: 8rem
}

@media only screen and (max-width:767px) {

  .text-container h1:not(:first-child),
  .text-container h2:not(:first-child) {
    margin-top: 3.5rem
  }
}

.text-container table:not(:first-child) {
  margin-top: 5.5rem
}

@media only screen and (max-width:767px) {
  .text-container table:not(:first-child) {
    margin-top: 3rem
  }
}

.text-container a {
  text-decoration: underline
}

.industries {
  padding: 10rem 0 12rem;
  background-color: #fff
}

@media only screen and (max-width:767px) {
  .industries {
    padding: 5rem 0 7rem
  }
}

.industries__head {
  margin-bottom: 6rem
}

@media only screen and (max-width:767px) {
  .industries__head {
    margin-bottom: 5rem
  }
}

.industries__text-cont {
  max-width: 75rem;
  margin: 0 auto;
  text-align: center
}

.industries__list {
  max-width: 77rem;
  margin: 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.manage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fbd131
}

@media only screen and (max-width:767px) {
  .manage {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

.manage__left,
.manage__right {
  width: 50%;
  position: relative
}

@media only screen and (max-width:767px) {

  .manage__left,
  .manage__right {
    width: 100%
  }
}

.manage__left {
  padding: 12rem 2rem 12rem 6rem
}

@media only screen and (max-width:767px) {
  .manage__left {
    padding: 5rem 2rem;
    text-align: center
  }
}

@media only screen and (max-width:767px) {
  .manage__left .button {
    width: 100%
  }
}

.manage__slogan {
  font-weight: 400;
  margin-bottom: 1.5rem
}

.manage__text-cont {
  max-width: 80%;
  margin-bottom: 4rem
}

@media only screen and (max-width:767px) {
  .manage__text-cont {
    max-width: 100%;
    margin-bottom: 2rem
  }
}

@media only screen and (max-width:767px) {
  .manage__right {
    height: 90vw;
    min-height: 27.5rem
  }
}

.manage__right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

.stories {
  background-color: #b3b3b3;
  padding: 10rem 0 8rem
}

@media only screen and (max-width:767px) {
  .stories {
    padding: 5rem 0
  }
}

.stories__head {
  margin-bottom: 8rem
}

@media only screen and (max-width:767px) {
  .stories__head {
    margin-bottom: 5rem
  }
}

.stories__container {
  padding: 0 15rem
}

@media only screen and (max-width:767px) {
  .stories__container {
    padding: 0
  }
}

.stories__slide {
  padding: 0 3rem;
  opacity: .5;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out
}

.stories__slide.swiper-slide-active {
  opacity: 1
}

.stories__slide:hover {
  cursor: -webkit-grab;
  cursor: grab
}

.stories__slide:active {
  cursor: -webkit-grabbing;
  cursor: grabbing
}

.stories__text-cont {
  max-width: 56rem;
  margin: auto
}

.stories__resp,
.stories__slide,
.stories__text-cont {
  text-align: center
}

.stories__resp {
  font-size: 2.2rem;
  display: block
}

@media only screen and (max-width:767px) {
  .stories__resp {
    font-size: 1.8rem;
    line-height: 2.4rem
  }
}

.stories__slide-logo {
  max-height: 6rem;
  max-width: 16rem;
  margin-top: 3rem
}

@media only screen and (max-width:767px) {
  .stories__slide-logo {
    max-width: 18rem
  }
}

.stories__pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 8rem 0 0
}

.stories__pagination .swiper-pagination-bullet {
  height: .8rem;
  width: .8rem;
  background-color: #2f2f29;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 .75rem
}

.stories__pagination .swiper-pagination-bullet-active {
  background-color: #fbd131
}

.stories__nav {
  position: absolute;
  top: 30%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10
}

.stories__next {
  right: 1rem
}

.stories__prev {
  left: 1rem
}

.pricing {
  color: #fff;
  background-color: #2f2f29;
  padding: 10rem 0 8rem
}

@media only screen and (max-width:767px) {
  .pricing {
    padding: 4.4rem 0 7rem
  }
}

.pricing__head {
  margin-bottom: 6rem
}

@media only screen and (max-width:767px) {
  .pricing__head {
    margin-bottom: 2.3rem
  }
}

.pricing__h1 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin-top: 1.5rem !important
}

@media only screen and (max-width:767px) {
  .pricing__h1 {
    padding: 0 2rem
  }
}

.pricing__text-cont {
  max-width: 60rem;
  margin: auto;
  text-align: center
}

.pricing__text-cont--framed {
  position: relative;
  padding: 2.5rem 0
}

.pricing__text-cont--framed:after,
.pricing__text-cont--framed:before {
  content: "";
  position: absolute;
  height: .2rem;
  width: 35rem;
  background-color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

@media only screen and (max-width:767px) {

  .pricing__text-cont--framed:after,
  .pricing__text-cont--framed:before {
    width: 100%
  }
}

.pricing__text-cont--framed:after {
  top: 0
}

.pricing__text-cont--framed:before {
  bottom: 0
}

.pricing__body.plans-v2 {
  display: block
}

@media only screen and (min-width:768px) {
  .pricing__body.plans-v2 {
    display: none
  }
}

.pricing__body.plans-v2 .pricing__foot {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid #b3b3b3
}

.pricing__foot .centered-button {
  margin-top: 7.5rem
}

@media only screen and (max-width:767px) {
  .pricing__foot .centered-button {
    margin-top: 3rem
  }
}

@media only screen and (max-width:767px) {
  .pricing__foot .button {
    width: 100%
  }
}

.pricing__toggler {
  max-width: 60rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  margin: 1.8rem auto;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400
}

.pricing__toggler--active .pricing__toggler--clm1 {
  opacity: 1
}

.pricing__toggler--active .pricing__toggler--clm3 {
  opacity: .6
}

@media only screen and (max-width:767px) {
  .pricing__toggler {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
  }
}

.pricing__toggler--clm1 {
  opacity: .6
}

@media only screen and (max-width:767px) {
  .pricing__toggler--clm1 {
    text-align: right
  }
}

.pricing__toggler--clm3 {
  opacity: 1
}

.pricing__toggler--clm3 span {
  color: #fbd131;
  font-size: 1.6rem;
  font-weight: 700
}

@media only screen and (max-width:767px) {
  .pricing__toggler--clm3 span {
    display: block
  }
}

@media only screen and (max-width:767px) {
  .pricing__toggler--clm3 {
    text-align: left
  }
}

.contact {
  background-color: #b3b3b3;
  padding: 7.8rem 0 3.5rem
}

@media only screen and (max-width:767px) {
  .contact {
    padding: 10rem 0 3.5rem
  }
}

.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative
}

@media only screen and (max-width:767px) {
  .contact__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

.contact__left {
  width: 45%;
  padding-right: 10rem
}

@media only screen and (max-width:767px) {
  .contact__left {
    width: 100%;
    padding: 0;
    z-index: 1
  }
}

.contact__right {
  width: 55%
}

@media only screen and (max-width:767px) {
  .contact__right {
    width: 100%
  }
}

.contact__form-title {
  font-weight: 400;
  margin-bottom: 5rem
}

.contact__scroll-to {
  position: absolute;
  bottom: 0;
  right: 0
}

.contact__mobile-zigzag {
  position: absolute;
  z-index: -1;
  right: 0;
  top: -8rem
}

.contact__visual svg {
  width: 100%;
  height: auto;
  max-width: 80rem
}

.js-kringel-wrap--hidden {
  display: none
}

.footer {
  background-color: #b3b3b3;
  padding: 3.5rem 0
}

@media only screen and (max-width:767px) {
  .footer {
    padding: 3rem 0
  }
}

.footer--404,
.footer--white {
  background-color: transparent
}

.footer--404 {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  position: relative;
  background-color: #2f2f29
}

@media only screen and (max-width:767px) {
  .footer--404 {
    position: relative;
    background-color: #2f2f29
  }
}

.footer--404 .socials__icon svg {
  fill: #fff
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

@media screen and (max-width:1439px) {
  .footer__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

@media only screen and (max-width:767px) {
  .footer__block {
    width: 100%
  }
}

@media screen and (max-width:1439px) {
  .footer__block--nav {
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 2.5rem
  }
}

@media only screen and (max-width:767px) {
  .footer__block--socials {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }
}

@media only screen and (max-width:767px) {
  .footer__block--apps {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 2rem
  }
}

.footer__copyright {
  font-size: 1.2rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: #666
}

@media only screen and (max-width:767px) {
  .footer__copyright {
    font-size: 1rem
  }
}

.footer__gdpr3ico {
  width: 12rem;
  height: 4rem;
  display: block;
  margin-top: .7rem
}

.form {
  opacity: 1;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.form.is-loading {
  opacity: .5;
  pointer-events: none
}

.form__foot {
  margin-top: 3rem
}

.form .form-input-checkbox+.form-input-checkbox {
  margin-top: 1.9rem
}

.form .form-submit,
.form__recaptcha {
  margin-top: 3rem
}

@media only screen and (max-width:767px) {

  .form .form-submit,
  .form__recaptcha {
    margin-top: 2.5rem
  }
}

@media screen and (max-width:340px) {
  .form__recaptcha {
    margin-left: -1rem
  }
}

.textpage {
  padding: 12.5rem 0 0
}

@media only screen and (max-width:767px) {
  .textpage {
    padding: 9.6rem 0 0
  }
}

.textpage .article {
  width: 60%;
  margin-bottom: 6rem
}

@media only screen and (max-width:767px) {
  .textpage .article {
    width: 100%
  }
}

.textpage .article__title {
  margin: 0 0 2.5rem
}

@media only screen and (max-width:767px) {
  .textpage .article__title {
    margin: 0 0 1.4rem
  }
}

.article-page {
  padding: 13.2rem 0 0
}

@media only screen and (max-width:767px) {
  .article-page {
    padding: 8rem 0 0
  }
}

.article-page__top {
  margin-bottom: 6rem
}

.article-page__body {
  padding-bottom: 10rem
}

@media only screen and (max-width:767px) {
  .article-page__body {
    padding-bottom: 4.5rem
  }
}

.article-page__body-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

@media only screen and (max-width:767px) {
  .article-page__body-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

.article-page__left {
  width: 40%;
  padding-right: 3%
}

@media only screen and (max-width:767px) {
  .article-page__left {
    width: 100%;
    padding: 0
  }
}

.article-page__right {
  width: 60%
}

@media only screen and (max-width:767px) {
  .article-page__right {
    margin-top: 3rem;
    width: 100%
  }
}

.article-page .go-back {
  margin-bottom: 6rem
}

@media only screen and (max-width:767px) {
  .article-page .go-back {
    margin-bottom: 5rem
  }
}

.article-page .article__title {
  margin-bottom: 1.5rem
}

.article-page .help-list {
  margin-top: 4rem
}

.article-page__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline
}

.article-page__images img {
  border-radius: 1.6rem
}

.article-page__images img:nth-child(1n) {
  width: 80%;
  margin: 0 0 0 auto
}

@media only screen and (max-width:767px) {
  .article-page__images img:nth-child(1n) {
    margin: 0 auto 0 0
  }
}

.article-page__images img:nth-child(1n)+img {
  margin-top: 6rem
}

@media only screen and (max-width:767px) {
  .article-page__images img:nth-child(1n)+img {
    margin-top: 2rem
  }
}

.article-page__images img:nth-child(2n) {
  width: 60%;
  margin: 0 auto 0 0
}

@media only screen and (max-width:767px) {
  .article-page__images img:nth-child(2n) {
    margin: 0 0 0 auto
  }
}

.article-page__images img:nth-child(2n)+img {
  margin-top: 6rem
}

@media only screen and (max-width:767px) {
  .article-page__images img:nth-child(2n)+img {
    margin-top: 2rem
  }
}

.article__back {
  margin: 0 0 6rem
}

@media only screen and (max-width:767px) {
  .article__back {
    margin: 0 0 5rem
  }
}

.article__time {
  display: block;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #666;
  font-weight: 400;
  margin: 0 0 6rem
}

@media only screen and (max-width:767px) {
  .article__time {
    margin: 0 0 4rem
  }
}

.notfound-page {
  background-color: #2f2f29
}

@media only screen and (max-width:767px) {
  .notfound-page {
    padding: 7rem 0 0;
    min-height: calc(100vh - 26rem)
  }
}

.notfound-page__inner {
  min-height: 60rem;
  height: calc(100vh - 20rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

@media only screen and (max-width:767px) {
  .notfound-page__inner {
    min-height: auto;
    height: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

@media only screen and (min-width:1441px) {
  .notfound-page__inner {
    height: calc(100vh - 13.9rem)
  }
}

.notfound-page__left,
.notfound-page__right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

@media only screen and (max-width:767px) {

  .notfound-page__left,
  .notfound-page__right {
    width: 100%
  }
}

.notfound-page__left {
  padding-right: 10%
}

@media only screen and (max-width:767px) {
  .notfound-page__right {
    padding-top: 3.5rem
  }
}

.notfound-page__right img {
  width: 100%;
  height: auto
}

@media only screen and (max-width:767px) {
  .notfound-page__right img {
    width: 80%;
    -webkit-transform: rotate(13deg);
    transform: rotate(13deg)
  }
}

.notfound-page__subtitle,
.notfound-page__title {
  color: #fff;
  display: block
}

.notfound-page__title {
  font-size: 6.8rem;
  font-weight: 700
}

@media only screen and (max-width:767px) {
  .notfound-page__title {
    font-size: 3.8rem
  }
}

.notfound-page__subtitle {
  font-size: 3.2rem;
  line-height: 4.2rem
}

@media only screen and (max-width:767px) {
  .notfound-page__subtitle {
    font-size: 1.8rem;
    line-height: 2.4rem
  }
}

.notfound-page .go-back {
  margin-top: 1.8rem
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  z-index: -10;
  -webkit-transition: all 1ms ease-in-out;
  transition: all 1ms ease-in-out;
  will-change: visibility;
  display: block;
  overflow: auto;
  -webkit-overflow-scroll: touch
}

.modal--show {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  z-index: 99;
  -webkit-transition: visibility 1ms ease-in-out, z-index 1ms ease-in-out, opacity .3s ease-in-out;
  transition: visibility 1ms ease-in-out, z-index 1ms ease-in-out, opacity .3s ease-in-out
}

.modal__outer {
  position: absolute;
  height: 100%;
  width: 100%
}

.modal__inner {
  padding: 5rem 11rem
}

@media only screen and (max-width:767px) {
  .modal__inner {
    padding: 2rem 3rem;
    height: auto
  }
}

.modal__inner--center-vert {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.modal__close {
  position: absolute;
  top: 5rem;
  right: 11rem;
  cursor: pointer;
  z-index: 5
}

@media only screen and (max-width:767px) {
  .modal__close {
    top: 2rem;
    right: 2rem
  }
}

.modal__close svg {
  stroke: #fbd131;
  height: 3.2rem;
  width: 3.2rem
}

@media only screen and (max-width:767px) {
  .modal__close svg {
    height: 2rem;
    width: 2rem
  }
}

.trial-form {
  max-width: 50rem;
  margin: 0 auto
}

.trial-form__form-title {
  text-align: center;
  margin: 1rem 0 2.5rem
}

@media only screen and (max-width:767px) {
  .trial-form__form-title {
    margin: 3rem 0 2.5rem
  }
}

.trial-form form {
  padding: 0 4rem
}

@media only screen and (max-width:767px) {
  .trial-form form {
    padding: 0
  }
}

.trial-form .form-input input:-webkit-autofill,
.trial-form .form-input input:-webkit-autofill:active,
.trial-form .form-input input:-webkit-autofill:focus,
.trial-form .form-input input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 30px #fff inset !important
}

.video-wrap {
  width: calc(100% - 20rem);
  position: relative;
  margin: auto
}

@media only screen and (max-width:767px) {
  .video-wrap {
    width: 100%
  }
}

@media screen and (max-width:767px)and (orientation:landscape) {
  .video-wrap {
    width: 90%
  }
}

.video-wrap__poster,
.video-wrap video {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.video-wrap__poster {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-position: center;
  object-position: center
}

.video-wrap__play {
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
  transform: translate3d(-50%, -50%, 0) scale(1);
  z-index: 2;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out
}

.video-wrap__play:hover {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1.2);
  transform: translate3d(-50%, -50%, 0) scale(1.2)
}

.video-wrap__play svg circle {
  fill: #fff
}

.video-wrap__play svg path {
  fill: #666
}

.video-wrap.video-is-playing .video-wrap__play,
.video-wrap.video-is-playing .video-wrap__poster {
  display: none
}

.modal .video-wrap {
  text-align: center
}

.modal .video-wrap video {
  width: 100%
}

.form-response {
  text-align: center;
  max-width: 67rem;
  margin: auto
}

.form-response span {
  display: block
}

@media only screen and (max-width:767px) {
  .form-response #response-title {
    font-size: 2.8rem;
    line-height: 3.6rem
  }
}

.form-response span+span {
  margin-top: 2rem
}

.form-response__icon {
  margin-bottom: 5rem
}

.form-response .button {
  margin-top: 7rem
}

@media only screen and (max-width:767px) {
  .form-response .button {
    width: 100%
  }
}

.modal--error .button,
.modal--error .form-response__icon {
  display: none
}

.clients {
  padding: 4rem 0;
  background-color: #fff
}

.clients__body {
  padding: 0 16rem;
  position: relative
}

@media only screen and (max-width:767px) {
  .clients__body {
    padding: 0 6rem
  }
}

.clients__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out
}

.clients__nav:hover {
  opacity: .7
}

.clients__slide {
  height: 6rem;
  text-align: center
}

.clients__slide-logo {
  opacity: .36;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  max-height: 6rem;
  max-width: 16rem;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

@media only screen and (max-width:767px) {
  .clients__slide-logo {
    max-width: 18rem
  }
}

.clients__slide-logo:hover {
  opacity: 1
}

.clients__prev {
  left: 6rem
}

@media only screen and (max-width:767px) {
  .clients__prev {
    left: 1.5rem
  }
}

.clients__next {
  right: 6rem
}

@media only screen and (max-width:767px) {
  .clients__next {
    right: 1.5rem
  }
}

.calculator {
  background-color: #2f2f29;
  padding-top: 10rem
}

@media only screen and (max-width:767px) {
  .calculator {
    padding-top: 4.4rem
  }
}

.calculator__head {
  color: #fff;
  text-align: center;
  margin-bottom: 6rem
}

@media only screen and (max-width:767px) {
  .calculator__head {
    margin-bottom: 3rem
  }
}

.calculator__body {
  background-color: #fff;
  padding: 2.4rem 6rem;
  max-width: 64rem;
  margin: 0 auto
}

@media only screen and (max-width:767px) {
  .calculator__body {
    padding: 1.2rem 2rem
  }
}

.calculator__row {
  padding-bottom: 1.2rem;
  padding-top: 1.2rem
}

.calculator__row--border-b {
  border-bottom: 1px solid #d5d5d5
}

.calculator__row.pb-2 {
  padding-bottom: 2rem
}

.calculator__label {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.2
}

.calculator__input {
  width: 6rem;
  height: 2.8rem;
  padding-top: .3rem;
  border-radius: .8rem;
  border: 2px solid #2f2f29;
  font-family: DM, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2f2f29;
  -webkit-transition: border .15s ease-in-out;
  transition: border .15s ease-in-out;
  caret-color: #2f2f29;
  text-align: center;
  cursor: pointer
}

@media only screen and (max-width:767px) {
  .calculator__input {
    font-size: 1.4rem
  }
}

.calculator__input:active,
.calculator__input:focus,
.calculator__input:hover {
  border-color: #fbd131
}

.calculator__group {
  margin-top: .8rem;
  position: relative
}

.calculator__range-slider {
  margin-top: 1.8rem;
  margin-bottom: 1.8rem
}

.calculator__range-label {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.6rem;
  color: #2f2f29
}

.calculator__text {
  font-size: 1.6rem;
  color: #2f2f29;
  line-height: 1.375
}

@media only screen and (max-width:767px) {
  .calculator__text {
    font-size: 1.4rem;
    text-align: center
  }
}

@media only screen and (max-width:767px) {
  .calculator__text--1 {
    margin-top: .8rem;
    display: inline-block
  }
}

.calculator__text-big {
  font-size: 2.8rem;
  color: #2f2f29;
  line-height: 1.3571428571
}

@media only screen and (max-width:767px) {
  .calculator__text-big {
    font-size: 2.2rem
  }
}

.calculator__results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@media only screen and (max-width:767px) {
  .calculator__results {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.text-center {
  text-align: center
}

.blog-list-page,
.blog-post-page {
  padding: 13.2rem 0 0
}

@media only screen and (max-width:767px) {

  .blog-list-page,
  .blog-post-page {
    padding: 8rem 0 0
  }
}

.page-head {
  margin: 0 0 4rem
}

.page-head__back {
  margin: 0 0 6rem
}

@media only screen and (max-width:767px) {
  .page-head__back {
    margin: 0 0 5rem
  }
}

.page-head__title {
  font-size: 5.4rem;
  line-height: 5.4rem
}

@media only screen and (max-width:767px) {
  .page-head__title {
    font-size: 3.8rem
  }
}

.posts-grid {
  padding-bottom: 12rem
}

@media only screen and (max-width:767px) {
  .posts-grid {
    padding-bottom: 8rem
  }
}

.posts-grid__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 4rem;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
  row-gap: 3.6rem
}

@media only screen and (max-width:767px) {
  .posts-grid__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2rem
  }
}

.posts-grid__pagination {
  margin: 8rem 0 0
}

.post-single {
  width: calc(33.33333% - 2.7rem);
  border-radius: 1.6rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0 3.6rem rgba(0, 0, 0, .08);
  box-shadow: 0 0 3.6rem rgba(0, 0, 0, .08)
}

@media only screen and (max-width:767px) {
  .post-single {
    width: 100%
  }
}

.post-single figure {
  margin: 0
}

.post-single figure img {
  width: 100%;
  height: 27rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

@media only screen and (max-width:767px) {
  .post-single figure img {
    height: 21rem
  }
}

.post-single__text {
  padding: 1.6rem 2.4rem 2.4rem
}

@media only screen and (max-width:767px) {
  .post-single__text {
    padding: 1.5rem 2rem 2rem
  }
}

.post-single h4 {
  color: #666;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin: 0 0 1.6rem
}

@media only screen and (max-width:767px) {
  .post-single h4 {
    font-size: 1.4rem;
    line-height: 2.2rem
  }
}

.post-single h2 {
  color: #2f2f29;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  margin: 0
}

@media only screen and (max-width:767px) {
  .post-single h2 {
    font-size: 1.4rem;
    line-height: 2.2rem
  }
}

.post-single:hover h2 {
  text-decoration: underline;
  text-decoration-thickness: .2rem
}

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

html body #LeadboosterContainer {
  bottom: 8px !important;
}

.scroll-to--to-top {
  bottom: 10rem;
}

.template-page-home {
  background-color: #b3b3b3;
}

.menu__item {
  transform: translate3d(0, 0, 0) !important;
}

.header {
  transform: translate3d(0, 0, 0) !important;
}

html body #LeadboosterContainer {
  bottom: 8px !important;
}

.scroll-to--to-top {
  bottom: 10rem;
}

.template-page-home {
  background-color: #b3b3b3;
}

.menu__item {
  transform: translate3d(0, 0, 0) !important;
}

.header {
  transform: translate3d(0, 0, 0) !important;
}

.stories__slide-logo,
.clients__slide-logo {
  object-fit: contain;
  object-position: center;
}

/* .header__inner {
    height: 11.2rem;
    padding: 0;
    align-items: center;
    transition: height .1s ease-in-out !important;
}
.header__controls {
    align-self: auto;
}

.header.is-shrinked .header__inner {
    height: 7.2rem;
    padding: 0;
}
.logo svg {
    position: absolute;
}
@media only screen and (max-width: 767px) {
    .header__inner {
        padding: 0;
        height: 6.7rem;
    }
    .is-shrinked .header__inner {
        height: 4.7rem;
        padding: 0;
    }
} */