:root {
  --c-white: #fff;
  --c-black: #000;
  --c-dark: #182f43;
  --c-blue: #2190e9;
  --c-blue-white: #e7f6fe;
  --c-red: #eb5757;
  --c-green: #27ae60;
  --c-yellow: #e5bf48;
  --c-orange: #f2994a;
  --c-gray-1: #d0d8dc;
  --c-gray-2: #7e898f;
  --c-gray-3: #333;
  --c-gray-4: #6d767a;
  --c-gray-5: #f5f9fb;
  --c-gray-6: #728189;
  --c-gray-7: #444b4f;
  --c-gray-8: #35353f;
  --c-light: #fafafa;
  --gradient: linear-gradient(90deg, #d12d1f 0%, #de4a88 50%, #94d1db 99.99%);
  --font-sans-serif: "Product Sans", sans-serif;
  --font-sans-serif-header: "Product Sans", sans-serif;
  --font-serif: ui-sans-serif, system-ui, -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";
  --base-bg: var(--c-white);
  --base-ff: var(--font-sans-serif);
  --base-fz: 1.8rem;
  --base-lh: 1.5;
  --base-tc: var(--c-gray-3);
  --base-lc: inherit;
  --base-mw: 320px;
  --base-ts: 0.2s;
  --base-rd: 1.6rem;
  --gap: 15px;
  --btn-fz: 1.8rem;
  --btn-ff: var(--font-sans-serif);
  --btn-pd: 0.6111111111em 1.666666667em;
  --btn-height: 2.222222222em;
  --btn-rd: 3.125em;
  --btn-bg: var(--c-blue);
  --btn-color: var(--c-white);
  --h-s-h1: 5.2rem;
  --h-s-h2: 4.2rem;
  --h-s-h3: 3.2rem;
  --h-s-h4: 2.6rem;
  --h-s-h5: 2rem;
  --h-s-h6: 1.8rem;
  --container: calc(1140px + var(--gap) * 2);
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  position: relative;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--base-tc);
  background: var(--base-bg);
  font: var(--base-fz) / var(--base-lh) var(--base-ff);
  min-width: var(--base-mw);
  font-weight: 400;
  overflow-anchor: none;
  letter-spacing: 0.02em;
}

.lity-active {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.gm-style img {
  max-width: none;
}

@font-face {
  font-family: "Product Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ProductSans-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Product Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ProductSans-Bold.ttf") format("truetype");
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h {
  margin: 0;
  line-height: 1.2;
  letter-spacing: normal;
  font-family: var(--font-sans-serif-header);
}
h1:not(:last-child),
.h1:not(:last-child),
h2:not(:last-child),
.h2:not(:last-child),
h3:not(:last-child),
.h3:not(:last-child),
h4:not(:last-child),
.h4:not(:last-child),
h5:not(:last-child),
.h5:not(:last-child),
h6:not(:last-child),
.h6:not(:last-child),
.h:not(:last-child) {
  margin-bottom: 4.2rem;
}

h1,
.h1 {
  font-size: var(--h-s-h1);
}

h2,
.h2 {
  font-size: var(--h-s-h2);
}

h3,
.h3 {
  font-size: var(--h-s-h3);
}

h4,
.h4 {
  font-size: var(--h-s-h4);
}

h5,
.h5 {
  font-size: var(--h-s-h5);
}

h6,
.h6 {
  font-size: var(--h-s-h6);
}

p {
  margin: 0;
}
p:not(:last-child) {
  margin-bottom: 2rem;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 1.25em;
}

strong {
  font-weight: 700 !important;
}

.lt {
  font-weight: 300 !important;
}

.rg {
  font-weight: 400 !important;
}

.md {
  font-weight: 500 !important;
}

.sbd {
  font-weight: 600 !important;
}

.bd {
  font-weight: 700 !important;
}

.under {
  text-decoration: underline;
}

.ttu {
  text-transform: uppercase;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.c-green {
  color: var(--c-green) !important;
}

.c-red {
  color: var(--c-red) !important;
}

.icon {
  --i-size: 2rem;
  fill: currentColor;
  stroke: currentColor;
  color: inherit;
  min-width: var(--i-size);
  width: var(--i-size);
  height: var(--i-size);
  display: inline-block;
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
  -webkit-mask-image: none;
  mask-image: none;
}
.icon-play {
  -webkit-mask-image: url("../images/icons/icon-play.svg");
  mask-image: url("../images/icons/icon-play.svg");
}
.icon-partnership {
  -webkit-mask-image: url("../images/icons/icon-partnership.svg");
  mask-image: url("../images/icons/icon-partnership.svg");
}
.icon-checkmark {
  -webkit-mask-image: url("../images/icons/icon-checkmark.svg");
  mask-image: url("../images/icons/icon-checkmark.svg");
}
.icon-minus {
  -webkit-mask-image: url("../images/icons/icon-minus.svg");
  mask-image: url("../images/icons/icon-minus.svg");
}
.icon-chevron--down {
  -webkit-mask-image: url("../images/icons/icon-chevron--down.svg");
  mask-image: url("../images/icons/icon-chevron--down.svg");
}
.icon-close {
  -webkit-mask-image: url("../images/icons/icon-close.svg");
  mask-image: url("../images/icons/icon-close.svg");
}
.icon-linkedin {
  -webkit-mask-image: url("../images/icons/icon-linkedin.svg");
  mask-image: url("../images/icons/icon-linkedin.svg");
}
.icon-twitter {
  -webkit-mask-image: url("../images/icons/icon-twitter.svg");
  mask-image: url("../images/icons/icon-twitter.svg");
}
.icon-facebook {
  -webkit-mask-image: url("../images/icons/icon-facebook.svg");
  mask-image: url("../images/icons/icon-facebook.svg");
}

.benefit-fpp {
  -webkit-mask-image: url("../images/benefits/benefit--fpp.svg");
  mask-image: url("../images/benefits/benefit--fpp.svg");
}
.benefit-db {
  -webkit-mask-image: url("../images/benefits/benefit--db.svg");
  mask-image: url("../images/benefits/benefit--db.svg");
}
.benefit-gr {
  -webkit-mask-image: url("../images/benefits/benefit--gr.svg");
  mask-image: url("../images/benefits/benefit--gr.svg");
}
.benefit-pa {
  -webkit-mask-image: url("../images/benefits/benefit--pa.svg");
  mask-image: url("../images/benefits/benefit--pa.svg");
}
.benefit-s3co2 {
  -webkit-mask-image: url("../images/benefits/benefit--s3co2.svg");
  mask-image: url("../images/benefits/benefit--s3co2.svg");
}
.benefit-shm {
  -webkit-mask-image: url("../images/benefits/benefit--shm.svg");
  mask-image: url("../images/benefits/benefit--shm.svg");
}
.benefit-uyppa9i {
  -webkit-mask-image: url("../images/benefits/benefit--uyppa9i.svg");
  mask-image: url("../images/benefits/benefit--uyppa9i.svg");
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: inherit;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100%;
  transition: all var(--base-ts) ease-in-out;
  color: inherit;
  max-width: 15.4rem;
}
.logo picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: inherit;
  flex-wrap: nowrap;
  flex-direction: row;
}
.logo img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.brand {
  --size: 2.852rem;
  position: relative;
  display: inline-block;
  width: var(--size);
  min-width: var(--size);
  height: calc(var(--size) * 1.122019635);
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
  -webkit-mask-image: url("../images/brand.svg");
  mask-image: url("../images/brand.svg");
}

.image {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
}
.image picture {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: inherit;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100%;
  min-height: 100%;
  height: auto;
  z-index: 1;
}
.image img {
  width: 100%;
}
.image--block-title picture {
  justify-content: flex-start;
}
.image--block-title img {
  object-fit: contain;
  width: auto;
  max-height: 11.5rem;
}

.image--cover {
  min-height: 100%;
  height: auto;
}
.image--cover img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image--1-1 picture {
  padding-top: 100%;
}
.image--3-2 picture {
  padding-top: 66.66%;
}
.image--3-4 picture {
  padding-top: 75%;
}
.image--4-5 picture {
  padding-top: 120%;
}
.image--16-9 picture {
  padding-top: 56.25%;
}

.desktop {
  display: none;
}

.mobile {
  display: block;
}

.wrapper {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: calc(var(--vh, 1vh) * 100);
}

.content {
  display: flex;
  flex-direction: column;
  flex: 1;
  z-index: 0;
}

.container {
  position: relative;
  margin: 0 auto;
  padding: 0 var(--gap);
  z-index: 1;
}

.row {
  margin: 0 calc(-1 * var(--gap));
}
.row > div {
  padding: 0 var(--gap);
}

.sc {
  --sc-pd: 10rem 0;
  position: relative;
  width: 100%;
  padding: var(--sc-pd);
  background: transparent;
  z-index: 1;
}
.sc img {
  pointer-events: none;
}
.sc-subtitle {
  text-transform: uppercase;
  font-size: 1.6rem;
  color: var(--c-gray-2);
}
.sc-subtitle:not(:last-child) {
  margin-bottom: 2rem;
  top: 11px;
  position: relative;
}

.sc_text {
  position: relative;
}
.sc_text:not(:last-child) {
  margin-bottom: 2.6rem;
}

.sc_buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}
.sc_buttons .button {
  margin: 1rem;
}

