@charset "UTF-8";

/* Utils */

/**
 * Heading styles
 */

/**
 * Paragraph styles
 */

/**
 * Decor
 */

/**
 * Stars
 */

/**
 * List Styling
 */

/**
 * Breakpoints
 */

/**
 * Bootstrap Grid
 */

/**
 * Colors
 */

/**
 * Fonts
 */

/* Vendor */

/*!
 * Bootstrap Grid v5.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1170px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */

@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 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

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

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

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

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

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

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

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

/* Auto Height */

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

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

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

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

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

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

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

/* CSS Mode */

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

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

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

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

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

/* 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;
}

/* Base */

*,
::after,
::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*:focus {
  outline: none;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  min-height: 100%;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

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

p {
  margin: 0;
}

abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  overflow: auto;
}

figure {
  margin: 0;
}

img {
  border-style: none;
}

svg {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin: 0;
}

button {
  border-radius: 0;
}

button:focus {
  outline: none;
}

button,
input,
optgroup,
select,
textarea {
  border-radius: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

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

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

ul,
ol {
  list-style: none;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
}

a {
  transition: all ease 0.2s;
}

a:hover {
  text-decoration: none;
}

input,
button,
textarea {
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
}

input,
textarea {
  appearance: none;
}

input:focus,
textarea:focus {
  outline: none;
}

button:focus {
  outline: none;
}

html,
body {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}

body {
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Kumbh Sans";
  color: #06221E;
}

::placeholder {
  color: rgba(2, 72, 64, 0.2);
}

.-bg-gray {
  background: #F8F8F8;
}

.-bg-green {
  background: #024840;
}

.subtitle {
  line-height: 150%;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #AC8EFF;
  margin-bottom: 8px;
}

.subtitle.-green {
  color: #024840;
}

.subtitle.-white {
  color: #fff;
}

.subtitle.-neon {
  color: #E4FD6F;
}

.subtitle.-grey {
  color: #919392;
}

p {
  line-height: 150%;
  font-size: 20px;
  margin-bottom: 30px;
}

p:last-child {
  margin-bottom: 0;
}

p a {
  color: #AC8EFF;
  text-decoration: underline;
}

p a:hover {
  text-decoration: none;
}

h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 64px;
  line-height: 135%;
  letter-spacing: -0.02em;
}

h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

h3 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
}

h4 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 30px;
}

h5 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 26px;
}

h6 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 22px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #AC8EFF;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #024840;
}

ul.checklist {
  margin-left: 0 !important;
}

ul.checklist li {
  line-height: 150%;
  font-size: 18px;
  position: relative;
  padding-left: 25px;
}

ul.checklist li:not(:last-child) {
  margin-bottom: 24px;
}

ul.checklist li:before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icons/check-purple.svg) no-repeat center/100%;
  top: 5px;
  left: 0;
}

ul.checklist li {
  list-style: none;
}

.slider-button:disabled {
  opacity: 0.3;
}

.slider-button.-prev svg {
  transform: rotate(-180deg);
}

.slider-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-pagination span {
  width: 12px;
  height: 12px;
  background: #e3ede2;
  border-radius: 50%;
  margin: 0px 8px;
  cursor: pointer;
}

.slider-pagination span.swiper-pagination-bullet-active {
  background: #024840;
}

img {
  height: auto;
}

a#wt-cli-accept-btn {
  border-radius: 100px !important;
}

.cli-bar-message a {
  color: #fff;
  text-decoration: underline;
}

.cli-bar-message a:hover {
  text-decoration: none;
}

.fslightbox-container video {
  width: 100% !important;
}

.country-selector {
  z-index: 1 !important;
}

.country-selector a:hover {
  color: #AC8EFF !important;
}

html[lang=nl] .lang-en,
html[lang=nl] span.lang-en,
html[lang=nl] .lang-de,
html[lang=nl] span.lang-de,
html[lang=nl] .lang-fr,
html[lang=nl] span.lang-fr,
html[lang=nl] .lang-es,
html[lang=nl] span.lang-es,
html[lang=nl] .lang-it,
html[lang=nl] span.lang-it,
html[lang=nl] .lang-pl,
html[lang=nl] span.lang-pl,
html[lang=nl] .lang-pt,
html[lang=nl] span.lang-pt,
html[lang=nl] .lang-pt-br,
html[lang=nl] span.lang-pt-br {
  display: none !important;
}

html[lang=en-US] .lang-nl,
html[lang=en-US] span.lang-nl,
html[lang=en-US] .lang-de,
html[lang=en-US] span.lang-de,
html[lang=en-US] .lang-fr,
html[lang=en-US] span.lang-fr,
html[lang=en-US] .lang-es,
html[lang=en-US] span.lang-es,
html[lang=en-US] .lang-it,
html[lang=en-US] span.lang-it,
html[lang=en-US] .lang-pl,
html[lang=en-US] span.lang-pl,
html[lang=en-US] .lang-pt,
html[lang=en-US] span.lang-pt,
html[lang=en-US] .lang-pt-br,
html[lang=en-US] span.lang-pt-br {
  display: none !important;
}

html[lang=en] .lang-nl,
html[lang=en] span.lang-nl,
html[lang=en] .lang-de,
html[lang=en] span.lang-de,
html[lang=en] .lang-fr,
html[lang=en] span.lang-fr,
html[lang=en] .lang-es,
html[lang=en] span.lang-es,
html[lang=en] .lang-it,
html[lang=en] span.lang-it,
html[lang=en] .lang-pl,
html[lang=en] span.lang-pl,
html[lang=en] .lang-pt,
html[lang=en] span.lang-pt,
html[lang=en] .lang-pt-br,
html[lang=en] span.lang-pt-br {
  display: none !important;
}

html[lang=de] .lang-en,
html[lang=de] span.lang-en,
html[lang=de] .lang-nl,
html[lang=de] span.lang-nl,
html[lang=de] .lang-fr,
html[lang=de] span.lang-fr,
html[lang=de] .lang-es,
html[lang=de] span.lang-es,
html[lang=de] .lang-it,
html[lang=de] span.lang-it,
html[lang=de] .lang-pl,
html[lang=de] span.lang-pl,
html[lang=de] .lang-pt,
html[lang=de] span.lang-pt,
html[lang=de] .lang-pt-br,
html[lang=de] span.lang-pt-br {
  display: none !important;
}

html[lang=fr] .lang-en,
html[lang=fr] span.lang-en,
html[lang=fr] .lang-nl,
html[lang=fr] span.lang-nl,
html[lang=fr] .lang-de,
html[lang=fr] span.lang-de,
html[lang=fr] .lang-es,
html[lang=fr] span.lang-es,
html[lang=fr] .lang-it,
html[lang=fr] span.lang-it,
html[lang=fr] .lang-pl,
html[lang=fr] span.lang-pl,
html[lang=fr] .lang-pt,
html[lang=fr] span.lang-pt,
html[lang=fr] .lang-pt-br,
html[lang=fr] span.lang-pt-br {
  display: none !important;
}

html[lang=es] .lang-en,
html[lang=es] span.lang-en,
html[lang=es] .lang-nl,
html[lang=es] span.lang-nl,
html[lang=es] .lang-de,
html[lang=es] span.lang-de,
html[lang=es] .lang-fr,
html[lang=es] span.lang-fr,
html[lang=es] .lang-it,
html[lang=es] span.lang-it,
html[lang=es] .lang-pl,
html[lang=es] span.lang-pl,
html[lang=es] .lang-pt,
html[lang=es] span.lang-pt,
html[lang=es] .lang-pt-br,
html[lang=es] span.lang-pt-br {
  display: none !important;
}

html[lang=it] .lang-en,
html[lang=it] span.lang-en,
html[lang=it] .lang-nl,
html[lang=it] span.lang-nl,
html[lang=it] .lang-de,
html[lang=it] span.lang-de,
html[lang=it] .lang-fr,
html[lang=it] span.lang-fr,
html[lang=it] .lang-es,
html[lang=it] span.lang-es,
html[lang=it] .lang-pl,
html[lang=it] span.lang-pl,
html[lang=it] .lang-pt,
html[lang=it] span.lang-pt,
html[lang=it] .lang-pt-br,
html[lang=it] span.lang-pt-br {
  display: none !important;
}

html[lang=pl] .lang-en,
html[lang=pl] span.lang-en,
html[lang=pl] .lang-nl,
html[lang=pl] span.lang-nl,
html[lang=pl] .lang-de,
html[lang=pl] span.lang-de,
html[lang=pl] .lang-fr,
html[lang=pl] span.lang-fr,
html[lang=pl] .lang-es,
html[lang=pl] span.lang-es,
html[lang=pl] .lang-it,
html[lang=pl] span.lang-it,
html[lang=pl] .lang-pt,
html[lang=pl] span.lang-pt,
html[lang=pl] .lang-pt-br,
html[lang=pl] span.lang-pt-br {
  display: none !important;
}

html[lang=pt] .lang-en,
html[lang=pt] span.lang-en,
html[lang=pt] .lang-nl,
html[lang=pt] span.lang-nl,
html[lang=pt] .lang-de,
html[lang=pt] span.lang-de,
html[lang=pt] .lang-fr,
html[lang=pt] span.lang-fr,
html[lang=pt] .lang-es,
html[lang=pt] span.lang-es,
html[lang=pt] .lang-it,
html[lang=pt] span.lang-it,
html[lang=pt] .lang-pl,
html[lang=pt] span.lang-pl,
html[lang=pt] .lang-pt-br,
html[lang=pt] span.lang-pt-br {
  display: none !important;
}

html[lang=pt-br] .lang-en,
html[lang=pt-br] span.lang-en,
html[lang=pt-br] .lang-nl,
html[lang=pt-br] span.lang-nl,
html[lang=pt-br] .lang-de,
html[lang=pt-br] span.lang-de,
html[lang=pt-br] .lang-fr,
html[lang=pt-br] span.lang-fr,
html[lang=pt-br] .lang-es,
html[lang=pt-br] span.lang-es,
html[lang=pt-br] .lang-it,
html[lang=pt-br] span.lang-it,
html[lang=pt-br] .lang-pl,
html[lang=pt-br] span.lang-pl,
html[lang=pt-br] .lang-pt,
html[lang=pt-br] span.lang-pt {
  display: none !important;
}

/* Only display on NL */

.weglot-only-nl {
  display: none !important;
}

html[lang=nl] .weglot-only-nl {
  display: block !important;
}

/* Display everywhere except NL */

.weglot-except-nl {
  display: block !important;
}

html[lang=nl] .weglot-except-nl {
  display: none !important;
}

.pricing-plans-card-info p.monthly {
  display: none;
}

.pricing-plans-card-info p.yearly {
  display: block;
}

.wg-default,
.wg-default .country-selector {
  top: 0px;
  bottom: 100% !important;
  z-index: 9999;
}

/* Components */

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: currentColor;
}

.hamburger-box {
  width: 34px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 34px;
  height: 3px;
  background-color: currentColor;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -9px;
}

.hamburger-inner::after {
  bottom: -9px;
}

/*
 * Spin
 */

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn {
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  transition: 0.2s;
  cursor: pointer;
  gap: 16px;
  line-height: 150%;
  font-size: 16px;
}

.btn:disabled,
.btn.-disabled {
  cursor: inherit;
  pointer-events: none;
}

.btn.-xl {
  line-height: 150%;
  font-size: 20px;
}

.btn.-xl svg {
  min-width: 24px;
  width: 24px;
  height: 24px;
}

.btn.-lg {
  line-height: 150%;
  font-size: 18px;
}

.btn.-lg svg {
  min-width: 18px;
  width: 18px;
  height: 18px;
}

.btn.-sm {
  line-height: 150%;
  font-size: 12px;
}

.btn.-sm svg {
  min-width: 18px;
  width: 18px;
  height: 18px;
}

.btn.-filled,
.btn.-bordered {
  padding: 16px;
  border-radius: 100px;
}

.btn.-filled.-neon {
  color: #06221E;
  background: #E4FD6F;
}

.btn.-filled.-neon:hover {
  color: #fff;
  background: #AC8EFF;
}

.btn.-filled.-green {
  color: #fff;
  background: #024840;
}

.btn.-filled.-green:hover {
  background: #AC8EFF;
}

.btn.-filled.-light-green {
  color: #06221E;
  background: #e3ede2;
}

.btn.-filled.-light-green:hover {
  color: #fff;
  background: #024840;
}

.btn.-filled.-white {
  color: #06221E;
  background: #fff;
}

.btn.-filled.-white:hover {
  color: #fff;
  background: #AC8EFF;
}

.btn.-filled.-purple {
  color: #fff;
  background: #AC8EFF;
}

.btn.-filled.-purple:hover {
  color: #06221E;
  background: #E4FD6F;
}

.btn.-bordered.-green {
  color: #024840;
  box-shadow: inset 0 0 0 1px currentColor;
}

.btn.-bordered.-green:hover {
  color: #fff;
  box-shadow: inset 0 0 0 1px #AC8EFF;
  background: #AC8EFF;
}

.btn.-bordered.-white {
  color: #fff;
  box-shadow: inset 0 0 0 1px currentColor;
}

.btn.-bordered.-white:hover {
  color: #fff;
  box-shadow: inset 0 0 0 1px #AC8EFF;
  background: #AC8EFF;
}

.btn.-bordered.-white:not(:hover) svg {
  fill: #E4FD6F;
}

.btn.-bordered.-purple {
  color: #AC8EFF;
  box-shadow: inset 0 0 0 1px currentColor;
}

.btn.-bordered.-purple:hover {
  color: #06221E;
  box-shadow: inset 0 0 0 1px #E4FD6F;
  background: #E4FD6F;
}

.btn:not(.-filled, .-bordered).-dark {
  color: #06221E;
}

.btn:not(.-filled, .-bordered).-dark:hover {
  color: #AC8EFF;
}

.btn:not(.-filled, .-bordered).-green {
  color: #024840;
}

.btn:not(.-filled, .-bordered).-green:hover {
  color: #AC8EFF;
}

.btn:not(.-filled, .-bordered).-white {
  color: #fff;
}

.btn:not(.-filled, .-bordered).-white:hover {
  color: #AC8EFF;
}

.btn:not(.-filled, .-bordered).-white:not(:hover) svg {
  fill: #E4FD6F;
}

.btn:not(.-filled, .-bordered).-neon {
  color: #E4FD6F;
}

.btn:not(.-filled, .-bordered).-neon:hover {
  color: #AC8EFF;
}

.btn:not(.-filled, .-bordered).-purple {
  color: #AC8EFF;
}

.btn:not(.-filled, .-bordered).-purple:hover {
  color: #E4FD6F;
}

.btn svg {
  min-width: 22px;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.btn.-single-button {
  padding-left: 72px !important;
  padding-right: 72px !important;
}

.reviews-stat {
  display: flex;
  align-items: center;
  color: #395450;
  line-height: 150%;
  font-size: 14px;
}

.reviews-stat img {
  height: 24px;
  margin-right: 15px;
}

.reviews-stat-stars {
  display: grid;
  grid-template-columns: repeat(5, 15px);
  grid-template-rows: 15px;
  gap: 3px;
  margin: 0px 10px;
}

.reviews-stat-stars svg {
  fill: #FAC408;
  width: 100%;
  height: 100%;
}

.card {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #06221E;
  padding: 20px 0px 30px;
}

.card:hover:before {
  opacity: 1;
}

.card:hover .btn {
  opacity: 1;
}

.card:before {
  display: block;
  content: "";
  height: 100%;
  background: #E4FD6F;
  width: calc(100% + 40px);
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  pointer-events: none;
  border-radius: 20px;
  opacity: 0;
  transition: 0.2s;
}

.card > * {
  position: relative;
}

.card-photo {
  height: 240px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
}

.card-photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-photo-no-thumb {
  background-color: #024840;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-photo-no-thumb svg {
  width: 190px;
  max-width: 100%;
  height: auto;
  fill: #fff;
}

.card .subtitle {
  line-height: 150%;
  font-size: 18px;
  letter-spacing: 0;
}

.card p {
  margin-bottom: 0;
  margin-top: 13px;
  line-height: 150%;
  font-size: 18px;
}

.card .btn {
  margin-top: 15px;
  align-self: start;
  opacity: 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination a.next,
.pagination a.prev {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #06221E;
  background: #fff;
  border-radius: 6px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  width: 100% !important;
}

.pagination a.next:hover,
.pagination a.prev:hover {
  color: #06221E;
  background: #E4FD6F;
}

.pagination a.prev:before {
  display: block;
  content: "";
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  padding: 2.5px;
  transform: translateY(0px) rotate(135deg);
  margin-right: 10px;
}

.pagination a.next:after {
  display: block;
  content: "";
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  padding: 2.5px;
  transform: translateY(0px) rotate(-45deg);
  margin-left: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  margin: 0px 15px;
}

.nav-links span:not(.dots),
.nav-links a {
  display: flex;
  font-weight: 600;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  line-height: 24px;
  text-align: center;
  color: #06221E;
  padding: 10px 17px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #06221E;
  background: #fff;
  border-radius: 6px;
  transition: 0.2s;
}

.nav-links span:not(.dots):not(:last-child),
.nav-links a:not(:last-child) {
  margin-right: 15px;
}

.nav-links span:not(.dots):hover,
.nav-links a:hover {
  color: #06221E;
  background: #E4FD6F;
}

.nav-links span.dots {
  margin-right: 10px;
}

.nav-links span.current {
  color: #fff;
  background: #024840;
  pointer-events: none;
}

.gform_body {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
}

.gform_body label {
  line-height: 150%;
  font-size: 14px;
  align-self: start;
  margin-left: 10px;
  margin-bottom: 7px;
}

.gform_body input,
.gform_body textarea,
.gform_body select {
  display: block;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(2, 72, 64, 0.2);
  border-radius: 100px;
  font-weight: 600;
  font-size: 20px;
  line-height: 31px;
  padding: 16px 24px;
  color: #024840;
  transition: 0.2s;
  margin-bottom: 25px;
  width: 100%;
  border: none;
}

.gform_body input:focus,
.gform_body textarea:focus,
.gform_body select:focus {
  box-shadow: 0 0 0 1px #024840;
}

.gform_body select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg fill='024840' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 97%;
  background-position-y: 20px;
}

.gform_body textarea {
  border-radius: 15px;
  height: 220px;
  resize: none;
}

.gform_body .gfield_label {
  font-size: 18px;
  margin-bottom: 5px;
}

.gform_body span.gfield_required.gfield_required_text {
  color: #AC8EFF;
  font-size: 12px;
  margin-left: 5px;
}

.gform_footer input[type=submit] {
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  transition: 0.2s;
  cursor: pointer;
  gap: 16px;
  line-height: 150%;
  font-size: 16px;
  color: #06221E;
  background: #E4FD6F;
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 100px;
  font-size: 20px;
}

.gform_footer input[type=submit]:hover {
  color: #fff;
  background: #AC8EFF;
}

.gform_submission_error {
  color: red;
  font-size: 20px;
  font-weight: bold;
}

.gfield_validation_message {
  color: red;
  margin-top: -15px;
  margin-bottom: 15px;
}

.gfield_error input {
  box-shadow: 0 0 0 1px red;
}

.checkbox,
.ginput_container_consent,
.gchoice {
  display: flex;
  cursor: pointer;
  user-select: none;
}

.checkbox label,
.ginput_container_consent label,
.gchoice label {
  margin-left: 3px;
  font-size: 16px;
}

.checkbox label a,
.ginput_container_consent label a,
.gchoice label a {
  color: #024840;
  text-decoration: underline;
}

.checkbox label a:hover,
.ginput_container_consent label a:hover,
.gchoice label a:hover {
  text-decoration: none;
}

.checkbox input,
.ginput_container_consent input,
.gchoice input {
  position: relative;
  background: #fff;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  min-width: 15px;
  border: 1px solid #024840;
  border-radius: 5px;
  padding: 0 0 0 0;
  border: none;
  margin-right: 8px;
}

.checkbox input:checked,
.ginput_container_consent input:checked,
.gchoice input:checked {
  background: #024840 url(../img/icons/check-white.svg) no-repeat center/60%;
}

.checkbox input[type=radio],
.ginput_container_consent input[type=radio],
.gchoice input[type=radio] {
  border-radius: 100px;
}

.checkbox p,
.checkbox span,
.ginput_container_consent p,
.ginput_container_consent span,
.gchoice p,
.gchoice span {
  line-height: 150%;
  font-size: 16px;
  margin: 0;
}

.checkbox p a,
.ginput_container_consent p a,
.gchoice p a {
  font-weight: 600;
  color: #06221E;
}

.checkbox span,
.ginput_container_consent span,
.gchoice span {
  line-height: 150%;
  font-size: 14px;
  margin-top: 3px;
  color: #919392;
}

.ginput_container_consent,
.ginput_container_checkbox,
.ginput_container_radio {
  margin-bottom: 15px;
}

.radio {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  user-select: none;
}

.radio input {
  display: none;
}

.radio input:checked + div {
  border: 4px solid #024840;
}

.radio div {
  background: #fff;
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  min-width: 15px;
  border: 1px solid #6B807D;
  border-radius: 50%;
}

.radio p,
.radio span {
  line-height: 150%;
  font-size: 16px;
  margin: 0;
}

.radio p a {
  font-weight: 600;
  color: #06221E;
}

.radio span {
  line-height: 150%;
  font-size: 14px;
  margin-top: 3px;
  color: #919392;
}

.typ-slider {
  width: 100%;
}

.typ-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.typ-slider-nav .slider-pagination {
  margin: 0px 24px;
}

.typ-slider-nav .slider-button {
  padding: 12px !important;
}

.typ-slider-nav .slider-button.-prev svg {
  transform: rotate(90deg);
}

.typ-slider-nav .slider-button.-next svg {
  transform: rotate(-90deg);
}

.typ-slider-nav .slider-button svg {
  width: 12px;
  min-width: 12px;
  height: 12px;
}

.typ-slider-photo {
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding-bottom: 75%;
}

.typ-slider-photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tooltip {
  position: relative;
  display: flex;
  align-items: center;
}

.tooltip svg {
  width: 16px;
  height: 16px;
  fill: rgba(2, 72, 64, 0.4);
  transition: 0.2s;
  cursor: pointer;
}

.tooltip svg:hover {
  fill: #024840;
}

.tooltip svg:hover + .tooltip-info {
  opacity: 1;
  visibility: visible;
}

.tooltip-info {
  position: absolute;
  transform: translate(-50%, -100%);
  left: 50%;
  top: -8px;
  background: #fff;
  border-radius: 12px;
  line-height: 150%;
  font-size: 16px;
  text-align: center;
  min-width: 175px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  padding: 8px;
  pointer-events: none;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  z-index: 50;
}

.text-spinner {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  padding-right: 20px;
}

.text-spinner span:not(.-placeholder) {
  position: absolute;
  left: 0;
}

.text-spinner span.-placeholder {
  opacity: 0;
}

.text-spinner span.top {
  opacity: 0;
  transform: translateY(-110%);
  transition: 0.25s ease-in-out;
}

.text-spinner span.center {
  transform: translateY(0);
  transition: 0.25s ease-in-out;
}

.text-spinner span.bottom {
  opacity: 0;
  transform: translateY(110%);
}

/* Layout */

.topbar {
  background: #0e2c28;
  padding: 8px 0;
  position: relative;
  z-index: 1000;
  height: 40px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-reviews {
  display: flex;
  align-items: center;
}

.topbar-reviews img {
  width: 20px;
  margin-right: 7px;
}

.topbar-reviews svg {
  width: 15px;
  height: 15px;
  fill: #FAC408;
  margin-right: 6px;
}

.topbar-reviews a {
  line-height: 150%;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.topbar-platforms {
  display: flex;
  align-items: center;
  margin-left: 45px;
}

.topbar-platforms ul {
  display: flex;
  align-items: center;
}

.topbar-platforms ul li {
  display: flex;
  align-items: center;
}

.topbar-platforms ul li:not(:last-child) {
  margin-right: 10px;
}

.topbar-platforms ul li a {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  display: flex;
  align-items: center;
}

.topbar-platforms ul li svg,
.topbar-platforms ul li img {
  width: 18px;
  height: 18px;
  fill: #E4FD6F;
}

.topbar-platforms a {
  line-height: 150%;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-left: 15px;
}

.topbar .btn {
  margin-left: auto;
}

.header {
  z-index: 900;
  position: relative;
}

.header.-dark {
  color: #fff;
  --rgb-color-numbers: 255, 255, 255;
}

.header.-dark .header-inner:before {
  background: #024840;
}

.header.-dark .header-logo {
  color: #E4FD6F;
}

.header.-dark .header-login {
  box-shadow: inset 0 0 0 1px #fff;
}

.header.-dark .header-login:hover {
  box-shadow: inset 0 0 0 1px #AC8EFF;
}

.header.-dark .header-menu ul li a:hover {
  color: #AC8EFF !important;
}

.header.-light {
  --rgb-color-numbers: 6, 34, 30;
}

.header.-light .header-inner:before {
  background: #fff;
}

.header.-light .header-logo {
  color: #024840;
}

.header.-light .header-login {
  box-shadow: inset 0 0 0 1px rgba(6, 34, 30, 0.1);
}

.header.-light .header-login:hover {
  box-shadow: inset 0 0 0 1px rgba(172, 142, 255, 0.4);
}

.header.-light .header-menu ul li a:hover {
  color: #AC8EFF !important;
}

.header.-fixed {
  position: sticky;
  top: 0;
  animation: showIn 420ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header.-fixed .header-inner:before {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 20px 20px;
  max-width: 1340px;
  transform: translateX(-50%);
  left: 50%;
}

.header.-fixed.-dismiss-nav {
  animation: showOut 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-inner {
  padding: 16px 0;
  position: relative;
}

.header-inner:before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 110%;
  max-width: 100%;
  height: 100%;
  pointer-events: none;
}

.header-inner > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-logo {
  position: relative;
  z-index: 950;
  display: flex;
  align-items: center;
}

.header-logo svg {
  width: 140px;
  height: 30px;
  fill: currentColor;
}

.header-nav {
  margin-left: 48px;
  width: 100%;
}

.header-nav > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-nav > .container > ul {
  display: flex;
  align-items: center;
}

.header-nav > .container > ul > li {
  display: flex;
  align-items: center;
  transition: 0.2s;
  color: currentColor;
}

.header-nav > .container > ul > li:hover a:hover {
  color: #AC8EFF;
}

.header-nav > .container > ul > li:hover a:hover span,
.header-nav > .container > ul > li:hover a:hover p {
  color: #024840;
}

.header-nav > .container > ul > li:not(:last-child) {
  margin-right: 40px;
}

.header-nav > .container > ul > li.menu-item-has-children:after {
  margin-left: 10px;
  display: block;
  content: "";
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: translateY(0px) rotate(45deg);
  transition: transform 0.2s;
  will-change: transform;
}

.header-nav > .container > ul > li.has-menu {
  position: relative;
}

.header-nav > .container > ul > li.has-menu-with-cta {
  position: relative;
}

.header-nav > .container > ul > li > a {
  transition: 0s;
  color: currentColor;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: block;
  position: relative;
}

.header-nav > .container > ul > li > a:after {
  display: block;
  content: "";
  width: 26px;
  height: 10px;
  background: url(../img/icons/nav-triangle.svg) no-repeat center center/100%;
  position: absolute;
  transform: translateX(-50%);
  left: calc(50% + 8px);
  bottom: -30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s;
  z-index: 951;
}

.header-nav .btn {
  padding-left: 50px;
  padding-right: 50px;
  gap: 10px;
}

.header-menu {
  min-width: 100%;
  order: 1;
}

.header-menu ul li {
  display: flex;
  align-items: center;
}

.header-menu ul li:not(:last-child) {
  margin-bottom: 24px;
}

.header-menu ul li a {
  line-height: 150%;
  font-size: 18px;
  transition: 0.2s;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  color: #06221E;
}

.header-menu ul li a:after {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/icons/long-arrow-green.svg) no-repeat center/100%;
  transition: 0.2s;
  opacity: 0;
  margin-left: 8px;
  transform: translateX(-5px);
}

.header-menu-with-cta {
  min-width: 100%;
  order: 1;
}

.header-menu-with-cta > ul li {
  display: flex;
  align-items: center;
}

.header-menu-with-cta > ul li a {
  line-height: 150%;
  font-size: 18px;
  transition: 0.2s;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  color: #06221E;
  padding: 12px 16px;
}

.header-menu-with-cta > ul li a:after {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/icons/long-arrow-green.svg) no-repeat center/100%;
  transition: 0.2s;
  opacity: 0;
  margin-left: 8px;
  transform: translateX(-5px);
}

.header-menu-cta {
  background: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  color: #06221E;
  padding: 24px;
  position: relative;
}

.header-menu-cta p {
  line-height: 150%;
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 0;
}

.header-menu-cta ul {
  margin-top: 16px;
  max-width: 70%;
}

.header-menu-cta ul li {
  line-height: 150%;
  font-size: 18px;
  position: relative;
  padding-left: 25px;
}

.header-menu-cta ul li:not(:last-child) {
  margin-bottom: 24px;
}

.header-menu-cta ul li:before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icons/check-purple.svg) no-repeat center/100%;
  top: 5px;
  left: 0;
}

.header-menu-cta ul li:not(:last-child) {
  margin-bottom: 8px;
}

.header-menu-cta .btn {
  margin-top: 17px;
}

.header-menu-cta img {
  position: absolute;
  right: -9px;
  bottom: -22px;
  width: 170px;
}

.header-big-menu {
  order: 1;
}

.header-big-menu-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 140px;
}

.header-big-menu .subtitle {
  margin-bottom: 24px;
}

.header-big-menu-items {
  display: grid;
  grid-template-columns: 328px 328px;
  gap: 32px 96px;
}

.header-big-menu-items li {
  display: flex;
  align-items: center;
}

.header-big-menu-items li a {
  position: relative;
  display: flex;
  align-items: center;
  color: #06221E;
}

.header-big-menu-items li a:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  opacity: 0;
  transition: 0.2s;
}

.header-big-menu-items li a:hover {
  color: #024840;
}

.header-big-menu-items li a span {
  position: relative;
  line-height: 150%;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  color: currentColor;
}

.header-big-menu-items li a span:after {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/icons/long-arrow-green.svg) no-repeat center/100%;
  transition: 0.2s;
  opacity: 0;
  margin-left: 8px;
  transform: translateX(-5px);
}

.header-big-menu-items li a p {
  line-height: 150%;
  font-size: 16px;
  position: relative;
  color: currentColor;
  opacity: 0.6;
  margin-top: 3px;
}

.header-big-menu-items li.neon .header-big-menu-ico {
  background: #E4FD6F;
}

.header-big-menu-items li.neon:hover .header-big-menu-ico {
  background: #024840;
}

