@font-face {
  font-family: Neue Regrade;
  src: url('../fonts/Neue-Regrade-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neue Regrade;
  src: url('../fonts/Neue-Regrade-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neue Regrade;
  src: url('../fonts/Neue-Regrade-Semibold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --_colors---mono-100: white;
  --_colors---family-paragraph: "Host Grotesk", sans-serif;
  --_colors---mono-600: #888896;
  --_colors---family-headings: "Neue Regrade", Arial, sans-serif;
  --_colors---colors-brand-orange: #ff6000;
  --_colors---transparent: transparent;
  --_colors---mono-900: #121219;
  --_colors---white-opacity-10: #ffffff1a;
  --_colors---colors-alert-red: #ff2c2c;
  --_colors---mono-400: #d2d2d8;
  --_colors---mono-200: #f0f0f6;
  --bd-blur: 0px;
  --_colors---footer-black: #060608;
  --_colors---mono-700: #64646d;
  --benefit-bg-poso: -200;
  --benefit-bg-pos: 120rem;
  --line-1-offset: 0px;
  --line-2-offset: 0px;
  --line-3-offset: 0px;
  --mission-line: 0px;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

body {
  /* background-color: var(--_colors---mono-100); */
  font-family: var(--_colors---family-paragraph);
  color: var(--_colors---mono-600);
  font-size: 14rem;
  line-height: 148%;
  width: 100vw;
  overflow: hidden;
  overflow-y: scroll;
  background-color: #f3f3f3;
}

.loading-screen {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  opacity: 1;
  height: 100vh;
  background-color: #000;
  /* backdrop-filter: blur(25px) brightness(100%);
  -webkit-backdrop-filter: blur(25px) brightness(100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10000;
  transition: all .8s ease-in;
}

.loading-content {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.loading-icon {
  position: relative;
  width: 60px;
  height: auto;
  opacity: 1;
}

.hide-loading-screen .loading-icon {
  opacity: 0;
  transition: all .2s ease-in;
}

.loading-screen-text {
  position: relative;
  color: #ffffff;
  font-family: var(--font-family-urbanist);
  font-size: 34px;
  font-weight: 400;
  margin: 0;
}

.loading-subtext {
  position: relative;
  color: #6f6f6f;
  font-family: var(--font-family-urbanist);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.loading-bar {
  position: relative;
  width: 300px;
  height: 6px;
  background-color: #333;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 54px;
  box-shadow: 0 0 15px rgba(255, 96, 0, 0.5);
  /* Initial glow effect */
}

.loading-progress {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #ff6000, #E52E86);
  /* Gradient from orange to pink */
  border-radius: 3px;
  transition: width 3s ease;
  /* Control loading speed */
  box-shadow: 0 0 15px rgba(229, 46, 134, 0.8), 0 0 30px rgba(229, 46, 134, 0.5);
  /* Glow effect */
}

.loading-status {
  position: fixed;
  bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 1;
  transition: .3s ease-in-out;
}

.loading-status p {
  color: #fff;
  font-family: var(--font-family-urbanist);
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  margin: 0;
  transition: all 0.5s ease;
  /* Smooth transition for size and color */
}

.loading-status p.completed {
  color: #cccccc;
  font-family: var(--font-family-urbanist);
  font-size: 10px;
  line-height: 14px;
  font-weight: 400;
  /* Change color to white when completed */
  margin: 0;
}

.checkmark {
  display: none;
  /* Hide checkmark initially */
}

.completed .checkmark {
  display: inline;
  /* Show checkmark when completed */
  margin-left: 5px;
}

/* Hide the loading screen and show the main content */
.hide-loading-screen .loading-screen {
  background-color: transparent;
  opacity: 0;
}

.hide-loading-screen .loading-status {
  opacity: 0;
}


h1 {
  font-family: var(--_colors---family-headings);
  letter-spacing: -2.76px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 92rem;
  font-weight: 500;
  line-height: 100rem;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14rem;
  font-weight: 300;
  line-height: 1.43;
}

h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

p {
  margin-bottom: 0;
  font-size: 20rem;
  line-height: 140%;
}

a {
  font-family: var(--_colors---family-paragraph);
  color: var(--_colors---mono-100);
  cursor: pointer;
  font-feature-settings: "liga" off;
  justify-content: center;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
  text-decoration: none;
  transition-property: color;
  transition-duration: .3s;
  transition-timing-function: ease-in;
  display: flex;
}

a:hover {
  color: var(--_colors---colors-brand-orange);
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

.elements {
  grid-column-gap: 24rem;
  grid-row-gap: 24rem;
  background-color: var(--_colors---mono-600);
  padding: 23rem;
  display: flex;
}

.button-outlined {
  border: 1px solid var(--_colors---mono-100);
  background-color: var(--_colors---transparent);
  border-radius: 1px;
  justify-content: center;
  align-items: center;
  padding: 12rem 20rem;
  font-size: 16rem;
  line-height: 1.5;
  transition: border-color .3s cubic-bezier(.755, .05, .855, .06), background-color .3s cubic-bezier(.755, .05, .855, .06), color .3s cubic-bezier(.755, .05, .855, .06);
  display: flex;
}

.button-outlined:hover {
  border-color: var(--_colors---colors-brand-orange);
  background-color: var(--_colors---colors-brand-orange);
  color: var(--_colors---mono-100);
}

.button-outlined:active {
  border-color: var(--_colors---mono-100);
  background-color: var(--_colors---mono-100);
  color: var(--_colors---mono-900);
}

.button-filled {
  border: 1px solid var(--_colors---colors-brand-orange);
  background-color: var(--_colors---colors-brand-orange);
  justify-content: center;
  align-items: center;
  max-height: 48px;
  padding: 12rem 20rem;
  font-size: 14rem;
  line-height: 20rem;
  border-radius: 5px;
  transition: background-color .2s cubic-bezier(.755, .05, .855, .06), border .3s cubic-bezier(.755, .05, .855, .06), color .3s cubic-bezier(.755, .05, .855, .06);
  display: flex;
}

.button-filled:hover {
  border: 1px solid var(--_colors---mono-100);
  background-color: transparent;
  color: var(--_colors---mono-100);
}

.button-filled:active {
  background-color: var(--_colors---white-opacity-10);
}

.button-filled.full-on-mobile {
  color: var(--_colors---mono-100);
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 0;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: transparent;
  border-radius: 10px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  /* position: absolute; */
}

.container {
  width: 100%;
  max-width: 912rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container.relative {
  z-index: 5;
  position: relative;
}

.container.header-container {
  max-width: none;
}

.container.container-wide {
  max-width: 960rem;
}

.container.terms-container {
  max-width: 784rem;
}

.navbar-wrapper {
  /* color: #fff; */
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  gap: 45px;
}

.nav-menu {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #222;
  border-radius: 10px;
  padding: 10px 20px;
  box-sizing: border-box;
  top: 10px;
}

.navbar-brand {
  color: var(--_colors---mono-100);
  display: flex;
  border-radius: 200px;
  height: fit-content;
  width: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand:hover {
  color: inherit;
}

.navbar-brand.mobile {
  display: flex;
}

/* .navbar-brand.mobile.w--current {
  display: none;
} */

.nav-menu-wrapper {
  grid-column-gap: 76px;
  grid-row-gap: 76px;
  display: flex;
}

.nav-menu-two {
  grid-column-gap: 38rem;
  grid-row-gap: 38rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: inherit;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-color: var(--_colors---colors-brand-orange);
  outline-offset: 2px;
  border-radius: 4px;
  outline-width: 1px;
  outline-style: solid;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-divider {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.menu-button {
  /* border-style: solid;
  border-width: 1px;
  border-color: inherit; */
  width: 48rem;
  max-width: 48px;
  height: 48rem;
  max-height: 48px;
  padding: 0;
  transition-property: border-color;
  transition-duration: .5s;
  transition-timing-function: ease-in;
  display: none;
  position: static;
}

.navbar {
  z-index: 20;
  padding: 16rem;
  transition: background-color .4s cubic-bezier(1, .059, .855, .06), transform .7s cubic-bezier(1, .059, .855, .06);
  position: fixed;
  inset: 0% 0% auto;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  color: #fff;
}

.navbar.header-hidden {
  transform: translate(0, -100%);
}

.navbar.header-scrolled {
  /* background-color: var(--_colors---mono-100); */
  color: var(--_colors---mono-900);
}

.dev-bg {
  background-color: var(--_colors---mono-600);
}

.logo-svg {
  justify-content: center;
  align-items: center;
  display: flex;
  height: fit-content;
  width: 44px;
  filter: none;
  transition: all .5s ease;
}

.navbar.navbar-light .logo-svg {
  filter: invert();
}

.logo-svg.pointer-logo {
  width: 28rem;
  height: 32rem;
}

.navigation-wrapper {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  /* display: flex; */
}

.hero {
  z-index: 10;
  margin-bottom: -10rem;
  padding-top: 98rem;
  padding-bottom: 0;
}

.hero-bg {
  z-index: 3;
  /* background-image: url('../images/blur_1.webp'); */
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100vw 100%;
  height: 100%;
  padding-bottom: 0;
  position: absolute;
  inset: 0%;
}

.hero-video {
  background-size: cover;         /* or contain */
  background-repeat: no-repeat;   /* or repeat if tiled */
  background-position: center;    /* or top, left, etc */
  height: 100vh;                  /* or any size you want */
  width: 100%;
  background-color: #b1d3f5;
  object-fit: cover;              /* scales the video nicely when playing */
}

.video-bg {
  z-index: 1;
  width: 100vw;
  height: auto;
  position: absolute;
  inset: 0% 0% 0% auto;
  background-size: cover;         /* or contain */
  background-repeat: no-repeat;
}

.dog-video {
  z-index: 2;
  object-fit: fill;
  background-color: #0a0a0a;
  height: 100%;
  max-height: 1365rem;
  position: absolute;
  inset: 0%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: black;
  /* height: 100vh; */
  width: 100%;
  object-fit: cover;
}

/* .dev-divider {
  background-color: var(--_colors---mono-600);
  height: 88rem;
} */

.orange-text {
  color: var(--_colors---colors-brand-orange);
}

.white-text {
  color: var(--_colors---mono-100);
}

.white-text.blurred-text {
  perspective-origin: 0%;
  transform-origin: 0%;
}

.white-text.blurred-text.copy {
  color: var(--_colors---transparent);
  position: absolute;
  inset: 0%;
}

.hero-text {
  grid-column-gap: 32rem;
  grid-row-gap: 32rem;
  flex-flow: column;
  margin-bottom: 45rem;
  display: flex;
  flex-direction: row;
  padding-bottom: 100rem;
}

.hero-description {
  perspective-origin: 0%;
  transform-origin: 0%;
  max-width: 548rem;
  text-align: right;
}

.mission {
  z-index: 11;
  background-color: var(--_colors---mono-100);
  border-radius: 56rem 56rem 0 0;
  position: relative;
  overflow: hidden;
}

.mission-wrapper {
  padding-top: 118rem;
  padding-bottom: 120rem;
}

.mission-wrapper.container {
  padding-top: 120rem;
}

.text-title {
  grid-column-gap: 156rem;
  grid-row-gap: 156rem;
  justify-content: space-between;
}

.paragraph-blured {
  position: relative;
}

.accent-p {
  color: var(--_colors---mono-900);
  font-feature-settings: "liga" off;
  margin-bottom: 0;
  font-size: 48rem;
  line-height: 56rem;
}

.title-heading {
  color: var(--_colors---mono-900);
  text-transform: uppercase;
  white-space: nowrap;
  font-feature-settings: "ss01" on;
  padding-left: 0;
  position: relative;
}

.how {
  z-index: 12;
  background-color: var(--_colors---mono-100);
  position: relative;
}

.footer {
  background-color: #060608;
  padding-top: 80rem;
  padding-bottom: 80rem;
}

.footer-wrapper {
  grid-column-gap: 230rem;
  grid-row-gap: 230rem;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.footer-info {
  justify-content: space-between;
  display: flex;
}

.footer-links {
  grid-column-gap: 16rem;
  grid-row-gap: 16rem;
  display: flex;
}

.footer-social-links.white-text {
  grid-column-gap: 24rem;
  grid-row-gap: 24rem;
  display: flex;
}

.svg-icons {
  padding: 10rem;
  display: flex;
}

.social-link {
  width: 16rem;
  height: 16rem;
  padding-top: 0;
  padding-bottom: 0;
}

.footer-right, .footer-copyright {
  grid-column-gap: 20rem;
  grid-row-gap: 20rem;
  align-items: center;
  display: flex;
}

.body-300 {
  font-feature-settings: "liga" off;
  line-height: 143%;
}

.form-input {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--_colors---white-opacity-10);
  background-color: var(--_colors---transparent);
  color: var(--_colors---mono-100);
  -webkit-text-stroke-color: var(--_colors---transparent);
  margin-bottom: 0;
  padding: 16rem 0;
  line-height: 143%;
  transition: color .3s cubic-bezier(.755, .05, .855, .06), border-color .3s cubic-bezier(.755, .05, .855, .06);
}

.form-input:focus {
  border-bottom-color: var(--_colors---mono-100);
}

.form-input::placeholder {
  -webkit-text-stroke-color: transparent;
  font-feature-settings: "liga" off;
  color: #ffffff80;
  line-height: 143%;
}

.form-input.error {
  border-bottom-color: var(--_colors---colors-alert-red);
}

.inputs-wrapper {
  grid-column-gap: 24rem;
  grid-row-gap: 24rem;
  flex-flow: column;
  margin-bottom: 48rem;
  display: flex;
}

.heading {
  margin-bottom: 40px;
}

.footer-text {
  max-width: 375rem;
  margin-bottom: 32rem;
}

.body-400 {
  margin-bottom: 0;
  font-size: 14rem;
  line-height: 20rem;
}

.body-400.gray-text {
  color: var(--_colors---mono-600);
}

.body-400.gray-text.copy {
  color: var(--_colors---transparent);
  position: absolute;
  inset: 0%;
}

.title-700 {
  font-family: var(--_colors---family-headings);
  font-feature-settings: "ss01" on;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 72rem;
  font-weight: 500;
  line-height: 80rem;
}

.footer-form {
  grid-column-gap: 30rem;
  grid-row-gap: 30rem;
  flex-flow: column;
  margin-bottom: 0;
  display: flex;
}

.form-wrapper {
  max-width: 605rem;
}

.testimonials {
  z-index: 10;
  background-color: var(--_colors---mono-100);
  position: relative;
}

.testimonials-wrapper {
  grid-column-gap: 48rem;
  grid-row-gap: 48rem;
  flex-flow: column;
  padding-top: 120rem;
  padding-bottom: 120rem;
  display: flex;
}

.swiper {
  z-index: 3;
  width: 100%;
  position: relative;
}

.swiper-wrapper {
  z-index: 2;
  position: relative;
}

.swiper-wrapper.decorative-slider-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: center;
  align-items: center;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.swiper-slide {
  width: 100%;
  display: flex;
  position: relative;
}

.swiper-slide.decorative-slide {
  justify-content: center;
  align-items: center;
  width: 8rem;
  max-width: 8rem;
  height: 8rem;
  transition: transform .5s cubic-bezier(.215, .61, .355, 1), opacity .3s cubic-bezier(.215, .61, .355, 1);
}

.slider-buttons {
  z-index: 12;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.custom-button-prev, .custom-button-next {
  cursor: pointer;
  width: 20rem;
  height: 20rem;
  position: static;
}

.swiper-pagination {
  position: static;
  transform: translate(0);
}

.testimonials-item {
  grid-column-gap: 35rem;
  grid-row-gap: 35rem;
  background-color: var(--_colors---mono-100);
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.testimonials-photo {
  border-radius: 24rem;
  width: 100%;
  max-width: 272rem;
  max-height: 315rem;
  overflow: clip;
}

.testimonials-text {
  flex-flow: column;
  flex: none;
  justify-content: space-between;
  max-width: 605rem;
  display: flex;
}

.body-700 {
  font-feature-settings: "liga" off;
  font-size: 32rem;
  line-height: 40rem;
}

.body-700.black-text {
  color: var(--_colors---mono-900);
}

.testimonials-author {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.title-100 {
  text-transform: uppercase;
  font-feature-settings: "ss01" on;
  font-size: 14rem;
}

.black-text {
  color: var(--_colors---mono-900);
}

.icon-left {
  color: var(--_colors---mono-400);
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 20rem;
  transition: color .3s;
  display: flex;
}

.icon-left:hover {
  color: var(--_colors---mono-900);
}

.icon-right {
  color: var(--_colors---mono-400);
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 20rem;
  transition: color .3s;
  display: flex;
}

.icon-right:hover {
  color: var(--_colors---mono-900);
}

.benefits {
  z-index: 15;
  background-color: var(--_colors---mono-100);
  position: relative;
  overflow: hidden;
}

.benefits-top {
  z-index: 2;
  padding-top: 60rem;
  padding-bottom: 120rem;
  position: relative;
}

.benefits-title {
  margin-bottom: 64rem;
  position: relative;
}

.benefits-desc {
  grid-column-gap: 16rem;
  grid-row-gap: 16rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.body-900 {
  font-feature-settings: "liga" off;
  font-size: 48rem;
  font-weight: 400;
  line-height: 56rem;
}

.body-900.black-text.copy {
  color: var(--_colors---transparent);
  position: absolute;
  inset: 0%;
}

.body-900.benefit-accent {
  color: var(--_colors---mono-100);
}

.body-900.benefit-accent.copy, .body-900.white-text.copy {
  color: var(--_colors---transparent);
  position: absolute;
  inset: 0%;
}

.body-900.accent-p.copy {
  z-index: 2;
  color: var(--_colors---transparent);
  position: absolute;
  inset: 0%;
}

.benefits-heading {
  grid-column-gap: 16rem;
  grid-row-gap: 16rem;
  flex-flow: column;
  max-width: 421rem;
  margin-top: 64rem;
  margin-bottom: 180rem;
  display: flex;
}

.benefits-list {
  grid-column-gap: 80rem;
  grid-row-gap: 80rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.benefit-item {
  grid-column-gap: 36rem;
  grid-row-gap: 36rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.benefit-value {
  background-color: #d3d3d380;
  background-image: url('../images/bg-sm.webp');
  background-position: 50%;
  background-position-x: var(--benefit-bg-pos);
  font-family: var(--_colors---family-headings);
  letter-spacing: -4.2rem;
  -webkit-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-background-clip: text;
  background-clip: text;
  min-width: 271rem;
  font-size: 140rem;
  font-weight: 600;
  line-height: 1;
}

.benefit-value-small {
  letter-spacing: -2.28rem;
  font-size: 76rem;
  font-weight: 500;
}

.benefits-bg {
  z-index: 3;
  background-image: url('../images/hero-bg-min_1.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: absolute;
  inset: 0%;
}

.benefit-item-text {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  max-width: 322rem;
  padding-top: 12rem;
  display: flex;
}

.title-300 {
  font-family: var(--_colors---family-headings);
  font-feature-settings: "ss01" on, "liga" off, "calt" off;
  font-size: 20rem;
  font-weight: 600;
  line-height: 1.3;
}

.benefit-blurred-text {
  z-index: 4;
  max-width: 851rem;
  position: relative;
}

.brurred-on-bg {
  z-index: 3;
  padding-top: 358rem;
  padding-bottom: 458rem;
  position: relative;
}

.solutions {
  z-index: 10;
  background-color: var(--_colors---mono-100);
  position: relative;
}

.solutions-wrapper {
  padding-top: 120rem;
  padding-bottom: 120rem;
}

.solutions-heading {
  margin-bottom: 80rem;
  display: none;
  position: relative;
}

.solutions-item {
  grid-column-gap: 24rem;
  grid-row-gap: 24rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.solution-item-text {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  align-items: flex-start;
  display: flex;
}

.solution-text-wrap {
  flex: 1 0 auto;
  width: 50%;
}

.solution-wrapper-p {
  width: 50%;
}

.solution-item-img {
  aspect-ratio: 14.5 / 9;
  filter: none;
  border-radius: 16px;
  width: 100%;
  overflow: clip;
}

.solutions-list {
  grid-column-gap: 80rem;
  grid-row-gap: 80rem;
  flex-flow: column;
  display: none;
}

.technology {
  z-index: 10;
  background-image: url('../images/bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding-top: 48rem;
  padding-bottom: 48rem;
  position: relative;
}

.technology-title {
  grid-column-gap: 56rem;
  grid-row-gap: 56rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 736rem;
  margin-bottom: 222rem;
  display: flex;
}

.tech-benefits {
  grid-column-gap: 56rem;
  grid-row-gap: 56rem;
  flex-flow: row;
  justify-content: flex-start;
  display: flex;
}

.tech-benefit-item {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.title-400 {
  font-family: var(--_colors---family-headings);
  font-size: 32rem;
  font-weight: 600;
  line-height: 40rem;
}

.mission-title {
  padding-top: 20rem;
  position: relative;
}

.first-screen {
  z-index: 12;
  /* background-color: #f4f4f4; */
  position: relative;
}

.hero-benefits {
  z-index: 10;
  transform-origin: 50% 100%;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  min-height: 682rem;
  padding-left: 0;
  display: flex;
  position: relative;
  transform: none;
}

.line-1 {
  perspective-origin: 0 100%;
  transform-origin: 0 100%;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 8rem;
  display: flex;
  position: absolute;
}

.how-title {
  position: relative;
}

.how-wrapper {
  grid-column-gap: 48rem;
  grid-row-gap: 48rem;
  flex-flow: column;
  padding-top: 120rem;
  padding-bottom: 120rem;
}

.how-content {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.step {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.step-text {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: column;
  max-width: 410rem;
  padding-right: 16rem;
  display: flex;
}

.slider-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.testimonials-heading {
  position: relative;
}

.header-actions {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  display: flex;
}

.navbar-menu-burger {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.navbar-menu-burger-line-up {
  /* background-color: var(--_colors---mono-100); */
  flex: none;
  width: 16px;
  height: 2px;
  padding: 0;
}

.navbar-menu-burger-line-down {
  /* background-color: var(--_colors---mono-100); */
  width: 16px;
  height: 2px;
}

.decorative-line-holder {
  z-index: -1;
  perspective-origin: 0%;
  transform-origin: 0%;
  width: 100%;
  max-width: 912rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 50%;
  right: auto;
  transform: translate(-50%);
}

.spaniel, .fake-el {
  display: none;
}

.decorative-slider {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 48px;
}

.testimonials-svg {
  z-index: 2;
  justify-content: flex-end;
  align-items: flex-end;
  width: 216rem;
  display: flex;
  position: absolute;
  bottom: -8rem;
  right: 16px;
  overflow: visible;
  transform: translate(50%);
}

.header-nav-item {
  justify-content: center;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
  list-style-type: none;
  display: flex;
  transition: all .2s ease;
}

.hero-benefit {
  perspective-origin: 0 100%;
  transform-origin: 0 100%;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.hero-benefit.first {
  height: 100%;
  min-height: 100%;
  margin-right: 30rem;
  padding-left: 24rem;
}

.hero-benefit.second {
  height: 100%;
  min-height: 536rem;
  padding-left: 24rem;
}

.hero-benefit.third {
  min-height: 652rem;
  padding-left: 24rem;
}

.hero-benefit-number {
  font-family: var(--_colors---family-headings);
  color: var(--_colors---mono-100);
  font-size: 48rem;
  font-weight: 600;
  line-height: 1;
}

.hero-benefit-text {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  perspective-origin: 0%;
  transform-origin: 0%;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 6rem;
  display: flex;
}

.hero-benefit-text.first {
  margin-top: 210rem;
  margin-right: 80rem;
}

.hero-benefit-text.second {
  margin-top: 110rem;
  margin-right: -6rem;
}

.hero-benefit-descr {
  color: var(--_colors---mono-100);
  font-feature-settings: "liga" off;
  font-size: 16rem;
  line-height: 20rem;
}

.hero-benefit-descr._3 {
  width: 122rem;
}

.hero-benefit-descr._2 {
  width: 154rem;
}

.bullet {
  margin-bottom: auto;
  margin-left: auto;
  padding-top: 12rem;
  display: flex;
  transform: translate(8px);
}

.bullet.show-on-mobile {
  display: none;
}

.line-first {
  width: 104rem;
}

.line-2 {
  perspective-origin: 0 100%;
  transform-origin: 0 100%;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 8rem;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.line-second {
  width: 386rem;
}

.line-3 {
  perspective-origin: 0 100%;
  transform-origin: 0 100%;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-width: 640rem;
  display: flex;
  position: absolute;
  inset: auto auto -16rem 0%;
}

.line-third {
  width: 638.4rem;
}

.hero-benefits-titles {
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 120rem;
  display: flex;
}

.hero-benefits-lines {
  -webkit-user-select: none;
  user-select: none;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.split-words {
  display: inline-flex;
}

.defs {
  display: none;
}

.desktop-img-wrapper {
  grid-column-gap: 80rem;
  grid-row-gap: 80rem;
  flex-flow: column;
  display: flex;
}

.desktop-text-wrapper {
  display: none;
}

.mission-line {
  z-index: -1;
  background-color: var(--_colors---mono-200);
  width: 1px;
  height: 100vh;
  position: absolute;
  inset: 0% auto auto .6px;
  overflow: hidden;
  transform: translate(-50%);
}

.mission-line.k {
  display: none;
}

.container-wide {
  width: 100%;
  max-width: 960rem;
  margin-left: auto;
  margin-right: auto;
}

.container-wide.decorative-line-holder {
  inset: 0%;
  transform: none;
}

.testimonials-svg-wrapper {
  perspective-origin: 100% 100%;
  transform-origin: 100% 100%;
  justify-content: flex-start;
  align-items: flex-start;
  width: 1px;
  height: 216rem;
  max-height: 120rem;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.how-line-1 {
  background-color: var(--_colors---mono-200);
  width: 1px;
  height: 128rem;
  display: inline-block;
  position: absolute;
  inset: 0%;
}

.how-line-2 {
  perspective-origin: 100% 0;
  transform-origin: 100% 100%;
  justify-content: flex-end;
  align-items: flex-start;
  width: 185rem;
  display: flex;
  position: absolute;
  inset: 0% -8px 0% auto;
  overflow: visible;
}

.how-line-2-wrapper {
  width: 1px;
  height: 100%;
  position: absolute;
  inset: 136rem 0% auto;
  overflow: visible;
}

.solutions-line-1 {
  background-color: var(--_colors---mono-200);
  width: 1px;
}

.benefits-line {
  width: 203rem;
  position: absolute;
  inset: 0% 0% auto auto;
}

.benefits-line-short {
  background-color: var(--_colors---mono-200);
  width: 1px;
  height: 92rem;
}

.benefits-line-bottom {
  width: 1rem;
  height: 808rem;
  position: absolute;
  inset: 8rem 0 0% auto;
}

.how-line-curve-svg {
  transform-origin: 100% 0;
  margin-left: auto;
  margin-right: 0;
  position: absolute;
  left: auto;
  right: 0;
}

.main {
  background-color: var(--_colors---mono-100);
}

.selected {
  display: none;
}

.benefit-line-wrapper {
  width: 1px;
  position: absolute;
  top: 80rem;
  right: auto;
}

.solution-items-box {
  grid-column-gap: 80rem;
  grid-row-gap: 80rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.solution-item {
  grid-column-gap: 24rem;
  grid-row-gap: 24rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  width: 100%;
}

.solutions-box {
  grid-column-gap: 80rem;
  grid-row-gap: 80rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.navigation-social, .chevron {
  display: none;
}

.hero-bg-blur {
  z-index: 2;
  -webkit-backdrop-filter: blur(var(--bd-blur));
  backdrop-filter: blur(var(--bd-blur));
  background-color: #000000;
  opacity: 1;
  position: absolute;
  inset: 0%;
  transition: all .7s ease-in-out;
}

.hero-bg-blur.trans {
  opacity: 0;
}

.mobile-menu-wrap {
  display: flex;
}

.hidden-link {
  background-color: var(--_colors---footer-black);
  height: 1px;
}

.show-on-lg {
  display: none;
}

.fade {
  z-index: 4;
  /* filter: blur(88px); */
  /* background-color: #dff1fa; */
  width: 316rem;
  height: 100%;
  position: absolute;
  inset: 0% 50% 0% auto;
  transform: translate(-50%);
}

.demo-video {
  width: 100%;
  height: 100%;
}

.benefit-svg {
  perspective-origin: 100% 100%;
  justify-content: flex-end;
  align-items: flex-start;
  width: 203rem;
  display: flex;
  position: absolute;
  inset: 0% 16rem 0% auto;
  transform: translate(50%);
}

.testimonials-line-wrapper {
  width: 1px;
  height: 128rem;
  overflow: visible;
}

.video-holder {
  width: 100%;
  display: block;
}

.relative {
  position: relative;
}

.terms-rich-text {
  width: 45%;
}

.terms-rich-text h1 {
  color: var(--_colors---mono-900);
  letter-spacing: normal;
  margin-bottom: 32rem;
  font-size: 56rem;
  line-height: 1.14;
}

.terms-rich-text p {
  color: var(--_colors---mono-900);
  margin-top: 24rem;
}

.terms-rich-text a {
  color: var(--_colors---colors-brand-orange);
  text-underline-position: under;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: underline;
  display: inline-block;
}

.terms {
  padding: 180rem 120rem 200rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.rich-text-content h2 {
  font-family: var(--_colors---family-headings);
  color: var(--_colors---mono-900);
  margin-top: 56rem;
  margin-bottom: 16rem;
  font-size: 26rem;
  font-weight: 500;
  line-height: 34rem;
}

.rich-text-content p {
  color: var(--_colors---mono-700);
  margin-top: 16rem;
  font-size: 18rem;
  font-weight: 400;
  line-height: 1.44;
}

.rich-text-content h3 {
  font-family: var(--_colors---family-headings);
  color: var(--_colors---mono-900);
  margin-top: 16rem;
  font-size: 20rem;
  font-weight: 500;
  line-height: 1.3;
}

.rich-text-content ul {
  color: var(--_colors---mono-700);
  margin-top: 8px;
  padding-left: 24rem;
  font-size: 18rem;
  font-weight: 400;
  line-height: 1.44;
}

.rich-text-content a {
  color: var(--_colors---colors-brand-orange);
  padding-top: 0;
  padding-bottom: 0;
  display: inline-flex;
}

.rich-text-content h4 {
  font-family: var(--_colors---family-headings);
  color: var(--_colors---mono-900);
  margin-top: 24rem;
  margin-bottom: 16rem;
  font-size: 20rem;
  font-weight: 600;
  line-height: 26rem;
}

.decorative-slider-holder {
  flex: 1;
}

.decorative-slide-element {
  background-color: var(--_colors---mono-900);
  border-radius: 100%;
  width: 8px;
  max-width: 8px;
  height: 8px;
  max-height: 8px;
  overflow: hidden;
}

.hidden {
  display: none;
}

.decorative-slider-wrapper {
  z-index: 3;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 8px;
  display: flex;
  position: relative;
}

.link-text {
  position: relative;
  z-index: 1;
  color: #fff;
  transition: all .5s ease;
}

.navbar.navbar-light .link-text {
  color: #000;
}

@media screen and (min-width: 1440px) {
  .button-filled {
    height: 44rem;
    max-height: 44px;
  }

  .button-filled.full-on-mobile {
    justify-content: center;
    align-items: center;
  }

  .container {
    z-index: 22;
    max-width: 1280rem;
    position: relative;
  }

  .container.test-bg {
    background-color: red;
  }

  .container.terms-container {
    z-index: 10;
    max-width: 840rem;
  }

  .navbar-brand {
    padding: 0;
    display: block;
  }

  /* .navbar-brand.mobile {
    display: none;
  } */

  .nav-menu-wrapper {
    grid-column-gap: 36rem;
    grid-row-gap: 36rem;
    display: flex;
  }

  .nav-menu-two {
    flex-flow: row;
    padding-top: 0;
  }

  .nav-link {
    padding-top: 0;
    padding-bottom: 0;
  }

  .link-text {
    color: #fff;
  }

  .menu-button {
    display: none;
  }

  .hero {
    margin-bottom: 0;
    padding-top: 152rem;
    padding-bottom: 0;
  }

  .hero-bg {
    max-height: 1015rem;
  }

  .video-bg {
    width: auto;
    min-width: 100vw;
    max-width: 100vw;
  }


  .dog-video {
    height: 956rem;
  }

  .hero-text {
    /* max-width: 1055rem; */
    margin-bottom: 77rem;
  }

  .hero-description {
    max-width: 548rem;
  }

  .mission {
    z-index: 13;
    border-top-left-radius: 32rem;
    border-top-right-radius: 32rem;
  }

  .mission-wrapper.container {
    padding-top: 156rem;
    padding-bottom: 160rem;
  }

  .text-title {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer {
    justify-content: center;
    align-items: center;
    min-height: 100svh;
    margin-bottom: -40rem;
    padding-top: 100rem;
    padding-bottom: 40rem;
    position: sticky;
    bottom: 0;
  }

  .footer-info {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-top {
    display: flex;
  }

  .inputs-wrapper {
    grid-column-gap: 16rem;
    grid-row-gap: 16rem;
    margin-bottom: 40rem;
  }

  .footer-text.white-text {
    max-width: 271rem;
    margin-bottom: 16rem;
    padding-top: 8rem;
  }

  .footer-form {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    width: 100%;
    display: grid;
  }

  .form-wrapper {
    min-width: 421rem;
    max-width: 421rem;
  }

  .testimonials-wrapper {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 160rem;
    padding-bottom: 160rem;
    display: grid;
  }

  .swiper-wrapper {
    width: 100%;
  }

  .testimonials-item {
    grid-column-gap: 40rem;
    grid-row-gap: 40rem;
  }

  .testimonials-photo {
    min-width: 386rem;
    max-width: 386rem;
    max-height: 435rem;
  }

  .testimonials-text {
    max-width: 421rem;
  }

  .title-100.title-heading {
    margin-bottom: 0;
  }

  .benefits-top {
    padding-top: 60rem;
  }

  .benefits-heading {
    grid-column-gap: 8rem;
    grid-row-gap: 16rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    max-width: none;
    margin-bottom: 156rem;
    display: grid;
  }

  .benefits-list {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .benefit-item {
    grid-column-gap: 12rem;
    grid-row-gap: 12rem;
    flex-flow: column;
  }

  .benefit-item-text {
    padding-top: 0;
  }

  .brurred-on-bg {
    padding-top: 220rem;
    padding-bottom: 320rem;
  }

  .solutions-wrapper {
    flex-flow: column;
    justify-content: flex-end;
    align-items: stretch;
    height: 100%;
    padding-top: 80rem;
    padding-bottom: 0;
    display: flex;
    position: sticky;
    top: 80rem;
  }

  .solutions-heading {
    z-index: 32;
    margin-bottom: 0;
    padding-top: 0;
    position: sticky;
    top: 80rem;
  }

  .solutions-item {
    grid-column-gap: 56rem;
    grid-row-gap: 56rem;
    flex-flow: row;
    align-items: flex-start;
    height: 100vh;
    position: sticky;
    top: 176rem;
  }

  .solutions-item.second {
    top: 200rem;
  }

  .solutions-item.third {
    top: 222rem;
  }

  .solution-item-text {
    background-color: var(--_colors---mono-100);
    flex-flow: column;
    justify-content: flex-start;
    max-width: 376rem;
    padding-top: 40rem;
    display: none;
  }

  .solution-item-text._2 {
    top: 40rem;
  }

  .solution-item-text._2.desktop {
    top: 292rem;
  }

  .solution-item-text._3 {
    top: 40rem;
  }

  .solution-item-text._3.desktop {
    top: 492rem;
  }

  .solution-item-text.desktop {
    display: flex;
    position: sticky;
    top: 92rem;
  }

  .solution-item-text.universal-box {
    display: flex;
  }

  .solution-item-text.universal-box.first-item {
    margin-top: 18rem;
    padding-top: 0;
  }

  .solution-item-text.universal-box.second-item {
    margin-top: 200rem;
    padding-top: 0;
  }

  .solution-item-text.universal-box.third-item {
    margin-top: 520rem;
    padding-top: 0;
  }

  .solution-text-wrap {
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .solution-wrapper-p {
    width: 100%;
  }

  .solution-item-img {
    position: sticky;
    top: 0;
  }

  .solution-item-img._2 {
    top: 164rem;
  }

  .solution-item-img._3 {
    top: 0;
  }

  .solutions-list {
    grid-column-gap: 80rem;
    grid-row-gap: 80rem;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    display: none;
  }

  .technology {
    padding-top: 80rem;
    padding-bottom: 80rem;
    overflow: hidden;
  }

  .technology-title {
    grid-column-gap: 40rem;
    grid-row-gap: 40rem;
    margin-bottom: 164rem;
  }

  .tech-benefits {
    grid-column-gap: 24rem;
    grid-row-gap: 24rem;
    max-width: 682rem;
  }

  .mission-title {
    padding-top: 30rem;
  }

  .hero-benefits {
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 407.1rem;
  }

  .line-1 {
    bottom: -8rem;
  }

  .how-wrapper {
    padding-bottom: 136rem;
  }

  .how-content {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .step {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .step-text {
    padding-right: 40rem;
  }

  .slider-image {
    width: 100%;
    display: block;
  }

  .form-title {
    max-width: 669rem;
    margin-right: auto;
  }

  .decorative-line-holder {
    max-width: 1280rem;
  }

  .spaniel {
    z-index: 23;
    justify-content: center;
    align-items: center;
    min-width: 501rem;
    max-width: 501rem;
    height: 100%;
    display: flex;
    position: absolute;
    inset: 0% 0% 0% auto;
    overflow: clip;
  }

  .spaniel-video {
    transform-origin: 50% 0;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
  }

  .fake-sticky {
    height: 100%;
    position: sticky;
    top: 50vh;
  }

  .fake-el {
    z-index: -1;
    flex: 1;
    height: 100%;
    min-height: 300dvh;
    display: block;
    position: absolute;
    inset: 100vh 0% 0% auto;
  }

  .testimonials-svg {
    bottom: -50%;
    right: 15px;
  }

  .header-nav-item {
    justify-content: center;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 8rem;
    display: flex;
  }

  .spaniel-overlay {
    z-index: 12;
    box-sizing: border-box;
    opacity: .65;
    object-fit: cover;
    width: 114%;
    height: 103%;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: 0%;
  }

  .pointer-full-logo {
    color: var(--_colors---mono-100);
  }

  .pointer-logo-wrapper {
    z-index: 12;
    position: absolute;
    bottom: 81rem;
  }

  .hero-benefit-number {
    font-family: var(--_colors---family-headings);
    color: var(--_colors---mono-100);
    font-size: 48rem;
    font-weight: 600;
    line-height: 1;
  }

  .hero-benefit-text.first {
    margin-top: 94rem;
    margin-right: 90rem;
  }

  .hero-benefit-text.second {
    margin-top: 32rem;
  }

  .line-first {
    width: 139rem;
  }

  .line-2 {
    bottom: -8rem;
  }

  .line-second {
    width: 430rem;
  }

  .line-third {
    width: 680rem;
  }

  .hero-benefits-titles {
    padding-left: 150rem;
  }

  .desktop-img-wrapper {
    flex-flow: column;
    width: 848rem;
    display: flex;
  }

  .desktop-text-wrapper {
    grid-column-gap: 40rem;
    grid-row-gap: 40rem;
    flex-flow: column;
    justify-content: flex-start;
    width: 376rem;
    height: 120vh;
    display: flex;
    position: sticky;
    top: 176rem;
  }

  .container-wide {
    max-width: 1344rem;
  }

  .how-line-2 {
    width: 203rem;
    max-height: 650rem;
    right: -8.5rem;
  }

  .how-line-2-wrapper {
    top: 136rem;
  }

  .solution-items-box {
    display: flex;
  }

  .solution-item {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    height: 100%;
    padding-top: 92rem;
    display: grid;
    position: sticky;
    top: 76rem;
  }

  .solution-item-heading {
    height: 600rem;
    position: sticky;
    top: 80rem;
  }

  .solutions-box {
    margin-top: -600rem;
  }

  .hidden-link {
    scroll-margin-block: 100px 0;
  }

  .hide-on-lg {
    display: none;
  }

  .show-on-lg {
    display: inline;
  }

  .testimonials-line-wrapper {
    height: 168rem;
  }

  .video-holder {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    min-height: 580rem;
    padding-top: 24rem;
    display: flex;
  }

  .video-holder._2 {
    padding-top: 32rem;
  }

  .video-holder._3 {
    padding-top: 192rem;
  }

}

@media screen and (min-width: 1920px) {
  h1 {
    letter-spacing: -.03em;
    font-size: 120rem;
    line-height: 128rem;
  }

  .button-filled {
    height: 48rem;
    max-height: 48px;
  }

  .button-filled.full-on-mobile {
    font-size: 16rem;
    line-height: 1.5;
  }

  .container {
    max-width: 1680rem;
  }

  /* .navbar-brand {
    display: none;
  } */

  .navbar-brand.mobile, .navbar-brand.mobile.w--current {
    display: block;
  }

  .navigation-wrapper {
    max-width: 1680rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    margin-bottom: -50rem;
    padding-top: 184rem;
  }

  .hero-bg {
    max-height: 1174px;
  }

  .video-bg {
    min-width: 100vw;
    max-width: 100vw;
  }

  .dog-video {
    height: 1173rem;
  }

  .hero-text {
    /* max-width: 1262rem; */
    margin-bottom: 61rem;
  }

  .hero-description {
    max-width: 685rem;
  }

  .mission-wrapper.container {
    padding-top: 200rem;
    padding-bottom: 200rem;
  }

  .paragraph-blured {
    max-width: 989rem;
  }

  .how {
    z-index: 12;
  }

  .footer {
    min-height: auto;
    padding-top: 160rem;
    padding-bottom: 80rem;
  }

  .inputs-wrapper {
    margin-bottom: 56rem;
  }

  .body-400 {
    font-size: 16rem;
    line-height: 24rem;
  }

  .title-700 {
    font-size: 88rem;
    line-height: 96rem;
  }

  .form-wrapper {
    min-width: 555rem;
    max-width: 555rem;
  }

  .testimonials-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: space-between;
    padding-top: 200rem;
    padding-bottom: 200rem;
  }

  .swiper {
    margin-left: auto;
    margin-right: 0;
  }

  .swiper-slide {
    justify-content: flex-end;
  }

  .testimonials-item {
    grid-column-gap: 48rem;
    grid-row-gap: 48rem;
    justify-content: flex-end;
  }

  .testimonials-photo {
    min-width: 512rem;
    max-width: 512rem;
    max-height: 575rem;
  }

  .testimonials-text {
    max-width: 555rem;
  }

  .body-700 {
    font-size: 40rem;
    line-height: 48rem;
  }

  .title-100.title-heading {
    margin-bottom: 0;
  }

  .benefits-top {
    flex-flow: column;
    padding-top: 200rem;
    padding-bottom: 200rem;
    display: flex;
  }

  .body-900 {
    font-size: 64rem;
    line-height: 72rem;
  }

  .benefits-heading {
    grid-column-gap: 1rem;
    margin-top: 80rem;
    margin-bottom: 172rem;
  }

  .benefits-list {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
  }

  .benefit-value {
    font-size: 180rem;
  }

  .benefit-value-small {
    font-size: 100rem;
  }

  .benefit-item-text {
    max-width: 360rem;
  }

  .benefit-blurred-text {
    max-width: 1117rem;
  }

  .brurred-on-bg {
    padding-top: 332rem;
    padding-bottom: 404rem;
  }

  .solutions-wrapper {
    padding-top: 200rem;
    padding-bottom: 200rem;
    top: 200rem;
    bottom: 200rem;
  }

  .solutions-heading {
    margin-bottom: 118rem;
    top: 200rem;
  }

  .solutions-item {
    grid-column-gap: 112rem;
    grid-row-gap: 112rem;
  }

  .solution-item-text {
    grid-column-gap: 12rem;
    grid-row-gap: 12rem;
    max-width: 451rem;
  }

  .solution-item-text.universal-box.second-item {
    margin-top: 240rem;
  }

  .solution-item-text.universal-box.third-item {
    margin-top: 520rem;
  }

  .solution-item-img {
    max-width: 1116rem;
  }

  .technology {
    padding-top: 120rem;
    padding-bottom: 120rem;
  }

  .technology-title {
    grid-column-gap: 48rem;
    grid-row-gap: 48rem;
    max-width: 961rem;
    margin-bottom: 394rem;
  }

  .tech-benefits {
    max-width: 768rem;
  }

  .hero-benefits {
    min-height: 555rem;
  }

  .line-1 {
    bottom: 16rem;
  }

  .how-wrapper {
    padding-bottom: 200rem;
  }

  .step-text {
    max-width: none;
    padding-right: 64rem;
  }

  .slider-image {
    width: 100%;
  }

  .testimonials-heading {
    margin-right: auto;
  }

  .body-500 {
    font-size: 24rem;
    line-height: 32rem;
  }

  .form-title {
    max-width: 846rem;
  }

  .spaniel {
    min-width: 675rem;
    max-width: 675rem;
  }

  .testimonials-svg {
    margin-top: -32rem;
    top: 24rem;
  }

  .hero-benefit-text.first {
    margin-top: 124rem;
    margin-right: 89rem;
    padding-left: 16rem;
  }

  .hero-benefit-text.second {
    margin-top: 56rem;
    margin-right: 64rem;
  }

  .hero-benefit-text.third {
    padding-top: 8rem;
    padding-left: 12rem;
  }

  .line-first {
    width: 176.1rem;
  }

  .line-2 {
    bottom: 24rem;
  }

  .line-second {
    width: 521rem;
  }

  .line-3 {
    min-width: 838rem;
    bottom: 16rem;
  }

  .line-third {
    width: 839rem;
  }

  .hero-benefits-titles {
    padding-left: 176rem;
  }

  .hero-benefits-lines {
    bottom: 24rem;
    left: -1px;
  }

  .container-wide, .container-wide.decorative-line-holder {
    max-width: 1744rem;
  }

  .how-line-2 {
    margin-left: -32rem;
    inset: 216rem 50% auto -64rem;
    transform: translate(-50%);
  }

  .benefits-line-short {
    height: 210rem;
  }

  .solution-item-heading {
    height: 800rem;
  }

  .solutions-box {
    margin-top: -800rem;
  }

  .testimonials-line-wrapper {
    height: 216rem;
  }

  .video-holder {
    min-height: 780rem;
  }

  .terms-rich-text p {
    font-size: 24rem;
    line-height: 133.3%;
  }
}

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

  .hero {
    padding-top: 130rem;
  }

  .logo-svg svg {
    height: 34px;
    width: 34px;
  }

  h1 {
    font-size: 64rem;
    line-height: 1.12;
  }

  .navbar-logo-left-container.shadow-three {
    max-width: none;
    background-color: transparent;
    width: 100%;
    position: relative;
  }

  .container {
    max-width: 672rem;
  }

  .container.header-container {
    max-width: none;
  }

  .container.terms-container {
    max-width: 664rem;
  }

  .navbar-wrapper {
    z-index: 99;
    padding: 16rem;
    position: relative;
  }

  /* .navbar-brand {
    display: none;
  } */

  .navbar-brand.mobile {
    display: flex;
    background-color: transparent;
  }

  .logo-svg {
    filter: none;
  }

  .navbar-brand.mobile.w--current {
    z-index: 20;
    display: block;
  }

  .nav-menu-wrapper {
    z-index: 20;
    background-color: var(--_colors---mono-100);
    height: 100%;
    padding-top: 120rem;
    inset: 0%;
  }

  .nav-menu-two {
    grid-column-gap: 16rem;
    grid-row-gap: 16rem;
    background-color: #fff;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
    padding: 32rem 160rem 40rem;
    display: flex;
  }

  .nav-link {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16rem 6rem 16rem 0;
    display: flex;
  }

  .link-text {
    color: #fff;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    border-color: var(--_colors---mono-900);
    background-color: var(--_colors---mono-100);
    color: var(--_colors---mono-900);
    transition: color .6s ease-in, border-color .6s ease-in;
  }

  .menu-button._w--open {
    background-color: var(--_colors---mono-100);
    color: var(--_colors---mono-900);
  }
  
  .navbar-menu-burger {
    grid-row-gap: 8px;
  }

  .header-actions .button-filled {
    display: none;
  }

  .navbar-menu-burger-line-up, .navbar-menu-burger-line-down {
    width: 30px;
    background-color: #fff;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar {
    padding: 0;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
  }

  .logo-svg {
    width: 28rem;
    height: 44px;
  }

  /* .navigation-wrapper {
    z-index: 10;
    background-color: var(--_colors---mono-100);
    border-radius: 0;
    flex: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 32rem;
    padding-left: 16rem;
    padding-right: 16rem;
    display: none;
    overflow: auto;
  } */

  .hero-text {
    grid-column-gap: 24rem;
    grid-row-gap: 24rem;
    margin-bottom: 133rem;
    flex-direction: column;
  }

  .hero-description {
    text-align: left;
    max-width: 405rem;
  }

  .w-background-video > video {
    width: fit-content;
    right: -180%;
  }

  .w-background-video > .horizon-video {
    width: 100%;
    right: -100%;
  }

  .w-background-video > .demo-video {
    width: 100%;
    right: -100%;
  }

  .w-background-video > .hero-video {
    left: -190%;
  }

  .mission {
    border-top-left-radius: 24rem;
    border-top-right-radius: 24rem;
  }

  .text-title {
    grid-column-gap: 13rem;
    grid-row-gap: 13rem;
    flex-flow: column;
  }

  .how {
    padding-bottom: 80rem;
  }

  .footer {
    padding-top: 96rem;
    padding-bottom: 56rem;
  }

  .title-700 {
    font-size: 52rem;
    line-height: 60rem;
  }

  .form-wrapper {
    max-width: 648rem;
  }

  .testimonials {
    padding-top: 80rem;
    padding-bottom: 112rem;
  }

  .testimonials-item {
    grid-column-gap: 32rem;
    grid-row-gap: 32rem;
  }

  .testimonials-text {
    max-width: 320rem;
  }

  .body-700 {
    font-size: 24rem;
    line-height: 32rem;
  }

  .benefits-title {
    margin-bottom: 40rem;
  }

  .body-900 {
    font-size: 36rem;
    line-height: 44rem;
  }

  .benefits-heading {
    max-width: 320rem;
    margin-bottom: 164rem;
  }

  .benefits-list {
    grid-column-gap: 64rem;
    grid-row-gap: 64rem;
  }

  .brurred-on-bg {
    padding-top: 160rem;
    padding-bottom: 310rem;
  }

  .solutions-wrapper {
    padding-top: 80rem;
    padding-bottom: 80rem;
  }

  .technology {
    padding-top: 48rem;
    padding-bottom: 48rem;
  }

  .technology-title {
    grid-column-gap: 40rem;
    grid-row-gap: 40rem;
    margin-bottom: 220rem;
  }

  .tech-benefits {
    grid-column-gap: 32rem;
    grid-row-gap: 32rem;
  }

  .mission-title {
    padding-top: 0;
  }

  .hero-benefits {
    min-height: 500rem;
  }

  .how-wrapper {
    grid-column-gap: 32rem;
    grid-row-gap: 32rem;
  }

  .header-actions {
    z-index: 20;
    position: relative;
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 7%;
  }

  .body-500 {
    font-size: 18rem;
    line-height: 1.4;
  }

  .header-nav-item {
    color: var(--_colors---mono-900);
    cursor: pointer;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .link-text {
    font-family: var(--_colors---family-headings);
    text-align: left;
    width: auto;
    font-size: 20rem;
    font-weight: 600;
    line-height: 130%;
  }

  .hero-benefit-number {
    font-size: 40rem;
  }

  .hero-benefit-text {
    margin-top: -25rem;
  }

  .hero-benefit-text.first {
    margin-top: 205rem;
    margin-right: 60rem;
    padding-left: 10rem;
  }

  .hero-benefit-text.second {
    margin-top: 80rem;
    margin-right: 64rem;
    padding-left: 10rem;
  }

  .hero-benefit-descr {
    font-size: 12rem;
    line-height: 16rem;
  }

  .hero-benefit-descr._3 {
    width: 70rem;
  }

  .hero-benefit-descr._2 {
    width: 75rem;
  }

  .line-first {
    width: 62rem;
  }

  .line-second {
    width: 272rem;
  }

  .line-3 {
    min-width: 490rem;
  }

  .line-third {
    width: 490rem;
  }

  .hero-benefits-titles {
    z-index: 2;
    padding-left: 72rem;
    position: relative;
  }

  .hero-benefits-lines {
    z-index: 1;
  }

  .container-wide {
    max-width: 736rem;
  }

  .navigation-social {
    background-color: var(--_colors---mono-100);
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 48rem 160rem 56rem;
    display: flex;
  }

  .social-mobile-wrapper {
    border-top: 1px solid var(--_colors---mono-200);
    width: 100%;
  }

  .social-header {
    grid-column-gap: 24rem;
    grid-row-gap: 24rem;
    color: var(--_colors---mono-900);
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40rem;
    padding-bottom: 40rem;
    display: flex;
  }

  .header-copyrights {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    color: var(--_colors---mono-600);
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .chevron {
    color: var(--_colors---mono-400);
    display: block;
  }

  .stop-scroll {
    max-height: 100vh;
    overflow: hidden;
  }

  .mobile-menu-wrap {
    flex-flow: column;
    overflow: scroll;
  }

  .terms-rich-text p {
    color: var(--_colors---mono-900);
    margin-bottom: 24rem;
    font-size: 18rem;
    line-height: 1.44;
  }

  .terms-rich-text a {
    color: var(--_colors---colors-brand-orange);
    text-underline-position: under;
    padding-top: 0;
    padding-bottom: 0;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    display: inline-block;
  }

  .terms {
    padding-bottom: 120rem;
    padding-left: 40rem;
    padding-right: 40rem;
  }
}

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

  .logo-svg svg {
    height: 34px;
    width: 34px;
  }

  .navbar-wrapper .button-filled  {
    display: none;
  }

  .header-actions {
    width: fit-content;
  }

  h1 {
    font-size: 52rem;
    line-height: 1.15;
  }

  .hero-description {
    text-align: left;
    max-width: 305rem;
  }

  .button-outlined.white-text.full-on-mobile {
    width: 100%;
  }

  .button-filled.full-on-mobile {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .container {
    max-width: none;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-wrapper {
    padding-top: 45rem;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .nav-link {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
  }

  .link-text {
    color: #0a0a0a;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .hero {
    margin-bottom: 0;
    padding: 160rem 16rem 150rem;
  }

  .hero-bg {
    opacity: .7;
  }

  .white-text.blurred-text.heading-h1 {
    max-width: 334rem;
  }

  .w-background-video > video {
    width: fit-content;
    right: -200%;
  }

  .w-background-video > .horizon-video {
    width: 100%;
    right: -100%;
  }

  .hero-video {
    left: -190%;
  }

  .hero-text {
    margin-bottom: 72rem;
    flex-direction: column;
  }

  .mission {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .mission-wrapper.container {
    padding-top: 80rem;
    padding-bottom: 88rem;
  }

  .text-title {
    grid-column-gap: 32rem;
    grid-row-gap: 32rem;
  }

  .title-heading {
    font-family: var(--_colors---family-headings);
    color: var(--_colors---mono-600);
  }

  .how {
    padding-top: 80rem;
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .footer {
    min-height: auto;
    padding: 80rem 16rem;
    position: static;
  }

  .footer-wrapper {
    grid-column-gap: 80rem;
    grid-row-gap: 80rem;
  }

  .footer-info {
    grid-column-gap: 32rem;
    grid-row-gap: 32rem;
    flex-flow: column;
    align-items: center;
  }

  .footer-right {
    grid-column-gap: 40rem;
    grid-row-gap: 40rem;
    flex-flow: column;
  }

  .footer-copyright {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    text-align: center;
    flex-flow: column;
  }

  .title-700 {
    font-size: 40rem;
    line-height: 48rem;
  }

  .testimonials {
    padding-bottom: 96rem;
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .testimonials-wrapper {
    grid-column-gap: 40rem;
    grid-row-gap: 40rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .testimonials-item {
    grid-column-gap: 16rem;
    grid-row-gap: 16rem;
    flex-flow: column;
  }

  .testimonials-photo {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: auto;
  }

  .testimonials-text {
    max-width: 358rem;
  }

  .body-700 {
    font-size: 20rem;
    line-height: 28rem;
  }

  .benefits {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .benefits-top {
    padding-bottom: 100rem;
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .body-900 {
    font-size: 24rem;
    line-height: 34rem;
  }

  .benefits-heading {
    max-width: none;
    margin-top: 40rem;
    margin-bottom: 156rem;
  }

  .benefits-list {
    grid-column-gap: 80rem;
    grid-row-gap: 80rem;
  }

  .benefit-item {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    flex-flow: column;
  }

  .benefit-item-text {
    max-width: 358rem;
  }

  .brurred-on-bg {
    padding: 120rem 16rem;
  }

  .solutions-wrapper {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .solutions-heading {
    margin-bottom: 40rem;
  }

  .solution-item-text {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .solution-text-wrap, .solution-wrapper-p {
    width: 100%;
  }

  .solutions-list {
    grid-column-gap: 56rem;
    grid-row-gap: 56rem;
  }

  .technology {
    padding-top: 56rem;
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .technology-title {
    justify-content: flex-start;
    margin-bottom: 92rem;
  }

  .tech-benefits {
    flex-flow: column;
  }

  .hero-benefits {
    min-height: auto;
  }

  .line-1 {
    display: none;
  }

  .how-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .how-content {
    grid-column-gap: 32rem;
    grid-row-gap: 32rem;
  }

  .step {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .navbar-menu-burger {
    grid-column-gap: 18px;
    grid-row-gap: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .navbar-menu-burger-line-up, .navbar-menu-burger-line-down {
    width: 30px;
    background-color: #fff;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .hero-benefit-text {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-benefit-text.first, .hero-benefit-text.second {
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .hero-benefit-descr._3, .hero-benefit-descr._2 {
    width: auto;
  }

  .bullet.show-on-mobile {
    margin-top: auto;
    padding-top: 0;
    display: flex;
    transform: none;
  }

  .line-third {
    display: none;
  }

  .hero-benefits-titles {
    grid-column-gap: 24rem;
    grid-row-gap: 24rem;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
  }

  .hero-benefits-lines {
    display: none;
  }

  .desktop-img-wrapper {
    grid-column-gap: 56rem;
    grid-row-gap: 56rem;
  }

  .container-wide {
    max-width: none;
  }

  .container-wide.decorative-line-holder {
    display: none;
  }

  /* .hero-bg-blur {
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  } */

  .terms-rich-text h1 {
    margin-bottom: 16rem;
    font-size: 48rem;
    line-height: 1.16;
  }

  .terms-rich-text a {
    display: inline;
  }

  .terms {
    padding-top: 200rem;
    padding-left: 16rem;
    padding-right: 16rem;
  }
}

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

  .header-actions .button-filled  {
    display: none;
  }

  .container {
    max-width: none;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .testimonials-photo {
    max-width: none;
    max-height: 226rem;
  }

  .testimonials-text {
    grid-column-gap: 72rem;
    grid-row-gap: 72rem;
  }

  .navbar-menu-burger {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
  }

  .navbar-menu-burger-line-up, .navbar-menu-burger-line-down {
    background-color: var(--_colors---mono-100);
    border-radius: 4px;
    flex: none;
    width: 14px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navigation-social {
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .terms-rich-text a {
    overflow-wrap: anywhere;
    display: inline;
  }

  .rich-text-content a {
    display: inline;
  }

  .w-background-video > .hero-video {
    left: -190%;
  }

  .hero-description {
    text-align: left;
  }

  .link-text {
    color: #0a0a0a;
  }
}

@media screen and (min-width: 1440px) {
  .hero {
    padding-top: 140rem;
  }

  .hero-text {
    margin-bottom: 0px;
  }

  #w-node-d2c17964-babd-1b91-dd1e-fed17be304ab-56ed1797, #w-node-a72b40a9-9627-7cc8-9a69-e005b4105d0d-56ed1797, #w-node-_1b668401-200f-832d-0292-ed87e48ba90c-56ed1797, #w-node-_0873dc40-6591-549b-8981-fdef5ec3331e-56ed1797, #w-node-_7a037890-e049-2e23-d331-c1959f11bc84-56ed1797 {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_1dc408e8-b43a-86a9-acb6-660905dd6fe5-36faaf6f {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-c5b1f9ee-0177-7f60-f96f-fa3c36faaf73-36faaf6f, #w-node-c5b1f9ee-0177-7f60-f96f-fa3c36faaf8c-36faaf6f {
    grid-area: 1 / 3 / 2 / 4;
  }
}


@font-face {
  font-family: 'Neue Regrade';
  src: url('../fonts/Neue-Regrade-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Regrade';
  src: url('../fonts/Neue-Regrade-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Regrade';
  src: url('../fonts/Neue-Regrade-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}