.sc_bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.hero {
  --sc-pd: 16rem 0 0 0;
  min-height: 50rem;
  color: var(--c-white);
  overflow: hidden;
}
.hero .container,
.hero .row {
  height: 100%;
}
.hero .flex-column {
  display: flex;
  flex-direction: column;
}
.hero h1 {
  margin-bottom: 2.5rem;
}
.hero .sc_text {
  text-align: center;
}
.hero .sc_buttons {
  justify-content: center;
}
.hero .sc_buttons .button {
  --btn-bg: var(--c-white);
  max-width: 18.5rem;
  width: 100%;
}
.hero .sc_buttons:not(:last-child) {
  margin-bottom: 5.8rem;
}
.hero .sc_bg {
  background: linear-gradient(
    98.28deg,
    #3f0a06 -5.34%,
    rgba(209, 45, 31, 0.96) 20.96%,
    rgba(222, 74, 136, 0.84) 62.2%,
    #94d1db 93.65%
  );
}
.hero .monitor {
  --w: 69rem;
}
.hero .monitor_wrap {
  padding: 2.8rem;
  transform: scale(0.6340957176) translateY(4rem);
  transform-origin: top;
  transition: all calc(var(--base-ts) * 4) ease-in-out;
  margin: 0 auto;
}
.hero .monitor_wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--base-rd);
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  transition: all calc(var(--base-ts) * 2) ease-in-out;
}
.hero .swiper-slide-prev .monitor_wrap {
  transform-origin: top right;
}
.hero .swiper-slide-next .monitor_wrap {
  transform-origin: top left;
}
.hero .swiper-slide-active .monitor_wrap {
  transform: scale(1) translateY(0);
}
.hero .swiper-slide-active .monitor_wrap:before {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.hero_slider {
  margin-top: auto;
}

.hero--home {
  height: calc(var(--vh, 1vh) * 100);
  min-height: 84rem;
  max-height: 90rem;
}

.hero--default {
  --sc-pd: 12rem 0;
  display: flex;
  align-items: center;
  align-content: center;
}

.hero--blog-single {
  padding-bottom: 0;
  overflow: visible;
  margin-bottom: 24rem;
}
.hero--blog-single p a {
  text-decoration: underline;
}
.hero--blog-single .row {
  margin-bottom: -4rem;
}
.hero--blog-single .row > div {
  margin-bottom: 4rem;
}
.hero--blog-single .hero_image {
  position: relative;
  padding: 4rem;
  height: 48rem;
  margin-bottom: -24rem;
}
.hero--blog-single .hero_image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  filter: blur(2px);
  border-radius: var(--base-rd) var(--base-rd) 0 0;
}
.hero--blog-single .hero_image .image {
  border-radius: var(--base-rd);
  overflow: hidden;
}
.hero--blog-single .hero_image .image picture {
  z-index: 0;
}
.hero--blog-single .hero_image .image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    157.05deg,
    rgba(209, 45, 31, 0.35) -1.55%,
    rgba(222, 74, 136, 0.35) 50.33%,
    rgba(148, 209, 219, 0.35) 83.91%
  );
  z-index: 1;
}

.faq {
  --sc-pd: 5rem 0 9rem 0;
}
.faq .sc_text {
  text-align: center;
  color: var(--c-gray-2);
}
.faq .sc_text h2 {
  color: var(--c-dark);
}
.faq .sc_text h2:not(:last-child) {
  margin-bottom: 2.5rem;
}
.faq .row {
  margin-bottom: -7.3rem;
}
.faq .row > div {
  margin-bottom: 7.3rem;
}
.faq--alt {
  --sc-pd: 10rem 0;
}
.faq--alt .sc_bg {
  background: var(--c-gray-5);
}
.faq--alt .accordion-item {
  background: var(--c-white);
}

.plans {
  --sc-pd: 10rem 0;
}
.plans .sc_text {
  text-align: center;
}
.plans .sc_text h2:not(:last-child) {
  margin-bottom: 2.5rem;
}
.plans .sc_text p {
  color: var(--c-gray-2);
}
.plans .sc_text:not(:last-child) {
  margin-bottom: 6.5rem;
}
.plans_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4.5rem;
}
.plans .plan {
  --h-s-h2: 3.6rem;
  --c: var(--c-gray-2);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 6rem 4.5rem 7rem 4.5rem;
  border: 1px solid var(--c-gray-1);
  color: var(--c);
  font-size: 1.4rem;
}
.plans .plan_wrap:first-child .plan {
  border-radius: var(--base-rd) 0 0 var(--base-rd);
}
.plans .plan_wrap:last-child .plan {
  border-radius: 0 var(--base-rd) var(--base-rd) 0;
}
.plans .plan h2 {
  color: var(--c-black);
}
.plans .plan ul {
  color: var(--c-gray-8);
  list-style: none;
  margin: 0;
  padding: 0;
}
.plans .plan ul li {
  position: relative;
  min-height: 1.6rem;
  display: flex;
  align-items: center;
  align-content: center;
  padding-left: 2.6rem;
}
.plans .plan ul li:before {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  left: 0;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/icons/icon-checkbox.svg");
  mask-image: url("../images/icons/icon-checkbox.svg");
  background: var(--c);
}
.plans .plan ul li:not(:last-child) {
  margin-bottom: 1.7rem;
}
.plans .plan small {
  font-size: 1.2rem;
}
.plans .plan .button {
  --btn-bg: var(--c);
  border-width: 2px;
  width: 100%;
  max-width: 20rem;
}
.plans .plan-subtitle {
  position: relative;
  font-size: 1.4rem;
}
.plans .plan-subtitle:not(:last-child) {
  margin-bottom: 1rem;
}
.plans .plan_head {
  position: relative;
}
.plans .plan_head:not(:last-child) {
  margin-bottom: 2.5rem;
}
.plans .plan_body .icon-partnership {
  --i-size: 10rem;
}
.plans .plan_body:not(:last-child) {
  margin-bottom: 3.5rem;
}
.plans .plan_pricing {
  margin-top: auto;
  min-height: 23.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
}
.plans .plan_pricing-text {
  position: relative;
  display: flex;
  align-items: baseline;
  align-content: inherit;
  font-size: 5.2rem;
  line-height: normal;
  font-weight: 700;
}
.plans .plan_pricing-text .number {
  color: #54636b;
}
.plans .plan_pricing-text .text {
  font-weight: 400;
  font-size: 2.8rem;
}
.plans .plan_pricing-text:not(:last-child) {
  margin-bottom: 2rem;
}
.plans .plan_pricing-pseudo {
  position: relative;
  display: inline-block;
  width: 100%;
}
.plans .plan_pricing-pseudo .range {
  position: relative;
  height: 0.8rem;
  width: 100%;
  background: var(--c-gray-1);
  border-radius: var(--base-rd);
  z-index: 1;
  border: none;
}
.plans .plan_pricing-pseudo .ui-slider-handle {
  content: "";
  position: absolute;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  margin-left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  background: var(--c-gray-2);
  border: 5px solid var(--c-white);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  outline: none;
}
.plans .plan_pricing-pseudo input {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 3;
  cursor: pointer;
}
.plans .plan_pricing-pseudo:not(:last-child) {
  margin-bottom: 2rem;
}
.plans .plan_pricing small:nth-last-child(2) {
  margin-bottom: 2rem;
}
.plans .plan_pricing .button {
  margin-top: auto;
}
.plans .plan--partnership {
  --c: var(--c-white);
  border: none;
  background: linear-gradient(
    169.34deg,
    #d12d1f -6.18%,
    #de4a88 46.78%,
    #94d1db 99.74%
  );
}
.plans .plan--partnership h2,
.plans .plan--partnership ul,
.plans .plan--partnership .number {
  color: inherit;
}
.plans--alt .sc_bg {
  background: linear-gradient(
      93.29deg,
      rgba(209, 45, 31, 0.1) -19.12%,
      rgba(222, 74, 136, 0.1) 31.58%,
      rgba(148, 209, 219, 0.1) 82.27%
    ),
    rgba(238, 239, 240, 0.2);
}
.plans--alt .plan:not(.plan--partnership) {
  background: var(--c-white);
  border-color: rgba(208, 216, 220, 0.3);
}

.default ul,
.default ol {
  padding-left: 1.25em;
}
.default .image {
  border-radius: var(--base-rd);
  overflow: hidden;
  margin: 6rem 0;
  height: 40.8rem;
}
.default .image:first-child {
  margin-top: 0;
}
.default .image:last-child {
  margin-bottom: 0;
}
.default .image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.blog-single {
  --sc-pd: 8rem 0;
}
.blog-single_share {
  display: flex;
  align-content: inherit;
  align-content: center;
  justify-content: flex-end;
  color: var(--c-gray-2);
}
.blog-single-page .cta {
  padding-top: 0;
}