.header-big-menu-items li.neon:hover .header-big-menu-ico img {
  filter: brightness(0) saturate(100%) invert(97%) sepia(53%) saturate(958%) hue-rotate(11deg) brightness(93%) contrast(114%);
  width: 60%;
  height: 60%;
  transition: 0.2s;
}

.header-big-menu-ico {
  position: relative;
  background: #024840;
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 23px;
  transition: 0.2s;
}

.header-big-menu-ico svg,
.header-big-menu-ico img {
  filter: brightness(0) saturate(100%) invert(97%) sepia(53%) saturate(958%) hue-rotate(11deg) brightness(93%) contrast(114%);
  width: 60%;
  height: 60%;
  transition: 0.2s;
}

.header-big-menu-ico img.neon {
  filter: brightness(0) saturate(100%) invert(19%) sepia(60%) saturate(594%) hue-rotate(124deg) brightness(102%) contrast(100%);
}

.header-big-menu-contacts ul li {
  display: flex;
  align-items: center;
}

.header-big-menu-contacts ul li:not(:last-child) {
  margin-bottom: 24px;
}

.header-big-menu-contacts ul li a {
  line-height: 150%;
  font-size: 18px;
  font-weight: 600;
  color: #06221E;
  display: flex;
  align-items: center;
}

.header-big-menu-contacts ul li a:hover {
  color: #AC8EFF !important;
}

.header-big-menu-contacts ul li a svg {
  width: 16px;
  height: 16px;
  fill: #024840;
  margin-right: 12px;
}

.header-big-menu-products span {
  font-size: 17px;
  margin-bottom: 20px;
  display: block;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 20px;
}

.header-big-menu-products ul li {
  margin-bottom: 10px;
}

.header-big-menu-products ul li a {
  line-height: 150%;
  font-size: 18px;
  font-weight: 600;
  color: #06221E;
  display: flex;
  align-items: center;
}

.header-big-menu-products ul li a:hover {
  color: #AC8EFF !important;
}

.header-big-menu-products.-right ul {
  margin-bottom: 40px;
}

.header-big-menu-products.-right ul li {
  padding-right: 10px;
}

.header-big-menu-products.-right ul li:first-child {
  display: flex;
  margin-bottom: 15px;
  margin-left: 0;
}

.header-big-menu-products.-right ul li:first-child img {
  width: 22px;
  height: 22px;
  margin-right: 15px;
}

.header-big-menu-products.-right ul li:first-child a {
  font-weight: 600;
}

.header-big-menu-products.-right ul li a {
  font-weight: 400;
}

.header-login {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  padding: 16px 30px;
  border-radius: 100px;
  margin-left: auto;
  margin-right: 14px;
}

.header-login:hover {
  color: #fff;
  box-shadow: inset 0 0 0 1px #AC8EFF;
  background: #AC8EFF;
}

.header-login svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  margin-right: 8px;
}

.header .hamburger {
  position: relative;
  z-index: 950;
  margin-left: auto;
}

@keyframes slide-in--down {
  0% {
    transform: translateY(-120%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slide-out--up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-120%);
  }
}

.header-nav li.active a {
  padding-bottom: 2px;
  border-bottom: 2px solid #AC8EFF;
  margin-top: 4px;
}

@keyframes showIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes showOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.topbar-popup {
  background: #e3ede2;
  max-height: 800px;
}

.topbar-popup .image img {
  height: 100% !important;
  width: auto !important;
  float: right;
  margin-right: 30px;
}

.topbar-popup h3 {
  padding: 0px 0px 10px 0px;
}

.popup-button {
  color: #fff;
  background-color: #024840;
}

.close-button {
  position: absolute;
  top: 30px;
  right: 20px;
}

.popup-content {
  display: flex;
}

.popup-content .image {
  flex: 1;
  border-radius: 50%;
  overflow: hidden;
}

.popup-content .text {
  flex: 2;
}

.topbar-popup .container {
  padding: 20px;
}

.slow-hide {
  /*  transition-property: height, margin, padding;*/
  transition-duration: 350ms;
  box-sizing: border-box;
  max-height: 0px;
  overflow: hidden;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.hero {
  background: #024840;
  position: relative;
}

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

.hero.-centered .hero-actions {
  justify-content: center;
}

.hero.-decor {
  overflow: hidden;
}

.hero.-decor:before,
.hero.-decor:after {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  width: 218px;
  height: 450px;
  border-color: rgba(228, 253, 111, 0.1);
  border-width: 85px;
}

.hero.-decor:before {
  transform: translateY(-50%) scale(-1);
  left: 0;
  top: 0;
}

.hero.-decor:after {
  right: 0;
  bottom: 0;
  transform: translateY(65%);
}

.hero .container {
  position: relative;
}

.hero-info {
  color: #fff;
}

.hero-info > p {
  line-height: 150%;
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 0;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hero-actions p {
  line-height: 150%;
  font-size: 16px;
  opacity: 0.6;
  text-align: center;
  margin-top: 8px;
}

.hero-video {
  position: relative;
  max-width: 555px;
  height: 360px;
  display: block;
  margin-left: auto;
  width: 550px;
}

.hero-video:before,
.hero-video:after {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  width: 104px;
  height: 208px;
  border-width: 40px;
}

.hero-video:before {
  border-color: #AC8EFF;
  top: 0;
  left: 0;
  transform: translateX(-50%) rotate(45deg);
}

.hero-video:after {
  border-color: #E4FD6F;
  bottom: 0;
  right: 40px;
  transform: translateY(50%) rotate(-135deg);
}

.hero-video img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11.25px;
  z-index: 10;
}

.hero-video svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #fff;
  width: 80px;
  height: 80px;
  z-index: 20;
}

.hero .hero-trusted {
  margin-top: 60px;
}

.hero .hero-trusted span {
  color: #fff;
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
}

.hero .hero-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero .hero-logos img,
.hero .hero-logos svg {
  height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.video-play {
  margin-left: 40px;
  margin-top: 10px;
}

.trial-offer {
  background: #E4FD6F;
  overflow: hidden;
  position: relative;
  padding: 100px 0;
}

.trial-offer:before {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  width: 412px;
  height: 857px;
  border-width: 155px;
  border-color: #48726e;
  opacity: 0.1;
  transform: scaleX(-1);
  top: 130px;
  left: -75px;
}

.trial-offer .container {
  position: relative;
}

.trial-offer-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  background: #E4FD6F;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trial-offer-icon svg {
  width: 32px;
  height: 32px;
  fill: #024840;
}

.trial-offer-info {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  background: #024840;
  border-radius: 30px;
  padding: 60px 40px;
}

.trial-offer-info h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
  font-size: 42px;
}

.trial-offer-info ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  padding: 0;
}

.trial-offer-info ul li {
  line-height: 150%;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.trial-offer-info ul li:not(:last-child) {
  margin-right: 72px;
}

.trial-offer-info ul li:before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-right: 12px;
  background: url(../img/icons/check-circle-white.svg) no-repeat center/100%;
}

.trial-offer-subtitle {
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  opacity: 0.6;
  text-transform: uppercase;
}

.trial-offer-intro {
  margin-top: 20px;
  font-size: 18px;
  line-height: 160%;
}

.trial-offer-intro p {
  margin: 0 0 12px;
}

.trial-offer-intro p:last-child {
  margin-bottom: 0;
}

.trial-offer-subtext {
  font-size: 13px;
  line-height: 150%;
  opacity: 0.8;
  margin-top: 12px;
}

.trial-offer .trial-offer-secondary {
  margin-top: 50px !important;
  align-self: center;
}

.trial-offer-logos h2 {
  margin-bottom: 15px;
}

.trial-offer-logos .footer-main-logos {
  margin-top: 10px;
  margin-bottom: 10px;
}

.trial-offer .smaller {
  font-size: 48px;
}

.trial-offer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.trial-offer .btn {
  align-self: center;
  margin-top: 0;
}

.trial-offer .btn.-filled {
  padding-left: 72px;
  padding-right: 72px;
}

.trial-offer .btn.-filled svg {
  animation: trial-offer-arrow 1.6s ease-in-out infinite;
}

.trial-offer .btn img {
  height: 25px;
  width: auto;
  margin-bottom: 0;
}

@keyframes trial-offer-arrow {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

.trial-offer-app .col-lg-5 svg,
.trial-offer-app .col-lg-5 img {
  width: 100%;
  height: auto;
}

.trial-offer-app .trial-offer-actions {
  flex-direction: row;
  gap: 16px;
}

.footer {
  background: #F8F8F8;
  padding: 50px 0;
}

.footer-main .row {
  --bs-gutter-y: 30px;
}

.footer-main ul li {
  display: flex;
  align-items: center;
}

.footer-main ul li:not(:last-child) {
  margin-bottom: 12px;
}

.footer-main ul li a {
  line-height: 150%;
  font-size: 16px;
  color: #395450;
}

.footer-main ul li a:hover {
  color: #AC8EFF;
}

.footer-main ul li a span {
  width: 18px;
  height: 18px;
  text-align: center;
  background: #E4FD6F;
  border-radius: 50%;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #395450;
}

.footer-main-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-main-logos img,
.footer-main-logos svg {
  height: 65px;
  width: auto;
}

.footer-info p {
  line-height: 150%;
  font-size: 16px;
  color: #395450;
  margin-bottom: 0;
  margin-top: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo svg {
  width: 140px;
  height: 30px;
  fill: #024840;
}

.footer-title {
  line-height: 150%;
  font-size: 18px;
  font-weight: 600;
  color: #024840;
  margin-bottom: 24px;
}

.footer-title-spacing-top {
  margin-top: 40px;
}

.footer-contacts {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 45px;
}

.footer-contacts-link {
  line-height: 150%;
  font-size: 16px;
  color: #395450;
  align-self: start;
}

.footer-contacts-link:hover {
  color: #AC8EFF;
}

.footer-socials {
  display: flex;
  align-items: center;
  margin-top: 26px;
}

.footer-socials li {
  display: flex;
  align-items: center;
}

.footer-socials li:not(:last-child) {
  margin-right: 30px;
}

.footer-socials li a {
  display: flex;
  align-items: center;
  color: #024840;
}

.footer-socials li a:hover {
  color: #AC8EFF;
}

.footer-socials li a svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-reviews {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-reviews img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.footer-reviews-stars {
  display: grid;
  grid-template-columns: repeat(5, 15px);
  grid-template-rows: 15px;
  gap: 3px;
  grid-template-columns: repeat(5, 19px);
  grid-template-rows: 19px;
  gap: 5px;
  margin-bottom: 7px;
}

.footer-reviews-stars svg {
  fill: #FAC408;
  width: 100%;
  height: 100%;
}

.footer-reviews p {
  line-height: 150%;
  font-size: 14px;
  color: #395450;
}

.footer-reviews p b {
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 75px;
}

.footer-bottom-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.footer-bottom-nav li:not(:last-child) {
  margin-right: 30px;
}

.footer-bottom-nav li a {
  line-height: 150%;
  font-size: 14px;
  color: #395450;
}

.footer-bottom-nav li a:hover {
  color: #AC8EFF;
}

.footer-copyright {
  line-height: 150%;
  font-size: 14px;
  color: #395450;
  margin: 0;
}

.footer-payment-methods {
  display: flex;
  align-items: center;
  margin-left: 50px;
}

.footer-payment-methods li {
  display: flex;
  align-items: center;
}

.footer-payment-methods li:not(:last-child) {
  margin-right: 20px;
}

.footer-payment-methods li img {
  display: block;
  width: 36px;
}

.footer-language {
  margin-left: 40px;
  display: flex;
}

.footer-language .custom-select {
  position: relative;
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  width: 100%;
  color: #395450;
}

.footer-language .custom-select select {
  display: none;
}

.footer-language .custom-select-trigger {
  display: flex;
  background: #fff;
  border: 1px solid #e7e9e9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 9px;
  cursor: pointer;
}

.footer-language .custom-select-trigger.active svg {
  transform: rotate(-180deg);
}

.footer-language .custom-select-trigger svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  opacity: 0.5;
  margin-left: 8px;
  transition: 0.2s;
}

.footer-language .custom-select-dropdown {
  position: absolute;
  transition: 0.2s;
  transform: translateY(-90%);
  left: 0;
  z-index: 100;
  top: -5px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 8px 9px;
  background: #fff;
  border: 1px solid #e7e9e9;
}

.footer-language .custom-select-dropdown.active {
  transform: translateY(-100%);
  opacity: 1;
  visibility: visible;
}

.footer-language .custom-select-dropdown ul li {
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-language .custom-select-dropdown ul li:hover {
  color: #AC8EFF;
}

.footer-language .custom-select-dropdown ul li:not(:last-child) {
  margin-bottom: 8px;
}

.footer-language .custom-select-dropdown ul li.hidden {
  display: none;
}

.blockquote {
  position: relative;
  overflow: hidden;
}

.blockquote.-green {
  background: #024840;
  color: #fff;
}

.blockquote.-decor:before,
.blockquote.-decor:after {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
}

.blockquote.-decor:before {
  transform: scale(-1);
}

.blockquote .container {
  position: relative;
}

.blockquote img {
  display: block;
  width: 100%;
  position: relative;
}

.blockquote-info {
  position: relative;
  padding: 0px 10%;
}

.blockquote-info p {
  line-height: 150%;
  font-size: 24px;
  margin-bottom: 12px;
}

.blockquote-info-name {
  line-height: 150%;
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
}

.blockquote-info-position {
  line-height: 150%;
  font-size: 16px;
}

.values {
  text-align: center;
}

.values p {
  line-height: 150%;
  font-size: 20px;
  margin: 20px auto 0;
}

.values .btn {
  margin-top: 48px;
  padding-left: 100px;
  padding-right: 100px;
}

.values-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 150px));
  justify-content: center;
  gap: 80px;
  margin-top: 40px;
}

.values-card-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 100%;
}

.values-card-illustration img {
  max-height: 100%;
  max-width: 100%;
  height: 110px;
  width: auto;
}

.values-card p {
  line-height: 150%;
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}

.newsletter {
  background: #024840;
  padding: 48px 0px 71px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.newsletter:before,
.newsletter:after {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  width: 159px;
  height: 331px;
  border-color: #E4FD6F;
  border-width: 60px;
  opacity: 0.2;
}

.newsletter:before {
  bottom: -165px;
  left: 0;
  transform: scaleX(-1);
}

.newsletter:after {
  top: -165px;
  right: 0;
}

.newsletter .row {
  position: relative;
}

.newsletter h2,
.newsletter h3,
.newsletter h4,
.newsletter h5,
.newsletter h6 {
  text-align: center;
}

.newsletter form {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.newsletter form .form-input {
  width: 100%;
  max-width: 450px;
  margin-right: 18px;
}

.newsletter form .btn {
  padding-left: 68px;
  padding-right: 68px;
}

.newsletter input {
  margin-bottom: 0;
}

.newsletter input:first-child {
  max-width: 600px;
}

.newsletter input[type=submit] {
  padding: 17px 40px;
  margin-left: 20px;
}

.gform_ajax_spinner,
.validation_message {
  display: none !important;
}

.gform_validation_errors {
  display: flex;
  justify-content: center;
}

.gform_submission_error {
  background: red;
  color: #fff;
  font-size: 18px;
  border-radius: 100px;
  margin-top: 30px;
  margin-bottom: -50px;
  display: inline-block;
  padding: 15px 25px;
}

.faq {
  background: #F8F8F8;
  text-align: center;
}

.faq h2,
.faq h3 {
  margin-bottom: 64px;
}

.faq-item {
  text-align: left;
  background: #fff;
  border-radius: 20px;
  padding: 24px 32px 24px 24px;
  transition: 0.2s;
}

.faq-item:hover {
  background: #E4FD6F;
}

.faq-item:hover svg {
  opacity: 1;
}

.faq-item:not(:last-child) {
  margin-bottom: 24px;
}

.faq-item.active {
  background: #024840;
  color: #fff;
}

.faq-item.active svg {
  transform: rotate(-180deg);
  opacity: 1;
}

.faq-item-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 26px;
  cursor: pointer;
}

.faq-item-trigger svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-left: 15px;
  fill: currentColor;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.6;
}

.faq-item-dropdown {
  display: none;
  margin-top: 24px;
}

.faq-item-dropdown p {
  line-height: 150%;
  font-size: 18px;
}

.faq-item-dropdown p:not(:last-child) {
  margin-bottom: 12px;
}

.faq-bottom {
  margin-top: 48px;
}

.faq .btn {
  padding-left: 65px;
  padding-right: 65px;
  margin-top: 24px;
}

.recommended-posts {
  overflow: hidden;
}

.recommended-posts h2,
.recommended-posts h3 {
  margin-bottom: 32px;
}

.recommended-posts .row {
  --bs-gutter-x: 64px;
  --bs-gutter-y: 40px;
}

.recommended-posts-bottom {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.recommended-posts-bottom .btn {
  padding-left: 84px;
  padding-right: 84px;
}

.about-banner.-white .about-banner-inner {
  background: #fff;
}

.about-banner.-white .about-banner-inner:before,
.about-banner.-white .about-banner-inner:after {
  border-color: #024840;
}

.about-banner.-white .about-banner-info > svg {
  fill: #024840;
}

.about-banner.-green .about-banner-inner {
  background: #024840;
  color: #fff;
}

.about-banner.-green .about-banner-inner:before,
.about-banner.-green .about-banner-inner:after {
  border-color: #E4FD6F;
}

.about-banner.-green .about-banner-info > svg {
  fill: #E4FD6F;
}

.about-banner-inner {
  padding: 48px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 48px;
  align-items: center;
}

.about-banner-inner:before,
.about-banner-inner:after {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
}

.about-banner-inner:before {
  opacity: 0.1;
  width: 268.19px;
  height: 555.44px;
  bottom: -355px;
  left: 0;
  border-width: 105px;
  transform: scaleX(-1);
}

.about-banner-inner:after {
  opacity: 0.2;
  top: 0;
  transform: translateY(-50%);
  right: 0;
  width: 159px;
  height: 331px;
  border-width: 65px;
}

.about-banner-photo {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
  z-index: 10;
}

.about-banner-photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-banner-info {
  position: relative;
  z-index: 10;
}

.about-banner-info > img {
  height: 30px;
  width: auto;
  margin-bottom: 10px;
}

.about-banner-info p {
  line-height: 150%;
  font-size: 24px;
  opacity: 0.6;
  margin-top: 16px;
  margin-bottom: 0;
}

.about-banner-info ul {
  margin-top: 45px;
  display: flex;
}

.about-banner-info ul li:not(:last-child) {
  margin-right: 85px;
}

.about-banner-info ul li span {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
}

.about-banner-info ul li p {
  line-height: 150%;
  font-size: 18px;
  margin: 0;
}

.about-banner .btn {
  margin-top: 32px;
}

.about-banner-actions {
  display: flex;
  align-items: center;
  margin-top: 32px;
}

.about-banner-actions .btn {
  margin-top: 0;
}

.trusted-by {
  text-align: center;
  overflow: hidden;
}

.trusted-by-items {
  max-width: 66.666%;
  margin: 0 auto;
  margin-top: 60px;
}

.trusted-by-items .row {
  --bs-gutter-x: 60px;
  --bs-gutter-y: 60px;
}

.trusted-by-items img {
  width: 100%;
  display: block;
  filter: grayscale(1);
}

.info.-bg-green {
  background: #0e2c28;
  color: #fff;
}

.info.-bg-green p {
  color: #fff;
}

.info .subtitle {
  line-height: 150%;
  font-size: 18px;
  letter-spacing: 0;
}

.info h2,
.info h3,
.info h4,
.info h5,
.info h6 {
  margin-bottom: 22px;
}

.info p {
  line-height: 150%;
  font-size: 18px;
  color: #395450;
}

.info p:not(:last-child) {
  margin-bottom: 12px;
}

.info ul {
  margin-left: 15px;
}

.info li {
  line-height: 150%;
  font-size: 18px;
  list-style: disc;
  color: #395450;
}

.info li:not(:last-child) {
  margin-bottom: 12px;
}

.info-actions {
  display: flex;
  align-items: center;
  margin-top: 44px;
}

.info-actions .btn:not(:last-child) {
  margin-right: 55px;
}

.info-actions .btn.-filled,
.info-actions .btn.-bordered {
  padding-left: 55px;
  padding-right: 55px;
}

.info-actions .btn.-filled.-white svg,
.info-actions .btn.-bordered.-white svg {
  fill: currentColor;
}

.info .flex-row-reverse .info-photo {
  margin-left: auto;
}

.info-photo {
  max-width: 680px;
}

.info-photo img {
  display: block;
  width: 100%;
  border-radius: 15px;
}

.short-info {
  color: #024840;
}

.short-info.-bg-green {
  color: #fff;
}

.short-info p {
  line-height: 150%;
  font-size: 24px;
  margin-top: 15px;
}

.short-info .btn {
  padding-left: 72px;
  padding-right: 72px;
}

.short-info-photo {
  margin-top: 72px;
  overflow: hidden;
}

.short-info-photo img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.short-info-bottom {
  text-align: center;
  margin-top: 94px;
}

.short-info-bottom .btn {
  margin-top: 24px;
}

.short-info-bottom .btn.-bordered.-white svg {
  fill: currentColor;
}

.why-us-photo img {
  display: block;
  width: 100%;
}

.why-us-details {
  margin-top: 15px;
  text-align: center;
  color: #0C0B0A;
}

.why-us-details-name {
  line-height: 150%;
  font-size: 24px;
  font-weight: 600;
}

.why-us-details-position {
  line-height: 150%;
  font-size: 20px;
  opacity: 0.6;
}

.why-us-info h2,
.why-us-info h3,
.why-us-info h4,
.why-us-info h5,
.why-us-info h6 {
  margin-bottom: 24px;
}

.why-us-info p {
  line-height: 150%;
  font-size: 24px;
}

.why-us-info p:not(:last-child) {
  margin-bottom: 20px;
}

.why-us-info img {
  display: block;
  margin-top: 57px;
  max-width: 120px;
}

.why-us-info .btn {
  margin-top: 28px;
  padding-left: 75px;
  padding-right: 75px;
}

.useful-links-info {
  margin-bottom: 40px;
}

.useful-links ul li {
  display: flex;
  align-items: center;
}

.useful-links ul li:not(:last-child) {
  margin-bottom: 32px;
}

.learn-features .row {
  --bs-gutter-y: 40px;
}

.learn-features-info {
  margin-bottom: 64px;
}

.learn-features ul {
  margin-top: 32px;
}

.learn-features ul li {
  display: flex;
  align-items: center;
}

.learn-features ul li:not(:last-child) {
  margin-bottom: 29px;
}

.learn-features-bottom {
  margin-top: 75px;
}

.learn-features-bottom .btn {
  padding-left: 108px;
  padding-right: 108px;
}

.selected-cases {
  overflow: hidden;
  background: #F8F8F8;
  text-align: center;
}

.selected-cases .typ-slider {
  margin-top: 64px;
}

.selected-cases .typ-slider-nav {
  margin-top: 64px;
}

.selected-cases-card {
  background: #fff;
  border-radius: 20px;
  padding: 64px 64px 56px 80px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.selected-cases-card:before {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  width: 268px;
  height: 555px;
  border-color: #e6edec;
  border-width: 110px;
  transform: translate(30%, 50%);
  right: 0;
  bottom: 0;
}

.selected-cases-card > * {
  position: relative;
}

.selected-cases-card > img {
  display: block;
  height: 30px;
  width: auto;
  margin-bottom: 35px;
}

.selected-cases-card > p {
  line-height: 150%;
  font-size: 24px;
  margin-bottom: 36px;
  max-width: 80%;
}

.selected-cases-card-author {
  display: flex;
  align-items: center;
}

.selected-cases-card-author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin-right: 18px;
}

.selected-cases-card-author-photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selected-cases-card-author p {
  font-weight: 600;
  margin-bottom: 0;
}

.selected-cases-card-author span {
  line-height: 150%;
  font-size: 16px;
  display: block;
}

.selected-cases-card ul {
  display: flex;
  margin-top: 55px;
  flex-wrap: wrap;
}

.selected-cases-card ul li {
  min-width: 230px;
  margin-top: 30px;
}

.selected-cases-card ul li:not(:last-child) {
  margin-right: 40px;
}

.selected-cases-card ul li span {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 64px;
  line-height: 135%;
  letter-spacing: -0.02em;
  display: block;
}

.selected-cases-card ul li p {
  line-height: 150%;
  font-size: 24px;
  margin-top: 10px;
}

.selected-cases-card .btn {
  position: absolute;
  top: 64px;
  right: 64px;
}

.advantages {
  text-align: center;
  overflow: hidden;
}

.advantages h2 {
  max-width: 950px;
  margin: 0 auto 60px auto;
}

.advantages .row {
  --bs-gutter-y: 40px;
  display: flex;
  flex-wrap: wrap;
}

.advantages-card {
  padding: 48px 58px 60px;
  height: 100%;
}

.advantages-card p {
  line-height: 150%;
  font-size: 18px;
}

.advantages-card-illustration {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantages-card-illustration svg,
.advantages-card-illustration img {
  height: 230px;
  width: auto;
  max-width: 100%;
}

.advantages-card-border {
  background: #F8F8F8;
  border-radius: 20px;
}

.advantages-card svg.cross {
  background: #d84654;
  fill: #fff;
  width: 25px;
  height: 25px;
  border-radius: 100px;
  rotate: 45deg;
  padding: 5px;
  margin-bottom: 15px;
}

.advantages-bottom {
  margin-top: 80px;
}

.advantages-bottom .btn {
  padding-left: 72px;
  padding-right: 72px;
}

.advantages-bottom p {
  line-height: 150%;
  font-size: 16px;
  color: #5e8a85;
  opacity: 0.6;
  margin-top: 16px;
}

.title-text-blocks {
  max-width: 950px;
  margin: 0 auto;
}

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

.title-text-blocks .row {
  margin-top: 40px;
}

.title-text-blocks img {
  width: 100%;
  height: auto;
}

.title-text-blocks ul {
  margin-bottom: 30px;
}

.title-text-blocks ul li {
  line-height: 150%;
  font-size: 18px;
  position: relative;
  padding-left: 25px;
}

.title-text-blocks ul li:not(:last-child) {
  margin-bottom: 24px;
}

.title-text-blocks ul li:before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icons/check-purple.svg) no-repeat center/100%;
  top: 5px;
  left: 0;
}

.title-text-blocks h3 {
  font-family: "Hahmlet";
  font-size: 32px;
  margin-bottom: 20px;
}

.demo-request {
  background: #024840;
  padding: 70px 0;
}

.demo-request h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}

.demo-request h1,
.demo-request p {
  color: #fff;
}

.demo-request ul li {
  color: #fff;
}

.demo-request__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.demo-request__logos-title {
  display: block;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 15px;
  opacity: 0.7;
}