.blog .sc_buttons {
  justify-content: center;
}
.blog .sc_buttons:last-child {
  margin-top: 7rem;
}
.blog .row {
  margin-bottom: -4rem;
}
.blog .row > div {
  margin-bottom: 4rem;
}
.blog-card {
  position: relative;
  min-height: 100%;
  display: flex;
}
.blog-card h4 {
  line-height: 1.4;
  width: 100%;
}
.blog-card_image {
  position: relative;
  width: 100%;
  border-radius: calc(var(--base-rd) / 2);
  overflow: hidden;
}
.blog-card_image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(209, 45, 31, 0.6) 0%,
    rgba(222, 74, 136, 0.6) 50%,
    rgba(148, 209, 219, 0.6) 99.99%
  );
  z-index: 1;
}
.blog-card_image picture {
  position: relative;
  display: flex;
  z-index: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.blog-card_image picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--base-ts) ease-in-out;
}
.blog-card_text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  color: var(--c-white);
}
.blog-card_text .date {
  margin-bottom: auto;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.blog-card_text .more {
  position: relative;
  display: inline-flex;
  width: auto;
}
.blog-card_text .more:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: currentColor;
  transition: all var(--base-ts) ease-in-out;
}
.blog-card:hover img {
  transform: scale(1.1);
}
.blog-card:hover .more:after {
  width: 100%;
}

.cta {
  --sc-pd: 8rem 0;
}
.cta h2:not(:last-child) {
  margin-bottom: 1.6rem;
}
.cta_content {
  position: relative;
  padding: 11.3rem var(--gap);
  border-radius: var(--base-rd);
  color: var(--c-white);
  overflow: hidden;
  min-height: 46rem;
  display: flex;
  align-items: center;
  align-content: center;
}
.cta_content .row {
  align-items: flex-end;
  align-content: flex-end;
  margin-bottom: -4rem;
}
.cta_content .row > div {
  margin-bottom: 4rem;
}
.cta_content .sc_bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    100.45deg,
    rgba(63, 10, 6, 0.6) 19.13%,
    rgba(209, 45, 31, 0.372) 49.69%,
    rgba(222, 74, 136, 0.504) 69.52%,
    rgba(148, 209, 219, 0.6) 94.19%
  );
}
.cta_content .sc_buttons {
  justify-content: center;
}
.cta_content .sc_buttons .button--white {
  --btn-color: var(--c-gray-3);
}

.comp {
  --sc-pd: 10rem 0;
}
.comp .sc_text {
  text-align: center;
}
.comp .sc_text:not(:last-child) {
  margin-bottom: 8rem;
}
.comp_table {
  position: relative;
  width: 100%;
}

.comp table {
  width: 100%;
  border-spacing: 0 0.4rem;
  width: 100%;
}
.comp table .button {
  border-width: 2px;
}
.comp table .g-txt {
  position: relative;
  display: block;
  line-height: 1;
}
.comp table .g-txt span {
  position: relative;
  display: inline-block;
  font-size: 3.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #d12d1f 0%, #de4a88 50%, #94d1db 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.comp table thead {
  z-index: 2;
}
.comp table thead th {
  background: var(--c-gray-5);
  text-align: left;
  padding: 2rem;
}
.comp table thead th:first-child {
  border-top-left-radius: var(--base-rd);
  padding-left: 4rem;
}
.comp table thead th:last-child {
  border-top-right-radius: var(--base-rd);
  padding-right: 4rem;
}
.comp table thead th .txt {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
}
.comp table thead th .best {
  --size: 7.5rem;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  background: var(--gradient);
  -webkit-mask-image: url("../images/decor/decor-wheel.svg");
  mask-image: url("../images/decor/decor-wheel.svg");
  font-size: 1.1rem;
  text-align: center;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.25;
  margin-left: 7rem;
}
.comp table thead th small {
  font-size: 1.4rem;
  color: var(--c-gray-2);
  font-weight: 400;
}
.comp table tbody {
  z-index: 0;
}
.comp table tbody .icon-minus {
  --i-size: 1.4rem;
}
.comp table tbody .icon-checkmark {
  --i-size: 2rem;
  background: #e16a9d;
}
.comp table tbody td {
  z-index: 0;
  padding: 1.2rem 2rem;
  background: var(--c-gray-5);
  font-size: 1.6rem;
  line-height: 1.25;
}
.comp table tbody td:first-child {
  max-width: 30rem;
  padding-left: 4rem;
}
.comp table tbody td:last-child {
  padding-right: 4rem;
}
.comp table tbody td:not(:first-child) {
  color: var(--c-gray-2);
}
.comp table tbody tr.solo td {
  font-size: 2rem;
  font-weight: 700;
  background: transparent;
}
.comp table tfoot {
  z-index: 0;
}
.comp table tfoot td {
  background: var(--c-gray-5);
  text-align: left;
  padding: 2rem;
  z-index: 0;
}
.comp table tfoot td:first-child {
  border-bottom-left-radius: var(--base-rd);
  padding-left: 4rem;
}
.comp table tfoot td:last-child {
  border-bottom-right-radius: var(--base-rd);
  padding-right: 4rem;
}

.tb {
  --sc-pd: 9rem 0;
}
.tb .sc_bg {
  background: var(--c-white);
}
.tb .brand {
  --size: 6.164rem;
  background: linear-gradient(90deg, #d12d1f 0%, #de4a88 50%, #94d1db 99.99%);
  margin-bottom: 2.5rem;
}
.tb .row {
  margin-bottom: -4rem;
}
.tb .row > div {
  margin-bottom: 4rem;
}
.tb .wrap {
  position: relative;
  max-width: 71.5rem;
}
.tb .wrap .monitor {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.tb .wrap .monitor_body picture {
  padding-top: 62.13183731%;
}
.tb .wrap .phone {
  --w: 19.6rem;
  position: absolute;
  top: 11rem;
  right: 2.8rem;
  z-index: 1;
  filter: drop-shadow(0px 0px 16px #a0c8d6);
}
.tb--alt .sc_bg {
  background: linear-gradient(
      93.29deg,
      rgba(209, 45, 31, 0.1) -19.12%,
      rgba(222, 74, 136, 0.1) 31.58%,
      rgba(148, 209, 219, 0.1) 82.27%
    ),
    rgba(238, 239, 240, 0.2);
}

.tb--alt-1 {
  font-size: 1.6rem;
}
.tb--alt-1 p,
.tb--alt-1 li {
  line-height: 1.5;
  color: var(--c-gray-2);
}

.tutorial {
  --sc-pd: 8.5rem 0 10rem 0;
}
.tutorial .sc_bg {
  background: var(--c-gray-5);
}
.tutorial .sc_text {
  text-align: center;
}
.tutorial .sc_text:not(:last-child) {
  margin-bottom: 6rem;
}
.tutorial .video {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 52.27272727%;
  border-radius: var(--base-rd);
  overflow: hidden;
}
.tutorial .video_wrap {
  --w: 100%;
  position: relative;
  width: var(--w);
  min-width: var(--w);
  height: auto;
  overflow: hidden;
}
.tutorial .video_wrap.playing .video:before {
  opacity: 0;
  visibility: hidden;
}
.tutorial .video_wrap.playing .video-play {
  top: -4rem;
}
.tutorial .video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  align-content: center;
  outline: none;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  color: var(--c-white);
  z-index: 2;
  transition: all var(--base-ts) ease-in-out;
  font-size: 2.8rem;
  cursor: pointer;
}
.tutorial .video-play .icon {
  --i-size: 7.1rem;
  margin-right: 1.4rem;
  transition: transform var(--base-ts) ease-in-out;
}
.tutorial .video-play:hover .icon {
  transform: scale(1.15);
}
.tutorial .video:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    169.34deg,
    rgba(209, 45, 31, 0.5) -6.18%,
    rgba(222, 74, 136, 0.5) 46.78%,
    rgba(148, 209, 219, 0.5) 81.07%
  );
  z-index: 1;
  transition: all var(--base-ts) ease-in-out;
}
.tutorial .video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.how {
  --sc-pd: 8.5rem 0 16.5rem 0;
  overflow: hidden;
}
.how .container > .sc_text {
  text-align: center;
}
.how .container > .sc_text:not(:last-child) {
  margin-bottom: 13rem;
}
.how_items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10rem;
}
.how_items .row {
  align-items: center;
  align-content: center;
}
.how_items .row:nth-child(2n) {
  flex-direction: row-reverse;
}
.how_items .row:nth-child(2n) .sc_text {
  margin-left: auto;
  text-align: right;
}
.how_items .row:nth-child(2n) .sc_buttons {
  justify-content: flex-end;
}
.how_items .image {
  position: relative;
}
.how_items .image-side {
  z-index: 0;
}
.how_items .image:before {
  content: "";
  position: absolute;
  width: 559.85px;
  height: 464.41px;
  left: 50%;
  top: 50%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(127, 142, 147, 0.6) 47.39%,
    rgba(148, 209, 219, 0.6) 99.99%
  );
  filter: blur(150px);
  transform: rotate(-137.05deg) translate(-50%, -50%);
  transform-origin: left top;
}
.how_items .image picture {
  border-radius: var(--base-rd);
  overflow: hidden;
}
.how_items .image img {
  object-position: top;
}
.how_items .sc_text {
  padding: 5rem 0;
  margin-bottom: 0;
  letter-spacing: 0.04em;
  color: var(--c-gray-2);
  text-align: left;
}
.how_items .sc_text h2 {
  color: var(--c-black);
}
.how_items .sc_text:not(:last-child) {
  padding-bottom: 2.5rem;
}
.how_items .sc_buttons {
  padding-bottom: 5rem;
}
.how_items .text-side {
  position: relative;
  z-index: 1;
}
.how_items .number {
  font-size: 8rem;
  font-weight: 700;
  color: var(--c-red);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.says {
  --sc-pd: 10rem 0;
  overflow: hidden;
}
.says .sc_bg {
  background: var(--c-gray-5);
}
.says .sc_text {
  text-align: center;
  color: var(--c-gray-2);
}
.says .sc_text h2 {
  color: var(--c-gray-7);
}
.says .sc_text h2:not(:last-child) {
  margin-bottom: 2.5rem;
}
.says .sc_text:not(:last-child) {
  margin-bottom: 7.8rem;
}
.says .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 6.4rem;
}
.says .swiper-pagination-bullet {
  position: relative;
  width: auto;
  border-radius: 0;
  height: 0.6rem;
  flex: 1;
  width: 100%;
  max-width: 4.8rem;
  background: var(--c-white);
  margin: 0 0.7rem;
  opacity: 1;
  outline: none;
}
.says .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: all var(--base-ts) ease-in-out;
  background: var(--c-gray-1);
}
.says .swiper-pagination-bullet-active:before {
  height: 100%;
}
.says_slider {
  position: relative;
  overflow: hidden;
}