.demo-request__logos img {
  height: 25px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.demo-request__quote {
  margin-top: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.demo-request__quote-left {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.demo-request__quote-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.demo-request__quote-right img {
  width: 120px;
  height: auto;
}

.demo-request__quote-right span {
  color: #fff;
}

.demo-request__quote-right div {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 25px;
}

.demo-request__quote-right .name {
  display: block;
  font-weight: bold;
}

.demo-request__form {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-left: 40px;
}

.demo-request__form .gform_body {
  margin-top: 0;
}

.demo-request__form .gform_body input,
.demo-request__form .gform_body textarea,
.demo-request__form .gform_body select {
  padding: 12px 16px;
}

.demo-request__form .hidden_label .gfield_label {
  display: none;
}

.reviews {
  background: #fff;
  padding: 70px 0;
}

.reviews h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
  margin-bottom: 30px;
}

.reviews__top {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.reviews__top .btn {
  margin-top: 30px;
}

.reviews__items {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  column-count: 2;
  column-gap: 1rem;
  display: block;
  position: relative;
}

.reviews__item {
  background: #F8F8F8;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 30px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.reviews__item p {
  font-size: 18px;
}

.reviews__item-top {
  display: flex;
  gap: 16px;
  margin-bottom: 15px;
}

.reviews__item-top img {
  height: 50px;
  width: 50px;
  border-radius: 100px;
}

.reviews__item-top div span {
  display: block;
  font-size: 18px;
}

.reviews__item-top div span:first-child {
  font-weight: bold;
}

.reviews__bottom {
  margin-top: 30px;
  text-align: center;
}

/* Pages */

/**
 * Hero
 */

.home-hero {
  overflow: hidden;
}

.home-hero:before {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  width: 590px;
  height: 1290px;
  border: 220px solid #48726e;
  border-right: 0;
  top: 15px;
  right: -218px;
}

.home-hero .hero-photo img {
  display: block;
  margin-left: auto;
  max-width: 580px;
}

.home-hero .hero-photo video {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.home-hero .hero-trusted {
  margin-top: 60px;
}

.home-hero .hero-trusted span {
  color: #fff;
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
}

.home-hero .hero-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.home-hero .hero-logos img,
.home-hero .hero-logos svg {
  height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.home .home-hero .hero-photo img {
  border-radius: 20px;
}

/**
 * Features
 */

.features {
  overflow: hidden;
  background: #F8F8F8;
  position: relative;
}

.features:before {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  width: 685px;
  height: 1500px;
  border: 260px solid #E4FD6F;
  border-right: 0;
  top: -750px;
  right: calc(50% - 130px);
}

.features .container {
  position: relative;
}

.features-info {
  margin-bottom: 50px;
}

.features-info p {
  margin-top: 24px;
}

.features-nav {
  max-width: 480px;
  padding-top: 52px;
}

.features-nav li {
  padding: 32px 32px 28px;
  --x-offset: 64px;
  line-height: 150%;
  font-size: 20px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 20px;
}

.features-nav li:not(:last-child) {
  margin-bottom: 16px;
}

.features-nav li:before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: rgba(6, 34, 30, 0.4);
  border-radius: 15px;
  bottom: 28px;
  width: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

.features-nav li:after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #e8ecec;
  border-radius: 15px;
  margin-top: 26px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

.features-nav li.active {
  background: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
}

.features-nav li.active:before {
  opacity: 1;
  visibility: visible;
  animation: 4s ease 0s 1 normal forwards widthAnimation;
}

.features-nav li.active:after {
  opacity: 1;
  visibility: visible;
}

@keyframes widthAnimation {
  from {
    width: 0;
  }

  to {
    width: calc(100% - var(--x-offset));
  }
}

.features .btn {
  margin-left: 32px;
  margin-top: 84px;
}

.features-tabs {
  display: grid;
  grid-template-columns: 1fr;
}

.features-tabs .tab {
  opacity: 0;
  grid-row-start: 1;
  grid-column-start: 1;
}

.features-tabs .tab.active {
  opacity: 1;
  animation: 400ms ease 0s 1 normal none running tabFadeIn;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateX(50%);
  }

  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

.features-tabs .tab img {
  display: block;
  margin-left: 20px;
  border-radius: 15px;
  box-shadow: 0px 12.8586px 38.576px rgba(0, 0, 0, 0.05);
  height: 624px;
  width: auto;
}

/**
 * Short Info
 */

.home-short-info .short-info-photo {
  height: 280px;
  overflow: hidden;
}

/**
 * Statistics
 */

.statistics {
  background: #F8F8F8;
}

.statistics-info {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
}

.statistics-info > img {
  display: block;
  height: 225px;
  width: auto;
  max-width: 100%;
  margin-bottom: 64px;
  align-self: start;
}

.statistics-info h2 {
  letter-spacing: -0.02em;
}

.statistics-info ul {
  margin-top: 48px;
}

.statistics-info ul li:not(:last-child) {
  margin-bottom: 30px;
}

.statistics-info .btn {
  margin-top: 72px;
  align-self: start;
}

.statistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.statistics-card {
  background: #fff;
  border-radius: 15px;
  padding: 66px 48px;
  display: flex;
  flex-direction: column;
}

.statistics-card span {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 64px;
  line-height: 135%;
  letter-spacing: -0.02em;
  line-height: 120%;
  margin-bottom: 10px;
}

.statistics-card p {
  line-height: 150%;
  font-size: 24px;
}

.statistics-review {
  background: #fff;
  border-radius: 15px;
  padding: 64px 48px 50px;
  grid-column: 1/3;
  display: flex;
}

.statistics-review.-neon {
  background: #E4FD6F;
}

.statistics-review-info {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.statistics-review-info img {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
}

.statistics-review-info p {
  line-height: 150%;
  font-size: 24px;
}

.statistics-review-author {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 50px;
  min-width: 30%;
}

.statistics-review-author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.statistics-review-author-photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statistics-review-author p {
  line-height: 150%;
  font-size: 18px;
  margin-bottom: 0px;
}

.statistics-review-author p b {
  font-weight: 600;
}

.statistics-review-author > img {
  display: block;
  max-width: 100%;
  width: 127px;
  height: 127px;
}

.statistics-reviews-slider {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  grid-column: 1/3;
}

.statistics-reviews-slider .slider-button {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  z-index: 10;
}

.statistics-reviews-slider .slider-button.-prev {
  left: 16px;
}

.statistics-reviews-slider .slider-button.-next {
  right: 16px;
}

.statistics-reviews-card {
  padding: 60px 105px 46px;
  text-align: center;
  position: relative;
}

.statistics-reviews-card p {
  line-height: 150%;
  font-size: 24px;
}

.statistics-reviews-stars {
  display: grid;
  grid-template-columns: repeat(5, 15px);
  grid-template-rows: 15px;
  gap: 3px;
  grid-template-columns: repeat(5, 16px);
  grid-template-rows: 16px;
  gap: 4px;
  margin-bottom: 17px;
  justify-content: center;
}

.statistics-reviews-stars svg {
  fill: #FAC408;
  width: 100%;
  height: 100%;
}

.statistics-reviews-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.statistics-reviews-author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-right: 15px;
}

.statistics-reviews-author-photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statistics-reviews-author p {
  line-height: 150%;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.statistics-reviews-author span {
  line-height: 150%;
  font-size: 14px;
  opacity: 0.5;
}

.statistics-reviews-source {
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  right: 16px;
  bottom: 16px;
}

/**
 * Industries
 */

.industries {
  overflow: hidden;
}

.industries h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
}

.industries-nav {
  display: flex;
  justify-content: flex-end;
}

.industries-nav .slider-button:not(:last-child) {
  margin-right: 16px;
}

.industries-slider {
  overflow: visible;
  margin-top: 100px;
}

.industries .card-photo {
  margin-bottom: 30px;
}

.industries-logo img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.industries-logo .swiper-wrapper {
  margin-top: 50px;
  display: flex;
  align-items: center;
}

/**
 * Hero
 */

.vacancies-hero {
  overflow: hidden;
  position: relative;
}

.vacancies-hero:before {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  border-color: #48726e;
  border-width: 215px;
  width: 588px;
  height: 1285px;
  top: 20px;
  right: -230px;
  z-index: 10;
}

.vacancies-hero .container {
  position: relative;
}

.vacancies-hero .hero-info {
  position: relative;
  z-index: 20;
}

.vacancies-hero .hero-actions .btn {
  padding-left: 95px;
  padding-right: 95px;
}

.vacancies-hero .hero-actions .btn svg {
  min-width: 16px;
  width: 16px;
  height: 16px;
}

.vacancies-hero-illustration {
  height: 100%;
  position: relative;
}

.vacancies-hero-illustration:before {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  border-color: #E4FD6F;
  border-width: 72px;
  width: 187px;
  height: 398px;
  top: 0;
  left: 0;
}

.vacancies-hero-illustration:after {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  border-color: #AC8EFF;
  border-width: 72px;
  width: 187px;
  height: 398px;
  top: 160px;
  left: 170px;
  transform: scaleX(-1);
}

/**
 * About
 */

.vacancies-about-info svg,
.vacancies-about-info img {
  width: 140px;
  height: 30px;
  fill: #AC8EFF;
  margin-bottom: 30px;
}

.vacancies-about-info h2 {
  margin-bottom: 24px;
}

.vacancies-about-info p {
  line-height: 150%;
  font-size: 24px;
}

.vacancies-about-info p:not(:last-child) {
  margin-bottom: 24px;
}

/**
 * Vacancies
 */

.vacancies {
  background: #F8F8F8;
}

.vacancies-info-illustration img,
.vacancies-info-illustration svg {
  display: block;
  height: 255px;
  width: auto;
  max-width: 100%;
  margin-bottom: 16px;
}

.vacancies-info .reviews-stat {
  margin-top: 48px;
}

.vacancies-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 48px;
}

.vacancies-nav p {
  line-height: 150%;
  font-size: 16px;
  opacity: 0.4;
  margin: 0;
  margin-right: 20px;
}

.vacancies-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.vacancies-nav ul li {
  line-height: 150%;
  font-size: 16px;
  padding: 8px 20px;
  background: #fff;
  border-radius: 89px;
  cursor: pointer;
  transition: 0.15s;
  text-align: center;
}

.vacancies-nav ul li:hover {
  background: #AC8EFF;
  color: #fff;
}

.vacancies-nav ul li:before {
  display: block;
  content: attr(data-label);
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.vacancies-nav ul li:not(:last-child) {
  margin-right: 16px;
}

.vacancies-nav ul li.active {
  cursor: inherit;
  background: #024840;
  color: #fff;
  font-weight: 600;
}

.vacancies-nav ul li.active:hover {
  background: #024840;
}

.vacancies-tabs .tab {
  display: none;
}

.vacancies-tabs .tab.active {
  display: block;
}

.vacancies-card {
  display: block;
  background: #fff;
  border-radius: 15px;
  padding: 36px;
  transition: 0.2s;
  color: #06221E;
}

.vacancies-card:hover {
  background: #E4FD6F;
}

.vacancies-card:hover .btn {
  display: inline-flex;
}

.vacancies-card:hover ul li {
  background: #fff;
}

.vacancies-card:not(:last-child) {
  margin-bottom: 32px;
}

.vacancies-card p {
  line-height: 150%;
  font-size: 20px;
  margin-top: 8px;
  margin-bottom: 0;
  opacity: 0.6;
}

.vacancies-card ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.vacancies-card ul li {
  line-height: 150%;
  font-size: 16px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  background: #f7f9f3;
  border-radius: 89px;
  padding: 8px 20px;
  transition: 0.2s;
}

.vacancies-card ul li:not(:last-child) {
  margin-right: 16px;
}

.vacancies-card ul li svg {
  width: 16px;
  height: 16px;
  margin-right: 9px;
  fill: #024840;
}

.vacancies-card .btn {
  margin-top: 48px;
  pointer-events: none;
  gap: 8px;
  display: none;
}

/**
 * Blockquote
 */

.vacancies-blockquote.-decor:before {
  opacity: 0.3;
  border-color: #48726d;
  width: 414px;
  height: 857px;
  top: 130px;
  left: -75px;
  border-width: 155px;
}

.vacancies-blockquote.-decor:after {
  opacity: 0.2;
  border-color: #E4FD6F;
  width: 208px;
  height: 431px;
  bottom: -224px;
  right: 0;
  border-width: 80px;
}

/**
 * Values
 */

.vacancies-values {
  text-align: left;
}

.vacancies-values-info {
  padding-right: 10%;
}

.vacancies-values-info p {
  margin: 20px 0;
}

.vacancies-values .values-card-illustration {
  max-width: 120px;
  margin-bottom: 15px;
}

.vacancies-values .values-card-illustration img,
.vacancies-values .values-card-illustration svg {
  height: 120px;
  width: auto;
  max-width: 100%;
}

/**
 * Hero
 */

.vacancy-hero {
  padding: 32px 0px 435px;
  position: relative;
}

.vacancy-hero .hero-info > .btn {
  gap: 6px;
  margin-bottom: 32px;
  opacity: 0.6;
  color: #fff;
}

.vacancy-hero .hero-info > .btn:hover {
  opacity: 1;
  color: #fff;
}

.vacancy-hero .hero-info > .btn svg {
  transform: rotate(90deg);
  width: 12px;
  min-width: 12px;
  height: 12px;
  fill: currentColor !important;
}

.vacancy-hero .hero-info h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

.vacancy-hero .hero-info p {
  margin-top: 16px;
  opacity: 0.6;
}

.vacancy-hero .hero-info ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.vacancy-hero .hero-info ul li {
  line-height: 150%;
  font-size: 16px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  border-radius: 89px;
  padding: 8px 30px;
  transition: 0.2s;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.vacancy-hero .hero-info ul li:not(:last-child) {
  margin-right: 20px;
}

.vacancy-hero .hero-info ul li svg {
  width: 16px;
  height: 16px;
  margin-right: 9px;
  fill: rgba(255, 255, 255, 0.1);
}

.vacancy-hero .hero-info .hero-actions {
  margin-top: 72px;
}

.vacancy-hero .hero-info .hero-actions .btn {
  padding-left: 117px;
  padding-right: 117px;
}

.vacancy-hero img {
  display: block;
  width: 100%;
  margin-left: auto;
}

/**
 * Expectations
 */

.vacancy-expectations {
  background: #F8F8F8;
}

.vacancy-expectations-inner {
  background: #fff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 48px 65px 80px;
  margin-top: -350px;
}

.vacancy-expectations-inner:after {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  border-color: rgba(2, 72, 64, 0.1);
  top: 0;
  transform: translateY(-50%);
  right: 0;
  width: 217.7px;
  height: 450px;
  border-width: 90px;
}

.vacancy-expectations-items {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
}

.vacancy-expectations-card-illustration {
  height: 200px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.vacancy-expectations-card-illustration img {
  display: block;
  max-width: 100%;
  height: 250px;
  width: auto;
  max-height: 100%;
}

.vacancy-expectations-card-title {
  line-height: 150%;
  font-size: 24px;
}

.vacancy-expectations-card p {
  line-height: 150%;
  font-size: 18px;
  opacity: 0.6;
  margin-top: 8px;
}

/**
 * Description
 */

.vacancy-desc {
  background: #F8F8F8;
}

.vacancy-desc img {
  width: 100%;
  display: block;
}

.vacancy-desc .subtitle {
  margin-bottom: 16px;
}

.vacancy-desc p,
.vacancy-desc ul {
  margin-top: 24px;
  margin-bottom: 0;
}

.vacancy-desc ul li {
  line-height: 150%;
  font-size: 18px;
  position: relative;
  padding-left: 25px;
}

.vacancy-desc ul li:not(:last-child) {
  margin-bottom: 24px;
}

.vacancy-desc ul li:before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icons/check-purple.svg) no-repeat center/100%;
  top: 5px;
  left: 0;
}

.vacancy-desc ul li {
  line-height: 150%;
  font-size: 20px;
}

.vacancy-desc .btn {
  margin-top: 48px;
  padding-left: 84px;
  padding-right: 84px;
}

/**
 * Blockquote
 */

.vacancy-blockquote {
  background: #F8F8F8;
}

.vacancy-blockquote .blockquote {
  background: #fff;
  border-radius: 20px;
  padding: 25px 5%;
}

.vacancy-blockquote .blockquote.-decor:before {
  opacity: 0.1;
  border-color: #024840;
  width: 268px;
  height: 555px;
  top: 72px;
  left: 0;
  border-width: 100px;
}

.vacancy-blockquote .blockquote.-decor:after {
  opacity: 0.1;
  border-color: #024840;
  width: 159px;
  height: 331px;
  top: 0;
  transform: translateY(-50%);
  right: 0;
  border-width: 60px;
}

.vacancy-blockquote .blockquote-info {
  color: #06221E;
}

/**
 * Apply
 */

.vacancy-apply {
  background: #F8F8F8;
  text-align: center;
}

.vacancy-apply p {
  margin-top: 24px;
  margin-bottom: 0;
}

.vacancy-apply .btn {
  margin-top: 32px;
  padding-left: 117px;
  padding-right: 117px;
}

/**
 * Other Vacancies
 */

.other-vacancies {
  overflow: hidden;
}

.other-vacancies-info p {
  margin-top: 8px;
  line-height: 150%;
  font-size: 24px;
}

.other-vacancies-info p span {
  display: inline-block;
  border-radius: 50%;
  background: #E4FD6F;
  width: 30px;
  line-height: 30px;
  text-align: center;
  font-weight: 600;
}

.other-vacancies-nav {
  display: flex;
  justify-content: flex-end;
}

.other-vacancies-nav .slider-button:not(:last-child) {
  margin-right: 16px;
}

.other-vacancies-slider {
  margin-top: 60px;
  margin-left: -20px;
  margin-right: -20px;
  padding-right: 20px;
  padding-left: 20px;
}

.other-vacancies .card ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4px;
}

.other-vacancies .card ul li {
  line-height: 150%;
  font-size: 16px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  background: rgba(2, 72, 64, 0.1);
  border-radius: 89px;
  padding: 8px 20px;
  transition: 0.2s;
  font-weight: 600;
}

.other-vacancies .card ul li:not(:last-child) {
  margin-right: 16px;
}

.other-vacancies .card ul li svg {
  width: 16px;
  height: 16px;
  margin-right: 9px;
  fill: #024840;
}

/**
 * Hero
 */

.overview-hero {
  padding: 64px 0px 48px;
  background: #F8F8F8;
  position: relative;
}

.overview-hero:before,
.overview-hero:after {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  width: 218px;
  height: 450px;
  border-color: rgba(2, 72, 64, 0.1);
  border-width: 85px;
}

.overview-hero:before {
  transform: scale(-1);
  left: 0;
  bottom: -70px;
}

.overview-hero:after {
  right: 0;
  top: -110px;
}

.overview-hero h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

.overview-hero h3 a {
  color: #06221E;
}

.overview-hero h3 a:hover {
  color: #AC8EFF;
}

.overview-hero-card {
  background: #fff;
  border-radius: 15px;
  margin-top: 64px;
  padding: 24px 24px 24px 48px;
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 115px;
  align-items: center;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.overview-hero-card-info .subtitle {
  line-height: 150%;
  font-size: 18px;
  margin-bottom: 24px;
  letter-spacing: 0;
}

.overview-hero-card-info p {
  line-height: 150%;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 0;
}

.overview-hero-card-info .btn {
  margin-top: 64px;
}

.overview-hero-card-slider {
  margin: 0;
  width: 100%;
}

.overview-hero-card-slider .swiper-pagination {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
  bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview-hero-card-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0px 10px;
  cursor: pointer;
}

.overview-hero-card-slider .swiper-pagination-bullet-active {
  background: #fff;
}

.overview-hero-card-photo {
  padding-bottom: 77%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.overview-hero-card-photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/**
 * Overview
 */

.overview {
  background: #F8F8F8;
  overflow: hidden;
}

.overview .container {
  position: relative;
}

.overview-top {
  display: flex;
  align-items: start;
  justify-content: center;
  margin-bottom: 64px;
}

.overview-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -15px;
}

.overview-nav li {
  line-height: 150%;
  font-size: 16px;
  padding: 8px 20px;
  background: #fff;
  border-radius: 89px;
  cursor: pointer;
  transition: 0.15s;
  text-align: center;
  margin-top: 15px;
}

.overview-nav li:hover {
  background: #AC8EFF;
  color: #fff;
}

.overview-nav li:before {
  display: block;
  content: attr(data-label);
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.overview-nav li:not(:last-child) {
  margin-right: 24px;
}

.overview-nav li.active {
  cursor: inherit;
  background: #024840;
  color: #fff;
  font-weight: 600;
}

.overview-nav li.active:hover {
  background: #024840;
}

.overview-search {
  margin-left: 26px;
  transition: 0.2s;
}

.overview-search.active .overview-search-inner input {
  width: 200px;
  padding: 10px 0;
  opacity: 1;
}

.overview-search.active .overview-search-trigger {
  pointer-events: none;
  background: transparent;
  color: #06221E;
}

.overview-search-inner {
  background: #fff;
  min-width: 100%;
  min-height: 100%;
  border-radius: 89px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: 0.2s;
}

.overview-search-inner input {
  width: 0;
  padding: 0;
  border: 0;
  height: 100%;
  padding: 0;
  transition: 0.2s;
  opacity: 0;
  font-size: 15px;
  line-height: 23px;
  color: #06221E;
}

.overview-search-trigger {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.overview-search-trigger svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.overview-items.-resources .card:before {
  background: #e0e7e6;
}

.overview-items .tab {
  display: none;
}

.overview-items .tab.active {
  display: block;
}

.overview-items .row {
  --bs-gutter-x: 64px;
  --bs-gutter-y: 30px;
}

.overview .card:before {
  width: calc(100% + 32px);
}

.overview .newsletter {
  margin: 15px 0 75px;
  border-radius: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.overview .newsletter ul {
  display: flex;
  margin-top: 16px;
  justify-content: center;
  align-items: center;
}

.overview .newsletter ul li {
  line-height: 150%;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.overview .newsletter ul li:not(:last-child) {
  margin-right: 34px;
}

.overview .newsletter ul li:before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-right: 12px;
  background: url(../img/icons/check-circle-white.svg) no-repeat center/100%;
}

.overview .newsletter input {
  margin-bottom: 0;
}

.overview .newsletter input[type=submit] {
  padding: 17px 40px;
  margin-left: 20px;
}

.overview .gform_ajax_spinner,
.overview .validation_message {
  display: none !important;
}

.overview .gform_validation_errors {
  display: flex;
  justify-content: center;
}

.overview .gform_submission_error {
  background: red;
  color: #fff;
  font-size: 18px;
  border-radius: 100px;
  margin-top: 30px;
  margin-bottom: -50px;
  display: inline-block;
  padding: 15px 25px;
}

.overview .pagination {
  margin-top: 45px;
}

.overview .pagination .nav-links span:not(.dots),
.overview .pagination .nav-links a {
  line-height: 23px;
}

/**
 * Hero
 */

.post-hero {
  padding: 32px 0px 345px;
}

.post-hero.-text-singe {
  padding: 32px 0px 64px;
}

.post-hero.-text-singe:after {
  display: none;
}

.post-hero.-text-singe p {
  line-height: 150%;
  font-size: 20px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.post-hero.-text-singe p span {
  color: #fff;
}

.post-hero .hero-info .btn {
  gap: 6px;
  margin-bottom: 24px;
  opacity: 0.6;
  color: #fff;
}

.post-hero .hero-info .btn:hover {
  opacity: 1;
  color: #fff;
}

.post-hero .hero-info .btn svg {
  transform: rotate(90deg);
  width: 12px;
  min-width: 12px;
  height: 12px;
  fill: currentColor !important;
}

.post-hero .hero-info h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

/**
 * Post
 */

.post {
  padding-bottom: 120px;
}

.post.-text-singe {
  padding-top: 64px;
}

.post.-text-singe .container {
  margin-top: 0;
}

.post .container {
  margin-top: -285px;
  position: relative;
}

.post-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0px 20px;
}

.post-info p {
  line-height: 150%;
  font-size: 18px;
  margin: 0;
  color: #fff;
}

.post-info p a {
  line-height: 150%;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.post-info p a:hover {
  text-decoration: underline;
}

.post-info p span {
  display: inline-block;
  margin: 0px 10px;
}

.post-share {
  display: flex;
  align-items: center;
}

.post-share p {
  opacity: 0.6;
  margin: 0;
}

.post-share ul {
  display: flex;
  align-items: center;
  margin-left: 27px;
}

.post-share ul.-neon li a {
  color: #E4FD6F;
}

.post-share ul.-neon li a:hover {
  color: #AC8EFF;
}

.post-share ul.-white li a {
  color: #fff;
}

.post-share ul.-white li a:hover {
  color: #E4FD6F;
}

.post-share ul.-purple li a {
  color: #AC8EFF;
}

.post-share ul.-purple li a:hover {
  color: #E4FD6F;
}

.post-share ul li {
  display: flex;
  align-items: center;
}

.post-share ul li:not(:last-child) {
  margin-right: 30px;
}

.post-share ul li a {
  display: flex;
  align-items: center;
}

.post-share ul li a svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.post-photo {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  padding-bottom: 44%;
  margin-bottom: 64px;
}

.post-photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-photo-no-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E4FD6F;
  height: 320px;
  padding-bottom: 0;
}

.post-photo-no-thumb svg {
  fill: #024840;
}

.post-main {
  display: grid;
  grid-template-columns: 100%;
  gap: 48px;
}

.post-main-author {
  display: flex;
  align-items: center;
}

.post-main-author-image {
  margin-right: 25px;
}

.post-main-author-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 100px;
}

.post-main-author-details span {
  display: block;
}

.post-main-author-details span:first-child {
  font-weight: bold;
}

.post-block {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
}

.post-block p {
  margin: 0;
}

.post-block p img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.post-block ul li {
  line-height: 150%;
  font-size: 18px;
  position: relative;
  padding-left: 25px;
}

.post-block ul li:not(:last-child) {
  margin-bottom: 24px;
}

.post-block ul li:before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icons/check-purple.svg) no-repeat center/100%;
  top: 5px;
  left: 0;
}

.post-block ul li {
  line-height: 150%;
  font-size: 20px;
}

.post-block ul li:before {
  background: none;
  content: "●";
  color: #AC8EFF;
  font-size: 12px;
  top: 0;
}

.post-block ol {
  margin-left: 20px;
}

.post-block ol li {
  line-height: 150%;
  font-size: 18px;
  position: relative;
  padding-left: 25px;
}

.post-block ol li:not(:last-child) {
  margin-bottom: 24px;
}

.post-block ol li:before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icons/check-purple.svg) no-repeat center/100%;
  top: 5px;
  left: 0;
}

.post-block ol li {
  line-height: 150%;
  font-size: 20px;
  list-style: decimal;
  padding-left: 5px;
}

.post-block ol li:before {
  display: none;
}

.post-block ol li:not(:last-child) {
  margin-bottom: 12px;
}

.post-block iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.post-block h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 30px;
}

.post-block h3 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 26px;
}

.post-block h4,
.post-block h5,
.post-block h6 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 22px;
}

.post-cta {
  border-radius: 20px;
  padding: 32px;
}

.post-cta.-green {
  background: #024840;
  color: #fff;
}

.post-cta.-gray {
  background: #F8F8F8;
}

.post-cta p {
  margin-top: 16px;
  margin-bottom: 0;
}

.post-cta .btn {
  margin-top: 32px;
  padding-left: 95px;
  padding-right: 95px;
}

.post-cta-quote {
  text-align: center;
}

.post-cta-quote-bottom {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.post-cta-quote-bottom img {
  width: 60px;
  height: 60px;
  border-radius: 100px;
}

.post-cta-quote-bottom-author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 10px;
}

.post-cta-quote-bottom-author span:first-child {
  font-weight: bold;
}

.post-resource {
  background: #F8F8F8;
  border-radius: 20px;
  padding: 40px 20% 54px 48px;
}

.post-resource-info {
  padding-right: 20%;
  position: relative;
}

.post-resource-info p {
  line-height: 150%;
  font-size: 18px;
  margin-top: 14px;
  margin-bottom: 0;
}

.post-resource-info ul {
  margin-top: 24px;
}

.post-resource-info ul li {
  line-height: 150%;
  font-size: 18px;
  position: relative;
  padding-left: 25px;
}

.post-resource-info ul li:not(:last-child) {
  margin-bottom: 24px;
}

.post-resource-info ul li:before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icons/check-purple.svg) no-repeat center/100%;
  top: 5px;
  left: 0;
}

.post-resource-info ul li:not(:last-child) {
  margin-bottom: 16px;
}

.post-resource-info img {
  position: absolute;
  bottom: -155px;
  right: 0;
  transform: translateX(65%);
  width: 284px;
  display: block;
}

.post-resource-form {
  margin-top: 120px;
}

.post-resource-form form {
  margin-top: 34px;
  display: grid;
  gap: 32px;
}

.post-resource-form form .form-input:not(:last-child) {
  margin-bottom: 16px;
}

.post-resource-form form .checkbox {
  justify-self: center;
}

.post-resource-form form .btn {
  width: 100%;
}

.post-review {
  background: #F8F8F8;
  border-radius: 20px;
  padding: 48px;
}

.post-review-stars {
  display: grid;
  grid-template-columns: repeat(5, 15px);
  grid-template-rows: 15px;
  gap: 3px;
  margin-bottom: 18px;
}

.post-review-stars svg {
  fill: #FAC408;
  width: 100%;
  height: 100%;
}

.post-review p {
  line-height: 150%;
  font-size: 24px;
  margin-bottom: 25px;
}

.post-review-author {
  display: flex;
  align-items: center;
}

.post-review-author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-right: 15px;
}

.post-review-author-photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-review-author-name {
  line-height: 150%;
  font-size: 18px;
  font-weight: 600;
}

.post-review-author-date {
  line-height: 150%;
  font-size: 14px;
  opacity: 0.5;
}

.post-features {
  background: #F8F8F8;
  border-radius: 20px;
  padding: 32px;
}

.post-features p {
  margin-top: 16px;
  margin-bottom: 0;
}

.post-features-items {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.post-features-card {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 48px 16px 32px;
}

.post-features-card-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 155px;
  margin-bottom: 50px;
}

.post-features-card-illustration img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.post-features-card p {
  font-weight: 600;
}

.post-features-card .btn {
  margin-top: 8px;
  gap: 8px;
}

.post-sidebar {
  height: 100%;
}

.post-sidebar > *:not(:last-child) {
  margin-bottom: 30px;
}

.post-related {
  background: #F8F8F8;
  border-radius: 20px;
  padding: 16px 16px 24px;
}

.post-related > .subtitle {
  color: rgba(6, 34, 30, 0.5);
  margin-bottom: 24px;
}

.post-related ul li {
  display: flex;
  align-items: center;
}

.post-related ul li:not(:last-child) {
  margin-bottom: 24px;
}

.post-related ul li a {
  display: flex;
  align-items: flex-start;
  color: #06221E;
}

.post-related ul li a:hover {
  color: #024840;
}

.post-related ul li a .subtitle {
  margin: 0;
}

.post-related ul li a h6 {
  font-size: 18px;
  color: currentColor;
}

.post-related-photo {
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  margin-right: 8px;
}

.post-related-photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-demo {
  border-radius: 20px;
  background: #024840;
  padding: 36px 24px 24px;
  color: #fff;
  position: sticky;
  top: 118px;
}

.post-demo > svg {
  width: 140px;
  height: 30px;
  fill: #E4FD6F;
  margin-bottom: 20px;
}

.post-demo p {
  margin-top: 8px;
  margin-bottom: 0;
}

.post-demo .btn {
  width: 100%;
  margin-top: 40px;
}

.post-contents {
  background: #F8F8F8;
  border-radius: 20px;
  padding: 24px 24px 32px;
}