.says .say {
  position: relative;
  border-radius: var(--base-rd);
  background: var(--c-white);
  overflow: hidden;
  display: flex;
}
.says .say-video {
  position: relative;
  width: 100%;
  height: 100%;
}
.says .say-video_wrap {
  --w: 29.2rem;
  --h: calc(var(--w) * 1.369863014);
  position: relative;
  width: var(--w);
  min-width: var(--w);
  height: var(--h);
}
.says .say-video_wrap.playing .say-video:before {
  opacity: 0;
  visibility: hidden;
}
.says .say-video_wrap.playing .say-video-play {
  top: -4rem;
}
.says .say-video-play {
  position: absolute;
  left: 3rem;
  top: 3rem;
  display: inline-flex;
  align-items: center;
  align-content: center;
  outline: none;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  color: var(--c-white);
  z-index: 2;
  transition: all var(--base-ts) ease-in-out;
  font-size: 1.4rem;
  cursor: pointer;
}
.says .say-video-play .icon {
  --i-size: 3.825rem;
  margin-right: 1.4rem;
  transition: transform var(--base-ts) ease-in-out;
}
.says .say-video-play:hover .icon {
  transform: scale(1.15);
}
.says .say-video:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    169.34deg,
    rgba(209, 45, 31, 0.5) -6.18%,
    rgba(222, 74, 136, 0.5) 46.78%,
    rgba(148, 209, 219, 0.5) 81.07%
  );
  z-index: 1;
  transition: all var(--base-ts) ease-in-out;
}
.says .say-video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.says .say_text {
  display: flex;
  align-items: center;
  align-content: center;
  flex: 1;
  padding: 6rem 6rem 6rem 9.5rem;
}
.says .say .quote blockquote {
  max-width: 45rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.says .say .quote figcaption {
  color: var(--c-gray-2);
}

.why {
  --sc-pd: 9rem 0 5rem 0;
}
.why .sc_text {
  text-align: center;
  color: var(--c-gray-2);
}
.why .sc_text h2 {
  color: var(--c-dark);
}
.why .sc_text h2:not(:last-child) {
  margin-bottom: 2.5rem;
}
.why .container > .row {
  margin-bottom: -10rem;
}
.why .container > .row > div {
  margin-bottom: 10rem;
}
.why .row .row {
  margin-bottom: -6rem;
}
.why .row .row > div {
  margin-bottom: 6rem;
}
.why_items {
  position: relative;
}
.why-item_image {
  position: relative;
  width: 10rem;
  height: 10rem;
  aspect-ratio: 1/1;
  padding: 2rem;
  border-radius: 100%;
  background: var(--c-gray-5);
  margin-bottom: 5rem;
}
.why-item_image picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.why-item_image img {
  width: auto;
  height: auto;
  max-width: 4.4rem;
  max-height: 4.4rem;
}
.why-item_text {
  position: relative;
  font-size: 1.6rem;
}
.why-item_text p,
.why-item_text li {
  color: var(--c-gray-6);
}

.ba {
  --sc-pd: 0;
}
.ba *::selection {
  background: rgba(0, 0, 0, 0);
}
.ba_block {
  position: relative;
  width: 100%;
}
.ba_block-head {
  padding: 5rem 0 8.5rem 0;
}
.ba_block-head .sc_text {
  text-align: center;
}
.ba_block-main {
  padding: 0;
  overflow: hidden;
}
.ba_block-main .sc_bg {
  background: linear-gradient(
      93.29deg,
      rgba(209, 45, 31, 0.1) -19.12%,
      rgba(222, 74, 136, 0.1) 31.58%,
      rgba(148, 209, 219, 0.1) 82.27%
    ),
    rgba(238, 239, 240, 0.2);
}
.ba .title {
  position: absolute;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 2rem;
  height: 3.2rem;
  border-radius: 9rem;
  color: var(--c-white);
  background: linear-gradient(90deg, #d12d1f 0%, #de4a88 50%, #94d1db 99.99%);
  z-index: 1;
  padding: 0.4rem 2.2rem;
  pointer-events: none;
}
.ba .title--before {
  left: 0;
  top: 3rem;
  z-index: 0;
}
.ba .title--after {
  right: 0;
  top: 3rem;
  z-index: 1;
}
.ba .image {
  z-index: 0;
  height: 100%;
  max-width: inherit;
  pointer-events: none;
}
.ba .image picture {
  width: auto;
  max-width: inherit;
  min-width: calc(var(--container) / 12 * 10 - var(--gap) * 2);
}
.ba .image img {
  height: 100%;
  width: auto;
  max-width: inheirt;
}
.ba_slider {
  --h: 69.3rem;
  position: relative;
  height: var(--h);
}
.ba_slider .before,
.ba_slider .after {
  position: absolute;
  height: calc(var(--h));
  overflow: hidden;
}
.ba_slider .before .image,
.ba_slider .after .image {
  height: calc(var(--h) - 20rem);
  top: 10rem;
}
.ba_slider .before {
  position: relative;
  width: 100%;
  z-index: 0;
}
.ba_slider .before .image,
.ba_slider .before picture {
  justify-content: flex-start;
}
.ba_slider .before .image {
  overflow: hidden;
  border-radius: var(--base-rd) 0 0 var(--base-rd);
}
.ba_slider .before .image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.ba_slider .before .image picture {
  z-index: 0;
}
.ba_slider .after {
  position: absolute;
  width: 50%;
  top: 0;
  right: 0;
  z-index: 1;
}
.ba_slider .after .image,
.ba_slider .after picture {
  justify-content: flex-end;
}
.ba_slider .after .image {
  overflow: hidden;
  border-radius: 0 var(--base-rd) var(--base-rd) 0;
}
.ba-scroller {
  position: absolute;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  top: 50%;
  transform: translateY(-50%);
  left: calc(50% - 2rem);
  cursor: pointer;
  z-index: 1;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.ba-scroller .line {
  content: "";
  position: absolute;
  height: 100rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--c-red);
  z-index: -1;
  width: 0.8rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.ba-scroller .inside {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  z-index: 0;
  background: var(--c-red);
  border-radius: 100%;
  background: var(--c-red);
}
.ba-scroller_thumb {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  overflow: hidden;
  transition: all calc(var(--base-ts) * 3) ease-in-out;
}
.ba-scroller_thumb:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1.25rem;
  background: var(--c-red);
}
.ba-scroller_thumb:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  border-radius: 100%;
  border: 3px solid var(--c-white);
}
.ba-scroller:hover .ba-scroller_thumb {
  transform: rotate(2turn);
}

.cases {
  --sc-pd: 7rem 0 5rem 0;
}
.cases .sc_text {
  text-align: center;
}
.cases .sc_text h2 {
  color: var(--c-black);
}
.cases .sc_text:not(:last-child) {
  margin-bottom: 9rem;
}
.cases_items .row {
  --gap: 1.2rem;
}
.cases .case {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.cases .case_image {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}
.cases .case_image picture {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 69.56521739%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: var(--base-rd);
  overflow: hidden;
}
.cases .case_image picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cases .case_image picture:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    101.09deg,
    rgba(63, 10, 6, 0.4) -1.47%,
    rgba(209, 45, 31, 0.24) 16.3%,
    rgba(222, 74, 136, 0.336) 48.33%,
    rgba(148, 209, 219, 0.4) 93.95%
  );
  z-index: 1;
}
.cases .case_text {
  padding: 3rem;
}
.cases .case_text h4 {
  margin-bottom: 2rem;
}
.cases .case_text p {
  max-width: 36rem;
  color: var(--c-gray-6);
}

.replace {
  --sc-pd: 8rem 0 11rem 0;
  color: var(--c-white);
}
.replace .sc_bg {
  background: var(--gradient);
}
.replace .sc_text {
  text-align: center;
}
.replace .sc_text:not(:last-child) {
  margin-bottom: 5rem;
}
.replace .sc_buttons {
  justify-content: center;
}
.replace .sc_buttons .button--white {
  --btn-color: #50555c;
}
.replace .row {
  margin-bottom: -5rem;
}
.replace .row > div {
  margin-bottom: 5rem;
}
.replace_table {
  position: relative;
}
.replace table {
  border-spacing: 0 0.4rem;
  width: 100%;
}
.replace table th,
.replace table td {
  padding: 1.6rem 2rem;
}
.replace table th:first-child,
.replace table td:first-child {
  padding-left: 4rem;
}
.replace table th:last-child,
.replace table td:last-child {
  padding-right: 4rem;
}
.replace table img {
  max-height: 3rem;
  width: auto;
}
.replace table .icon {
  --i-size: 2.4rem;
}
.replace table thead {
  font-size: 1.6rem;
  text-align: left;
}
.replace table thead th {
  background: rgba(255, 255, 255, 0.2);
}
.replace table thead th:first-child {
  border-top-left-radius: 0.8rem;
}
.replace table thead th:last-child {
  border-top-right-radius: 0.8rem;
}
.replace table tbody {
  font-size: 1.4rem;
}
.replace table tbody td {
  background: rgba(255, 255, 255, 0.2);
  max-width: 22rem;
}
.replace table tbody td:first-child {
  font-weight: 700;
}
.replace table tfoot {
  font-size: 1.4rem;
}
.replace table tfoot td {
  background: rgba(255, 255, 255, 0.2);
}
.replace table tfoot td:first-child {
  border-bottom-left-radius: 0.8rem;
}
.replace table tfoot td:nth-child(2) {
  font-weight: 700;
  font-size: var(--base-fz);
}
.replace table tfoot td:last-child {
  border-bottom-right-radius: 0.8rem;
}

.customers {
  --sc-pd: 5rem 0 10rem 0;
  overflow: hidden;
}
.customers:after {
  content: "";
  position: absolute;
  width: 1028.19px;
  height: 279.13px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(127, 142, 147, 0.6) 47.39%,
    rgba(148, 209, 219, 0.6) 99.99%
  );
  filter: blur(150px);
  right: -16rem;
  bottom: -20rem;
  z-index: 0;
}
.customers .sc_text {
  text-align: center;
}
.customers .sc_text:not(:last-child) {
  margin-bottom: 7.5rem;
}
.customers .item {
  position: relative;
  display: block;
  border-radius: var(--base-rd);
  padding: 5rem 5rem;
  background: var(--c-white);
  box-shadow: 0px 0px 18px rgba(160, 200, 214, 0.6);
  font-size: 1.6rem;
  color: var(--c-gray-2);
  min-height: 100%;
}
.customers .item > *:not(:last-child) {
  margin-bottom: 2.4rem;
}
.customers .swiper-slide {
  height: auto;
}
.customers_slider {
  max-width: 86rem;
  margin: 0 auto;
}

.about {
  --sc-pd: 8.5rem 0 11rem 0;
}
.about .sc-title {
  color: var(--c-gray-2);
}
.about .sc_text {
  text-align: center;
}
.about .sc_bg {
  background: var(--c-gray-5);
}
.about .brand {
  --size: 6.164rem;
  background: linear-gradient(90deg, #d12d1f 0%, #de4a88 50%, #94d1db 99.99%);
  margin-bottom: 5rem;
}
.get-more .sc_text {
  text-align: center;
}
.get-more .sc_text p {
  color: var(--c-gray-2);
}
.get-more .sc_text h2:not(:last-child) {
  margin-bottom: 2.5rem;
}
.get-more .sc_text:not(:last-child) {
  margin-bottom: 8rem;
}
.get-more .wrap:before {
  content: "";
  position: absolute;
  width: 559.85px;
  height: 464.41px;
  left: 50%;
  top: 50%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(127, 142, 147, 0.6) 47.39%,
    rgba(148, 209, 219, 0.6) 99.99%
  );
  filter: blur(150px);
  transform: rotate(-137.05deg) translate(-50%, -50%);
  transform-origin: left top;
  pointer-events: none;
}
.get-more .monitor {
  box-shadow: 0px 0px 16px #a0c8d6, 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: calc(var(--base-rd) / 2);
  z-index: 0;
}
.get-more .monitor_header {
  height: 2.6rem;
}
.get-more .monitor_header .dots span {
  width: 0.6rem;
  min-width: 0.6rem;
  height: 0.6rem;
}
.get-more .monitor_header .dots span:not(:last-child) {
  margin-right: 0.6rem;
}
.get-more .monitor_body picture {
  padding-top: 62.33766234%;
}
.get-more .phone {
  position: absolute;
  top: 11rem;
  right: 2.8rem;
  z-index: 1;
  filter: drop-shadow(0px 0px 16px #a0c8d6);
}
.get-more_tabs {
  padding: 0 4.5rem;
}
.get-more_tabs .wrap {
  position: relative;
  max-width: 46.5rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: var(--btn-pd);
  height: var(--btn-height);
  font-family: var(--btn-ff);
  font-size: var(--btn-fz);
  background: var(--btn-bg);
  color: var(--btn-color);
  border: none;
  text-transform: none;
  text-decoration: none !important;
  border-radius: var(--btn-rd);
  border: 2px solid var(--btn-bg);
  transition: all var(--base-ts) ease-in-out;
  line-height: 1.2;
  cursor: pointer;
  overflow: hidden;
  font-weight: 700;
}
.button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity var(--base-ts) ease-in-out;
}
.button > * {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  line-height: inherit;
  z-index: 1;
}
.button > *:not(:last-child) {
  margin-right: 1rem;
}
.button .icon {
  --i-size: 1.2rem;
  transition: transform var(--base-ts) ease-in-out;
}
.button.xs {
  --btn-fz: 1.4rem;
  --btn-pd: 0.7142857143em 1.571428571em;
  --btn-height: 2.571428571em;
}
.button.sm {
  --btn-fz: 1.6rem;
  --btn-pd: 0.75em 2.3125em;
  --btn-height: 2.5em;
}
.button.bordered {
  background: transparent;
  color: var(--btn-bg);
}
.button--white {
  --btn-color: var(--c-red);
  --btn-bg: var(--c-white);
}
.button--red {
  --btn-color: var(--c-white);
  --btn-bg: var(--c-red);
}
.button--green {
  --btn-color: var(--c-white);
  --btn-bg: var(--c-green);
}
.button--black {
  --btn-color: var(--c-white);
  --btn-bg: var(--c-black);
}
.button--gray {
  --btn-color: var(--c-white);
  --btn-bg: var(--c-gray-2);
}
.button--gradient {
  background: var(--gradient);
  color: var(--c-white);
  border: none;
}
.button:hover .icon:last-child {
  transform: translateX(1rem);
}
.button:hover:before {
  opacity: 1;
}

.menu {
  position: relative;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 0 -2.1rem;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
.menu_item {
  padding: 0 2.1rem;
}

.menu_link {
  position: relative;
  display: inline-flex;
  text-decoration: none !important;
  transition: color var(--base-ts) ease-in-out;
}
.menu_link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: currentColor;
  opacity: 0;
}
.menu_link.active {
  color: var(--c-white);
}
.menu_link.active:after {
  height: 0.1rem;
  opacity: 1;
}
.menu_link:hover {
  color: var(--c-white);
}

.menu-button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background: none;
  padding: 0;
  outline: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: inherit;
  border: none;
}
.menu-button span {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 0.3rem;
  min-height: 0.3rem;
  border-radius: 0.4rem;
  background: currentColor;
  transition: all var(--base-ts) ease-in-out;
}
.menu-button span:nth-child(1) {
  transform: translateY(-0.8rem);
}
.menu-button span:nth-child(3) {
  transform: translateY(0.8rem);
}
.menu-button.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.menu-button.active span:nth-child(2) {
  transform: scale(0);
}
.menu-button.active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.socials {
  position: relative;
}
.socials_items {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  margin: -0.4rem;
  margin-left: 1rem;
}
.socials_items > .social {
  margin: 0.4rem;
}
.socials .social {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: inherit;
  transition: all var(--base-ts) ease-in-out;
}
.socials .social .icon {
  --i-size: 2.2rem;
}
.socials .social:hover {
  color: var(--c-red);
}