.post-contents.-sticky {
  position: sticky;
  top: 118px;
  animation: fade-in 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post-contents.-sticky.-dismiss {
  animation: fade-out 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post-contents > .subtitle {
  color: rgba(6, 34, 30, 0.5);
  margin-bottom: 28px;
}

.post-contents ul li {
  display: flex;
  align-items: center;
}

.post-contents ul li:not(:last-child) {
  margin-bottom: 16px;
}

.post-contents ul li a {
  display: flex;
  align-items: flex-start;
  line-height: 150%;
  font-size: 18px;
  color: #06221E;
}

.post-contents ul li a.active {
  font-weight: 700;
  color: #024840;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/**
 *  Blockquote
 */

.post-blockquote.-decor:before {
  opacity: 0.1;
  border-color: #E4FD6F;
  width: 268px;
  height: 555px;
  top: 72px;
  left: 0;
  border-width: 100px;
}

.post-blockquote.-decor:after {
  opacity: 0.2;
  border-color: #E4FD6F;
  width: 159px;
  height: 331px;
  top: 0;
  transform: translateY(-50%);
  right: 0;
  border-width: 60px;
}

/**
 * Hero
 */

.about-hero {
  padding: 64px 0px 328px;
  position: relative;
}

.about-hero.-decor:after {
  display: none;
}

.about-hero .hero-info .subtitle {
  margin-bottom: 16px;
}

.about-hero .hero-info h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

.about-hero img {
  display: block;
  width: 100%;
  margin-left: auto;
}

/**
 * About Banner
 */

.about-page-banner .about-banner-inner {
  margin-top: -265px;
}

.about-page-banner .about-banner-info img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

/**
 * Team
 */

.team {
  background: #F8F8F8;
  overflow: hidden;
}

.team h2 {
  margin-bottom: 64px;
}

.team .row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 40px;
}

.team-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 30px 30px 18px;
  text-align: center;
  color: #06221e;
  transition: 0.2s;
  height: 100%;
}

.team-card:hover {
  color: #024840;
  background: #E4FD6F;
}

.team-card:hover .team-card-info {
  transform: translate(0);
}

.team-card:hover .btn {
  opacity: 1;
  visibility: visible;
}

.team-card-photo {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  transition: 0.2s;
  margin-bottom: 24px;
}

.team-card-photo.-neon {
  background: #E4FD6F;
}

.team-card-photo.-purple {
  background: #AC8EFF;
}

.team-card-photo.-green {
  background: #024840;
}

.team-card-photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-info {
  transition: 0.2s;
  transform: translateY(16px);
  display: flex;
  flex-direction: column;
}

.team-card-name {
  line-height: 150%;
  font-size: 20px;
  font-weight: 600;
}

.team-card-position {
  line-height: 150%;
  font-size: 16px;
  opacity: 0.7;
}

.team-card .btn {
  gap: 8px;
  align-self: center;
  margin-top: 11px;
  opacity: 0;
  visibility: hidden;
}

.team-join {
  text-align: center;
  padding: 80px 10%;
}

.team-join .subtitle {
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.team-join .btn {
  margin-top: 48px;
  padding-left: 68px;
  padding-right: 68px;
}

/**
 * Stats
 */

.about-stats {
  background: #F8F8F8;
  overflow: hidden;
}

.about-stats-items {
  margin-top: 48px;
}

.about-stats-items .row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 40px;
}

.about-stats-no-padding-top .about-stats-items {
  margin-top: 0;
}

.about-stats-card {
  background: #fff;
  border-radius: 15px;
  padding: 66px 0 66px 48px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-stats-card span {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 64px;
  line-height: 135%;
  letter-spacing: -0.02em;
  line-height: 120%;
  margin-bottom: 10px;
}

.about-stats-card p {
  line-height: 150%;
  font-size: 24px;
}

.about-stats-info {
  margin-top: 120px;
}

.about-stats-info h3 {
  margin-bottom: 24px;
}

.about-stats-info-slider {
  max-width: 640px;
  margin-left: auto;
}

/**
 * Values
 */

.about-values p {
  line-height: 150%;
  font-size: 24px;
}

.about-values-blockquote {
  margin-top: 80px;
}

.about-values-blockquote p {
  margin-top: 0;
  margin-bottom: 14px;
}

.about-values-blockquote-author {
  margin-top: 48px;
}

.about-values-blockquote-author p {
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 0;
}

.about-values-blockquote-author span {
  line-height: 150%;
  font-size: 20px;
  opacity: 0.7;
}

.about-values .values-card p {
  line-height: 150%;
  font-size: 18px;
}

.about-values .values-card-illustration {
  margin-bottom: 20px;
}

.about-values .values-card-illustration svg,
.about-values .values-card-illustration img {
  height: 200px;
  width: auto;
}

.about-values-photo {
  margin-top: 80px;
}

.about-values-photo img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

/**
 * Offers
 */

.about-offers {
  background: linear-gradient(to right, #024840 50% 0, #0e2c28 0);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-offers:before,
.about-offers:after {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  width: 159px;
  height: 331px;
  border-color: rgba(228, 253, 111, 0.1);
  border-width: 60px;
}

.about-offers:before {
  transform: translateY(50%) scale(-1);
  left: 0;
  bottom: 0;
}

.about-offers:after {
  right: 50%;
  top: 0;
  transform: translateY(-50%);
}

.about-offers .subtitle {
  letter-spacing: 0.1em;
}

.about-offers-actions {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
}

.about-offers-actions .btn:not(:last-child) {
  margin-bottom: 32px;
}

.about-offers-actions .btn:not(.-filled, .-bordered).-white svg {
  fill: currentColor;
}

.about-offers-actions .btn.-filled,
.about-offers-actions .btn.-bordered {
  padding-left: 72px;
  padding-right: 72px;
}

.about-offers-trial {
  padding: 60px 20% 60px 0;
  display: flex;
  flex-direction: column;
}

.about-offers-trial > svg,
.about-offers-trial img {
  display: block;
  width: 32px;
  height: 49px;
  fill: #E4FD6F;
  margin-bottom: 45px;
}

.about-offers-partnerships {
  padding: 60px 10%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.about-offers-partnerships:before {
  display: none;
  content: "";
  background: #0e2c28;
  height: 100%;
  width: 100vw;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
}

.about-offers-partnerships * {
  position: relative;
}

.about-offers-partnerships > svg,
.about-offers-partnerships img {
  display: block;
  width: 32px;
  height: 49px;
  fill: #E4FD6F;
  margin-bottom: 45px;
}

.page-id-3619 .about-stats-card {
  padding: 42px 20px 42px 32px;
}

.page-id-3619 .about-stats-card span {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

/**
 * Hero
 */

.contact-hero {
  padding: 48px 0px 345px;
}

.contact-hero .hero-info h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

/**
 * Help Center Banner
 */

.help-center-banner {
  background: #F8F8F8;
}

.help-center-banner-inner {
  overflow: hidden;
  padding: 75px 0;
  position: relative;
  margin-top: -300px;
  background: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 290px 450px;
  gap: 80px;
  justify-content: center;
  align-items: center;
}

.help-center-banner-inner:before {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  width: 268px;
  height: 555px;
  border-width: 105px;
  left: 0;
  top: 50px;
  border-color: #e6edec;
  transform: scaleX(-1);
}

.help-center-banner-inner > * {
  position: relative;
}

.help-center-banner-inner img {
  display: block;
  width: 100%;
}

.help-center-banner-inner .btn {
  padding-left: 74px;
  padding-right: 74px;
  margin-top: 40px;
}

/**
 * Contact
 */

.contact {
  background: #F8F8F8;
}

.contact-info img,
.contact-info svg {
  display: block;
  height: 225px;
  width: auto;
  max-width: 100%;
  max-height: 225px;
  margin-bottom: 64px;
}

.contact-info p {
  line-height: 150%;
  font-size: 24px;
  margin-top: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-form .checkbox,
.contact-form .radio {
  justify-self: start;
}

.contact-form button {
  margin-top: 8px;
  width: 100%;
}

/**
 * Hero
 */

.pricing-hero {
  padding: 48px 0px 270px;
}

.pricing-hero.-decor:after {
  bottom: 50%;
  transform: translateY(50%);
}

.pricing-hero .hero-info {
  display: flex;
  flex-direction: column;
}

.pricing-hero h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

.pricing-hero p {
  margin-top: 16px;
}

.pricing-hero-type {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 55px;
  position: relative;
  align-self: center;
}

.pricing-hero-type p {
  line-height: 150%;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.pricing-hero-type p.-yearly {
  color: #E4FD6F;
}

.pricing-hero-type img {
  display: block;
  position: absolute;
  bottom: 0;
  right: -16px;
  transform: translateX(100%);
  width: 190px;
  pointer-events: none;
}

.pricing-hero-switch {
  margin: 0px 16px;
  background: #0e2c28;
  border-radius: 48px;
  width: 50px;
  height: 27px;
  position: relative;
  display: block;
  cursor: pointer;
}

.pricing-hero-switch input {
  display: none;
}

.pricing-hero-switch input:checked + span {
  background: #E4FD6F;
  left: 50%;
}

.pricing-hero-switch span {
  position: absolute;
  height: 21px;
  width: 21px;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: 0.2s;
  background: #fff;
}

.pricing-hero-slider {
  background: #f7f9f3;
  border-radius: 20px;
  border: 0;
  box-shadow: none;
  height: 8px;
  width: 100%;
  max-width: 400px;
  margin: 100px auto 20px auto;
}

.pricing-hero-slider .noUi-connect {
  background: #E4FD6F;
}

.pricing-hero-slider .noUi-handle:after,
.pricing-hero-slider .noUi-handle:before {
  display: none;
}

.pricing-hero-slider .noUi-origin {
  top: 50%;
  transform: translateY(-50%);
}

.pricing-hero-slider .noUi-handle {
  background: #E4FD6F;
  border: 0;
  border-radius: 50%;
  cursor: grab;
  box-shadow: none;
  width: 24px;
  height: 24px;
  transition: 0.2s;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
}

.pricing-hero-slider .noUi-handle.noUi-active {
  cursor: grabbing;
}

.pricing-hero-slider .noUi-touch-area {
  display: none;
}

.pricing-hero-slider .noUi-tooltip {
  border: 0;
  background: #E4FD6F;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  bottom: auto;
  top: -20px;
  transform: translate(-50%, -100%);
  padding: 3px 15px;
}

.pricing-hero-slider .noUi-tooltip:after {
  display: block;
  content: "";
  width: 26px;
  height: 10px;
  background: url(../img/icons/slider-tooltip-triangle.svg) no-repeat center bottom/100%;
  position: absolute;
  transform: translate(-50%, 100%);
  left: 50%;
  bottom: 1px;
  pointer-events: none;
  transition: 0.2s;
}

.pricing-hero-slider-text {
  max-width: 400px;
  margin: 0 auto;
}

.pricing-hero-currency {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.pricing-hero-currency li {
  list-style: none;
}

.pricing-hero-currency li a {
  background: rgba(6, 34, 30, 0.5);
  color: #fff;
  padding: 5px 8px;
  border-radius: 100px;
  font-size: 13px;
}

.pricing-hero-currency li a.active {
  background: #06221E;
  font-weight: 600;
}

.pricing-hero-currency li a:hover {
  background: #06221E;
}

/**
 * Plans
 */

.pricing-plans {
  background: #F8F8F8;
  padding-bottom: 80px;
}

.pricing-plans-items {
  margin-top: -190px;
  position: relative;
}

.pricing-plans-items .row {
  --bs-gutter-y: 30px;
}

.pricing-plans-card {
  background: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 25px 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-plans-card.-popular {
  background: #E4FD6F;
}

.pricing-plans-card.-popular .subtitle {
  margin-bottom: 0;
  margin-top: 5px;
}

.pricing-plans-card.-popular .subtitle span {
  background: #AC8EFF;
  padding: 3px 8px;
  color: #fff;
  font-size: 12px;
  border-radius: 100px;
}

.pricing-plans-card-top {
  text-align: center;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
}

.pricing-plans-card-top p {
  margin-top: 24px;
  margin-bottom: auto;
  opacity: 0.6;
  min-height: 60px;
}

.pricing-plans-card-top > a.pricing-plans-card-on-request {
  color: #06221E;
  border: 1px solid #06221E;
  border-radius: 100px;
}

.pricing-plans-card-top > a.pricing-plans-card-on-request:hover {
  color: #AC8EFF;
}

.pricing-plans-card-top > a.pricing-plans-card-on-request-dark {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
}

.pricing-plans-card-top > a.pricing-plans-card-on-request-dark:hover {
  color: #E4FD6F !important;
}

.pricing-plans-card-info {
  display: flex;
  justify-content: center;
  text-align: left;
  margin-top: 24px;
  flex-wrap: wrap;
}

.pricing-plans-card-info small {
  line-height: 150%;
  font-size: 18px;
  margin-top: 10px;
}

.pricing-plans-card-info > span {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
  font-size: 46px;
  margin: 0px 8px;
}

.pricing-plans-card-info p {
  line-height: 150%;
  font-size: 16px;
  font-size: 15px;
  opacity: 1;
  margin-top: 10px;
}

.pricing-plans-card-on-request {
  line-height: 150%;
  font-size: 20px;
  font-weight: 600;
  margin-top: 16px;
}

.pricing-plans-card-main {
  margin-bottom: 20px;
}

.pricing-plans-card-main-title {
  line-height: 150%;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-plans-card-main p {
  line-height: 150%;
  font-size: 16px;
  opacity: 0.6;
  margin-top: 0;
  margin-top: 32px;
}

.pricing-plans-card-main ul li {
  line-height: 150%;
  font-size: 18px;
  position: relative;
  padding-left: 25px;
}

.pricing-plans-card-main ul li:not(:last-child) {
  margin-bottom: 24px;
}

.pricing-plans-card-main ul li:before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icons/check-purple.svg) no-repeat center/100%;
  top: 5px;
  left: 0;
}

.pricing-plans-card-main ul li:not(:last-child) {
  margin-bottom: 18px;
}

.pricing-plans-card-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-plans-card-actions .btn:not(:last-child) {
  margin-bottom: 24px;
}

.pricing-plans-card-actions .btn.-filled {
  width: 100%;
  max-width: 274px;
}

.pricing-plans-card-no-padding {
  padding-bottom: 40px;
}

.pricing-plans-card-game p {
  margin-top: 12px;
  margin-bottom: auto;
  opacity: 0.6;
}

.pricing-plans-card-game .pricing-plans-card-main-title {
  margin-top: 50px;
}

.pricing-plans-card-game ul li {
  line-height: 150%;
  font-size: 18px;
  position: relative;
  padding-left: 25px;
}

.pricing-plans-card-game ul li:not(:last-child) {
  margin-bottom: 24px;
}

.pricing-plans-card-game ul li:before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icons/check-purple.svg) no-repeat center/100%;
  top: 5px;
  left: 0;
}

.pricing-plans-info {
  text-align: center;
  margin-top: 80px;
}

.pricing-plans-info p {
  line-height: 150%;
  font-size: 14px;
  opacity: 0.6;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-plans-info p:not(:last-child) {
  margin-bottom: 10px;
}

/**
 * Details
 */

.pricing-details {
  background: #fff !important;
}

.pricing-details-table {
  overflow: auto;
  margin: 0 auto;
  max-width: 980px;
}

.pricing-details-head {
  margin-bottom: 24px;
}

.pricing-details-head .pricing-details-row {
  align-items: stretch;
}

.pricing-details-head .pricing-details-row > div {
  flex-direction: column;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: 0 !important;
  justify-content: flex-start !important;
}

.pricing-details-head .pricing-details-row > div p {
  line-height: 150%;
  font-size: 16px;
  margin-top: 8px;
  opacity: 0.5;
  z-index: -1;
}

.pricing-details-head-mobile {
  display: none;
}

.pricing-details-head-desktop {
  display: block;
}

.pricing-details-block:not(:last-child) {
  margin-bottom: 64px;
}

.pricing-details-block-title {
  line-height: 150%;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: grid;
  position: sticky;
  left: 0;
  padding-left: 24px;
  margin-bottom: 24px;
}

.pricing-details-row {
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  line-height: 150%;
  font-size: 18px;
}

.pricing-details-row > div:not(.pricing-details-block-title) {
  padding: 16px 8px;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
}

.pricing-details-row > div:not(.pricing-details-block-title):first-child {
  position: sticky;
  left: 0;
  background: #fff;
  padding-left: 24px;
}

.pricing-details-row > div:not(.pricing-details-block-title):last-child {
  padding-right: 24px;
}

.pricing-details-row > div:not(.pricing-details-block-title):not(:first-child) {
  justify-content: center;
  text-align: center;
}

.pricing-details-row:nth-child(even) {
  background: #F8F8F8;
}

.pricing-details-row:nth-child(even) > div:first-child {
  background: #F8F8F8;
}

.pricing-details .tooltip {
  margin-left: 8px;
}

.pricing-details-gray {
  background: #F8F8F8;
}

.pricing-details-gray .pricing-details-block > .pricing-details-row:nth-child(even) {
  background: #F8F8F8;
}

.pricing-details-gray .pricing-details-block > .pricing-details-row:nth-child(even) > div:first-child {
  background: #F8F8F8;
}

.pricing-details-gray .pricing-details-head {
  margin: 0 auto 40px auto;
  max-width: 980px;
  position: sticky;
  top: 80px;
  padding: 20px;
  border-radius: 10px;
}

.pricing-details-gray .pricing-details-button div {
  display: block;
}

.pricing-details-gray .pricing-details-button span {
  display: block;
  width: 100%;
  margin-top: 15px;
  font-size: 12px;
  line-height: 18px;
}

.pricing-details-gray .pricing-details-row {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

/**
 * Hero
 */

.lp-hero {
  position: relative;
  overflow: hidden;
}

.lp-hero.-lp1:before {
  top: auto;
  transform: translateY(50%) scaleX(-1);
}

.lp-hero.-lp1:after {
  top: 0;
  bottom: auto;
  transform: translateY(-50%);
}

.lp-hero.-lp1 .hero-actions .btn {
  padding-left: 72px !important;
  padding-right: 72px !important;
}

.lp-hero.-lp1 .hero-actions .btn:nth-child(1) {
  margin-top: 0 !important;
  margin-left: 0 !important;
}

.lp-hero.-lp2:before {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  transform: scaleX(-1) translateY(50%);
  left: 0;
  bottom: 0;
  width: 126px;
  height: 275px;
  border-color: #48726e;
  border-width: 50px;
}

/**
 * Contact Us
 */

.contact-us {
  text-align: center;
  background: #F8F8F8;
}

.contact-us p {
  line-height: 150%;
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 0;
}

.contact-us-form {
  max-width: 450px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 100%;
  gap: 32px;
}

.contact-us .btn {
  margin-top: 16px;
}

/**
 * Sound Familiar
 */

.sound-familiar {
  background: #F8F8F8;
  text-align: center;
  overflow: hidden;
}

.sound-familiar-info {
  line-height: 150%;
  font-size: 24px;
  margin: 16px auto 0;
  max-width: 640px;
}

.sound-familiar-items {
  margin-top: 80px;
}

.sound-familiar-items .row {
  --bs-gutter-x: 64px;
  --bs-gutter-y: 64px;
}

.sound-familiar-card {
  text-align: left;
}

.sound-familiar-card-illustration {
  height: 200px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.sound-familiar-card-illustration img {
  display: block;
  height: 200px;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

.sound-familiar-card p {
  line-height: 150%;
  font-size: 18px;
  opacity: 0.6;
  margin-top: 17px;
}

/**
 * Toolkit
 */

.toolkit {
  background: #F8F8F8;
}

.toolkit-info {
  line-height: 150%;
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 0;
  opacity: 0.6;
}

.toolkit-nav {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.toolkit-nav li {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 150%;
  font-size: 24px;
  color: rgba(6, 34, 30, 0.6);
  cursor: pointer;
  border-radius: 20px 20px 0 0;
  padding: 32px 0 52px;
}

.toolkit-nav li.active {
  color: #06221e;
  font-weight: 500;
  background: #fff;
}

.toolkit-nav li svg,
.toolkit-nav li img {
  width: 32px;
  height: 32px;
  fill: #AC8EFF;
  margin-right: 12px;
}

.toolkit-tabs {
  margin-top: -24px;
}

.toolkit-tabs .tab {
  display: none;
}

.toolkit-tabs .tab.active {
  display: block;
}

.toolkit .about-banner-inner {
  align-items: flex-start;
}

.toolkit .about-banner-inner:before,
.toolkit .about-banner-inner:after {
  display: none;
}

.toolkit .about-banner-info {
  align-self: center;
}

.toolkit .about-banner-info h3 {
  margin-bottom: 24px;
}

.toolkit .about-banner-info p {
  line-height: 150%;
  font-size: 20px;
  margin-top: 0;
}

.toolkit .about-banner-info p:not(:last-child) {
  margin-bottom: 14px;
}

.toolkit .about-banner-actions {
  margin-top: 58px;
}

.toolkit .about-banner-actions .btn {
  padding-left: 50px;
  padding-right: 50px;
}

.toolkit .about-banner-actions .btn:not(:last-child) {
  margin-right: 32px;
}

/**
 * Get Resource
 */

.get-resource {
  background: #F8F8F8;
  overflow: hidden;
}

.get-resource-info {
  position: relative;
}

.get-resource-info p {
  line-height: 150%;
  font-size: 18px;
  margin-top: 14px;
  margin-bottom: 0;
  padding-right: 20%;
}

.get-resource-info ul {
  margin-top: 24px;
  padding-right: 20%;
}

.get-resource-info ul li {
  line-height: 150%;
  font-size: 18px;
  position: relative;
  padding-left: 25px;
}

.get-resource-info ul li:not(:last-child) {
  margin-bottom: 24px;
}

.get-resource-info ul li:before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icons/check-purple.svg) no-repeat center/100%;
  top: 5px;
  left: 0;
}

.get-resource-info ul li:not(:last-child) {
  margin-bottom: 16px;
}

.get-resource-info img {
  position: absolute;
  bottom: -20px;
  right: 0;
  transform: translateX(65%) rotate(-5.04deg);
  width: 245px;
  display: block;
}

.get-resource-form {
  display: grid;
  gap: 32px;
}

.get-resource-form .form-input:not(:last-child) {
  margin-bottom: 16px;
}

.get-resource-form .checkbox {
  justify-self: center;
}

.get-resource-form .btn {
  width: 100%;
}

/**
 * Double Info
 */

.double-info {
  background: linear-gradient(to right, #E4FD6F 50%, #024840 0);
  overflow: hidden;
}

.double-info .row > *:nth-child(odd) .double-info-content {
  padding-right: 10%;
}

.double-info .row > *:nth-child(even) .double-info-content {
  padding-left: 10%;
}

.double-info .row > *:nth-child(even) .double-info-content:before {
  display: none;
  content: "";
  background: #024840;
  height: 100%;
  width: 101vw;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
}

.double-info-content {
  padding: 64px 0;
  position: relative;
}

.double-info-content.-white {
  color: #fff;
}

.double-info-content * {
  position: relative;
}

.double-info-content h2,
.double-info-content h3,
.double-info-content h4,
.double-info-content h5,
.double-info-content h6 {
  margin-bottom: 17px;
}

.double-info-content p:not(:last-child) {
  margin-bottom: 15px;
}

/**
 * Discover
 */

.discover {
  position: relative;
  overflow: hidden;
  background: #F8F8F8;
}

.discover:before,
.discover:after {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  width: 218px;
  height: 450px;
  border-color: #e6edec;
  border-width: 85px;
}

.discover:before {
  transform: translateX(-40%) scale(-1);
  left: 0;
  top: 42px;
}

.discover:after {
  right: 0;
  bottom: 85px;
  transform: translateX(40%);
}

.discover-info {
  text-align: center;
  position: relative;
}

.discover-info p {
  line-height: 150%;
  font-size: 24px;
  max-width: 845px;
  margin: 24px auto 0;
}

.discover .gform_body {
  max-width: 100%;
}

.discover .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  z-index: 10;
}

.discover-form {
  margin-top: 60px;
  justify-content: center;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.discover-form-block {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.discover-form-block > p {
  margin-bottom: 24px;
}

.discover-form-block .checkbox:not(:last-child),
.discover-form-block .radio:not(:last-child) {
  margin-bottom: 18px;
}

.discover-form input[type=text],
.discover-form input[type=email],
.discover-form input[type=tel],
.discover-form select,
.discover-form textarea {
  padding: 10px 15px;
  margin-bottom: 10px;
}

.discover-form .gfield--type-address,
.discover-form .gfield--type-stripe_creditcard,
.discover-form .gfield--type-total,
.discover-form #field_23_12,
.discover-form #field_24_12 {
  grid-column: span 2;
}

.discover-form .ginput_container_address {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.discover-form .gfield--type-total {
  background: #024840;
  padding: 15px;
  border-radius: 16px;
  margin-bottom: 15px;
}

.discover-form .gfield--type-total label,
.discover-form .gfield--type-total .gfield_description {
  color: #fff;
}

.discover-form .gfield--type-total .gfield_description {
  opacity: 0.5;
  padding-left: 10px;
  font-size: 14px;
}

.discover-form .gfield--type-total input {
  background: none;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 10px;
  margin-bottom: 3px;
  color: #fff;
}

.discover-form .gfield--type-stripe_creditcard {
  margin-bottom: 30px;
}

.discover-form .btn {
  margin-top: 40px;
  grid-column: 1/3;
  justify-self: center;
  padding-left: 170px;
  padding-right: 170px;
}

.page-id-7845,
.page-id-4774 {
  /* Disable error styling only for Address Line 2 and State (optional fields) in field 23 */
  /* Disable error styling only for Address Line 2 and State (optional fields) in field 24 */
}

.page-id-7845 .gform_submission_error,
.page-id-4774 .gform_submission_error {
  margin-bottom: 0;
}

.page-id-7845 ol,
.page-id-4774 ol {
  display: none;
}

.page-id-7845 label#input_23_23_1_label:after,
.page-id-7845 label#input_23_23_3_label:after,
.page-id-7845 label#input_23_23_5_label:after,
.page-id-7845 label#input_23_23_6_label:after,
.page-id-7845 label#input_24_23_1_label:after,
.page-id-7845 label#input_24_23_3_label:after,
.page-id-7845 label#input_24_23_5_label:after,
.page-id-7845 label#input_24_23_6_label:after,
.page-id-4774 label#input_23_23_1_label:after,
.page-id-4774 label#input_23_23_3_label:after,
.page-id-4774 label#input_23_23_5_label:after,
.page-id-4774 label#input_23_23_6_label:after,
.page-id-4774 label#input_24_23_1_label:after,
.page-id-4774 label#input_24_23_3_label:after,
.page-id-4774 label#input_24_23_5_label:after,
.page-id-4774 label#input_24_23_6_label:after {
  content: "(Required)";
  color: #ac8eff;
  margin-left: 5px;
  font-size: 12px;
}

.page-id-7845 .gfield_error #input_23_23_2_container input,
.page-id-7845 .gfield_error #input_23_23_4_container input,
.page-id-4774 .gfield_error #input_23_23_2_container input,
.page-id-4774 .gfield_error #input_23_23_4_container input {
  box-shadow: none !important;
}

.page-id-7845 .gfield_error #input_24_23_2_container input,
.page-id-7845 .gfield_error #input_24_23_4_container input,
.page-id-4774 .gfield_error #input_24_23_2_container input,
.page-id-4774 .gfield_error #input_24_23_4_container input {
  box-shadow: none !important;
}

/**
 * Partnerships
 */

.partnerships {
  background: #0e2c28;
  text-align: center;
  color: #fff;
}

.partnerships-logo {
  width: 32px;
  height: 49px;
  fill: #E4FD6F;
  margin-bottom: 24px;
}

.partnerships .subtitle {
  margin-bottom: 16px;
}

.partnerships .btn {
  margin-top: 40px;
  padding-left: 97px;
  padding-right: 97px;
  margin-right: 10px;
  margin-left: 10px;
}

.partnerships .btn img {
  height: 25px;
  width: auto;
}

/**
 * Tools
 */

.tools {
  background: #F8F8F8;
}

.tools h2 {
  margin-top: 40px;
}

.tools-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.tools-card {
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 36px 20px 32px;
}

.tools-card-illustration {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tools-card-illustration img,
.tools-card-illustration svg {
  height: 180px;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.tools-card p {
  line-height: 150%;
  font-size: 24px;
  font-weight: 600;
  margin-top: 45px;
}

/**
 * Blockquote
 */

.lp-blockquote .blockquote-info-name {
  line-height: 150%;
  font-size: 24px;
}

.lp-blockquote .blockquote-info-position {
  line-height: 150%;
  font-size: 20px;
}

/**
 * Plan Calculator
 */

.plan-calculator {
  background: #F8F8F8;
  position: relative;
  overflow: hidden;
}

.plan-calculator:before,
.plan-calculator:after {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  width: 218px;
  height: 450px;
  border-color: rgba(2, 72, 64, 0.1);
  border-width: 85px;
}

.plan-calculator:before {
  transform: translateY(30%) scale(-1);
  left: 0;
  bottom: 0;
}

.plan-calculator:after {
  right: 0;
  top: 0;
  transform: translateX(30%);
}

.plan-calculator-inner {
  position: relative;
  z-index: 10;
  background: #fff;
  border-radius: 20px;
  padding: 48px 80px 80px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 100px;
}

.plan-calculator-inner > h3 {
  text-align: center;
  margin-bottom: 64px;
}

.plan-calculator-info {
  padding-top: 32px;
}

.plan-calculator-info img {
  display: block;
  height: 232px;
  width: auto;
  max-width: 100%;
  margin-bottom: 48px;
}

.plan-calculator-main > h3,
.plan-calculator-main > h4 {
  margin-bottom: 64px;
}

.plan-calculator-block {
  margin-bottom: 56px;
  padding-right: 10%;
}

.plan-calculator-slider {
  margin-top: 100px;
  background: #f7f9f3;
  border-radius: 20px;
  border: 0;
  box-shadow: none;
  height: 8px;
}

.plan-calculator-slider .noUi-connect {
  background: #024840;
}

.plan-calculator-slider .noUi-handle:after,
.plan-calculator-slider .noUi-handle:before {
  display: none;
}

.plan-calculator-slider .noUi-origin {
  top: 50%;
  transform: translateY(-50%);
}

.plan-calculator-slider .noUi-handle {
  background: #024840;
  border: 0;
  border-radius: 50%;
  cursor: grab;
  box-shadow: none;
  width: 24px;
  height: 24px;
  transition: 0.2s;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
}

.plan-calculator-slider .noUi-handle.noUi-active {
  cursor: grabbing;
}

.plan-calculator-slider .noUi-touch-area {
  display: none;
}

.plan-calculator-slider .noUi-tooltip {
  border: 0;
  background: #E4FD6F;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  min-width: 85px;
  padding: 8px 15px;
  line-height: 150%;
  font-size: 24px;
  font-weight: 600;
  bottom: auto;
  top: -20px;
  transform: translate(-50%, -100%);
}

.plan-calculator-slider .noUi-tooltip:after {
  display: block;
  content: "";
  width: 26px;
  height: 10px;
  background: url(../img/icons/slider-tooltip-triangle.svg) no-repeat center center/100%;
  position: absolute;
  transform: translate(-50%, 100%);
  left: 50%;
  bottom: 0;
  pointer-events: none;
  transition: 0.2s;
}

.plan-calculator-details {
  margin-top: 100px;
}

.plan-calculator-card {
  background: #024840;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 40px 45px;
  color: #fff;
  margin-top: 24px;
  text-align: center;
}

.plan-calculator-card .subtitle {
  margin-top: 4px;
  margin-bottom: 0;
}

.plan-calculator-card > p {
  margin-top: 15px;
  margin-bottom: 0;
  opacity: 0.6;
}

.plan-calculator-card-info {
  display: flex;
  justify-content: center;
  text-align: left;
  margin-top: 24px;
  flex-wrap: wrap;
}

.plan-calculator-card-info small {
  line-height: 150%;
  font-size: 18px;
  margin-top: 10px;
}

.plan-calculator-card-info span {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
  margin: 0px 8px;
}

.plan-calculator-card-info p {
  line-height: 150%;
  font-size: 16px;
  opacity: 1;
  margin-top: 10px;
}

.plan-calculator-card .btn {
  margin-top: 46px;
  padding-left: 80px;
  padding-right: 80px;
}

.plan-calculator-card .btn + span {
  display: block;
  line-height: 150%;
  font-size: 16px;
  opacity: 0.6;
  margin-top: 8px;
}

.plan-calculator-pricing .plan-calculator-slider {
  max-width: 400px;
  margin: 100px auto 20px auto;
}

.plan-calculator-pricing .plan-calculator-slider .noUi-handle,
.plan-calculator-pricing .plan-calculator-slider .noUi-connect {
  background: #E4FD6F;
}

.plan-calculator-pricing .plan-calculator-slider .noUi-tooltip {
  font-size: 15px;
  padding: 3px 8px;
}

/**
 * Hero
 */

.search-results-hero .hero-info {
  padding: 56px 0px 80px;
}

.search-results-hero h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
}

.search-results-hero-form {
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  max-width: 370px;
  margin-top: 48px;
}

.search-results-hero-form svg {
  width: 18px;
  height: 18px;
  fill: #06221E;
  margin-right: 8px;
}

.search-results-hero-form input {
  line-height: 150%;
  font-size: 16px;
  font-weight: 600;
  color: #024840;
  display: block;
  width: 100%;
}

.search-results-hero-illustration {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.search-results-hero-illustration img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

/**
 * Search Results
 */

.search-results {
  overflow: hidden;
  background: #F8F8F8;
}

.search-results h2,
.search-results h3 {
  margin-bottom: 36px;
}

.search-results .row {
  --bs-gutter-x: 64px;
  --bs-gutter-y: 50px;
}

.search-results .pagination {
  margin-top: 100px;
}

.search-results-bottom {
  text-align: center;
  margin-top: 40px;
}

.search-results-bottom h3 {
  margin: 0;
}

.search-results-bottom .btn {
  padding-left: 84px;
  padding-right: 84px;
  margin-top: 32px;
}

.error {
  --topbar: 40px;
  --header: 88px;
  min-height: calc(100vh - var(--topbar) - var(--header));
  min-height: calc(var(--vh, 1vh) * 100 - var(--topbar) - var(--header));
}

.error .hero-info > img {
  display: block;
  width: 100%;
  max-width: 255px;
  margin: 0 auto 15px;
}

.error .hero-info h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

.error .hero-actions .btn {
  padding-left: 52px;
  padding-right: 52px;
}

.error .hero-actions .btn:not(:last-child) {
  margin-right: 24px;
}

.error .hero-actions .btn.-white svg {
  fill: currentColor;
}

/**
 * Hero
 */

.cybersecurity-hero {
  padding: 40px 0px 45px;
  background: url(../img/protection-hero/bg.svg) no-repeat center bottom/100% 100%;
}

.cybersecurity-hero .hero-info {
  display: flex;
  flex-direction: column;
}

.cybersecurity-hero h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

.cybersecurity-hero .subtitle {
  line-height: 150%;
  font-size: 16px;
}

.cybersecurity-hero p {
  line-height: 150%;
  font-size: 24px;
  margin-top: 32px;
}

.cybersecurity-hero .btn {
  align-self: center;
  margin-top: 32px;
  gap: 10px;
  padding-left: 100px;
  padding-right: 100px;
}

.cybersecurity-hero .btn svg {
  --size: 18px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
}

/**
 * Train
 */

.cybersecurity-train {
  padding: 80px 0px 104px;
}

.cybersecurity-train h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
  text-align: center;
  margin-bottom: 100px;
}

.cybersecurity-train h2 span {
  color: #AC8EFF;
}

.cybersecurity-train-info {
  margin-bottom: 40px;
}

.cybersecurity-train-info-item {
  display: none;
}

.cybersecurity-train-info-item.-active {
  display: block;
}

.cybersecurity-train-info-item h3 {
  margin-bottom: 24px;
}

.cybersecurity-train-info-item p {
  line-height: 150%;
  font-size: 24px;
}

.cybersecurity-train-pagination {
  display: flex;
  align-items: center;
}

.cybersecurity-train-pagination li {
  background: #eeeeee;
  border-radius: 54px;
  --size: 44px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  line-height: 150%;
  font-size: 18px;
  line-height: var(--size);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

.cybersecurity-train-pagination li:not(:last-child) {
  margin-right: 8px;
}

.cybersecurity-train-pagination li.-active {
  background: #024840;
  color: #e4fd6f;
}

.cybersecurity-train-gallery-item {
  display: none;
}

.cybersecurity-train-gallery-item.-active {
  display: block;
}

.cybersecurity-train-gallery-item img {
  display: block;
  width: 100%;
}

/**
 * Prevention
 */

.cybersecurity-prevention {
  background: #024840;
  padding: 80px 0;
  color: #fff;
}

.cybersecurity-prevention-info {
  text-align: center;
  margin-bottom: 40px;
}

.cybersecurity-prevention-info p {
  margin-top: 40px;
  line-height: 150%;
  font-size: 24px;
}

.cybersecurity-prevention .row {
  --bs-gutter-y: 30px;
}

.cybersecurity-prevention-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  color: #06221e;
  height: 100%;
}

.cybersecurity-prevention-card span {
  display: flex;
  align-items: flex-end;
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 64px;
  line-height: 135%;
  letter-spacing: -0.02em;
}

.cybersecurity-prevention-card span small {
  line-height: 150%;
  font-size: 24px;
  margin-left: 5px;
}

.cybersecurity-prevention-card p {
  line-height: 150%;
  font-size: 24px;
  margin-top: 10px;
  line-height: 129%;
}

.cybersecurity-prevention-bottom {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cybersecurity-prevention-bottom .btn {
  gap: 10px;
  padding-left: 100px;
  padding-right: 100px;
}

.cybersecurity-prevention-bottom .btn svg {
  --size: 18px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
}

/**
 * Trusted By
 */

.cybersecurity-trusted-by {
  padding-top: 0;
}

/**
 * Game Only Pricing
 */

.game-only-pricing {
  background: #024840;
  padding: 80px 0;
  text-align: center;
}

.game-only-pricing .subtitle {
  line-height: 150%;
  font-size: 16px;
}

.game-only-pricing h2 {
  color: #fff;
}

.game-only-pricing .protection-hero-type {
  margin-top: 50px;
  margin-bottom: 40px;
  color: #fff;
}

.game-only-pricing .pricing-plans-card {
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px 24px;
  align-items: center;
}

.game-only-pricing .pricing-plans-card-top {
  margin-bottom: 0;
  min-height: auto !important;
}

.game-only-pricing .pricing-plans-card-top > p {
  margin-top: 16px;
  margin-bottom: 0;
}

.game-only-pricing .pricing-plans-card-top ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.game-only-pricing .pricing-plans-card-top ul li {
  line-height: 150%;
  font-size: 12px;
  color: #024840;
  padding: 8px 16px;
  box-shadow: inset 0 0 0 1px #024840;
  border-radius: 20px;
  position: relative;
}

.game-only-pricing .pricing-plans-card-top ul li:not(:last-child) {
  margin-right: 28px;
}

.game-only-pricing .pricing-plans-card-top ul li:not(:last-child):after {
  display: block;
  content: "+";
  line-height: 150%;
  font-size: 20px;
  color: #024840;
  position: absolute;
  transform: translate(100%, -50%);
  top: 50%;
  right: -8px;
}

.game-only-pricing .pricing-plans-card-info p {
  line-height: 150%;
  font-size: 14px;
}

.game-only-pricing .pricing-plans-card-info p span {
  margin-top: 3px;
}

.game-only-pricing .pricing-plans-card-main {
  min-height: auto !important;
  text-align: left;
  margin-bottom: 0;
  grid-row: 1/3;
  grid-column: 2/3;
  padding: 24px;
  background: #f7f9f3;
  border-radius: 20px;
}

.game-only-pricing .pricing-plans-card-main-title {
  font-weight: 700;
  margin-bottom: 16px;
}

.game-only-pricing .pricing-plans-card-main ul li:not(:last-child) {
  margin-bottom: 16px;
}

.game-only-pricing .pricing-plans-card-main ul li.-unavailable {
  color: #011816;
  opacity: 0.3;
}

.game-only-pricing .pricing-plans-card-main ul li.-unavailable:before {
  background-image: url(../img/icons/cross-purple.svg);
}

.game-only-pricing .pricing-plans-card-actions .btn {
  max-width: 80%;
  margin-bottom: 16px;
}

.game-only-pricing .pricing-plans-card-actions p {
  line-height: 150%;
  font-size: 14px;
}

.game-only-pricing-details {
  line-height: 150%;
  font-size: 18px;
  margin-top: 40px;
  color: #fff;
}

.game-only-pricing-details a {
  color: #fff;
  font-weight: 700;
}

.game-only-pricing-details a:hover {
  color: #AC8EFF;
}

/**
 * Hero
 */

.protection-hero {
  padding: 48px 0px 104px;
  background: url(../img/protection-hero/bg.svg) no-repeat center top/100% calc(100% - 170px);
}

.protection-hero .row {
  --bs-gutter-y: 40px;
}

.protection-hero .hero-info {
  display: flex;
  flex-direction: column;
}

.protection-hero h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

.protection-hero-text {
  line-height: 150%;
  font-size: 18px;
  margin-top: 16px;
  text-align: center;
}

.protection-hero-text p {
  margin: 0;
}

.protection-hero-text p:not(:last-child) {
  margin-bottom: 12px;
}

.protection-hero-type {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 25px;
  position: relative;
  align-self: center;
  width: 100%;
  gap: 16px;
}

.protection-hero-type > div {
  display: flex;
  align-items: center;
  grid-column: 2/3;
}

.protection-hero-type p {
  line-height: 150%;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.protection-hero-type p.-yearly {
  color: #E4FD6F;
}

.protection-hero-type-label {
  line-height: 150%;
  font-size: 12px;
  font-weight: 700;
  color: #e4fd6f;
  padding: 8px 16px;
  box-shadow: inset 0 0 0 1px #e4fd6f;
  border-radius: 20px;
  align-self: center;
  justify-self: start;
}

.protection-hero-switch {
  margin: 0px 16px;
  background: #0e2c28;
  border-radius: 48px;
  width: 50px;
  height: 27px;
  position: relative;
  display: block;
  cursor: pointer;
}

.protection-hero-switch input {
  display: none;
}

.protection-hero-switch input:checked + span {
  background: #E4FD6F;
  left: 50%;
}

.protection-hero-switch span {
  position: absolute;
  height: 21px;
  width: 21px;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: 0.2s;
  background: #fff;
}

.protection-hero-plans {
  margin-top: 40px;
}

.protection-hero .pricing-plans-card {
  padding: 32px 40px;
  box-shadow: inset 0 0 0 1px #06221e;
}

.protection-hero .pricing-plans-card.-dark {
  background: #06221e;
}

.protection-hero .pricing-plans-card.-dark .pricing-plans-card-top h3 {
  color: #f7f9f3;
}

.protection-hero .pricing-plans-card.-dark .pricing-plans-card-top > p {
  color: rgba(255, 255, 255, 0.6);
}

.protection-hero .pricing-plans-card.-dark .pricing-plans-card-top ul li {
  color: #fff;
  box-shadow: inset 0 0 0 1px #fff;
}

.protection-hero .pricing-plans-card.-dark .pricing-plans-card-top ul li:not(:last-child):after {
  color: #fff;
}

.protection-hero .pricing-plans-card.-dark .pricing-plans-card-on-request {
  color: #fff;
}

.protection-hero .pricing-plans-card.-dark .pricing-plans-card-main-title {
  color: #fff;
}

.protection-hero .pricing-plans-card.-dark .pricing-plans-card-main ul li {
  color: #fff;
}

.protection-hero .pricing-plans-card.-dark .pricing-plans-card-actions p {
  color: #fff;
}

.protection-hero .pricing-plans-card-top {
  margin-bottom: 32px;
}

.protection-hero .pricing-plans-card-top > p {
  margin-top: 16px;
  margin-bottom: 0;
}

.protection-hero .pricing-plans-card-top ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.protection-hero .pricing-plans-card-top ul li {
  line-height: 150%;
  font-size: 12px;
  color: #024840;
  padding: 8px 16px;
  box-shadow: inset 0 0 0 1px #024840;
  border-radius: 20px;
  position: relative;
}

.protection-hero .pricing-plans-card-top ul li:not(:last-child) {
  margin-right: 28px;
}

.protection-hero .pricing-plans-card-top ul li:not(:last-child):after {
  display: block;
  content: "+";
  line-height: 150%;
  font-size: 20px;
  color: #024840;
  position: absolute;
  transform: translate(100%, -50%);
  top: 50%;
  right: -8px;
}

.protection-hero .pricing-plans-card-info p {
  line-height: 150%;
  font-size: 14px;
}

.protection-hero .pricing-plans-card-on-request {
  line-height: 150%;
  font-size: 18px;
  min-height: 60px;
  margin-top: 24px;
  line-height: 60px;
}

.protection-hero .pricing-plans-card-quote {
  margin-top: 24px;
}

.protection-hero .pricing-plans-card-quote .btn {
  width: 100%;
}

.protection-hero .pricing-plans-card-main {
  text-align: left;
  margin-bottom: 45px;
}

.protection-hero .pricing-plans-card-main-title {
  font-weight: 700;
  margin-bottom: 16px;
}

.protection-hero .pricing-plans-card-main ul li span {
  font-size: 16px;
  display: block;
  opacity: 0.4;
}

.protection-hero .pricing-plans-card-main ul li:not(:last-child) {
  margin-bottom: 16px;
}

.protection-hero .pricing-plans-card-main ul li.-unavailable {
  color: #011816;
  opacity: 0.3;
}

.protection-hero .pricing-plans-card-main ul li.-unavailable:before {
  background-image: url(../img/icons/cross-purple.svg);
}

.protection-hero .pricing-plans-card-actions .btn {
  max-width: 100%;
  margin-bottom: 16px;
}

.protection-hero .pricing-plans-card-actions p {
  line-height: 150%;
  font-size: 14px;
}

.protection-hero-v3 .pricing-plans-card-info p {
  width: 100%;
  text-align: center;
}

.protection-hero-v3 .pricing-plans-card-top-v3 ul li {
  padding: 8px 12px;
}

.protection-hero-v3 .pricing-plans-card-top-v3-last ul li:not(:last-child) {
  margin-right: 18px;
}

.protection-hero-v3 .pricing-plans-card-top-v3-last ul li:not(:last-child):after {
  right: -3px;
}

/**
 * Pricing Plans Content (between cards and table)
 */

.pricing-plans-content {
  margin-bottom: 80px;
}

.pricing-plans-content-inner p {
  line-height: 150%;
  font-size: 18px;
}

.pricing-plans-content-inner p:not(:last-child) {
  margin-bottom: 16px;
}

.pricing-plans-content-inner h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
  margin-bottom: 16px;
}

.pricing-plans-content-inner h3 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 30px;
  margin-bottom: 12px;
}

/**
 * Pricing Table Content (between table and quote slider)
 */

.pricing-table-content {
  padding: 64px 0 0;
}

.pricing-table-content-inner p {
  line-height: 150%;
  font-size: 18px;
}

.pricing-table-content-inner p:not(:last-child) {
  margin-bottom: 16px;
}

.pricing-table-content-inner h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
  margin-bottom: 16px;
}

.pricing-table-content-inner h3 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 30px;
  margin-bottom: 12px;
}

/**
 * Game Only
 */

.game-only {
  padding: 0;
}

.game-only-info .subtitle {
  line-height: 150%;
  font-size: 16px;
  font-weight: 600;
}

.game-only-info h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
}

.game-only-info p {
  margin-top: 16px;
}

.game-only-info .btn {
  gap: 10px;
}

.game-only img {
  width: 100%;
}

/**
 * Blockquote
 */

.protection-blockquote {
  padding: 104px 0;
}

.protection-blockquote-slider-wrap {
  position: relative;
}

.protection-blockquote-slider .swiper-slide {
  height: auto;
}

.protection-blockquote-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.protection-blockquote-nav .slider-button.-prev svg {
  transform: rotate(180deg);
}

.protection-blockquote-pagination {
  position: relative;
  margin-top: 24px;
  text-align: center;
}

.protection-blockquote-pagination .swiper-pagination-bullet {
  margin: 0 4px;
}

.protection-blockquote-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  padding: 32px;
  background: #e3ede2;
  border-radius: 20px;
  align-items: center;
  position: relative;
}

.protection-blockquote-inner:after {
  display: block;
  content: "“";
  font-family: "Hahmlet";
  font-style: normal;
  font-weight: 400;
  font-size: 278px;
  line-height: 60.5%;
  letter-spacing: -0.01em;
  color: #024840;
  position: absolute;
  top: -28px;
  right: 75px;
}

.protection-blockquote-photo img {
  display: block;
  width: 100%;
}

.protection-blockquote-info {
  color: #024840;
}

.protection-blockquote-info p {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: -0.01em;
}

.protection-blockquote-info-name {
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.protection-blockquote-info-position {
  line-height: 150%;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.protection-blockquote .btn {
  margin-bottom: 50px;
}

/**
 * Details
 */

.protection-details {
  background: #f8f8f8;
  padding: 104px 0px 62px;
}

.protection-details .pricing-details-table {
  max-width: 100%;
}

.protection-details .pricing-details-block {
  word-break: break-all;
}

.protection-details .pricing-details-block:not(:last-child) {
  margin-bottom: 40px;
}

.protection-details .pricing-details-block-title {
  letter-spacing: 0;
  color: #919392;
  padding-left: 0;
}

.protection-details .pricing-details-row {
  border-radius: 4px;
  grid-template-columns: 1.5fr 1fr 1fr;
}

.protection-details .pricing-details-row > div:not(.pricing-details-block-title) {
  border-radius: 4px 0 0 4px;
}

.protection-details .pricing-details-row > div:not(.pricing-details-block-title):first-child {
  background: #F8F8F8;
  padding-left: 32px;
}

.protection-details .pricing-details-row > div:not(.pricing-details-block-title):last-child {
  padding-right: 32px;
}

.protection-details .pricing-details-row > div:not(.pricing-details-block-title) img {
  --size: 26px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
}

.protection-details .pricing-details-row:nth-child(even) {
  background: #fff;
}

.protection-details .pricing-details-row:nth-child(even) > div:first-child {
  background: #fff;
}

.protection-details .tooltip {
  margin-left: 10px;
}

.protection-details-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.protection-details-action .btn {
  width: 80%;
}

.protection-details-action p {
  margin-top: 16px;
  line-height: 150%;
  font-size: 14px;
}

/**
 * Try
 */

.try {
  background: #e3ede2;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.try h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
  margin-bottom: 64px;
  color: #024840;
}

.try-info {
  color: #024840;
}

.try-info span {
  line-height: 150%;
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.try-info p {
  line-height: 150%;
  font-size: 20px;
}

.try-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 24px;
  flex-wrap: wrap;
}

.try-timeline:before {
  display: block;
  content: "";
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translate(-50%, 0);
  height: 32px;
  background: #ac8eff;
  width: 80%;
}

.try-timeline:after {
  display: block;
  content: "";
  position: absolute;
  top: 84px;
  right: 0;
  transform: translate(80%, 0);
  height: 32px;
  background: #107267;
  width: 50vw;
}

.try-timeline-item {
  max-width: 260px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.try-timeline-item img {
  --size: 200px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  display: block;
  margin: 0 auto 16px;
}

.try-timeline-center {
  margin-top: -110px;
  position: relative;
  order: 1;
  width: 100%;
}

.try-timeline-center:before {
  display: block;
  content: "";
  border: 2px dashed #024840;
  height: 250px;
  width: 0;
  position: absolute;
  transform: translate(-50%, -80%);
  left: 50%;
  top: 0;
}

.try-timeline-center img {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 226px;
}

.try-timeline-center .try-info {
  display: none;
}

/**
 * Trial Offer
 */

.protection-trial-offer .trial-offer-info h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

.protection-trial-offer .trial-offer-info ul li:before {
  background-image: url(../img/icons/check-circle-neon.svg);
}

.pricing-details-gray .pricing-details-table {
  padding-top: 40px;
}

.pricing-details-gray .pricing-details-head {
  margin-bottom: 0;
}

.pricing-details-gray .pricing-details-head-mobile {
  top: 0px;
}

.protection-trial-offer-button {
  display: flex;
}

.protection-trial-offer-button .btn {
  padding-left: 30px;
  padding-right: 25px;
}

.protection-trial-offer-button .btn.-neon {
  margin-right: 15px;
}

.protection-trial-offer-button .btn.-white svg {
  fill: #fff !important;
}

.pricing-details-row img {
  width: 20px;
  height: 20px;
}

.product-subtitle {
  color: #919392;
  line-height: 150%;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 8px;
}

/**
 * Hero
 */

.product-hero {
  padding: 40px 0px 104px;
  background: url(../img/product-hero/bg.svg) no-repeat center top/100% 56%;
}

.product-hero .hero-info {
  display: flex;
  flex-direction: column;
}

.product-hero h1 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 50px;
  letter-spacing: -0.01em;
}

.product-hero p {
  line-height: 150%;
  font-size: 18px;
  margin-top: 16px;
}

.product-hero .hero-actions {
  margin-top: 25px;
  gap: 8px;
}

.product-hero .hero-actions .btn {
  align-self: center;
  gap: 10px;
  padding-left: 64px;
  padding-right: 64px;
}

.product-hero .hero-actions .btn.-white:not(:hover) svg {
  fill: #fff;
}

.product-hero .hero-actions .btn svg {
  --size: 18px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
}

.product-hero-illustration {
  margin-top: 40px;
}

.product-hero-illustration img {
  display: block;
  width: 100%;
}

/**
 * Why
 */

.product-why {
  overflow: hidden;
  padding: 0;
}

.product-why-info h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
  line-height: 140%;
}

.product-why-info p {
  line-height: 150%;
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 0;
}

.product-why-info .btn {
  margin-top: 30px;
}

.product-why-illustration img {
  display: block;
  width: 100%;
}

/**
 * Tools
 */

.product-tools {
  padding: 0;
}

.product-tools-inner {
  border-radius: 20px;
  background: #024840;
  padding: 40px 0 40px 40px;
  display: grid;
  grid-template-columns: 1fr 52%;
  grid-template-rows: max-content 1fr;
  gap: 40px 20px;
  overflow: hidden;
}

.product-tools-inner h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
  line-height: 140%;
  color: #fff;
}

.product-tools-info > .btn {
  padding-left: 64px;
  padding-right: 64px;
  margin-top: 24px;
}

.product-tools-list li {
  border-radius: 20px;
  border: 1px solid #fff;
  transition: 0.2s;
  padding: 24px;
  cursor: pointer;
}

.product-tools-list li:not(:last-child) {
  margin-bottom: 24px;
}

.product-tools-list li.active {
  cursor: initial;
  border-color: #E4FD6F;
  background: #E4FD6F;
}

.product-tools-list li.active .product-tools-list-trigger .product-tools-list-name {
  color: #024840;
}

.product-tools-list li.active .product-tools-list-trigger span {
  margin-left: 12px;
  display: block;
  --size: 24px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  position: relative;
}

.product-tools-list li.active .product-tools-list-trigger span:before,
.product-tools-list li.active .product-tools-list-trigger span:after {
  transform: translate(-50%, -50%) rotate(180deg);
  background: #024840;
}

.product-tools-list li.active .product-tools-list-trigger span:after {
  transform: translate(-50%, -50%) rotate(270deg);
}

.product-tools-list li.active .product-tools-list-content > * {
  opacity: 1;
}

.product-tools-list-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-tools-list-trigger span {
  margin-left: 12px;
  display: block;
  --size: 24px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  position: relative;
}

.product-tools-list-trigger span:before,
.product-tools-list-trigger span:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 19px;
  height: 3px;
  background: #fff;
  transition: 0.2s;
  border-radius: 20px;
}

.product-tools-list-trigger span:after {
  width: 3px;
  height: 19px;
}

.product-tools-list-name {
  line-height: 150%;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.24px;
  color: #fff;
  transition: 0.2s;
}

.product-tools-list-content {
  transition: max-height 0.3s, padding-top 0.3s;
  max-height: 0;
  overflow: hidden;
}

.product-tools-list-content-inner {
  padding-top: 8px;
}

.product-tools-list-content > * {
  transition: opacity 0.3s;
  opacity: 0;
}

.product-tools-list-content p {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.18px;
  color: #024840;
}

.product-tools-list-content p:not(:last-child) {
  margin-bottom: 16px;
}

.product-tools-gallery {
  display: grid;
  grid-template-columns: 1fr;
}

.product-tools-gallery .tab {
  opacity: 0;
  grid-row-start: 1;
  grid-column-start: 1;
}

.product-tools-gallery .tab.active {
  opacity: 1;
  animation: 400ms ease 0s 1 normal none running tabFadeIn;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateX(30%);
  }

  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

.product-tools-gallery .tab img {
  display: block;
  height: 665px;
}

/**
 * Trusted By
 */

.product-trusted-by .trusted-by-items {
  margin-top: 50px;
}

/**
 * Features
 */

.product-features {
  padding: 104px 0 0 0;
}

.product-features .product-subtitle {
  text-align: center;
}

.product-features h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
  line-height: 140%;
  text-align: center;
}

.product-features-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.product-features-filter li {
  font-size: 16px;
  line-height: 150%;
  color: #024840;
  padding: 3px 15px;
  border: 1px solid #024840;
  border-radius: 20px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  text-align: center;
}

.product-features-filter li:first-letter {
  text-transform: uppercase;
}

.product-features-filter li:before {
  display: block;
  content: attr(data-filter-category);
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.product-features-filter li.-active {
  background: #024840;
  color: #fff;
  cursor: initial;
  pointer-events: none;
  font-weight: 600;
}

.product-features-cards {
  --max-height: 750;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  overflow: hidden;
  max-height: calc(var(--max-height) * 1px);
}

.product-features-card {
  padding: 24px;
  border-radius: 20px;
  background: #E3EDE2;
}

.product-features-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-features-card-top svg,
.product-features-card-top img {
  --size: 30px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  fill: #024840;
}

.product-features-card-category {
  border-radius: 20px;
  background: #024840;
  padding: 4px 16px;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.product-features-card-info p {
  color: #06221E;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.18px;
  margin-top: 8px;
}

.product-features-card-info p:not(:last-child) {
  margin-bottom: 8px;
}

.product-features-card-title {
  color: #06221E;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.2px;
}

.product-features-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 200px;
  width: 100%;
  margin-top: -200px;
  background: linear-gradient(0deg, #FFF 0% 60%, rgba(217, 217, 217, 0) 100%);
}

.product-features-bottom.-active {
  height: auto;
  background: transparent;
  margin-top: 0;
}

.product-features-bottom button {
  display: flex;
  align-items: center;
  color: #024840;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.18px;
  transition: 0.2s;
  margin-top: 20px;
}

.product-features-bottom button:hover {
  color: #AC8EFF;
}

.product-features-bottom button.-active svg {
  transform: rotate(-180deg);
}

.product-features-bottom button svg {
  --size: 18px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  margin-left: 8px;
  fill: currentColor;
  transition: transform 0.2s;
}

/**
 * Cases
 */

.product-cases {
  padding: 104px 0;
  overflow: hidden;
}

.product-cases .product-subtitle {
  text-align: center;
}

.product-cases h2 {
  font-family: "Hahmlet";
  font-weight: 400;
  line-height: 120%;
  font-size: 36px;
  line-height: 140%;
  text-align: center;
}

.product-cases-slider {
  margin-top: 32px;
  overflow: visible;
}

.product-cases-slider .swiper-slide-active .product-cases-card {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.product-cases-card {
  border-radius: 20px;
  background: #E3EDE2;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
}

.product-cases-card:before {
  display: block;
  content: "";
  position: absolute;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border: 20px solid;
  border-right: 0;
  pointer-events: none;
  border-width: 100px;
  border-width: 100px;
  border-color: #BDCCBB;
  width: 278px;
  height: 556px;
  right: -56px;
  top: 160px;
}

.product-cases-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-cases-card-logo {
  display: flex;
  align-items: center;
}

.product-cases-card-logo img,
.product-cases-card-logo svg {
  max-width: 120px;
}

.product-cases-card-review {
  margin-top: 32px;
  max-width: 85%;
  position: relative;
}

.product-cases-card-review > p {
  line-height: 150%;
  font-size: 24px;
  line-height: 150%;
  margin: 0;
}

.product-cases-card-review-author {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
}

.product-cases-card-review-author-photo {
  --size: 60px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}

.product-cases-card-review-author-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-cases-card-review-author-info {
  align-self: center;
}

.product-cases-card-review-author-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 105%;
}

.product-cases-card-review-author-company {
  font-size: 16px;
  line-height: 21px;
  margin-top: 5px;
}

.product-cases-card-results {
  margin-top: 32px;
  max-width: 85%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  position: relative;
}

.product-cases-card-results li {
  display: flex;
  flex-direction: column;
}

.product-cases-card-results li span {
  font-family: "Hahmlet";
  font-size: 64px;
  line-height: 120%;
  letter-spacing: -1.28px;
  display: flex;
}

.product-cases-card-results li span small {
  font-size: 24px;
  letter-spacing: -0.48px;
  line-height: 120%;
  margin-left: 4px;
  margin-bottom: 6px;
  align-self: end;
}

.product-cases-card-results li p {
  color: rgba(64, 67, 66, 0.6);
  font-size: 18px;
}

/**
 * CTA
 */

.product-cta {
  background: linear-gradient(to right, #024840 50% 0, #0E2C28 0);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.product-cta .subtitle {
  letter-spacing: 0;
}

.product-cta h2 {
  font-size: 42px;
  line-height: 120%;
  letter-spacing: -0.42px;
}

.product-cta ul {
  display: flex;
  margin-top: 24px;
}

.product-cta ul li {
  line-height: 150%;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.product-cta ul li:not(:last-child) {
  margin-right: 24px;
}

.product-cta ul li:before {
  display: block;
  content: "";
  --size: 20px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  margin-right: 12px;
  background: url(../img/icons/check-circle-neon.svg) no-repeat center/100%;
}

.product-cta-trial {
  padding: 72px 5% 72px 0;
  display: flex;
  flex-direction: column;
}

.product-cta-trial .btn {
  padding-left: 64px;
  padding-right: 64px;
  align-self: flex-start;
  gap: 8px;
  margin-top: 24px;
}

.product-cta-demo {
  padding: 72px 0 72px 5%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-cta-demo:before {
  display: none;
  content: "";
  background: #0E2C28;
  height: 100%;
  width: 100vw;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
}

.product-cta-demo * {
  position: relative;
}

.product-cta-demo .gform_body {
  margin-top: 0;
}

.product-cta-demo .gform_wrapper.gravity-theme .gfield.gfield--width-two-thirds {
  grid-column: span 7;
  -ms-grid-column-span: 7;
}

.product-cta-demo .gform_wrapper.gravity-theme .gfield.gfield--width-third {
  grid-column: span 5;
  -ms-grid-column-span: 5;
}

.product-cta-demo .gform_wrapper .gform_validation_errors > h2 .gform-icon {
  left: -20px;
}

.product-cta-demo .gform_submission_error {
  background: none !important;
  padding: 5px 15px !important;
}

.product-cta-demo .gform_confirmation_message_1 {
  margin-top: 30px;
  font-weight: bold;
}

.product-cta-demo form {
  display: flex;
  align-items: center;
  align-self: start;
  margin-top: 24px;
}

.product-cta-demo form input {
  padding: 17px 16px !important;
  border-radius: 50px;
  background: #fff;
  font-size: 14px;
  line-height: 160%;
  width: 270px;
  margin-right: 8px;
}

.product-cta-demo form input[type=submit] {
  background-image: url(../img/icons/mail.png) !important;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: 18px 16px;
  padding-right: 32px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.product-cta-demo form input[type=submit]:hover {
  background-image: url(../img/icons/mail-white.png) !important;
  background-color: #AC8EFF;
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: 18px 16px;
  color: #fff;
}

.product-cta-demo form .btn {
  padding-left: 32px;
  padding-right: 32px;
  gap: 8px;
}

.directive {
  padding: 50px 0;
}

.directive-hero {
  padding: 32px 0 64px !important;
}

.directive-hero h1 {
  max-width: 750px;
  margin: 0 auto;
}

.directive-cta {
  margin: 75px 0 50px 0;
}

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }

  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-inline-grid {
    display: inline-grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .home-hero .hero-actions .btn.-filled {
    padding-left: 45px;
    padding-right: 45px;
  }

  .home-hero .hero-actions .btn.-bordered {
    padding-left: 32px;
    padding-right: 32px;
  }

  .lp-hero .hero-actions .btn.-filled {
    padding-left: 45px;
    padding-right: 45px;
  }

  .lp-hero .hero-actions .btn.-bordered {
    padding-left: 38px;
    padding-right: 38px;
  }
}

@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }

  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-inline-grid {
    display: inline-grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .slider-button {
    padding: 19px !important;
  }

  .header-nav .btn svg {
    width: 18px;
    height: 18px;
  }

  .trial-offer {
    padding: 180px 0;
  }

  .blockquote {
    padding: 60px 0;
  }

  .values {
    padding: 80px 0;
  }

  .faq {
    padding: 64px 0 80px;
  }

  .recommended-posts {
    padding: 72px 0px 80px;
  }

  .trusted-by {
    padding: 65px 0px 80px;
  }

  .info {
    padding: 64px 0;
  }

  .short-info {
    padding: 80px 0;
  }

  .why-us {
    padding: 115px 0;
  }

  .useful-links {
    padding: 80px 0;
  }

  .learn-features {
    padding: 80px 0;
  }

  .selected-cases {
    padding: 64px 0px 80px;
  }

  .advantages {
    padding: 80px 0px 120px;
  }

  .title-text-blocks {
    padding: 0px 0px 20px 0;
  }

  .home-hero {
    padding: 35px 0px 80px;
  }

  .features {
    padding: 80px 0px 150px;
  }

  .home-short-info {
    padding-bottom: 0;
  }

  .statistics {
    padding: 95px 0px 120px;
  }

  .industries {
    padding: 80px 0px 140px;
  }

  .industries-logo {
    padding: 100px 0px;
  }

  .vacancies-hero {
    padding: 48px 0px 145px;
  }

  .vacancies-about {
    padding: 80px 0;
  }

  .vacancies {
    padding: 80px 0;
  }

  .vacancies-values {
    padding: 120px 0;
  }

  .vacancy-desc {
    padding: 80px 0px 200px;
  }

  .vacancy-apply {
    padding: 80px 0;
  }

  .other-vacancies {
    padding: 80px 0px;
  }

  .other-vacancies .card {
    padding-bottom: 20px;
  }

  .overview {
    padding: 48px 0px 113px;
  }

  .overview .card {
    padding: 16px 0;
  }

  .overview .card .btn {
    margin-top: 32px;
  }

  .post-block ul li {
    padding-left: 32px;
  }

  .post-review-stars {
    grid-template-columns: repeat(5, 16px);
    grid-template-rows: 16px;
    gap: 4px;
  }

  .team {
    padding: 64px 0px 176px;
  }

  .about-stats {
    padding: 80px 0;
  }

  .contact {
    padding: 120px 0;
  }

  .pricing-plans-card.-popular .subtitle {
    margin-top: -10px;
    margin-bottom: -11px;
  }

  .pricing-plans-card.-popular h3 {
    transform: translateY(-16px);
  }

  .lp-hero.-lp1 {
    padding: 48px 0px 110px;
  }

  .lp-hero.-lp2 {
    padding: 64px 0px 180px;
  }

  .contact-us {
    padding: 48px 0px 120px;
  }

  .sound-familiar {
    padding: 64px 0px 55px;
  }

  .toolkit {
    padding: 70px 0px 60px;
  }

  .get-resource {
    padding: 64px 0;
  }

  .discover {
    padding: 48px 0px 120px;
  }

  .partnerships {
    padding: 48px 0px 104px;
  }

  .tools {
    padding: 80px 0px 110px;
  }

  .plan-calculator {
    padding: 50px 0px 90px;
  }

  .search-results {
    padding: 64px 0px 80px;
  }

  .error {
    padding: 24px 0px 48px;
  }

  .error .hero-actions {
    flex-direction: row;
    margin-top: 32px;
  }

  .cybersecurity-trusted-by {
    padding: 0px 0px 104px;
  }

  .game-only-info .btn {
    padding-left: 100px;
    padding-right: 100px;
  }

  .protection-trial-offer .trial-offer-info ul {
    margin-top: 24px;
  }

  .protection-trial-offer .trial-offer-info ul li:not(:last-child) {
    margin-right: 30px;
  }

  .protection-trial-offer .btn {
    margin-top: 32px;
  }

  .product-trusted-by {
    padding: 104px 0 0 0;
  }

  .product-cta .subtitle {
    font-size: 16px;
    line-height: 150%;
  }
}

@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }

  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-inline-grid {
    display: inline-grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .blockquote {
    padding: 25px 0;
  }

  .values p {
    max-width: 520px;
  }

  .vacancies-values .values-cards {
    margin-top: 0;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 48px 20px;
  }

  .about-values p {
    max-width: 790px;
  }

  .lp-hero.-lp1 .hero-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .lp-hero.-lp1 .hero-actions .btn.-bordered {
    margin-left: 24px;
    margin-top: 0;
  }

  .product-hero .hero-actions {
    flex-direction: row;
  }

  .product-tools-gallery {
    align-self: center;
    grid-column: 2/3;
    grid-row: 1/3;
  }
}

@media (min-width: 1170px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }

  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-inline-grid {
    display: inline-grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .title-text-blocks .row:nth-child(even) .col-md-7 {
    padding-left: 100px;
  }

  .title-text-blocks .row:nth-child(odd) .col-md-7 {
    padding-right: 100px;
  }

  .demo-request__form.desktop {
    display: block;
  }

  .demo-request__form.mobile {
    display: none;
  }

  .home-hero .hero-photo {
    padding-left: 40px;
  }

  .pricing-plans-card-game {
    display: flex;
    justify-content: space-between;
  }

  .pricing-plans-card-game .pricing-plans-card-main {
    margin-bottom: 0;
  }

  .pricing-plans-card-game .pricing-plans-card-main-title {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .pricing-plans-card-game ul li {
    margin-bottom: 5px !important;
  }

  .pricing-plans-card-game .btn-wrap {
    display: flex;
    align-items: center;
  }

  .pricing-plans-card-game .btn {
    min-width: 220px;
  }
}

@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1270px;
  }

  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-inline-grid {
    display: inline-grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .container.-lg {
    max-width: 1330px;
  }

  .container.-sm {
    max-width: 1190px;
  }

  .container.-xs {
    max-width: 1170px;
  }

  .header-nav > .container {
    padding: 0;
    max-width: 100%;
  }

  .header-nav > .container > ul > li:hover:after {
    transform: translateY(3px) rotate(-135deg);
  }

  .header-nav > .container > ul > li.menu-item-has-children:hover > a:after {
    opacity: 1;
    visibility: visible;
  }

  .header-nav > .container > ul > li.has-menu:hover .header-menu {
    pointer-events: inherit;
    opacity: 1;
    visibility: visible;
  }

  .header-nav > .container > ul > li.has-menu-with-cta:hover .header-menu-with-cta {
    pointer-events: inherit;
    opacity: 1;
    visibility: visible;
  }

  .header-nav > .container > ul > li.has-big-menu:hover .header-big-menu {
    pointer-events: inherit;
    opacity: 1;
    visibility: visible;
  }

  .header-menu {
    display: block !important;
    position: absolute;
    transform: translate(0, 100%);
    left: -25px;
    z-index: 100;
    bottom: -30px;
    opacity: 0;
    visibility: hidden;
    padding: 24px;
    background: #f7f9f3;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: 0.2s;
    pointer-events: none;
  }

  .header-menu:before {
    display: block;
    content: "";
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
  }

  .header-menu ul li a:hover {
    color: #024840;
  }

  .header-menu ul li a:hover:after {
    opacity: 1;
    transform: translateX(0);
  }

  .header-menu-with-cta {
    display: grid !important;
    position: absolute;
    transform: translate(0, 100%);
    left: -25px;
    z-index: 100;
    bottom: -29.5px;
    opacity: 0;
    visibility: hidden;
    padding: 32px 32px 32px 16px;
    background: #f7f9f3;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: 0.2s;
    pointer-events: none;
    grid-template-columns: 1fr 438px;
    gap: 65px;
  }

  .header-menu-with-cta:before {
    display: block;
    content: "";
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
  }

  .header-menu-with-cta > ul li a:hover {
    color: #024840;
    background: #ffffff;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.04);
    border-radius: 80px;
  }

  .header-menu-with-cta > ul li a:hover:after {
    opacity: 1;
    transform: translateX(0);
  }

  .header-big-menu {
    display: block !important;
    position: absolute;
    transform: translate(-50%, 100%);
    left: 50%;
    z-index: 100;
    width: calc(100% - var(--bs-gutter-x));
    bottom: -14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 32px 32px 60px;
    background: #f7f9f3;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: 0.2s;
  }

  .header-big-menu-solutions-wrapper {
    width: auto;
    min-width: 800px;
    padding: 32px;
  }

  .header-big-menu:before {
    display: block;
    content: "";
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
  }

  .header-big-menu-items li a:hover {
    color: #024840;
  }

  .header-big-menu-items li a:hover:before {
    display: block;
    content: "";
    opacity: 1;
  }

  .header-big-menu-items li a:hover .header-big-menu-ico {
    background: #E4FD6F;
  }

  .header-big-menu-items li a:hover .header-big-menu-ico img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(60%) saturate(594%) hue-rotate(124deg) brightness(102%) contrast(100%);
  }

  .header-big-menu-items li a:hover .header-big-menu-ico svg {
    fill: #024840;
  }

  .header-big-menu-items li a:hover span:after {
    opacity: 1;
    transform: translateX(0);
  }

  .header .hamburger {
    display: none;
  }

  .advantages .row {
    --bs-gutter-x: 57px;
  }

  .vacancies-about .typ-slider {
    max-width: 640px;
  }

  .post .container {
    max-width: 1130px;
  }

  .contact .container {
    max-width: 1130px;
  }

  .lp-hero .hero-actions {
    justify-content: flex-start;
  }

  .lp-hero .hero-actions .btn.-bordered {
    margin-left: 24px;
  }
}

@media (min-width: 1400px) and (pointer: coarse) {
  .header-nav > .container > ul > li:hover:after {
    transform: translateY(0px) rotate(45deg);
  }

  .header-nav > .container > ul > li.menu-item-has-children:hover > a:after {
    opacity: 0;
    visibility: hidden;
  }

  .header-nav > .container > ul > li.has-menu:hover .header-menu {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }

  .header-nav > .container > ul > li.has-menu-with-cta:hover .header-menu-with-cta {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }

  .header-nav > .container > ul > li.has-big-menu:hover .header-big-menu {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 1540px) {
  .topbar .container {
    justify-content: normal;
  }

  .topbar .btn {
    display: none;
  }
}

@media only screen and (max-width: 1400px) {
  .footer-contacts {
    display: block;
  }

  .footer-reviews {
    margin-top: 30px;
    align-items: flex-end;
  }

  .footer-reviews .wgcurrent {
    display: none;
  }

  .country-selector a {
    padding-left: 0;
  }

  .country-selector.weglot-inline li {
    margin: 20px 10px 20px 0;
  }
}

@media (max-width: 1399px) {
  .header.-dark .header-nav {
    background: #024840;
  }

  .header.-dark .header-menu ul li a:after {
    background: url(../img/icons/long-arrow-white.svg) no-repeat center/100%;
  }

  .header.-dark .header-menu-with-cta ul li a:after {
    background: url(../img/icons/long-arrow-white.svg) no-repeat center/100%;
  }

  .header.-light .header-nav {
    background: #fff;
  }

  .header.-light .header-menu ul li a:after {
    background: url(../img/icons/long-arrow-dark.svg) no-repeat center/100%;
  }

  .header.-fixed .header-inner:before {
    max-width: 1140px;
  }

  .header-inner:before {
    z-index: 940;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 110px 0px 20px;
    visibility: hidden;
    transform: translateX(100%);
    transition: 0.4s;
    overflow: auto;
  }

  .header-nav.active {
    visibility: visible;
    transform: translateX(0);
  }

  .header-nav > .container {
    min-height: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .header-nav > .container > ul {
    display: block;
    margin: auto;
    width: 100%;
  }

  .header-nav > .container > ul > li {
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid rgba(var(--rgb-color-numbers), 0.2);
    padding-bottom: 15px;
  }

  .header-nav > .container > ul > li:not(:last-child) {
    margin-right: 30px;
  }

  .header-nav > .container > ul > li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .header-nav > .container > ul > li.menu-item-has-children:after {
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    margin-right: 10px;
  }

  .header-nav > .container > ul > li.active:after {
    transform: translateY(3px) rotate(-135deg);
  }

  .header-nav > .container > ul > li > a {
    font-size: 22px;
    line-height: 28px;
  }

  .header-nav .btn {
    padding-left: 36px;
    padding-right: 36px;
  }

  .header-nav .btn {
    margin-top: 20px;
  }

  .header-menu {
    display: none;
    margin-top: 20px;
  }

  .header-menu ul li:not(:last-child) {
    margin-bottom: 12px;
  }

  .header-menu ul li a {
    color: currentColor;
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
  }

  .header-menu ul li a:hover {
    color: currentColor;
  }

  .header-menu ul li a:after {
    width: 18px;
    height: 18px;
    opacity: 1;
    transform: translate(0);
    background: url(../img/icons/long-arrow-dark.svg) no-repeat center/100%;
  }

  .header-menu-with-cta {
    display: none;
    margin-top: 20px;
  }

  .header-menu-with-cta > ul li:not(:last-child) {
    margin-bottom: 12px;
  }

  .header-menu-with-cta > ul li a {
    color: currentColor;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    padding-right: 10px;
  }

  .header-menu-with-cta > ul li a:hover {
    color: currentColor;
  }

  .header-menu-with-cta > ul li a:after {
    width: 18px;
    height: 18px;
    opacity: 1;
    transform: translate(0);
    background: url(../img/icons/long-arrow-dark.svg) no-repeat center/100%;
  }

  .header-menu-with-cta .header-menu-cta {
    display: none;
  }

  .header-big-menu {
    display: none;
    margin-top: 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.062745098);
    padding: 30px;
    border-radius: 15px;
  }

  .header-big-menu-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .header-big-menu-items {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .header-big-menu-items li a {
    color: currentColor;
  }

  .header-big-menu-items li a:before {
    display: none;
  }

  .header-big-menu-items li a span {
    color: currentColor;
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
  }

  .header-big-menu-items li a span:hover {
    color: currentColor;
  }

  .header-big-menu-contacts ul li a {
    color: currentColor;
  }

  .header-big-menu-contacts ul li a svg {
    fill: currentColor;
  }

  .header-big-menu-products ul li a {
    color: currentColor;
  }

  .header-login {
    margin-left: 0;
    margin-top: 40px;
    margin-right: 0;
  }

  .header-nav li.active a {
    border-bottom: 0;
  }

  .hero-video {
    margin-left: 50px;
  }

  .blockquote-info {
    padding: 0px 5%;
  }

  .about-banner-info ul {
    margin-top: 30px;
  }

  .advantages-card {
    padding: 48px;
  }

  .features-tabs .tab img {
    margin: 0;
  }

  .vacancies-hero:before {
    width: 500px;
    height: 1000px;
    right: -220px;
    top: 0;
  }

  .vacancies-values-info {
    padding-right: 5%;
  }

  .vacancy-expectations-items {
    gap: 30px;
  }

  .overview-hero-card {
    grid-template-columns: 1fr 550px;
    gap: 60px;
  }

  .overview-items .row {
    --bs-gutter-x: 32px;
  }

  .about-stats-card {
    padding-left: 30px;
  }

  .about-stats-info-slider {
    max-width: 90%;
  }

  .page-id-3619 .about-stats-card {
    padding-left: 30px;
  }

  .pricing-plans-card {
    padding: 40px 25px 48px;
  }

  .plan-calculator-inner {
    gap: 40px;
  }
}

@media (max-width: 1399px) and (pointer: coarse) {
  .header-menu ul li a:hover {
    color: currentColor;
  }

  .header-menu-with-cta > ul li a:hover {
    color: currentColor;
  }

  .header-big-menu-items li a span:hover {
    color: currentColor;
  }
}

@media (max-width: 1170px) {
  .wg-default,
  .wg-default .country-selector {
    position: absolute !important;
  }
}

@media (max-width: 1169px) {
  label.wgcurrent {
    display: none !important;
  }

  .header.-fixed .header-inner:before {
    max-width: 970px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-video {
    width: 450px;
  }

  .trial-offer {
    padding: 60px 0;
  }

  .trial-offer:before {
    border-width: 130px;
  }

  .trial-offer-info ul li:not(:last-child) {
    margin-right: 30px;
  }

  .values-cards {
    gap: 48px 30px;
    grid-template-columns: repeat(3, 1fr);
  }

  .about-banner-inner {
    grid-template-columns: 1fr;
  }

  .about-banner-photo {
    padding-bottom: 65%;
  }

  .trusted-by-items {
    max-width: 80%;
  }

  .info-photo {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .selected-cases-card {
    padding: 56px;
  }

  .selected-cases-card ul li {
    min-width: 200px;
  }

  .selected-cases-card .btn {
    top: 56px;
    right: 56px;
  }

  .demo-request--first {
    padding-top: 20px;
  }

  .demo-request__form {
    margin-left: 0;
    margin-top: 40px;
  }

  .demo-request__form.desktop {
    display: none;
  }

  .demo-request__form.mobile {
    display: block;
  }

  .reviews__items {
    column-count: 1;
  }

  .home-hero:before {
    border-width: 160px;
    height: 1000px;
    top: 100px;
  }

  .home-hero .hero-actions .btn.-bordered {
    margin-top: 20px;
  }

  .home-hero .hero-photo img {
    width: 500px;
  }

  .features:before {
    border-width: 180px;
    height: 1300px;
  }

  .features-nav {
    padding: 0;
  }

  .statistics-info {
    margin-bottom: 60px;
  }

  .vacancies-hero:before {
    top: 115px;
    right: -225px;
  }

  .vacancies-about .typ-slider-nav {
    margin: 32px 0 48px;
  }

  .vacancies-info {
    margin-bottom: 48px;
  }

  .vacancy-blockquote .blockquote.-decor:before {
    width: 200px;
    height: 400px;
    border-width: 80px;
    top: auto;
    bottom: -200px;
  }

  .overview-hero-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 30px;
  }

  .overview-hero-card-slider {
    grid-row: 1;
  }

  .overview-hero-card-photo {
    padding-bottom: 65%;
  }

  .overview-top {
    justify-content: space-between;
  }

  .overview .newsletter ul li:not(:last-child) {
    margin-right: 25px;
  }

  .post-contents.-sticky {
    top: 90px;
  }

  .about-stats-info-slider {
    max-width: 100%;
    margin-top: 40px;
  }

  .about-offers-trial {
    padding-right: 0;
  }

  .about-offers-partnerships {
    padding-right: 0;
    padding-left: 5%;
  }

  .pricing-plans-card-actions {
    margin-top: auto;
  }

  .pricing-plans-card-game .top {
    text-align: center;
  }

  .pricing-details-head-mobile {
    display: block;
  }

  .pricing-details-head-desktop {
    display: none;
  }

  .pricing-details-row {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .lp-hero .hero-actions .btn.-bordered {
    margin-top: 20px;
  }

  .toolkit .about-banner-actions {
    margin-top: 30px;
  }

  .get-resource-info img {
    transform: translateX(55%) rotate(-5.04deg);
    width: 185px;
  }

  .get-resource-info img {
    transform: translateX(25%) rotate(-5.04deg);
  }

  .discover-form {
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
  }

  .tools h2 {
    margin-top: 0;
  }

  .tools-items {
    margin-top: 56px;
  }

  .plan-calculator-inner {
    grid-template-columns: 1fr;
  }

  .plan-calculator-info {
    padding: 0;
  }

  .error {
    --header: 62px;
  }

  .protection-hero {
    background-size: auto calc(100% - 170px);
  }

  .protection-hero-v3 {
    background-size: auto 100%;
  }

  .protection-details .pricing-details-head {
    min-width: 930px;
  }

  .protection-details .pricing-details-block {
    min-width: 930px;
  }

  .protection-details .pricing-details-row {
    grid-template-columns: 1.25fr 1fr 1fr;
  }

  .product-hero {
    background-size: 1440px 55%;
  }

  .product-cases-card-results {
    max-width: 100%;
  }

  .product-cta ul {
    flex-direction: column;
  }

  .product-cta ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .product-cta-trial {
    padding-right: 0;
  }

  .product-cta-demo {
    padding-right: 0;
    padding-left: 5%;
  }
}

@media (max-width: 991px) {
  .card {
    padding: 0;
  }

  .card:before {
    display: none;
  }

  .card .btn {
    opacity: 1;
  }

  .topbar-platforms {
    margin-left: 25px;
  }

  .header.-fixed .header-inner:before {
    max-width: 740px;
  }

  .header-big-menu-products.-right {
    margin-top: 40px;
  }

  .header-big-menu-solutions {
    margin-bottom: 30px;
  }

  .header-big-menu-solutions:last-child {
    margin-bottom: 0px;
  }

  .popup-content {
    flex-direction: column;
    align-items: center;
  }

  .topbar-popup .image img {
    float: none;
  }

  .popup-button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero-video {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 60px;
    height: auto;
    padding-bottom: 65%;
  }

  .trial-offer:before {
    top: -300px;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-bottom-nav {
    margin: 0;
  }

  .footer-payment-methods {
    margin: 0;
    justify-content: flex-end;
  }

  .footer-language {
    margin-left: auto;
  }

  .blockquote img {
    max-width: 350px;
  }

  .blockquote-info {
    padding: 0;
    margin-top: 30px;
  }

  .values {
    text-align: left;
  }

  .values-card-illustration {
    max-width: 120px;
  }

  .newsletter form {
    flex-direction: column;
    align-items: center;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter form .form-input {
    margin-right: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .newsletter form .btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .recommended-posts h2,
  .recommended-posts h3 {
    margin-bottom: 48px;
  }

  .recommended-posts .row {
    --bs-gutter-x: 30px;
  }

  .trusted-by-items {
    max-width: 100%;
  }

  .why-us-photo {
    max-width: 300px;
  }

  .why-us-details {
    max-width: 300px;
    text-align-last: left;
  }

  .why-us-info {
    margin-top: 50px;
  }

  .advantages-card {
    padding: 20px;
  }

  .home-hero:before {
    top: auto;
    bottom: -400px;
  }

  .home-hero .hero-actions .btn.-bordered {
    margin: 0;
    margin-left: 30px;
  }

  .home-hero .hero-photo {
    margin-top: 60px;
  }

  .home-hero .hero-photo img {
    width: 100%;
    max-width: 100%;
  }

  .features:before {
    right: 0;
  }

  .features-nav {
    max-width: 100%;
  }

  .features-nav li:not(:last-child) {
    margin: 0;
  }

  .features .btn {
    margin: 0;
    margin-top: 50px;
  }

  .features-tabs {
    margin-top: 30px;
  }

  .features-tabs .tab img {
    height: auto;
    width: 100%;
  }

  .statistics-grid {
    gap: 30px;
  }

  .industries-nav {
    margin-top: 40px;
    justify-content: flex-start;
  }

  .industries-slider {
    margin-top: 30px;
  }

  .vacancies-hero:before {
    border-width: 150px;
    top: auto;
    height: 800px;
    width: 400px;
    bottom: -550px;
    right: -100px;
  }

  .vacancies-hero-illustration {
    display: none;
  }

  .vacancies-blockquote.-decor:before {
    top: -400px;
  }

  .vacancies-values-info {
    padding: 0;
  }

  .vacancies-values .values-cards {
    margin-top: 56px;
  }

  .vacancy-hero img {
    max-width: 50%;
    margin: 30px auto 0;
  }

  .vacancy-expectations-items {
    grid-template-columns: 1fr 1fr;
  }

  .vacancy-desc img {
    max-width: 320px;
    margin-bottom: 30px;
  }

  .other-vacancies-slider {
    margin-top: 540px;
  }

  .post-resource-info img {
    transform: translateX(60%);
  }

  .post-sidebar {
    padding-top: 80px;
  }

  .post-contents {
    position: static;
  }

  .about-offers {
    background: #024840;
  }

  .about-offers:before {
    border-color: rgba(255, 255, 255, 0.1);
    z-index: 2;
  }

  .about-offers:after {
    right: 0;
  }

  .about-offers-trial {
    padding-bottom: 30px;
  }

  .about-offers-partnerships {
    padding-top: 30px;
    padding-left: 0;
  }

  .about-offers-partnerships:before {
    display: block;
  }

  .help-center-banner-inner {
    padding: 75px 30px;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .help-center-banner-inner:before {
    top: 250px;
  }

  .help-center-banner-inner img {
    margin: 0 auto;
    max-width: 290px;
  }

  .contact-info {
    margin-bottom: 40px;
  }

  .contact-info img,
  .contact-info svg {
    margin-bottom: 30px;
  }

  .pricing-plans-card-info > span {
    margin-right: 0;
  }

  .pricing-plans-card-info p {
    width: 100%;
    text-align: center;
  }

  .lp-hero .hero-actions .btn.-bordered {
    margin: 0;
    margin-left: 30px;
  }

  .toolkit-nav {
    grid-template-columns: 1fr;
  }

  .toolkit-nav li {
    padding: 25px 0;
    border-radius: 20px;
  }

  .toolkit-tabs {
    margin-top: 30px;
  }

  .get-resource-form {
    margin-top: 50px;
  }

  .double-info {
    background: #E4FD6F;
  }

  .double-info .row > *:nth-child(odd) .double-info-content {
    padding-right: 0;
  }

  .double-info .row > *:nth-child(even) .double-info-content {
    padding-left: 0;
  }

  .double-info .row > *:nth-child(even) .double-info-content:before {
    display: block;
  }

  .discover-form {
    grid-template-columns: 1fr;
  }

  .discover-form-block {
    margin-top: 20px;
  }

  .discover-form .btn {
    grid-column: 1/2;
    margin-top: 20px;
  }

  .plan-calculator-inner {
    padding-left: 60px;
    padding-right: 60px;
  }

  .plan-calculator-card-info span {
    margin-right: 0;
  }

  .plan-calculator-card-info p {
    width: 100%;
    text-align: center;
  }

  .search-results-hero {
    padding-top: 60px;
  }

  .search-results-hero .hero-info {
    padding: 0;
    margin-bottom: 40px;
  }

  .search-results-hero-illustration {
    height: 280px;
  }

  .search-results-hero-illustration img {
    position: static;
    width: 60%;
  }

  .search-results h2,
  .search-results h3 {
    margin-bottom: 48px;
  }

  .search-results .row {
    --bs-gutter-x: 40px;
  }

  .search-results-bottom h3 {
    margin-bottom: 0;
  }

  .cybersecurity-hero {
    background-size: auto auto;
  }

  .cybersecurity-train h2 {
    margin-bottom: 60px;
  }

  .cybersecurity-train-gallery {
    margin-bottom: 30px;
  }

  .game-only-pricing .pricing-plans-card {
    display: block;
  }

  .game-only-pricing .pricing-plans-card-main {
    margin: 30px 0;
  }

  .game-only img {
    max-width: 300px;
    margin-bottom: 30px;
  }

  .protection-blockquote-inner {
    grid-template-columns: 1fr;
  }

  .protection-blockquote-photo img {
    max-width: 300px;
  }

  .protection-details .pricing-details-row > div:not(.pricing-details-block-title):first-child {
    padding-left: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(6, 34, 30, 0.1);
  }

  .try-timeline-item img {
    --size: 160px;
  }

  .try-timeline-center {
    margin-top: 20px;
  }

  .try-timeline-center:before {
    height: 350px;
  }

  .product-why-illustration img {
    width: 123%;
  }

  .product-tools-inner {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    padding: 40px;
  }

  .product-tools-gallery .tab img {
    height: 550px;
  }

  .product-features-cards {
    --max-height: 850;
    grid-template-columns: 1fr 1fr;
  }

  .product-cases-card-results {
    grid-template-columns: 1fr 1fr;
  }

  .product-cta {
    background: #024840;
  }

  .product-cta-demo {
    padding-left: 0;
  }

  .product-cta-demo:before {
    display: block;
  }
}

@media (max-width: 767px) {
  .subtitle {
    margin-bottom: 6px;
  }

  p {
    font-size: 18px;
  }

  p {
    margin-bottom: 15px;
  }

  h1 {
    font-size: 38px;
    line-height: 120%;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 18px;
  }

  section {
    padding: 40px 0;
  }

  ul.checklist li {
    font-size: 16px;
  }

  ul.checklist li {
    padding-left: 22px;
  }

  ul.checklist li:not(:last-child) {
    margin-bottom: 12px;
  }

  ul.checklist li:before {
    width: 14px;
    height: 14px;
  }

  .slider-pagination span {
    width: 10px;
    height: 10px;
    margin: 0px 6px;
  }

  .btn {
    gap: 12px;
  }

  .btn.-xl {
    font-size: 18px;
  }

  .btn.-xl svg {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }

  .btn.-lg {
    font-size: 16px;
  }

  .btn.-lg svg {
    min-width: 16px;
    width: 16px;
    height: 16px;
  }

  .btn.-sm svg {
    min-width: 16px;
    width: 16px;
    height: 16px;
  }

  .btn.-filled,
  .btn.-bordered {
    padding: 14px;
  }

  .btn svg {
    min-width: 18px;
    width: 18px;
    height: 18px;
  }

  .btn.-single-button {
    padding-left: 42px !important;
    padding-right: 42px !important;
  }

  .card-photo {
    height: auto;
    padding-bottom: 65%;
    border-radius: 8px;
    margin-bottom: 12px;
  }

  .card .subtitle {
    font-size: 16px;
  }

  .card p {
    font-size: 16px;
  }

  .card p {
    margin-top: 10px;
  }

  .pagination {
    margin-top: 30px !important;
    margin-bottom: 30px;
  }

  .pagination span {
    display: none;
  }

  .nav-links {
    margin: 0px 10px;
  }

  .nav-links span:not(.dots),
  .nav-links a {
    font-size: 16px;
  }

  .nav-links span:not(.dots):not(:last-child),
  .nav-links a:not(:last-child) {
    margin-right: 10px;
  }

  .nav-links span:not(.dots),
  .nav-links a {
    font-size: 16px;
    width: 40px;
    line-height: 40px;
  }

  .nav-links .page-numbers {
    display: none;
  }

  .gform_body label {
    margin-left: 8px;
    margin-bottom: 5px;
  }

  .gform_body input,
  .gform_body textarea,
  .gform_body select {
    font-size: 18px;
    line-height: 25px;
    padding: 15px 18px;
  }

  .gform_body input[type=checkbox],
  .gform_body input[type=radio] {
    padding: 0 0 0 0;
  }

  .gform_footer input[type=submit] {
    gap: 12px;
  }

  .typ-slider-nav {
    margin-top: 15px;
  }

  .typ-slider-nav .slider-pagination {
    margin: 0px 20px;
  }

  .typ-slider-photo {
    border-radius: 8px;
  }

  .topbar-reviews {
    display: none;
  }

  .topbar-platforms {
    margin: 0;
  }

  .header.-fixed .header-inner:before {
    max-width: 550px;
    border-radius: 0 0 12px 12px;
  }

  .header-inner {
    padding: 15px 0;
  }

  .header-logo svg {
    width: 130px;
    height: 26px;
  }

  .header-nav .btn {
    margin-top: 15px;
  }

  .header-menu ul li a {
    font-size: 16px;
  }

  .header-menu-with-cta > ul li a {
    font-size: 16px;
  }

  .header-menu-cta p {
    font-size: 16px;
  }

  .header-menu-cta ul li {
    font-size: 16px;
  }

  .header-menu-cta ul li {
    padding-left: 22px;
  }

  .header-menu-cta ul li:not(:last-child) {
    margin-bottom: 12px;
  }

  .header-menu-cta ul li:before {
    width: 14px;
    height: 14px;
  }

  .header-big-menu-inner {
    gap: 20px;
  }

  .header-big-menu .subtitle {
    margin-bottom: 15px;
  }

  .header-big-menu-items {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .header-big-menu-items li a span {
    font-size: 16px;
  }

  .header-big-menu-ico {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 8px;
    margin-right: 15px;
  }

  .header-big-menu-contacts ul li:not(:last-child) {
    margin-bottom: 15px;
  }

  .header-big-menu-contacts ul li a {
    font-size: 16px;
  }

  .header-big-menu-products ul li a {
    font-size: 16px;
  }

  .header-login {
    padding: 14px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero.-centered .hero-actions {
    align-items: center;
  }

  .hero.-decor:before,
  .hero.-decor:after {
    width: 160px;
    height: 320px;
    border-width: 65px;
  }

  .hero-info > p {
    font-size: 20px;
  }

  .hero-info > p {
    margin-top: 15px;
  }

  .hero-actions {
    margin-top: 30px;
    flex-direction: column;
  }

  .hero-actions p {
    margin-top: 6px;
  }

  .hero-video {
    margin-top: 40px;
  }

  .hero-video:before,
  .hero-video:after {
    width: 80px;
    height: 160px;
    border-width: 25px;
  }

  .hero-video:before {
    transform: translateX(-40%) rotate(45deg);
  }

  .hero-video:after {
    right: 20px;
  }

  .hero-video img {
    border-radius: 8px;
  }

  .hero-video svg {
    width: 60px;
    height: 60px;
  }

  .trial-offer:before {
    width: 380px;
    height: 750px;
    top: -350px;
    left: -150px;
  }

  .trial-offer-info {
    padding: 25px;
  }

  .trial-offer-info h2 {
    font-size: 32px;
  }

  .trial-offer-info h2 {
    font-size: 32px;
  }

  .trial-offer-info ul {
    margin-top: 20px;
    display: block;
  }

  .trial-offer-info ul li {
    font-size: 18px;
  }

  .trial-offer-info ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .trial-offer-subtitle {
    margin-bottom: 8px;
  }

  .trial-offer-intro {
    font-size: 16px;
  }

  .trial-offer .smaller {
    font-size: 34px;
  }

  .trial-offer .btn.-filled {
    padding-left: 42px;
    padding-right: 42px;
  }

  .trial-offer-app .trial-offer-actions {
    flex-direction: column;
  }

  .footer {
    padding: 40px 0;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-reviews img {
    width: 48px;
    height: 48px;
  }

  .blockquote-info {
    margin-top: 20px;
  }

  .blockquote-info p {
    font-size: 20px;
  }

  .blockquote-info-name {
    font-size: 18px;
  }

  .blockquote-info-name {
    margin-top: 15px;
  }

  .values p {
    font-size: 18px;
  }

  .values p {
    margin-top: 15px;
  }

  .values .btn {
    margin-top: 30px;
    padding-right: 48px;
    padding-left: 48px;
  }

  .values-cards {
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
  }

  .values-card p {
    font-size: 16px;
  }

  .newsletter {
    padding: 40px 0;
  }

  .newsletter:before,
  .newsletter:after {
    width: 120px;
    height: 240px;
    border-width: 50px;
  }

  .newsletter:before {
    bottom: -130px;
  }

  .newsletter:after {
    top: -130px;
  }

  .newsletter form {
    margin-top: 25px;
  }

  .newsletter form .form-input {
    margin-bottom: 12px;
  }

  .faq h2,
  .faq h3 {
    margin-bottom: 30px;
  }

  .faq-item {
    padding: 20px;
    border-radius: 8px;
  }

  .faq-item:not(:last-child) {
    margin-bottom: 15px;
  }

  .faq-item-trigger {
    font-size: 22px;
  }

  .faq-item-trigger svg {
    width: 16px;
    height: 16px;
  }

  .faq-item-dropdown {
    margin-top: 16px;
  }

  .faq-item-dropdown p {
    font-size: 16px;
  }

  .faq-item-dropdown p:not(:last-child) {
    margin-bottom: 8px;
  }

  .faq-bottom {
    margin-top: 40px;
  }

  .faq .btn {
    margin-top: 20px;
    padding-left: 36px;
    padding-right: 36px;
  }

  .recommended-posts h2,
  .recommended-posts h3 {
    margin-bottom: 30px;
  }

  .recommended-posts .row {
    --bs-gutter-y: 30px;
  }

  .recommended-posts-bottom {
    margin-top: 40px;
  }

  .recommended-posts-bottom .btn {
    padding-left: 36px;
    padding-right: 36px;
  }

  .about-banner-inner {
    gap: 25px;
    padding: 20px;
    border-radius: 8px;
  }

  .about-banner-inner:before {
    width: 175px;
    height: 350px;
    bottom: -200px;
    border-width: 80px;
  }

  .about-banner-inner:after {
    width: 140px;
    height: 280px;
    border-width: 50px;
  }

  .about-banner-photo {
    border-radius: 8px;
    padding-bottom: 70%;
  }

  .about-banner-info > img {
    margin-bottom: 8px;
    width: 130px;
    height: 28px;
  }

  .about-banner-info p {
    font-size: 20px;
  }

  .about-banner-info ul {
    margin-top: 25px;
  }

  .about-banner-info ul li:not(:last-child) {
    margin-right: 30px;
  }

  .about-banner-info ul li span {
    font-size: 26px;
  }

  .about-banner-info ul li p {
    font-size: 16px;
  }

  .about-banner .btn {
    margin-top: 25px;
  }

  .about-banner-actions {
    margin-top: 25px;
  }

  .about-banner-actions .btn {
    margin-top: 0;
  }

  .trusted-by-items {
    margin-top: 40px;
  }

  .trusted-by-items .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
  }

  .trusted-by-items img {
    max-width: 80%;
    margin: 0 auto;
  }

  .info .subtitle {
    font-size: 16px;
  }

  .info h2,
  .info h3,
  .info h4,
  .info h5,
  .info h6 {
    margin-bottom: 15px;
  }

  .info p {
    font-size: 16px;
  }

  .info p:not(:last-child) {
    margin-bottom: 8px;
  }

  .info li {
    font-size: 16px;
  }

  .info li:not(:last-child) {
    margin-bottom: 8px;
  }

  .info-actions {
    margin-top: 25px;
  }

  .info-actions .btn:not(:last-child) {
    margin-right: 30px;
  }

  .info-photo {
    margin-bottom: 30px;
  }

  .info-photo img {
    border-radius: 8px;
  }

  .short-info p {
    font-size: 20px;
  }

  .short-info .btn {
    padding-left: 42px;
    padding-right: 42px;
  }

  .short-info-photo {
    margin-top: 30px;
  }

  .short-info-photo img {
    border-radius: 8px;
  }

  .short-info-bottom {
    margin-top: 30px;
  }

  .short-info-bottom .btn {
    margin-top: 20px;
  }

  .why-us-details {
    margin-top: 10px;
  }

  .why-us-details-name {
    font-size: 20px;
  }

  .why-us-details-position {
    font-size: 18px;
  }

  .why-us-info {
    margin-top: 30px;
  }

  .why-us-info h2,
  .why-us-info h3,
  .why-us-info h4,
  .why-us-info h5,
  .why-us-info h6 {
    margin-bottom: 20px;
  }

  .why-us-info p {
    font-size: 20px;
  }

  .why-us-info p:not(:last-child) {
    margin-bottom: 15px;
  }

  .why-us-info img {
    margin-top: 30px;
    max-width: 80px;
  }

  .why-us-info .btn {
    padding-left: 42px;
    padding-right: 42px;
    margin-top: 25px;
  }

  .useful-links .row {
    --bs-gutter-y: 20px;
  }

  .useful-links-info {
    margin-bottom: 10px;
  }

  .useful-links ul li:not(:last-child) {
    margin-bottom: 20px;
  }

  .learn-features .row {
    --bs-gutter-y: 30px;
  }

  .learn-features-info {
    margin-bottom: 30px;
  }

  .learn-features ul {
    margin-top: 20px;
  }

  .learn-features ul li:not(:last-child) {
    margin-bottom: 15px;
  }

  .learn-features-bottom {
    margin-top: 30px;
  }

  .learn-features-bottom .btn {
    padding-left: 52px;
    padding-right: 52px;
  }

  .selected-cases .typ-slider {
    margin-top: 30px;
  }

  .selected-cases .typ-slider-nav {
    margin-top: 30px;
  }

  .selected-cases-card {
    border-radius: 8px;
    padding: 30px 20px;
  }

  .selected-cases-card:before {
    width: 160px;
    height: 320px;
    border-width: 65px;
  }

  .selected-cases-card > img {
    height: 24px;
    margin-bottom: 15px;
  }

  .selected-cases-card > p {
    font-size: 20px;
  }

  .selected-cases-card > p {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .selected-cases-card-author-photo {
    margin-right: 12px;
    width: 48px;
    height: 48px;
  }

  .selected-cases-card ul {
    margin-top: 25px;
  }

  .selected-cases-card ul li {
    min-width: auto;
    margin-top: 15px;
  }

  .selected-cases-card ul li:not(:last-child) {
    margin-right: 30px;
  }

  .selected-cases-card ul li span {
    font-size: 38px;
    line-height: 120%;
  }

  .selected-cases-card ul li span {
    font-size: 36px;
  }

  .selected-cases-card ul li p {
    font-size: 20px;
  }

  .selected-cases-card ul li p {
    font-size: 16px;
    margin-top: 5px;
  }

  .selected-cases-card .btn {
    position: static;
    margin-top: 40px;
  }

  .advantages h2 {
    margin-bottom: 40px;
  }

  .advantages-card {
    padding: 0px;
  }

  .advantages-card p {
    font-size: 16px;
  }

  .advantages-card p {
    max-width: 300px;
    margin: 0 auto 15px;
  }

  .advantages-card-border {
    padding: 20px;
  }

  .advantages-card-border p {
    margin: 0 auto;
  }

  .advantages-bottom {
    margin-top: 40px;
  }

  .advantages-bottom .btn {
    padding-left: 42px;
    padding-right: 42px;
  }

  .title-text-blocks img {
    max-height: 260px;
    width: auto;
    margin-bottom: 30px;
  }

  .title-text-blocks ul li {
    font-size: 16px;
  }

  .title-text-blocks ul li {
    padding-left: 22px;
  }

  .title-text-blocks ul li:not(:last-child) {
    margin-bottom: 12px;
  }

  .title-text-blocks ul li:before {
    width: 14px;
    height: 14px;
  }

  .demo-request h1 {
    font-size: 32px;
  }

  .reviews h2 {
    font-size: 26px;
  }

  .home-hero:before {
    width: 450px;
    height: 800px;
    border-width: 120px;
  }

  .home-hero .hero-actions .btn.-bordered {
    margin: 0;
    margin-top: 15px;
  }

  .home-hero .hero-photo {
    margin-top: 40px;
  }

  .features:before {
    width: 400px;
    height: 900px;
    top: -450px;
    right: -200px;
    border-width: 120px;
  }

  .features-info {
    margin-bottom: 30px;
  }

  .features-info p {
    margin-top: 15px;
  }

  .features-nav li {
    font-size: 18px;
  }

  .features-nav li {
    border-radius: 8px;
    padding: 20px;
    --x-offset: 40px;
  }

  .features-nav li:before {
    bottom: 20px;
  }

  .features-nav li:after {
    margin-top: 15px;
  }

  .features .btn {
    margin-top: 30px;
  }

  .features-tabs {
    margin-top: 20px;
  }

  .features-tabs .tab img {
    border-radius: 8px;
  }

  .home-short-info {
    padding-bottom: 0;
  }

  .home-short-info .short-info-photo {
    height: 30vw;
  }

  .statistics-info {
    margin-bottom: 40px;
  }

  .statistics-info > img {
    margin-bottom: 30px;
    max-height: 180px;
  }

  .statistics-info ul {
    margin-top: 20px;
  }

  .statistics-info ul li:not(:last-child) {
    margin-bottom: 15px;
  }

  .statistics-info .btn {
    margin-top: 30px;
  }

  .statistics-grid {
    gap: 20px 15px;
  }

  .statistics-card {
    border-radius: 8px;
    padding: 20px 15px;
  }

  .statistics-card span {
    font-size: 38px;
    line-height: 120%;
  }

  .statistics-card span {
    font-size: 32px;
    margin-bottom: 6px;
  }

  .statistics-card p {
    font-size: 20px;
  }

  .statistics-card p {
    font-size: 16px;
  }

  .statistics-review {
    padding: 30px 20px;
    border-radius: 8px;
    flex-direction: column;
    text-align: center;
  }

  .statistics-review-info {
    align-items: center;
  }

  .statistics-review-info img {
    margin-bottom: 15px;
    max-height: 25px;
  }

  .statistics-review-info p {
    font-size: 20px;
  }

  .statistics-review-author {
    margin-left: 0;
    min-width: auto;
    margin-top: 20px;
  }

  .statistics-review-author p {
    font-size: 16px;
  }

  .statistics-reviews-slider .slider-button {
    top: auto;
    transform: none;
    bottom: 16px;
  }

  .statistics-reviews-card {
    padding: 30px 16px 24px;
  }

  .statistics-reviews-card p {
    font-size: 20px;
  }

  .statistics-reviews-stars {
    margin-bottom: 15px;
  }

  .statistics-reviews-author p {
    font-size: 16px;
  }

  .statistics-reviews-source {
    position: static;
    margin: 20px auto 0;
  }

  .industries h2 {
    font-size: 26px;
  }

  .industries-nav {
    margin-top: 30px;
  }

  .industries-nav .slider-button:not(:last-child) {
    margin-right: 12px;
  }

  .industries-slider {
    margin-top: 20px;
  }

  .vacancies-hero:before {
    border-width: 100px;
    width: 300px;
  }

  .vacancies-hero .hero-actions .btn {
    padding-left: 42px;
    padding-right: 42px;
  }

  .vacancies-about-info svg,
  .vacancies-about-info img {
    width: 130px;
    margin-bottom: 10px;
  }

  .vacancies-about-info h2 {
    margin-bottom: 15px;
  }

  .vacancies-about-info p {
    font-size: 20px;
  }

  .vacancies-about-info p:not(:last-child) {
    margin-bottom: 15px;
  }

  .vacancies-about .typ-slider-nav {
    margin: 15px 0 30px;
    margin-top: 15px;
  }

  .vacancies-info {
    margin-bottom: 30px;
  }

  .vacancies-info-illustration img,
  .vacancies-info-illustration svg {
    height: 180px;
    margin-bottom: 30px;
  }

  .vacancies-info .reviews-stat {
    margin-top: 20px;
  }

  .vacancies-nav {
    margin-bottom: 20px;
    display: block;
  }

  .vacancies-nav p {
    margin-right: 0;
  }

  .vacancies-nav ul {
    margin-top: 5px;
  }

  .vacancies-nav ul li {
    margin-top: 10px;
    padding: 6px 16px;
  }

  .vacancies-nav ul li:not(:last-child) {
    margin-right: 12px;
  }

  .vacancies-card {
    padding: 20px;
    border-radius: 8px;
  }

  .vacancies-card:not(:last-child) {
    margin-bottom: 20px;
  }

  .vacancies-card p {
    font-size: 18px;
  }

  .vacancies-card p {
    margin-top: 6px;
  }

  .vacancies-card ul {
    margin-top: 10px;
  }

  .vacancies-card ul li {
    margin-top: 10px;
    padding: 6px 16px;
  }

  .vacancies-card ul li:not(:last-child) {
    margin-right: 12px;
  }

  .vacancies-card ul li svg {
    width: 15px;
    height: 15px;
    margin-right: 8px;
  }

  .vacancies-card .btn {
    margin-top: 30px;
  }

  .vacancies-blockquote.-decor:before {
    width: 350px;
    height: 700px;
    border-width: 100px;
  }

  .vacancies-blockquote.-decor:after {
    border-width: 60px;
    width: 150px;
    height: 300px;
    bottom: -180px;
  }

  .vacancies-values .values-cards {
    margin-top: 30px;
  }

  .vacancies-values .btn {
    margin-top: 20px;
  }

  .vacancy-hero {
    padding-bottom: 280px;
  }

  .vacancy-hero .hero-info > .btn {
    margin-bottom: 15px;
  }

  .vacancy-hero .hero-info h1 {
    font-size: 32px;
  }

  .vacancy-hero .hero-info ul {
    margin-top: 5px;
  }

  .vacancy-hero .hero-info ul li {
    margin-top: 10px;
    padding: 6px 20px;
  }

  .vacancy-hero .hero-info ul li:not(:last-child) {
    margin-right: 12px;
  }

  .vacancy-hero .hero-info ul li svg {
    width: 15px;
    height: 15px;
    margin-right: 8px;
  }

  .vacancy-hero .hero-info .hero-actions {
    margin-top: 30px;
  }

  .vacancy-hero .hero-info .hero-actions .btn {
    padding-left: 42px;
    padding-right: 42px;
  }

  .vacancy-hero img {
    max-width: 60%;
    margin-top: 10px;
  }

  .vacancy-expectations {
    padding: 0;
  }

  .vacancy-expectations-inner {
    margin-top: -230px;
    border-radius: 8px;
    padding: 20px;
  }

  .vacancy-expectations-inner:after {
    width: 120px;
    height: 250px;
    border-width: 60px;
  }

  .vacancy-expectations-items {
    margin-top: 30px;
    gap: 20px;
  }

  .vacancy-expectations-card-illustration {
    height: 150px;
    margin-bottom: 15px;
  }

  .vacancy-expectations-card-title {
    font-size: 20px;
  }

  .vacancy-expectations-card p {
    font-size: 16px;
  }

  .vacancy-desc img {
    margin-bottom: 20px;
  }

  .vacancy-desc .subtitle {
    margin-bottom: 8px;
  }

  .vacancy-desc p,
  .vacancy-desc ul {
    margin-top: 16px;
  }

  .vacancy-desc ul li {
    font-size: 16px;
  }

  .vacancy-desc ul li {
    padding-left: 22px;
  }

  .vacancy-desc ul li:not(:last-child) {
    margin-bottom: 12px;
  }

  .vacancy-desc ul li:before {
    width: 14px;
    height: 14px;
  }

  .vacancy-desc ul li {
    font-size: 18px;
  }

  .vacancy-desc .btn {
    margin-top: 30px;
    padding-left: 36px;
    padding-right: 36px;
  }

  .vacancy-blockquote .blockquote.-decor:after {
    width: 120px;
    height: 240px;
    border-width: 50px;
  }

  .vacancy-apply .btn {
    margin-top: 30px;
    padding-right: 46px;
    padding-left: 46px;
  }

  .other-vacancies-info p {
    font-size: 20px;
  }

  .other-vacancies-nav {
    margin-top: 30px;
  }

  .other-vacancies-nav .slider-button:not(:last-child) {
    margin-right: 12px;
  }

  .other-vacancies-slider {
    margin-top: 20px;
  }

  .other-vacancies .card ul {
    margin-top: 0;
  }

  .other-vacancies .card ul li {
    margin-top: 10px;
    padding: 6px 16px;
  }

  .other-vacancies .card ul li:not(:last-child) {
    margin-right: 12px;
  }

  .other-vacancies .card ul li svg {
    width: 15px;
    height: 15px;
    margin-right: 8px;
  }

  .overview-hero {
    padding: 60px 0px 40px;
  }

  .overview-hero:before,
  .overview-hero:after {
    width: 175px;
    height: 350px;
    border-width: 70px;
  }

  .overview-hero:before {
    bottom: -30px;
  }

  .overview-hero:after {
    top: -50px;
  }

  .overview-hero h1 {
    font-size: 32px;
  }

  .overview-hero-card {
    margin-top: 30px;
    border-radius: 8px;
    padding: 15px;
    gap: 20px;
  }

  .overview-hero-card-info .subtitle {
    font-size: 16px;
  }

  .overview-hero-card-info .subtitle {
    margin-bottom: 10px;
  }

  .overview-hero-card-info p {
    font-size: 18px;
  }

  .overview-hero-card-info p {
    margin-top: 15px;
  }

  .overview-hero-card-info .btn {
    margin-top: 25px;
  }

  .overview-hero-card-slider .swiper-pagination {
    bottom: 12px;
  }

  .overview-hero-card-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0px 6px;
  }

  .overview-hero-card-photo {
    border-radius: 8px;
  }

  .overview-top {
    margin-bottom: 30px;
    flex-direction: column;
  }

  .overview-nav li {
    padding: 6px 16px;
  }

  .overview-nav li:not(:last-child) {
    margin-right: 12px;
  }

  .overview-search {
    margin-left: auto;
    width: 40px;
    margin-top: 15px;
  }

  .overview-search.active {
    width: 100%;
  }

  .overview-search.active .overview-search-inner input {
    width: 100%;
  }

  .overview-search-inner input {
    transition: 0s;
  }

  .overview .newsletter {
    border-radius: 8px;
    margin: 15px 0;
  }

  .overview .newsletter ul {
    flex-direction: column;
  }

  .overview .newsletter ul li {
    font-size: 18px;
  }

  .overview .newsletter ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .overview .pagination {
    margin-top: 40px;
  }

  .post-hero {
    padding: 40px 0px 260px;
  }

  .post-hero.-text-singe {
    padding: 40px 0;
  }

  .post-hero.-text-singe p {
    font-size: 18px;
  }

  .post-hero .hero-info .btn {
    margin-bottom: 15px;
  }

  .post-hero .hero-info h1 {
    font-size: 32px;
  }

  .post {
    padding: 0 0 40px;
  }

  .post.-text-singe {
    padding-top: 40px;
  }

  .post .container {
    margin-top: -230px;
  }

  .post-info {
    padding: 0;
    display: block;
    text-align: center;
  }

  .post-info p {
    font-size: 16px;
  }

  .post-info p a {
    font-size: 16px;
  }

  .post-info p a {
    margin-bottom: 15px;
  }

  .post-share {
    justify-content: center;
  }

  .post-share p {
    margin: 0;
  }

  .post-share ul {
    margin-left: 20px;
  }

  .post-share ul li a svg {
    width: 22px;
    height: 22px;
  }

  .post-photo {
    border-radius: 8px;
    padding-bottom: 60%;
    margin-bottom: 30px;
  }

  .post-photo-no-thumb {
    border-radius: 8px;
    padding-bottom: 0;
    margin-bottom: 30px;
    height: 200px;
  }

  .post-photo-no-thumb svg {
    max-width: 40%;
  }

  .post-main {
    gap: 25px;
  }

  .post-block {
    gap: 15px;
  }

  .post-block ul li {
    font-size: 16px;
  }

  .post-block ul li {
    padding-left: 22px;
  }

  .post-block ul li:not(:last-child) {
    margin-bottom: 12px;
  }

  .post-block ul li:before {
    width: 14px;
    height: 14px;
  }

  .post-block ul li {
    font-size: 18px;
  }

  .post-block ol li {
    font-size: 16px;
  }

  .post-block ol li {
    padding-left: 22px;
  }

  .post-block ol li:not(:last-child) {
    margin-bottom: 12px;
  }

  .post-block ol li:before {
    width: 14px;
    height: 14px;
  }

  .post-block ol li {
    font-size: 18px;
  }

  .post-block ol li {
    padding-left: 5px;
  }

  .post-block ol li:not(:last-child) {
    margin-bottom: 8px;
  }

  .post-block h2 {
    font-size: 24px;
  }

  .post-block h3 {
    font-size: 22px;
  }

  .post-block h4,
  .post-block h5,
  .post-block h6 {
    font-size: 18px;
  }

  .post-cta {
    border-radius: 8px;
    padding: 20px;
  }

  .post-cta p {
    margin-top: 12px;
  }

  .post-cta .btn {
    margin-top: 20px;
    padding-right: 36px;
    padding-left: 36px;
  }

  .post-resource {
    padding: 20px;
    border-radius: 8px;
  }

  .post-resource-info {
    padding-right: 0;
  }

  .post-resource-info p {
    font-size: 16px;
  }

  .post-resource-info p {
    margin-right: 12px;
  }

  .post-resource-info ul li {
    font-size: 16px;
  }

  .post-resource-info ul li {
    padding-left: 22px;
  }

  .post-resource-info ul li:not(:last-child) {
    margin-bottom: 12px;
  }

  .post-resource-info ul li:before {
    width: 14px;
    height: 14px;
  }

  .post-resource-info ul {
    margin-top: 18px;
  }

  .post-resource-info img {
    position: static;
  }

  .post-resource-info img {
    transform: translate(0);
    margin-top: 20px;
    max-width: 290px;
    width: 80%;
    margin: 30px auto 0;
  }

  .post-resource-form {
    margin-top: 30px;
  }

  .post-resource-form form {
    margin-top: 20px;
    gap: 16px;
  }

  .post-resource-form form .form-input:not(:last-child) {
    margin-bottom: 10px;
  }

  .post-review {
    padding: 20px;
    border-radius: 8px;
  }

  .post-review-stars {
    margin-bottom: 15px;
  }

  .post-review p {
    font-size: 20px;
  }

  .post-review p {
    margin-bottom: 15px;
  }

  .post-review-author-name {
    font-size: 16px;
  }

  .post-features {
    padding: 20px;
    border-radius: 8px;
  }

  .post-features p {
    margin-top: 15px;
  }

  .post-features-items {
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  }

  .post-features-card {
    padding: 30px 15px;
    border-radius: 8px;
  }

  .post-features-card-illustration {
    height: 140px;
    margin-bottom: 30px;
  }

  .post-sidebar {
    padding-top: 40px;
  }

  .post-sidebar > *:not(:last-child) {
    margin-bottom: 20px;
  }

  .post-related {
    padding: 15px;
  }

  .post-related > .subtitle {
    margin-bottom: 20px;
  }

  .post-related ul li:not(:last-child) {
    margin-bottom: 15px;
  }

  .post-related-photo {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .post-demo {
    border-radius: 8px;
    padding: 20px;
  }

  .post-demo > svg {
    width: 130px;
    height: 26px;
    margin-bottom: 10px;
  }

  .post-demo p {
    margin-top: 15px;
  }

  .post-demo .btn {
    margin-top: 20px;
  }

  .post-contents {
    padding: 15px;
  }

  .post-contents {
    padding: 15px;
  }

  .post-contents > .subtitle {
    margin-bottom: 15px;
  }

  .post-contents ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  .post-contents ul li a {
    font-size: 16px;
  }

  .post-blockquote.-decor:before {
    width: 200px;
    height: 400px;
    border-width: 80px;
    top: auto;
    bottom: -200px;
  }

  .post-blockquote.-decor:after {
    width: 120px;
    height: 240px;
    border-width: 50px;
  }

  .about-hero {
    padding-bottom: 250px;
  }

  .about-hero .hero-info h1 {
    font-size: 32px;
  }

  .about-page-banner {
    padding: 0;
  }

  .about-page-banner .about-banner-inner {
    margin-top: -200px;
  }

  .team h2 {
    margin-bottom: 30px;
  }

  .team .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .team-card {
    padding: 30px 30px 15px;
    border-radius: 8px;
  }

  .team-card-photo {
    margin-bottom: 15px;
  }

  .team-card-name {
    font-size: 18px;
  }

  .team-join {
    padding: 20px;
  }

  .team-join .subtitle {
    margin-bottom: 12px;
  }

  .team-join .btn {
    margin-top: 30px;
    padding-left: 42px;
    padding-right: 42px;
  }

  .about-stats-items {
    margin-top: 30px;
  }

  .about-stats-items .row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }

  .about-stats-card {
    border-radius: 8px;
    padding: 20px 15px;
  }

  .about-stats-card span {
    font-size: 38px;
    line-height: 120%;
  }

  .about-stats-card span {
    font-size: 32px;
    margin-bottom: 6px;
  }

  .about-stats-card p {
    font-size: 20px;
  }

  .about-stats-card p {
    font-size: 16px;
  }

  .about-stats-info {
    margin-top: 40px;
  }

  .about-stats-info h3 {
    margin-bottom: 15px;
  }

  .about-stats-info-slider {
    margin-top: 30px;
  }

  .about-values p {
    font-size: 20px;
  }

  .about-values-blockquote {
    margin-top: 30px;
  }

  .about-values-blockquote p {
    margin-bottom: 8px;
    margin-top: 0;
  }

  .about-values-blockquote-author {
    margin-top: 20px;
  }

  .about-values-blockquote-author p {
    margin: 0;
  }

  .about-values-blockquote-author span {
    font-size: 18px;
  }

  .about-values .values-card p {
    font-size: 16px;
  }

  .about-values-photo {
    margin-top: 40px;
  }

  .about-values-photo img {
    border-radius: 8px;
  }

  .about-offers {
    padding: 0;
  }

  .about-offers:before,
  .about-offers:after {
    width: 100px;
    height: 200px;
    border-width: 40px;
  }

  .about-offers-actions {
    margin-top: 25px;
  }

  .about-offers-actions .btn:not(:last-child) {
    margin-bottom: 15px;
  }

  .about-offers-trial {
    padding: 40px 0;
  }

  .about-offers-trial > svg,
  .about-offers-trial img {
    margin-bottom: 30px;
    width: 26px;
    height: 40px;
  }

  .about-offers-partnerships {
    padding: 40px 0;
  }

  .about-offers-partnerships > svg,
  .about-offers-partnerships img {
    margin-bottom: 30px;
    width: 26px;
    height: 40px;
  }

  .page-id-3619 .about-stats-card {
    border-radius: 8px;
    padding: 20px 15px;
  }

  .page-id-3619 .about-stats-card span {
    font-size: 32px;
  }

  .contact-hero {
    padding: 40px 0px 250px;
  }

  .contact-hero .hero-info h1 {
    font-size: 32px;
  }

  .help-center-banner {
    padding: 0;
  }

  .help-center-banner-inner {
    padding: 30px 20px;
    border-radius: 8px;
    gap: 20px;
    margin-top: -200px;
  }

  .help-center-banner-inner:before {
    width: 200px;
    height: 400px;
    border-width: 80px;
    top: 200px;
  }

  .help-center-banner-inner img {
    max-width: 200px;
  }

  .help-center-banner-inner .btn {
    margin-top: 20px;
    padding-left: 36px;
    padding-right: 36px;
  }

  .contact-info {
    margin-bottom: 30px;
  }

  .contact-info img,
  .contact-info svg {
    margin-bottom: 20px;
    max-width: 200px;
  }

  .contact-info p {
    font-size: 20px;
  }

  .contact-info p {
    margin-top: 15px;
  }

  .contact-form {
    gap: 20px;
  }

  .contact-form button {
    margin-top: 5px;
  }

  .pricing-hero {
    padding-bottom: 200px;
  }

  .pricing-hero.-decor:after {
    transform: translateY(30%);
    bottom: 0;
  }

  .pricing-hero h1 {
    font-size: 32px;
  }

  .pricing-hero-type {
    margin-top: 50px;
  }

  .pricing-hero-type p {
    font-size: 16px;
  }

  .pricing-hero-type img {
    width: 150px;
    transform: translateY(100%);
    right: -60px;
    bottom: 17px;
  }

  .pricing-hero-switch {
    margin: 0px 12px;
  }

  .pricing-hero-slider {
    margin-top: 90px;
  }

  .pricing-hero-slider .noUi-handle {
    width: 20px;
    height: 20px;
    right: -10px;
  }

  .pricing-hero-slider .noUi-tooltip {
    border-radius: 8px;
    padding: 6px 12px;
  }

  .pricing-hero-slider .noUi-tooltip:after {
    width: 22px;
    height: 8px;
  }

  .pricing-plans {
    padding: 0 0 40px 0;
  }

  .pricing-plans-items {
    margin-top: -180px;
  }

  .pricing-plans-items .row {
    --bs-gutter-y: 20px;
  }

  .pricing-plans-card {
    padding: 20px;
    border-radius: 8px;
  }

  .pricing-plans-card-top {
    margin-bottom: 20px;
  }

  .pricing-plans-card-top p {
    margin-top: 10px;
    min-height: 0;
  }

  .pricing-plans-card-info {
    margin-top: 15px;
  }

  .pricing-plans-card-info small {
    font-size: 16px;
  }

  .pricing-plans-card-info small {
    margin-top: 8px;
  }

  .pricing-plans-card-info > span {
    font-size: 32px;
  }

  .pricing-plans-card-on-request {
    font-size: 18px;
  }

  .pricing-plans-card-on-request {
    margin-top: 12px;
  }

  .pricing-plans-card-main {
    margin-bottom: 30px;
  }

  .pricing-plans-card-main-title {
    font-size: 18px;
  }

  .pricing-plans-card-main-title {
    margin-bottom: 15px;
  }

  .pricing-plans-card-main p {
    margin-top: 15px;
  }

  .pricing-plans-card-main ul li {
    font-size: 16px;
  }

  .pricing-plans-card-main ul li {
    padding-left: 22px;
  }

  .pricing-plans-card-main ul li:not(:last-child) {
    margin-bottom: 12px;
  }

  .pricing-plans-card-main ul li:before {
    width: 14px;
    height: 14px;
  }

  .pricing-plans-card-actions .btn:not(:last-child) {
    margin-bottom: 15px;
  }

  .pricing-plans-card-game p {
    margin-top: 10px;
    min-height: 0;
  }

  .pricing-plans-card-game .pricing-plans-card-main-title {
    margin-top: 20px;
  }

  .pricing-plans-card-game ul li {
    font-size: 16px;
  }

  .pricing-plans-card-game ul li {
    padding-left: 22px;
  }

  .pricing-plans-card-game ul li:not(:last-child) {
    margin-bottom: 12px;
  }

  .pricing-plans-card-game ul li:before {
    width: 14px;
    height: 14px;
  }

  .pricing-plans-info {
    margin-top: 40px;
  }

  .pricing-details-head {
    min-width: 650px;
    margin-bottom: 15px;
  }

  .pricing-details-head .pricing-details-row > div p {
    margin-top: 5px;
  }

  .pricing-details-block {
    min-width: 650px;
  }

  .pricing-details-block:not(:last-child) {
    margin-bottom: 30px;
  }

  .pricing-details-block-title {
    margin-bottom: 15px;
    padding-left: 15px;
  }

  .pricing-details-row {
    font-size: 16px;
  }

  .pricing-details-row {
    border-radius: 8px;
  }

  .pricing-details-row > div:not(.pricing-details-block-title) {
    padding: 12px 5px;
  }

  .pricing-details-row > div:not(.pricing-details-block-title):first-child {
    padding-left: 15px;
    border-right: 1px solid rgba(6, 34, 30, 0.1);
    min-width: 190px;
    font-size: 14px;
    line-height: 20px;
  }

  .pricing-details-row > div:not(.pricing-details-block-title):last-child {
    padding-right: 15px;
  }

  .lp-hero.-lp1 .hero-actions .btn {
    padding-left: 42px !important;
    padding-right: 42px !important;
  }

  .lp-hero.-lp2:before {
    display: none;
  }

  .lp-hero .hero-actions .btn.-bordered {
    margin: 0;
    margin-top: 15px;
  }

  .contact-us p {
    font-size: 20px;
  }

  .contact-us p {
    margin-top: 15px;
  }

  .contact-us-form {
    max-width: 100%;
    gap: 20px;
    margin-top: 30px;
  }

  .contact-us .btn {
    margin-top: 8px;
  }

  .sound-familiar-info {
    font-size: 20px;
  }

  .sound-familiar-items {
    margin-top: 30px;
  }

  .sound-familiar-items .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
  }

  .sound-familiar-card-illustration {
    height: 150px;
    margin-bottom: 15px;
  }

  .sound-familiar-card p {
    font-size: 16px;
  }

  .sound-familiar-card p {
    margin-top: 8px;
  }

  .toolkit-info {
    font-size: 20px;
  }

  .toolkit-info {
    margin-top: 15px;
  }

  .toolkit-nav {
    margin-top: 30px;
  }

  .toolkit-nav li {
    font-size: 20px;
  }

  .toolkit-nav li {
    padding: 20px 0;
    border-radius: 8px;
  }

  .toolkit-nav li svg,
  .toolkit-nav li img {
    margin-right: 8px;
    width: 24px;
    height: 24px;
  }

  .toolkit-tabs {
    margin-top: 20px;
  }

  .toolkit .about-banner-info p {
    font-size: 18px;
  }

  .toolkit .about-banner-actions {
    margin-top: 20px;
    flex-direction: column;
  }

  .toolkit .about-banner-actions .btn {
    width: 100%;
  }

  .toolkit .about-banner-actions .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .get-resource-info p {
    font-size: 16px;
  }

  .get-resource-info p {
    margin-right: 12px;
    padding-right: 0;
  }

  .get-resource-info ul li {
    font-size: 16px;
  }

  .get-resource-info ul li {
    padding-left: 22px;
  }

  .get-resource-info ul li:not(:last-child) {
    margin-bottom: 12px;
  }

  .get-resource-info ul li:before {
    width: 14px;
    height: 14px;
  }

  .get-resource-info ul {
    margin-top: 18px;
    padding-right: 0;
  }

  .get-resource-info img {
    position: static;
    transform: translate(0);
    margin-top: 20px;
    max-width: 290px;
    width: 80%;
    margin: 30px auto 0;
  }

  .get-resource-form {
    margin-top: 20px;
    gap: 16px;
  }

  .get-resource-form .form-input:not(:last-child) {
    margin-bottom: 10px;
  }

  .double-info {
    padding: 0;
  }

  .double-info-content {
    padding: 40px 0;
  }

  .discover:before,
  .discover:after {
    width: 160px;
    height: 320px;
    border-width: 65px;
  }

  .discover-info p {
    font-size: 20px;
  }

  .discover-info p {
    margin-top: 15px;
  }

  .discover .gform_fields {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }

  .discover .gform_fields .gfield {
    grid-column: span 1 !important;
  }

  .discover-form {
    gap: 20px;
    margin-top: 30px;
  }

  .discover-form-block {
    margin-top: 10px;
  }

  .discover-form-block > p {
    margin-bottom: 15px;
  }

  .discover-form-block .checkbox:not(:last-child),
  .discover-form-block .radio:not(:last-child) {
    margin-bottom: 12px;
  }

  .discover-form .ginput_container_address {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }

  .discover-form .ginput_container_address .gfield {
    grid-column: span 1 !important;
  }

  .discover-form .btn {
    padding-left: 64px;
    padding-right: 64px;
  }

  .partnerships-logo {
    width: 26px;
    height: 40px;
    margin-bottom: 15px;
  }

  .partnerships .subtitle {
    margin-bottom: 8px;
  }

  .partnerships .btn {
    margin-top: 30px;
    padding-left: 42px;
    padding-right: 42px;
  }

  .tools-items {
    gap: 20px;
  }

  .tools-card {
    padding: 20px 15px;
    border-radius: 8px;
  }

  .tools-card-illustration {
    height: 120px;
  }

  .tools-card p {
    font-size: 20px;
  }

  .tools-card p {
    margin-top: 25px;
  }

  .lp-blockquote .blockquote-info-name {
    font-size: 20px;
  }

  .lp-blockquote .blockquote-info-position {
    font-size: 18px;
  }

  .plan-calculator:before,
  .plan-calculator:after {
    width: 160px;
    height: 320px;
    border-width: 65px;
  }

  .plan-calculator-inner {
    padding: 40px 20px 20px;
    border-radius: 8px;
  }

  .plan-calculator-inner > h3 {
    margin-bottom: 30px;
  }

  .plan-calculator-info img {
    height: 180px;
    max-height: 180px;
    margin-bottom: 30px;
  }

  .plan-calculator-main > h3,
  .plan-calculator-main > h4 {
    margin-bottom: 30px;
  }

  .plan-calculator-block {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .plan-calculator-slider {
    margin-top: 90px;
  }

  .plan-calculator-slider .noUi-handle {
    width: 20px;
    height: 20px;
    right: -10px;
  }

  .plan-calculator-slider .noUi-tooltip {
    font-size: 20px;
  }

  .plan-calculator-slider .noUi-tooltip {
    border-radius: 8px;
    padding: 6px 12px;
  }

  .plan-calculator-slider .noUi-tooltip:after {
    width: 24px;
    height: 9px;
  }

  .plan-calculator-details {
    margin-top: 60px;
  }

  .plan-calculator-card {
    padding: 20px;
    border-radius: 8px;
  }

  .plan-calculator-card-info {
    margin-top: 15px;
  }

  .plan-calculator-card-info small {
    font-size: 16px;
  }

  .plan-calculator-card-info small {
    margin-top: 8px;
  }

  .plan-calculator-card-info span {
    font-size: 32px;
  }

  .plan-calculator-card .btn {
    padding-left: 42px;
    padding-right: 42px;
    margin-top: 25px;
  }

  .search-results-hero {
    padding-bottom: 0;
  }

  .search-results-hero .hero-info {
    margin-bottom: 30px;
  }

  .search-results-hero h1 {
    font-size: 26px;
  }

  .search-results-hero-form {
    max-width: 100%;
    margin-top: 30px;
    border-radius: 8px;
    padding: 10px 15px;
  }

  .search-results-hero-form svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }

  .search-results-hero-illustration {
    height: 45vw;
  }

  .search-results-hero-illustration img {
    width: 100%;
  }

  .search-results h2,
  .search-results h3 {
    margin-bottom: 30px;
  }

  .search-results .row {
    --bs-gutter-y: 30px;
  }

  .search-results .pagination {
    margin-top: 40px;
  }

  .search-results-bottom {
    margin-top: 40px;
  }

  .search-results-bottom h3 {
    margin-bottom: 0;
  }

  .search-results-bottom .btn {
    margin-top: 20px;
    padding-left: 36px;
    padding-right: 36px;
  }

  .error {
    --header: 56px;
  }

  .error .hero-info > img {
    max-width: 200px;
  }

  .error .hero-info h1 {
    font-size: 32px;
  }

  .error .hero-actions .btn {
    padding-right: 36px;
    padding-left: 36px;
    min-width: 280px;
  }

  .error .hero-actions .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .cybersecurity-hero {
    padding: 40px 0px 60px;
  }

  .cybersecurity-hero h1 {
    font-size: 32px;
  }

  .cybersecurity-hero p {
    font-size: 20px;
  }

  .cybersecurity-hero .btn {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cybersecurity-train {
    padding: 60px 0px;
  }

  .cybersecurity-train h2 {
    font-size: 26px;
  }

  .cybersecurity-train h2 {
    margin-bottom: 30px;
  }

  .cybersecurity-train-info {
    margin-bottom: 30px;
  }

  .cybersecurity-train-info-item h3 {
    margin-bottom: 18px;
  }

  .cybersecurity-train-info-item p {
    font-size: 20px;
  }

  .cybersecurity-train-pagination li {
    font-size: 16px;
  }

  .cybersecurity-train-gallery {
    margin-bottom: 20px;
  }

  .cybersecurity-prevention {
    padding: 40px 0;
  }

  .cybersecurity-prevention-info {
    margin-bottom: 30px;
  }

  .cybersecurity-prevention-info p {
    font-size: 20px;
  }

  .cybersecurity-prevention-info p {
    margin-top: 24px;
  }

  .cybersecurity-prevention .row {
    --bs-gutter-y: 20px;
  }

  .cybersecurity-prevention-card {
    padding: 20px;
    border-radius: 12px;
  }

  .cybersecurity-prevention-card span {
    font-size: 38px;
    line-height: 120%;
  }

  .cybersecurity-prevention-card span {
    font-family: "Hahmlet";
    font-weight: 400;
    line-height: 120%;
    font-size: 50px;
    letter-spacing: -0.01em;
  }

  .cybersecurity-prevention-card span small {
    font-size: 20px;
  }

  .cybersecurity-prevention-card p {
    font-size: 20px;
  }

  .cybersecurity-prevention-card p {
    margin-top: 8px;
    line-height: 150%;
    font-size: 20px;
  }

  .cybersecurity-prevention-bottom {
    margin-top: 30px;
  }

  .cybersecurity-prevention-bottom .btn {
    padding-left: 40px;
    padding-right: 40px;
  }

  .game-only-pricing {
    padding: 40px 0;
  }

  .game-only-pricing .protection-hero-type {
    margin: 30px 0;
  }

  .game-only-pricing .pricing-plans-card {
    padding: 20px;
  }

  .game-only-pricing .pricing-plans-card-top ul li:not(:last-child):after {
    font-size: 18px;
  }

  .game-only-pricing .pricing-plans-card-main {
    margin: 20px 0;
    border-radius: 12px;
    padding: 16px;
  }

  .game-only-pricing-details {
    font-size: 16px;
  }

  .game-only-pricing-details {
    margin-top: 30px;
  }

  .protection-hero {
    padding: 40px 0px 80px;
  }

  .protection-hero .row {
    --bs-gutter-y: 30px;
  }

  .protection-hero h1 {
    font-size: 32px;
  }

  .protection-hero-text {
    font-size: 16px;
  }

  .protection-hero-type {
    gap: 5px;
    grid-template-columns: 1fr auto 1.5fr;
  }

  .protection-hero-type p {
    font-size: 16px;
  }

  .protection-hero-type-label {
    padding: 8px;
  }

  .protection-hero-switch {
    margin: 0px 12px;
  }

  .protection-hero .pricing-plans-card {
    padding: 20px;
  }

  .protection-hero .pricing-plans-card-top ul li:not(:last-child):after {
    font-size: 18px;
  }

  .protection-hero .pricing-plans-card-on-request {
    font-size: 16px;
  }

  .pricing-plans-content {
    padding: 40px 0 0;
    margin-bottom: 60px;
  }

  .pricing-plans-content-inner p {
    font-size: 16px;
  }

  .pricing-plans-content-inner h2 {
    font-size: 26px;
  }

  .pricing-plans-content-inner h3 {
    font-size: 24px;
  }

  .pricing-table-content {
    padding: 40px 0 0;
  }

  .pricing-table-content-inner p {
    font-size: 16px;
  }

  .pricing-table-content-inner h2 {
    font-size: 26px;
  }

  .pricing-table-content-inner h3 {
    font-size: 24px;
  }

  .game-only-info h2 {
    font-size: 26px;
  }

  .game-only-info .btn {
    padding-left: 40px;
    padding-right: 40px;
  }

  .game-only img {
    margin-bottom: 20px;
  }

  .protection-blockquote {
    padding: 80px 0 60px;
  }

  .protection-blockquote-inner {
    border-radius: 12px;
    padding: 20px;
    gap: 20px;
  }

  .protection-blockquote-inner:after {
    font-size: 150px;
    right: 40px;
    top: -15px;
  }

  .protection-details {
    padding: 40px 0;
  }

  .protection-details .pricing-details-block:not(:last-child) {
    margin-bottom: 30px;
  }

  .protection-details .pricing-details-block-title {
    padding-left: 0;
  }

  .protection-details .pricing-details-row {
    border-radius: 4px;
    grid-template-columns: 0.75fr 1fr 1fr;
  }

  .protection-details .pricing-details-row > div:not(.pricing-details-block-title) {
    padding: 12px 5px;
  }

  .protection-details .pricing-details-row > div:not(.pricing-details-block-title):last-child {
    padding-right: 15px;
  }

  .protection-details .pricing-details-row > div:not(.pricing-details-block-title) img {
    --size: 20px;
  }

  .try {
    padding: 40px 0 60px;
  }

  .try h2 {
    font-size: 26px;
  }

  .try h2 {
    margin-bottom: 32px;
  }

  .try-info span {
    font-size: 18px;
  }

  .try-info span {
    margin-bottom: 3px;
    line-height: 150%;
    font-size: 18px;
  }

  .try-info p {
    font-size: 18px;
  }

  .try-info p {
    line-height: 150%;
    font-size: 18px;
  }

  .try-timeline {
    display: block;
    margin: 0;
  }

  .try-timeline:before {
    top: 10px;
    left: 30px;
    height: 100%;
    transform: translate(0);
    width: 20px;
  }

  .try-timeline:after {
    top: -20px;
    left: 30px;
    height: 100%;
    transform: translateY(100%);
    width: 20px;
  }

  .try-timeline-item {
    max-width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
  }

  .try-timeline-item img {
    --size: 80px;
    margin: 0;
    margin-right: 12px;
  }

  .try-timeline-center {
    margin: 0;
    margin: 60px 0;
    padding-left: 100px;
  }

  .try-timeline-center:before {
    height: 0;
    width: 100px;
    top: 50%;
    left: 0;
    transform: translate(20%, -50%);
  }

  .try-timeline-center img {
    width: 120px;
    margin: 0;
    margin-right: 15px;
  }

  .try-timeline-center .try-info {
    display: block;
    text-align: left;
    margin-top: 12px;
  }

  .protection-trial-offer .trial-offer-info h2 {
    font-size: 32px;
  }

  .protection-trial-offer-button {
    display: block;
  }

  .protection-trial-offer-button .btn.-neon {
    margin-bottom: 0px;
  }

  .protection-trial-offer-button .btn {
    width: 100%;
  }

  .product-subtitle {
    font-size: 14px;
    letter-spacing: -0.14px;
  }

  .product-hero {
    padding: 10px 0px 64px;
    background-size: 900px 65%;
  }

  .product-hero h1 {
    font-size: 32px;
  }

  .product-hero p {
    font-size: 16px;
  }

  .product-hero .hero-actions .btn {
    padding-left: 40px;
    padding-right: 40px;
  }

  .product-hero-illustration {
    margin-top: 30px;
  }

  .product-why-info {
    margin-bottom: 40px;
  }

  .product-why-info h2 {
    font-size: 26px;
  }

  .product-why-info p {
    font-size: 16px;
  }

  .product-tools-inner {
    padding: 24px 16px;
    gap: 0;
  }

  .product-tools-inner h2 {
    font-size: 26px;
  }

  .product-tools-info > .btn {
    padding-left: 40px;
    padding-right: 40px;
  }

  .product-tools-list {
    margin-top: 24px;
  }

  .product-tools-list-name {
    font-size: 20px;
  }

  .product-tools-gallery {
    margin-top: 40px;
  }

  .product-tools-gallery .tab img {
    max-height: 450px;
    height: 90vw;
  }

  .product-trusted-by {
    padding-top: 64px;
  }

  .product-trusted-by .trusted-by-items img {
    max-width: 80%;
  }

  .product-features {
    padding-top: 64px;
  }

  .product-features h2 {
    font-size: 26px;
  }

  .product-features-cards {
    --max-height: 900;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-cases {
    padding: 64px 0;
  }

  .product-cases h2 {
    font-size: 26px;
  }

  .product-cases-card {
    padding: 32px;
  }

  .product-cases-card:before {
    right: -118px;
    bottom: -180px;
    top: auto;
  }

  .product-cases-card-logo img,
  .product-cases-card-logo svg {
    max-width: 90px;
  }

  .product-cases-card-review {
    max-width: 100%;
  }

  .product-cases-card-review > p {
    font-size: 20px;
  }

  .product-cases-card-review-author-name {
    font-size: 16px;
    line-height: 21px;
  }

  .product-cases-card-review-author-company {
    font-size: 14px;
    margin-top: 4px;
  }

  .product-cta h2 {
    font-size: 32px;
    letter-spacing: -0.32px;
  }

  .product-cta ul {
    display: block;
  }

  .product-cta ul li {
    font-size: 16px;
  }

  .product-cta ul li:not(:last-child) {
    margin-bottom: 9px;
  }

  .product-cta ul li:before {
    --size: 16px;
    margin-right: 8px;
  }

  .product-cta-trial {
    padding: 40px 0;
  }

  .product-cta-trial .btn {
    padding-left: 64px;
    padding-right: 64px;
  }

  .product-cta-demo {
    padding: 40px 0;
  }

  .product-cta-demo .gform_wrapper.gravity-theme .gfield.gfield--width-two-thirds {
    grid-column: span 12;
    -ms-grid-column-span: 12;
  }

  .product-cta-demo .gform_wrapper.gravity-theme .gfield.gfield--width-third {
    grid-column: span 12;
    -ms-grid-column-span: 12;
  }

  .product-cta-demo form input {
    padding: 15px 16px;
  }

  .product-cta-demo form .btn {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .cybersecurity-prevention-card span {
    font-size: 32px;
  }

  .cybersecurity-prevention-card p {
    font-size: 18px;
  }

  .try-info span {
    font-size: 16px;
  }

  .try-info p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .topbar-platforms a {
    display: none;
  }

  .header.-fixed .header-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header.-fixed .header-inner:before {
    max-width: calc(100vw - 30px);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trial-offer .btn.-filled {
    width: 100%;
  }

  .footer-main ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  .footer-info p {
    margin-top: 15px;
  }

  .footer-logo svg {
    width: 130px;
    height: 26px;
  }

  .footer-title {
    margin-bottom: 15px;
  }

  .footer-title-spacing-top {
    margin-top: var(--bs-gutter-y);
  }

  .footer-contacts {
    margin-top: 30px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .footer-socials {
    margin-top: 20px;
  }

  .footer-socials li:not(:last-child) {
    margin-right: 25px;
  }

  .footer-socials li a svg {
    width: 22px;
    height: 22px;
  }

  .footer-reviews {
    margin-bottom: 20px;
    align-items: start;
  }

  .footer-reviews img {
    width: 36px;
    height: 36px;
  }

  .footer-reviews-stars {
    grid-template-columns: repeat(5, 16px);
    grid-template-rows: 16px;
    gap: 4px;
    margin-bottom: 5px;
  }

  .footer-bottom {
    margin-top: 30px;
    grid-template-columns: 1fr 60px;
    gap: 15px;
  }

  .footer-bottom-nav li:not(:last-child) {
    margin-right: 25px;
  }

  .footer-payment-methods {
    margin: 0;
    justify-content: start;
    grid-column: 1/3;
  }

  .footer-payment-methods li:not(:last-child) {
    margin-right: 15px;
  }

  .footer-language {
    margin: 0;
  }

  .trusted-by-items img {
    max-width: 70%;
  }

  .info-actions {
    flex-direction: column;
  }

  .info-actions .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .info-actions .btn.-filled,
  .info-actions .btn.-bordered {
    width: 100%;
  }

  .vacancy-expectations-items {
    grid-template-columns: 1fr;
  }

  .vacancy-desc img {
    max-width: 100%;
  }

  .post-share ul li:not(:last-child) {
    margin-right: 20px;
  }

  .about-offers-actions {
    width: 100%;
  }

  .about-offers-actions .btn.-filled,
  .about-offers-actions .btn.-bordered {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .pricing-hero-slider {
    max-width: calc(100% - 80px);
  }

  .pricing-details-row {
    grid-template-columns: 0.75fr 1fr 1fr 1fr 1fr;
  }

  .lp-hero .hero-actions {
    align-items: stretch !important;
  }

  .discover-form .btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .partnerships .btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .tools-items {
    grid-template-columns: 1fr;
  }

  .plan-calculator-slider {
    margin-right: 30px;
    margin-left: 30px;
  }

  .plan-calculator-card .btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .search-results-hero-illustration {
    height: 52vw;
  }

  .protection-details .pricing-details-head {
    min-width: 750px;
  }

  .protection-details .pricing-details-block {
    min-width: 750px;
  }

  .protection-details .pricing-details-row {
    grid-template-columns: 0.75fr 1fr 1fr;
  }

  .protection-details-action .btn {
    width: 90%;
  }

  .protection-details-action p {
    margin-top: 12px;
  }

  .product-hero {
    background-size: 600px 78%;
  }

  .product-tools-info > .btn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .product-cases-card-results {
    grid-template-columns: 1fr;
  }

  .product-cta-demo form {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .product-cta-demo form input {
    padding: 12px 16px;
  }

  .product-cta-demo form input {
    margin-right: 0;
    width: 100%;
    margin-bottom: 8px;
  }
}

@media (min-width: 1170px) and (max-width: 1399px) {
  .toolkit .about-banner-actions {
    justify-content: space-between;
  }

  .toolkit .about-banner-actions .btn {
    padding-left: 30px;
    padding-right: 30px;
  }

  .toolkit .about-banner-actions .btn:not(:last-child) {
    margin-right: 0;
  }
}

@media (min-width: 992px) and (max-width: 1169px) {
  .product-cta-demo form input {
    width: 210px;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-inline-grid {
    display: inline-grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}

@media (pointer: coarse) {
  p a:hover {
    text-decoration: underline;
  }

  .btn.-filled.-neon:hover {
    color: #06221E;
    background: #E4FD6F;
  }

  .btn.-filled.-green:hover {
    background: #024840;
  }

  .btn.-filled.-light-green:hover {
    color: #06221E;
    background: #e3ede2;
  }

  .btn.-filled.-white:hover {
    color: #06221E;
    background: #fff;
  }

  .btn.-filled.-purple:hover {
    color: #fff;
    background: #AC8EFF;
  }

  .btn.-bordered.-green:hover {
    color: #024840;
    background: transparent;
    box-shadow: inset 0 0 0 1px currentColor;
  }

  .btn.-bordered.-white:hover {
    color: #024840;
    background: transparent;
    box-shadow: inset 0 0 0 1px currentColor;
  }

  .btn.-bordered.-purple:hover {
    color: #AC8EFF;
    background: transparent;
    box-shadow: inset 0 0 0 1px currentColor;
  }

  .btn:not(.-filled, .-bordered).-dark:hover {
    color: #06221E;
  }

  .btn:not(.-filled, .-bordered).-green:hover {
    color: #024840;
  }

  .btn:not(.-filled, .-bordered).-white:hover {
    color: #fff;
  }

  .btn:not(.-filled, .-bordered).-neon:hover {
    color: #E4FD6F;
  }

  .btn:not(.-filled, .-bordered).-purple:hover {
    color: #AC8EFF;
  }

  .card:hover:before {
    opacity: 0;
  }

  .card .btn {
    opacity: 1;
  }

  .pagination a.next:hover,
  .pagination a.prev:hover {
    color: #06221E;
    background: #fff;
  }

  .nav-links span:not(.dots):hover,
  .nav-links a:hover {
    color: #06221E;
    background: #fff;
  }

  .gform_footer input[type=submit]:hover {
    color: #06221E;
    background: #E4FD6F;
  }

  .header.-dark .header-login:hover {
    box-shadow: inset 0 0 0 1px #fff;
  }

  .header.-light .header-login:hover {
    box-shadow: inset 0 0 0 1px rgba(6, 34, 30, 0.1);
  }

  .header-big-menu-contacts ul li a:hover {
    color: currentColor;
  }

  .header-big-menu-products ul li a:hover {
    color: currentColor;
  }

  .header-login:hover {
    color: currentColor;
    background: transparent;
  }

  .footer-main ul li a:hover {
    color: #395450;
  }

  .footer-contacts-link:hover {
    color: #395450;
  }

  .footer-socials li a:hover {
    color: #024840;
  }

  .footer-bottom-nav li a:hover {
    color: #395450;
  }

  .footer-language .custom-select-dropdown ul li:hover {
    color: currentColor;
  }

  .faq-item:hover {
    background: #fff;
  }

  .faq-item:hover svg {
    opacity: 0.6;
  }

  .faq-item.active {
    background: #024840;
  }

  .vacancies-nav ul li:hover {
    background: #fff;
    color: #06221E;
  }

  .vacancies-nav ul li.active:hover {
    background: #024840;
    color: #fff;
  }

  .vacancies-card:hover {
    background: #fff;
  }

  .vacancies-card:hover ul li {
    background: #f7f9f3;
  }

  .vacancies-card .btn {
    display: inline-flex;
  }

  .vacancy-hero .hero-info > .btn:hover {
    opacity: 0.6;
    color: #fff;
  }

  .other-vacancies-slider {
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .overview-nav li:hover {
    background: #fff;
    color: #06221E;
  }

  .overview-nav li.active:hover {
    background: #024840;
    color: #fff;
  }

  .post-hero .hero-info .btn:hover {
    opacity: 0.6;
    color: #fff;
  }

  .post-share ul.-neon li a:hover {
    color: #E4FD6F;
  }

  .post-share ul.-white li a:hover {
    color: #fff;
  }

  .post-share ul.-purple li a:hover {
    color: #AC8EFF;
  }

  .post-related ul li a:hover {
    color: #06221E;
  }

  .post-contents ul li a.active {
    color: #06221E;
  }

  .team-card:hover {
    background: #fff;
    color: #06221e;
  }

  .team-card-info {
    transform: translateY(0);
  }

  .team-card .btn {
    opacity: 1;
    visibility: visible;
  }

  .game-only-pricing-details a:hover {
    color: #fff;
  }

  .product-features-bottom button:hover {
    color: #024840;
  }
}
/*# sourceMappingURL=bundle.css.map */