.accordion {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
.accordion-item {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--base-rd) / 2);
  background: rgba(160, 200, 214, 0.1);
}
.accordion-item_head {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  padding: 1.8rem 3rem;
  padding-right: 5rem;
  min-height: 6.4rem;
  text-transform: capitalize;
  line-height: 1.2;
  color: var(--c-dark);
  cursor: pointer;
}
.accordion-item_head h5 {
  margin-bottom: 0;
}
.accordion-item_head .icon {
  --i-size: 1.6rem;
  position: absolute;
  top: 2rem;
  right: 2.4rem;
  opacity: 0;
  color: var(--c-gray-1);
  transition: all var(--base-ts) ease-in-out;
}
.accordion-item_head > *:not(:last-child) {
  margin-right: 3rem;
}
.accordion-item_body {
  position: relative;
  width: 100%;
  transition: all var(--base-ts) ease-in-out;
  overflow: hidden;
  height: 0;
}
.accordion-item_inner {
  padding: 1rem 8.5rem 3rem 3rem;
  color: var(--c-gray-4);
  line-height: 1.56;
}
.accordion-item.open .accordion-item_head {
  color: var(--c-red);
}
.accordion-item.open .accordion-item_head .icon {
  opacity: 1;
}

.tabs_menu {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--c-gray-3);
  height: 4.8rem;
  overflow: hidden;
  z-index: 1;
}
.tabs_menu-inner {
  width: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  z-index: 0;
  position: relative;
  height: 5.1rem;
  cursor: grab;
}
.tabs_menu:after {
  content: "";
  width: 4rem;
  top: 0;
  right: 0;
  position: absolute;
  height: calc(100% - 0.3rem);
  background: linear-gradient(
    270deg,
    #ffffff 73.86%,
    rgba(255, 255, 255, 0) 104.27%
  );
  z-index: 1;
}

.tabs_content {
  position: relative;
  z-index: 0;
}

.tabs-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  min-width: max-content;
  font-weight: 700;
  padding-bottom: 2rem;
  text-decoration: none !important;
  transition: all var(--base-ts) ease-in-out;
  color: var(--c-gray-2);
  margin-right: 4.4rem;
}
.tabs-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--c-red);
  transition: all var(--base-ts) ease-in-out;
}
.tabs-link.active {
  color: var(--c-red);
}
.tabs-link.active:after {
  height: 0.6rem;
}
.tabs-link--mobile {
  display: none;
}

.tabs .tab {
  --h-s-h2: 3.2rem;
  position: relative;
  width: 100%;
  display: none;
}
.tabs .tab h5 {
  font-weight: 400;
  color: var(--c-gray-2);
}
.tabs .tab_inner {
  position: relative;
  padding: 5rem var(--gap);
}
.tabs .tab_inner .row {
  margin-bottom: -5rem;
}
.tabs .tab_inner .row > div {
  margin-bottom: 5rem;
}
.tabs .tab .sc_text {
  text-align: left;
  max-width: 42.5rem;
}
.tabs .tab.active {
  display: block;
}

.form {
  position: relative;
  padding: 0 var(--gap);
}
.form_field {
  position: relative;
  display: block;
}
.form label,
.form .label {
  position: relative;
  display: block;
  line-height: 1;
  font-size: 1.8rem;
}
.form label:not(:last-child),
.form .label:not(:last-child) {
  margin-bottom: 1.4rem;
}
.form input[type="email"],
.form input[type="text"] {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  background: rgba(33, 144, 233, 0.07);
  border: 0px solid rgba(33, 144, 233, 0.07);
  padding: 1rem 2rem;
  color: var(--c-black);
}
.form input[type="email"].error,
.form input[type="email"].filled,
.form input[type="text"].error,
.form input[type="text"].filled {
  border-width: 1px;
}
.form input[type="radio"] {
  width: 2.4rem;
  height: 2.4rem;
  border-color: var(--c-blue);
}
.form textarea {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  background: rgba(33, 144, 233, 0.07);
  border: 0px solid rgba(33, 144, 233, 0.07);
  padding: 1rem 2rem;
  color: var(--c-black);
  min-height: 17.4rem;
  resize: none;
}
.form .button {
  min-width: 18.7rem;
  font-size: 1.6rem;
}

.radio {
  position: relative;
}
.radio input {
  position: absolute;
  opacity: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
}
.radio input:checked ~ .radio_content:before {
  background: var(--c-blue);
  box-shadow: inset 0px 0px 0px 2px var(--c-blue),
    inset 0px 0px 0px 4px var(--c-white);
}
.radio_content {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  min-height: 2.4rem;
  padding-left: 3.9rem;
  line-height: 1.1;
  cursor: pointer;
}
.radio_content:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  box-shadow: inset 0px 0px 0px 2px var(--c-blue);
}
.radio--green input:checked ~ .radio_content:before {
  background: var(--c-green);
  box-shadow: inset 0px 0px 0px 2px var(--c-green),
    inset 0px 0px 0px 4px var(--c-white);
}
.radio--green .radio_content:before {
  box-shadow: inset 0px 0px 0px 2px var(--c-green);
}

.monitor {
  --w: 100%;
  --h: calc(var(--w) * 0.6797981113);
  position: relative;
  width: var(--w);
  height: var(--h);
  border-radius: var(--base-rd);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.monitor_header {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 3.9rem;
  padding: 1rem 2rem;
  background: var(--gradient);
}
.monitor_header .dots {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
}
.monitor_header .dots span {
  --size: 0.8rem;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  border-radius: 100%;
  background: var(--c-white);
}
.monitor_header .dots span:not(:last-child) {
  margin-right: 1.1rem;
}

.monitor_body {
  position: relative;
  flex: 1;
}
.monitor_body picture {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.monitor_body img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone {
  --w: 13.7rem;
  --h: calc(var(--w) * 2.04379562);
  position: relative;
  width: var(--w);
  min-width: var(--w);
  height: var(--h);
}
.phone-back {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.phone-back picture {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.phone-back picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-main {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: calc(0.07375 * var(--h)) calc(0.05671532847 * var(--w))
    calc(0.03017857143 * var(--h)) calc(0.05671532847 * var(--w));
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/mockup/mock-iphone-screen.svg");
  mask-image: url("../images/mockup/mock-iphone-screen.svg");
}
.phone-main picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.phone-main picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.quote {
  position: relative;
  margin: 0;
}
.quote:before {
  --w: 9rem;
  --h: calc(var(--w) * 0.8178888889);
  content: "";
  position: absolute;
  width: var(--w);
  min-width: var(--w);
  height: var(--h);
  top: calc(-0.3124575465 * var(--h));
  left: calc(-0.5333333333 * var(--w));
  background: rgba(238, 239, 240, 0.7);
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/icons/icon-quote.svg");
  mask-image: url("../images/icons/icon-quote.svg");
}
.quote blockquote {
  position: relative;
  margin: 0;
  padding: 0;
}
.quote blockquote:not(:last-child) {
  margin-bottom: 6rem;
}

.rate {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  color: var(--c-gray-2);
  font-size: 1.6rem;
  line-height: 2rem;
}
.rate_stars {
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-right: 2.4rem;
}
.rate_stars .icon {
  -webkit-mask-image: url("../images/icons/icon-star--unfilled.svg");
  mask-image: url("../images/icons/icon-star--unfilled.svg");
}
.rate_stars.r-1 .icon:nth-child(1) {
  -webkit-mask-image: url("../images/icons/icon-star--filled.svg");
  mask-image: url("../images/icons/icon-star--filled.svg");
}
.rate_stars.r-2 .icon:nth-child(1),
.rate_stars.r-2 .icon:nth-child(2) {
  -webkit-mask-image: url("../images/icons/icon-star--filled.svg");
  mask-image: url("../images/icons/icon-star--filled.svg");
}
.rate_stars.r-3 .icon:nth-child(1),
.rate_stars.r-3 .icon:nth-child(2),
.rate_stars.r-3 .icon:nth-child(3) {
  -webkit-mask-image: url("../images/icons/icon-star--filled.svg");
  mask-image: url("../images/icons/icon-star--filled.svg");
}
.rate_stars.r-4 .icon:nth-child(1),
.rate_stars.r-4 .icon:nth-child(2),
.rate_stars.r-4 .icon:nth-child(3),
.rate_stars.r-4 .icon:nth-child(4) {
  -webkit-mask-image: url("../images/icons/icon-star--filled.svg");
  mask-image: url("../images/icons/icon-star--filled.svg");
}
.rate_stars.r-5 .icon {
  -webkit-mask-image: url("../images/icons/icon-star--filled.svg");
  mask-image: url("../images/icons/icon-star--filled.svg");
}
.rate_text {
  position: relative;
  display: inline-flex;
  padding-top: 0.3rem;
}

.header {
  --h-pos: fixed;
  --h-pd: 3.2rem 0;
  --h-bg: linear-gradient(
    98.28deg,
    #3f0a06 -5.34%,
    rgba(209, 45, 31, 0.96) 20.96%,
    rgba(222, 74, 136, 0.84) 62.2%,
    #94d1db 93.65%
  );
  --h-color: var(--c-white);
  position: var(--h-pos);
  padding: var(--h-pd);
  width: 100%;
  z-index: 10;
  color: var(--h-color);
  -webkit-backdrop-filter: blur(0.4rem);
  backdrop-filter: blur(0.4rem);
}
.header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all var(--base-ts) linear;
  background: var(--h-bg);
  opacity: 0;
}
.header-container {
  display: flex;
  align-items: center;
  align-content: center;
  z-index: 1;
  padding: 0 6rem;
}

.header_logo {
  position: relative;
  width: 100%;
  max-width: 25rem;
}

.header_nav {
  flex: 1;
}
.header_nav-extra {
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: 4rem;
}
.header_nav-extra > *:not(:last-child) {
  margin-bottom: 2rem;
}

.header_actions {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 25rem;
  z-index: 1;
}
.header_actions > *:not(:last-child) {
  margin-right: 2rem;
}

.header .button--inherit {
  --btn-bg: var(--h-color);
  --btn-color: var(--c-blue);
}

.scrolled .header {
  height: 6.5rem;
  --h-pd: 1rem 0;
}
.scrolled .header:before {
  opacity: 1;
}

.menu-transition .header_nav {
  transition: all calc(var(--base-ts) * 2) ease-in-out;
}

.menu-open {
  overflow: hidden;
}
.menu-open .header_nav {
  right: 0;
}

.footer {
  --h-s-h2: 4rem;
  position: relative;
  width: 100%;
  display: block;
  height: auto;
  padding: 5rem 0 7.5rem 0;
  overflow: hidden;
  background: var(--c-gray-3);
  color: var(--c-white);
}
.footer h2 {
  font-weight: 400;
  color: var(--c-gray-1);
}
.footer .sc_buttons {
  justify-content: flex-end;
}
.footer .sc_buttons .button {
  width: 100%;
  max-width: 18.5rem;
}
.footer .brand {
  --size: 2.03rem;
  margin-right: 3rem;
}
.footer_block:not(:last-child) {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--c-gray-1);
}
.footer_block--top .row {
  align-items: center;
  align-content: center;
}

.footer_block--bottom {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.footer_menu {
  position: relative;
  flex: 1;
}
.footer_menu ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: -1rem -2.1rem;
  padding: 0;
  list-style: none;
}
.footer_menu ul li {
  padding: 1rem 2.1rem;
}
.footer_menu ul a {
  text-decoration: none;
}
.footer_menu ul a:hover {
  color: var(--c-red);
}

.footer_copy {
  font-size: 1.4rem;
}

@media (max-width: 1399px) {
  :root {
    --container: calc(1140px + var(--gap) * 2);
  }
}

@media (max-width: 1199px) {
  :root {
    --container: calc(960px);
    --base-fz: 1.6rem;
    --h-s-h1: 4.2rem;
    --h-s-h2: 3.6rem;
    --h-s-h3: 2.6rem;
    --h-s-h4: 2.2rem;
    --h-s-h5: 1.8rem;
    --h-s-h6: 1.6rem;
  }
  .sc {
    --sc-pd: 6rem 0;
  }
  .hero .monitor {
    --w: 55rem;
  }
  .plans_items {
    gap: 3rem;
  }
  .plans .plan {
    padding: 6rem 3rem;
  }
  .comp table thead th .best {
    margin-left: 2rem;
  }
  .says .say_text {
    padding: 6rem;
  }
  .get-more {
    overflow: hidden;
  }
  .get-more .wrap:before {
    transform: rotate(-137.05deg) translate(-40%, -40%) scale(0.7);
  }
  .menu {
    flex-direction: column;
  }
  .menu_item {
    padding: 1.25rem 0;
  }
  .form label,
  .form .label {
    font-size: 1.4rem;
  }
  .quote:before {
    --w: 6rem;
  }
  .header {
    --h-pd: 2rem 0;
    height: 9.5rem;
  }
  .header-container {
    padding: 0 var(--gap);
  }
  .header_nav {
    --w: 40rem;
    position: fixed;
    right: 0;
    top: 0;
    width: var(--w);
    height: calc(var(--vh, 1vh) * 100);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
    padding: 12rem 3rem 4rem 3rem;
    overflow: auto;
    right: calc(-1 * var(--w));
    z-index: -1;
  }
  .header_actions {
    margin-left: auto;
    max-width: inherit;
  }
  .scrolled .header {
    height: 6.5rem;
  }
  .footer_copy {
    width: 100%;
    margin-top: 2rem;
  }
}
@media (max-width: 1199px) {
  .hero--home {
    padding-top: 15rem;
  }
}
@media (max-width: 991px) {
  :root {
    --container: calc(750px);
  }
  .image--block-title img {
    max-height: 7rem;
  }
  .hero .monitor {
    --w: 63.5rem;
  }
  .hero--home {
    min-height: inherit;
    max-height: 80rem;
  }
  .plans_items {
    grid-template-columns: repeat(1, 1fr);
  }
  .plans .plan_wrap:first-child .plan {
    border-radius: var(--base-rd) var(--base-rd) 0 0;
  }
  .plans .plan_wrap:last-child .plan {
    border-radius: 0 0 var(--base-rd) var(--base-rd);
  }
  .plans .plan_pricing {
    min-height: inherit;
  }
  .cta_content {
    padding: 6rem 3rem;
    min-height: inherit;
  }
  .comp table {
    display: block;
  }
  .comp table thead {
    display: block;
  }
  .comp table thead .txt {
    justify-content: center;
    text-align: center;
    min-height: 100%;
  }
  .comp table thead tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .comp table thead tr th {
    width: 50%;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .comp table thead tr th:nth-child(1) {
    width: 100%;
    border-top-right-radius: var(--base-rd);
  }
  .comp table thead tr th:last-child {
    border-top-right-radius: 0 !important;
  }
  .comp table tbody {
    display: block;
  }
  .comp table tbody .txt {
    justify-content: center;
    text-align: center;
    min-height: 100%;
  }
  .comp table tbody tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 0.4rem;
  }
  .comp table tbody tr td {
    width: 50%;
  }
  .comp table tbody tr td:nth-child(1) {
    width: 100%;
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .comp table tfoot {
    display: block;
  }
  .comp table tfoot .txt {
    justify-content: center;
    text-align: center;
    min-height: 100%;
  }
  .comp table tfoot tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .comp table tfoot tr td {
    width: 50%;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .comp table tfoot tr td:nth-child(2) {
    border-bottom-left-radius: var(--base-rd);
  }
  .comp table tfoot tr td:first-child {
    display: none;
  }
  .tb .wrap .phone {
    --w: 10rem;
    top: 5rem;
  }
  .how_items .row .empty {
    display: none;
  }
  .how_items .image:before {
    transform: rotate(-137.05deg) translate(-50%, -50%) scale(0.7);
  }
  .ba_slider {
    --h: 50rem;
  }
  .replace table {
    display: block;
  }
  .replace table th,
  .replace table td {
    padding: 1.2rem 2rem;
  }
  .replace table thead {
    display: block;
  }
  .replace table thead tr {
    display: flex;
    margin-bottom: 0.2rem;
  }
  .replace table thead tr th {
    width: calc(100% / 3);
    padding: 1.5rem 1rem !important;
  }
  .replace table thead tr th:first-child {
    padding-left: 2rem !important;
  }
  .replace table thead tr th:last-child {
    padding-right: 2rem !important;
  }
  .replace table thead tr th:nth-child(3) {
    display: none;
  }
  .replace table tbody {
    display: block;
  }
  .replace table tbody tr {
    width: 100%;
    display: flex;
    margin-bottom: 0.1rem;
  }
  .replace table tbody tr:first-child td:first-child {
    border-radius: 0;
  }
  .replace table tbody td {
    width: calc(65% / 2);
    padding: 1.5rem 1rem !important;
  }
  .replace table tbody td:first-child {
    width: 35%;
    /* width: 100%; */
    /* max-width: 100%; */
    /* order: 1; */
    padding-left: 2rem !important;
    font-size: 1.4rem;
  }
  .replace table tbody td:last-child {
    padding-right: 2rem !important;
  }
  .replace table thead th:nth-child(2) {
    text-align: center;
  }
  .replace table tbody td:nth-child(2) .txt:first-child:not(:last-child) {
    font-size: 1.4rem;
    font-weight: 700;
  }
  .replace table thead th:last-child,
  .replace table tbody td:last-child {
    text-align: center;
  }
  .replace table tbody td:nth-child(2) > *:not(:last-child) {
    margin-bottom: 2rem;
  }
  /* .replace table tbody td:nth-child(2) {
    width: 50%;
    max-width: 50%;
    order: 2;
    font-weight: 700;
    font-size: 1.8rem;
  }
  .replace table tbody td:nth-child(5) {
    width: 25%;
    order: 3;
    font-weight: 700;
    font-size: 1.8rem;
  }
  .replace table tbody td:nth-child(7) {
    width: 25%;
    order: 4;
    font-weight: 700;
    font-size: 1.8rem;
  }
  .replace table tbody td:nth-child(3),
  .replace table tbody td:nth-child(4) {
    width: 25%;
    order: 5;
  }
  .replace table tbody td:nth-child(6) {
    width: 25%;
    order: 7;
  }
  .replace table tbody td:nth-child(8) {
    width: 25%;
    order: 8;
    padding-right: 2rem;
  } */
  .replace table tfoot {
    display: block;
  }
  .replace table tfoot tr {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .replace table tfoot td {
    text-align: center;
  }
  .replace table tfoot td:nth-child(1) {
    display: none !important;
  }
  .replace table tfoot td:nth-child(2) {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    order: 1;
  }
  .replace table tfoot td:nth-child(3) {
    width: 50%;
    order: 2;
    font-weight: 700;
    font-size: 1.8rem;
  }
  .replace table tfoot td:nth-child(5) {
    width: 50%;
    order: 3;
    font-weight: 700;
    font-size: 1.8rem;
  }
  .replace table tfoot td:nth-child(4) {
    width: 50%;
    order: 4;
    border-bottom-left-radius: 0.8rem;
  }
  .replace table tfoot td:nth-child(6) {
    width: 50%;
    order: 5;
    padding-right: 2rem;
  }
  .get-more .phone {
    --w: 10rem;
    top: 5rem;
  }
  .get-more_tabs {
    padding: 0;
  }
  .tabs_menu:after {
    width: 2rem;
  }
  .tabs-link {
    margin-right: 3rem;
  }
  .tabs .tab_inner .row > div.image-side {
    order: 2;
  }
  .tabs .tab_inner .row > div.text-side {
    order: 1;
  }
  .header_actions .contact-btn {
    padding: 0;
    border: none;
    border-radius: 0;
  }
  .header_actions .contact-btn:before {
    display: none;
  }
  .header_actions .contact-btn .icon {
    --i-size: var(--btn-height);
  }
  .scrolled .header {
    height: 5.5rem;
  }
  .footer_block--bottom {
    align-items: flex-start;
    align-content: flex-start;
  }
}

@media (max-width: 767px) {
  :root {
    --container: calc(540px);
  }
  .sc {
    --sc-pd: 4rem 0;
  }
  .sc_buttons .button {
    width: 100%;
  }
  .hero .sc_text p br {
    display: none;
  }
  .hero .monitor_wrap {
    padding: 1.5rem;
  }
  .hero .monitor {
    --w: calc(100vw - var(--gap) * 4);
  }
  .hero--blog-single {
    margin-bottom: 10rem;
  }
  .hero--blog-single .hero_image {
    padding: 2rem;
    height: 26rem;
    margin-bottom: -13rem;
  }
  .faq .row {
    margin-bottom: -5rem;
  }
  .faq .row > div {
    margin-bottom: 5rem;
  }
  .plans {
    --sc-pd: 5rem 0;
  }
  .plans .sc_text:not(:last-child) {
    margin-bottom: 5rem;
  }
  .blog .sc_buttons:last-child {
    margin-top: 5rem;
  }
  .cta {
    --sc-pd: 5rem 0;
  }
  .cta_content .sc_bg {
    background-position: center right -25rem;
  }
  .comp .sc_text:not(:last-child) {
    margin-bottom: 5rem;
  }
  .comp table .button {
    font-size: 1.4rem;
    width: 100%;
    padding: 0.5rem 1rem;
  }
  .comp table .g-txt span {
    font-size: 2.2rem;
  }
  .comp table thead th .best {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 4rem;
    font-size: 0.5rem;
    position: absolute;
    top: -2rem;
    right: -2rem;
  }
  .tutorial {
    --sc-pd: 5rem 0;
  }
  .tutorial .sc_text:not(:last-child) {
    margin-bottom: 5rem;
  }
  .tutorial .video_wrap {
    --w: 100%;
    height: 30rem;
  }
  .how {
    --sc-pd: 5rem 0;
  }
  .how .container > .sc_text:not(:last-child) {
    margin-bottom: 5rem;
  }
  .how_items {
    gap: 5rem;
  }
  .how_items .row:last-child .sc_buttons:last-child {
    padding-bottom: 0;
  }
  .says {
    --sc-pd: 5rem 0;
  }
  .says .sc_text:not(:last-child) {
    margin-bottom: 5rem;
  }
  .says .say {
    flex-direction: column;
  }
  .says .say-video_wrap {
    --w: 100%;
    height: 30rem;
  }
  .says .say_text {
    padding: 4rem;
  }
  .why {
    --sc-pd: 5rem 0;
  }
  .why .sc_text p br {
    display: none;
  }
  .why .container > .row {
    margin-bottom: -5rem;
  }
  .why .container > .row > div {
    margin-bottom: 5rem;
  }
  .why .row .row {
    margin-bottom: -5rem;
  }
  .why .row .row > div {
    margin-bottom: 5rem;
  }
  .ba_block-head {
    padding: 5rem 0;
  }
  .ba_slider {
    --h: 40rem;
  }
  .cases {
    --sc-pd: 5rem 0;
  }
  .cases .sc_text:not(:last-child) {
    margin-bottom: 5rem;
  }
  .cases_items .row > div:not(:last-child) {
    margin-bottom: 5rem;
  }
  .cases .case_text {
    padding-top: 0;
    padding-bottom: 0;
  }
  /* .replace table th,
  .replace table td {
    padding: 0.8rem 2rem;
  }
  .replace table tbody td:nth-child(2) {
    order: 2;
    width: 100%;
    max-width: 100%;
  }
  .replace table tbody td:nth-child(3),
  .replace table tbody td:nth-child(4) {
    width: 50%;
    order: 3;
  }
  .replace table tbody td:nth-child(5) {
    width: 50%;
    order: 4;
  }
  .replace table tbody td:nth-child(6) {
    width: 50%;
    order: 6;
  }
  .replace table tbody td:nth-child(7) {
    width: 50%;
    order: 5;
  }
  .replace table tbody td:nth-child(8) {
    width: 50%;
    order: 7;
  } */
  .customers {
    --sc-pd: 5rem 0;
  }
  .customers .sc_text:not(:last-child) {
    margin-bottom: 5rem;
  }
  .about {
    --sc-pd: 5rem 0;
  }
  .accordion-item_head > *:not(:last-child) {
    margin-right: 1.5rem;
  }
  .accordion-item_inner {
    padding: 1rem 3rem 3rem 3rem;
  }
  .tabs .tab_inner {
    padding: 5rem 0;
  }
  .quote:before {
    --w: 4rem;
  }
  .quote blockquote:not(:last-child) {
    margin-bottom: 3rem;
  }
  .header_nav {
    --w: 100%;
  }
  .footer {
    padding: 5rem 0;
  }
  .footer .sc_text {
    text-align: center;
  }
  .footer .sc_buttons {
    justify-content: center;
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  :root {
    --container: calc(100%);
  }
  .ba .image picture {
    min-width: calc(var(--vw, 1vw) * 100 - var(--gap) * 2);
  }
  
  .replace_table {
    width: calc(var(--vw, 1vw) * 100);
    margin-left: calc((var(--container) - var(--vw, 1vw) * 100)/2);
  }
}

@media (min-width: 768px) {
  .cases_items .row > div:nth-child(1) .case_image {
    order: 2;
    margin-bottom: 0;
  }
  .cases_items .row > div:nth-child(1) .case_text {
    order: 1;
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }
  .comp table thead th {
    position: sticky;
    top: 6.5rem;
    z-index: 2;
  }
  .tabs-link--mobile {
    display: none;
  }
}

@media (min-width: 1200px) {
  * {
    scrollbar-width: thin;
    scrollbar-y-position: 1rem;
  }

  *::-webkit-scrollbar {
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 0.4rem;
  }

  *::-webkit-scrollbar-track {
    border-radius: 0;
    border-radius: 0.3rem;
  }

  *::-webkit-scrollbar-thumb {
    background: var(--c-red);
    border-radius: 0;
    border-radius: 0.3rem;
  }

  *::-webkit-scrollbar-thumb:hover {
    background: var(--c-red);
  }
  .container {
    max-width: var(--container);
  }
  .hero {
    font-size: 2.2rem;
  }
  .hero--blog-single {
    font-size: 2rem;
  }
  .faq .sc_text {
    font-size: 2rem;
  }
  .blog-card {
    --h-s-h4: 2.8rem;
  }
  .tb_cont .row > div:not(:last-child) {
    margin-right: 15rem;
  }
  .how_items .sc_text {
    font-size: 2.4rem;
    line-height: 1.2;
    --h-s-h2: 3.6rem;
  }
  .says .sc_text {
    font-size: 2rem;
  }
  .why .sc_text {
    font-size: 2rem;
  }
  .why-item {
    --h-s-h5: 2.2rem;
  }
  .cases .case {
    font-size: 2rem;
  }
  .replace .sc_text {
    font-size: 2rem;
  }
  .get-more .sc_text {
    font-size: 2rem;
  }
  .menu-button {
    display: none !important;
  }
  .header_actions .button:nth-last-child(2) {
    margin-right: 0;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: var(--container);
  }
}

@media (min-width: 1441px) {
  .header-container {
    max-width: 1440px;
  }
}
