:root {
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-28: 28px;
  --font-size-36: 36px;
  --font-size-38: 38px;
  --font-size-40: 40px;
  --font-size-48: 48px;
  --font-size-58: 58px;
  --font-size-70: 70px;
  --font-size-80: 80px;
  --white: #ffffff;
  --black: #000000;
  --grey: #fafafa;
  --transparent: rgba(0,0,0,0);
  --color-grey-input: #bdbdbd;
  --grey-border: #e4e4e7;
  --blue-icon-008eff: #008eff;
  --green-icon-45c646: #45c646;
  --orange-icon-fabb18: #fabb18;
  --btn-red-header: #f23935;
  --btn-red-other: #ef4444;
  --btn-black-other: #201f22;
  --color-grey-7c7c7c: #7c7c7c;
  --color-rose-f43f5e: #f43f5e;
  --color-black-161616: #161616;
  --color-black-1e1e1e: #1e1e1e;
  --color-black-18181b: #18181b;
  --color-black-1f1f1f: #1f1f1f;
  --color-black-141414: #141414;
  --color-black-12141d: #12141d;
  --color-black-201f22: #201f22;
  --color-black-12141d-70: rgba(18,20,29,.7);
}

@media (max-width: 1500px) {
  :root {
    --font-size-70: 60px;
  }
}
@media (max-width: 1365px) {
  :root {
    --font-size-70: 54px;
  }
}
@media (max-width: 1279px) {
  :root {
    --font-size-70: 44px;
    --font-size-40: 38px;
    --font-size-48: 38px;
  }
}
@media (max-width: 1023px) {
  :root {
    --font-size-70: 34px;
    --font-size-40: 28px;
    --font-size-48: 28px;
    --font-size-58: 50px;
  }
}
@media (max-width: 769px) {
  :root {
    --font-size-40: 32px;
    --font-size-48: 32px;
    --font-size-70: 40px;
  }
}
@media (max-width: 479px) {
  :root {
    --font-size-40: 26px;
    --font-size-48: 26px;
    --font-size-70: 32px;
  }
}
img {
  aspect-ratio: auto;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container-global {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

body {
  position: relative;
  width: 100%;
  font-weight: 400;
  font-size: var(--font-size-16);
  color: var(--color-black-12141d);
  font-family: "inter", sans-serif;
  background-repeat: no-repeat;
  overflow-x: hidden;
}
body:not(.mobile) .header .wrapper > .nav-menu {
  display: flex;
}
body:not(.mobile) .header__nav--btn {
  display: none;
}
body.mobile .header .wrapper > .nav-menu {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 30px 0;
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
}
body.mobile .header .wrapper > .nav-menu ul {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
body.mobile .header .wrapper > .nav-menu ul li {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0 0 5px;
  width: 100%;
}
body.mobile .header .wrapper > .nav-menu ul li a {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 10px;
  font-size: var(--font-size-18);
}
body.mobile .header .wrapper > .nav-menu ul li a:after {
  display: none;
  top: calc(100% - 5px);
}
body.mobile .header .wrapper > .nav-menu ul li:last-child {
  margin: 0;
}
body.mobile .header .wrapper > .nav-menu .login {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 10px;
  font-size: var(--font-size-18);
}
body.mobile .header .wrapper > .nav-menu > * {
  margin: 0;
}
body.mobile .header .wrapper > .nav-menu .btn {
  max-width: 320px;
}
body.mobile .header.active .header__nav--btn > span {
  transform-origin: 30% 40%;
}
body.mobile .header.active .header__nav--btn > span:nth-child(1) {
  transform: rotate(45deg);
}
body.mobile .header.active .header__nav--btn > span:nth-child(2) {
  display: none;
}
body.mobile .header.active .header__nav--btn > span:nth-child(3) {
  width: 28px;
  transform: rotate(-45deg);
}

main,
section,
footer {
  width: 100%;
  background: var(--white);
}

h1 {
  font-weight: 700;
  line-height: 1.142857;
  letter-spacing: -0.0142857em;
  font-size: var(--font-size-70);
  color: var(--color-black-12141d);
  font-family: "grotesk", sans-serif;
}

h2 {
  font-weight: 700;
  line-height: 1.1666666667;
  letter-spacing: -0.020833333em;
  font-size: var(--font-size-48);
  color: var(--color-black-12141d);
  font-family: "grotesk", sans-serif;
}

.scroll-control {
  pointer-events: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
}

.wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  z-index: 2;
}

.before-load {
  visibility: hidden;
}

.btn {
  pointer-events: all;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 13px 17px;
  font-weight: 500;
  color: var(--white);
}
.btn > * {
  position: relative;
}
.btn:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: var(--btn-red-header);
  transition: 0.3s all;
}
.btn:hover:before {
  transform: scale(1.05, 1.1);
}

.header {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 38px 0;
  width: 100%;
  font-weight: 500;
  z-index: 3;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  max-width: 1566px;
}
.header .logo {
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0 0 0 7.2vw;
  z-index: 5;
}
.header__nav--btn {
  pointer-events: all;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  position: relative;
  width: 35px;
  height: 35px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 11;
}
.header__nav--btn > span {
  margin: 3px 0;
  width: 28px;
  height: 2px;
  transform-origin: -10% 40%;
  background-color: var(--black);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.header__nav--btn > span:nth-child(2) {
  width: 20px;
}
.header__nav--btn > span:nth-child(3) {
  width: 10px;
}
.header .nav-menu {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  z-index: 4;
}
.header .nav-menu > * {
  flex-shrink: 0;
}
.header .nav-menu ul {
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
}
.header .nav-menu ul li {
  margin: 0 0 0 2.65vw;
  color: var(--color-black-161616);
}
.header .nav-menu ul li a {
  pointer-events: all;
  position: relative;
}
.header .nav-menu ul li a:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% + 2px);
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-grey-7c7c7c);
  transition: 0.3s all;
}
.header .nav-menu ul li a:hover:after {
  width: 100%;
}
.header .nav-menu .login {
  pointer-events: all;
  position: relative;
  margin: 0 0 0 5.6vw;
}
.header .nav-menu .login:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% + 2px);
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-grey-7c7c7c);
  transition: 0.3s all;
}
.header .nav-menu .login:hover:after {
  width: 100%;
}
.header .nav-menu .btn {
  margin: -1px 0 0 3.9vw;
  line-height: 1.1875;
}

.main {
  position: relative;
  background: var(--grey);
}
.main__decoration {
  pointer-events: none;
  position: absolute;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  bottom: 0;
  left: 0;
  width: 100%;
}
.main__decoration--line {
  position: absolute;
  right: 0;
  bottom: 134%;
  width: auto;
}
.main__decoration--line > * {
  width: 16.667vw;
  height: auto;
}
.main__decoration > img,
.main__decoration > svg {
  width: 100%;
  height: auto;
}
.main .wrapper {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 15vh 0;
  max-width: 1470px;
  min-height: 100vh;
}
.main__picture {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  width: 50%;
  transition: 0.3s all;
}
.main__picture.before-load {
  opacity: 0;
}
.main__picture:not(.before-load) {
  opacity: 1;
}
.main__picture > * {
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  height: auto;
  transition: 0.3s all;
}
.main__picture > *:not(.main__picture--man) {
  position: absolute;
}
.main__picture > * img, .main__picture > * svg {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.main__picture--man {
  position: relative;
  margin: 0 5% 1% 0;
  width: 68.98%;
}
.main__picture--figure {
  top: 1%;
  left: 33.1%;
  width: 42.042%;
}
.main__picture--window {
  top: 38.4%;
  left: 10.5%;
  width: 37.553%;
}
.main__picture--window-big {
  top: 12.5%;
  left: 24.5%;
  width: 42.858%;
}
.main__picture--window-diagram {
  top: 30%;
  right: 14.7%;
  width: 39.866%;
}
.main__picture--lock {
  bottom: 14.8%;
  right: 5.5%;
  width: 22.858%;
}
.main__picture--star {
  top: 17%;
  right: 27.2%;
  width: 8.436%;
}
.main__picture--star-double {
  bottom: 4%;
  left: 9.5%;
  width: 12.109%;
}
.main__info {
  padding: 4px 0 0;
  margin: 0 0 0 auto;
  width: 49.3%;
}
.main__info .span-cursor {
  border-right: 0.05em solid var(--color-black-12141d);
  animation: caret 1s steps(1) infinite;
}
@keyframes caret {
  50% {
    border-color: transparent;
  }
}
.main__info--description {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 33px 0;
  width: 100%;
  font-size: var(--font-size-20);
  color: var(--color-black-12141d-70);
}
.main__info--description strong {
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-rose-f43f5e);
}
.main__info--description h1 {
  padding: 0 0 5px;
}
.main__info--description p {
  line-height: 1.6;
}
.main__info .btn {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 18px 36px 19px;
  margin: 35px 0 0;
  width: -moz-max-content;
  width: max-content;
  font-weight: 600;
  border-radius: 3px;
  line-height: 1.55556;
  font-size: var(--font-size-18);
}

.about {
  padding: 11px 0 100px;
}
.about .wrapper {
  max-width: 1296px;
}
.about ul {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.about__item {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px 0;
  width: calc(33.3333333333% - 16px);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  transition-duration: 1.2s !important;
}
.about__item img, .about__item svg {
  margin: 0 0 8px;
}
.about__item strong {
  line-height: 1.3333333333;
  font-size: var(--font-size-18);
}
.about__item p {
  line-height: 1.625;
}

.companies {
  padding: 58px 0;
}
.companies .wrapper {
  max-width: 1040px;
}
.companies .wrapper strong {
  display: inline-block;
  width: 100%;
  font-weight: 500;
  text-align: center;
  font-size: var(--font-size-20);
}
.companies__brends {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  gap: 16px 7.7%;
  flex-wrap: wrap;
  padding: 48px 0 0;
}
.companies .brend-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 19.225%;
  height: 70px;
  overflow: hidden;
}
.companies .brend-item > * {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  transform: translate(-50%, -50%);
}
.companies .brend-item:nth-child(3) > * {
  width: 180px;
}
.companies .brend-item:nth-child(4) > * {
  width: 132px;
}
.companies .brend-item:nth-child(5) > * {
  width: 172px;
}
.companies .brend-item:nth-child(6) > * {
  width: 137px;
}
.companies .brend-item:nth-child(7) > * {
  width: 169px;
}
.companies .brend-item:nth-child(8) > * {
  width: 117px;
}

.care {
  padding: 104px 0 99px;
}
.care .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  max-width: 1160px;
}
.care__info {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px 0;
  padding: 0 0 15px 3.6%;
  width: 36%;
  line-height: 1.625;
}
.care__picture {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  padding: 10px 0;
  width: 50%;
}
.care__picture > * {
  pointer-events: none;
  height: auto;
  transition: 0.3s all;
}
.care__picture > *:not(.care__picture--decoration) {
  position: absolute;
}
.care__picture--decoration {
  position: relative;
  margin: 0 3.3% 0 auto;
  width: 72.243%;
}
.care__picture--window {
  bottom: 12.5%;
  right: 10.5%;
  width: 55.864%;
}
.care__picture--man {
  top: 8.5%;
  right: 0;
  width: 85.69%;
}
.care__picture--star {
  top: 42.9%;
  right: 30%;
  width: 11.207%;
}
.care__picture--key {
  bottom: 25.9%;
  left: 14%;
  width: 16.035%;
}
.care__picture--arrow {
  bottom: 11.3%;
  left: 27.4%;
  width: 9.313%;
}

.steps {
  padding: 0 0 100px;
}
.steps .wrapper {
  max-width: 1344px;
}
.steps h2 {
  padding: 0 0 62px;
  width: 100%;
  text-align: center;
}
.steps__items {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  list-style-type: none;
  counter-reset: my_counter;
}
.steps__items--card {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px 0;
  padding: 30px 20px 95px;
  width: calc(25% - 15px);
  min-height: 286px;
  letter-spacing: -0.005em;
  color: var(--color-grey-7c7c7c);
  align-self: stretch;
}
.steps__items--card > * {
  position: relative;
  transition: 0.3s all;
}
.steps__items--card strong {
  line-height: 1.3;
  color: var(--black);
  font-size: var(--font-size-20);
}
.steps__items--card:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: var(--white);
  transform: translate(-50%, -50%);
  box-shadow: 9px 12px 37px 0 rgba(0, 0, 0, 0.12);
  transition: 0.3s all;
}
.steps__items--card:after {
  pointer-events: none;
  position: absolute;
  content: "";
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  content: "0" counter(my_counter);
  counter-increment: my_counter;
  bottom: 20px;
  left: 20px;
  width: 65px;
  height: 65px;
  font-weight: 700;
  border-radius: 4px;
  color: var(--white);
  background: var(--black);
  font-size: var(--font-size-38);
  font-family: "grotesk", sans-serif;
  transition: 0.3s all;
  z-index: 2;
}
.steps__items--card:hover:before {
  transform: translate(-50%, -50%) scale(1.05, 1.05);
}

.encrypt {
  padding: 69px 0 100px;
}
.encrypt .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  max-width: 1146px;
}
.encrypt__info {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px 0;
  width: 55%;
  color: var(--color-grey-7c7c7c);
}
.encrypt__info h2 {
  font-weight: 500;
  line-height: 1.27;
  letter-spacing: 0;
  font-size: var(--font-size-40);
  color: var(--color-black-1e1e1e);
}
.encrypt__info > p {
  padding: 0 16% 0 0;
  line-height: 1.625;
}
.encrypt__info a {
  margin: 23px 0 0;
}
.encrypt__picture {
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  width: 40%;
}
.encrypt__picture picture {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
}
.encrypt__picture picture > * {
  width: 82.1%;
  height: auto;
}

.choose {
  padding: 50px 0 150px;
}
.choose .wrapper {
  max-width: 1135px;
}
.choose .wrapper > p {
  width: 100%;
  font-weight: 500;
  text-align: center;
  color: var(--color-grey-7c7c7c);
}
.choose h2 {
  padding: 0 0 25px;
  width: 100%;
  text-align: center;
  color: var(--color-black-1e1e1e);
}
.choose__items {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 27px 22px;
  padding: 42px 0 0;
  width: 100%;
}
.choose__item {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px 0;
  padding: 8px 10px 7px 18px;
  width: calc(33.3333333333% - 15px);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 9px 12px 37px 0 rgba(0, 0, 0, 0.12);
  align-self: stretch;
}
.choose__item img, .choose__item svg {
  transition: 0.3s all;
}
.choose__item strong {
  font-weight: 700;
  font-size: var(--font-size-20);
  font-family: "grotesk", sans-serif;
}
.choose__item p {
  font-weight: 500;
  color: var(--color-grey-7c7c7c);
}
.choose__item:hover img, .choose__item:hover svg {
  transform: scale(1.15, 1.15);
}

.reviews {
  position: relative;
  padding: 70px 0 80px;
  min-height: 552px;
  background: var(--grey);
  z-index: 2;
}
.reviews .wrapper {
  max-width: 1296px;
}
.reviews h2 {
  display: inline-block;
}
.reviews__slider {
  position: absolute;
  top: 29px;
  right: 0;
  width: 69.25%;
  z-index: 2;
}
.reviews .container-arrow {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  top: calc(100% - 19px);
  width: auto;
}
.reviews .container-arrow *:after {
  display: none;
}
.reviews .container-arrow > * {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
  width: 32px;
  height: 32px;
}
.reviews .container-arrow > * path {
  transition: 0.3s all;
}
.reviews .container-arrow > *.swiper-button-prev {
  transform: rotate(180deg);
}
.reviews .container-arrow > *.swiper-button-disabled path {
  stroke: var(--color-grey-7c7c7c);
}
.reviews .swiper-slide {
  height: auto;
}
.reviews .swiper-wrapper {
  padding: 40px 0 40px 20px;
}
.reviews .slide__content {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 35px 22px 35px 20px;
  width: 100%;
  min-height: 350px;
}
.reviews .slide__content > * {
  position: relative;
}
.reviews .slide__content--header {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 0 0 20px;
  font-weight: 700;
  color: var(--black);
  font-size: var(--font-size-20);
}
.reviews .slide__content--img {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-shrink: 0;
  margin: 0 30px 0 0;
  width: 65px;
  height: 65px;
  border-radius: 100%;
  overflow: hidden;
}
.reviews .slide__content:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  box-shadow: 9px 12px 37px 0 rgba(0, 0, 0, 0);
  transition: 0.3s all;
}
.reviews .slide__content:hover:before {
  box-shadow: 9px 12px 37px 0 rgba(0, 0, 0, 0.12);
}

.contact {
  position: relative;
  padding: 150px 0 48px;
}
.contact__decoration {
  position: absolute;
  top: -7.6%;
  left: 0;
}
.contact__decoration > * {
  width: 16.25vw;
  height: auto;
}
.contact .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  max-width: 1076px;
}
.contact .wrapper > * {
  flex-shrink: 0;
}
.contact h2 {
  padding: 1px 0 0;
  width: 30%;
}
.contact__form {
  width: 59.108%;
}
.contact__form form {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 0;
  width: 100%;
}
.contact__form form label {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  width: calc(50% - 12px);
  border-bottom: 1px solid var(--color-black-12141d);
}
.contact__form form label > * {
  width: 100%;
}
.contact__form form label input {
  padding: 13px 0 9px;
}
.contact__form form label textarea {
  padding: 11px 0 12px;
}
.contact__form form label:last-of-type {
  width: 100%;
}
.contact__form form .btn-submit {
  padding: 18px 20px 19px;
  width: 100%;
  font-weight: 600;
  border-radius: 3px;
  line-height: 1.5556;
  font-size: var(--font-size-18);
  background: var(--btn-red-other);
}

.plans {
  position: relative;
  padding: 107px 0 231px;
}
.plans__decoration {
  position: absolute;
  top: 0;
  right: 0;
}
.plans__decoration > * {
  width: 9.063vw;
  height: auto;
}
.plans .wrapper {
  max-width: 1086px;
}
.plans .wrapper h2 {
  padding: 0 0 25px;
  width: 100%;
  text-align: center;
}
.plans .wrapper > p {
  padding: 0 0 18px;
  width: 100%;
  text-align: center;
  line-height: 1.8888888889;
  font-size: var(--font-size-18);
}
.plans__items {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.plans__item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 50px 0 0;
  width: calc(33.3333333333% - 15px);
  align-self: stretch;
}
.plans__item > * {
  position: relative;
}
.plans__item:before {
  position: absolute;
  pointer-events: all;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 5px 5px 0 0;
  border: 1px solid var(--grey-border);
  box-shadow: 9px 12px 37px 0 rgba(0, 0, 0, 0.12);
  transition: 0.3s all;
}
.plans__item:hover .btn-line {
  transform: translateY(10%);
}
.plans__item:hover .btn-line .btn-plan:before {
  transform: scale(1.05, 1);
}
.plans__item:hover:before {
  transform: scale(1.05, 1.03);
}
.plans__item > strong {
  padding: 0 0 27px;
  width: 100%;
  font-weight: 500;
  line-height: 1.36;
  text-align: center;
  font-size: var(--font-size-22);
}
.plans__item > p {
  width: 100%;
  font-weight: 700;
  text-align: center;
  line-height: 1.24138;
  font-size: var(--font-size-58);
  font-family: "grotesk", sans-serif;
}
.plans__item--info {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 57px 28px 31px;
  width: 100%;
  line-height: 2;
  color: var(--black);
}
.plans__item--info > * {
  width: 100%;
}
.plans__item--info strong {
  padding: 0 0 23px;
  font-weight: 600;
  line-height: 1.77;
  text-align: center;
  font-size: var(--font-size-18);
  color: var(--color-black-18181b);
}
.plans__item--info p {
  padding: 0 0 32px;
}
.plans__item--info pre {
  font-weight: 700;
}
.plans__item--info ul li {
  position: relative;
  padding: 0 0 0 23px;
}
.plans__item--info ul li:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 14px;
  left: 8px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: var(--black);
}
.plans__item .btn-line {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 0 0 5px 5px;
  transition: 0.3s all;
  z-index: 2;
}
.plans__item .btn-plan {
  padding: 27px 20px 28px;
  width: 100%;
}
.plans__item .btn-plan:before {
  pointer-events: all;
  border-radius: 0 0 5px 5px;
  background: var(--color-black-201f22);
}
.plans__item .btn-plan:hover:before {
  transform: scale(1.05, 1.1) !important;
}
.plans__item:nth-child(2) .btn-plan:before {
  border-radius: 0 0 5px 5px;
  background: var(--btn-red-header);
}

.ready {
  position: relative;
  padding: 155px 0 70px;
  background: var(--grey);
}
.ready__decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.ready__decoration > * {
  width: 100%;
  height: auto;
}
.ready .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  max-width: 1330px;
}
.ready__info {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 37%;
}
.ready__info > strong {
  padding: 7px 0 33px;
  font-weight: 700;
  line-height: 1.2142857;
  font-size: var(--font-size-28);
  font-family: "grotesk", sans-serif;
}
.ready__info > p {
  padding: 0 0 20px;
  line-height: 1.625;
}
.ready__info .btn-ready {
  padding: 17px 40px;
  margin: 40px 0 0;
  font-weight: 700;
  line-height: 1.75;
  font-family: "plus-jakarta", sans-serif;
}
.ready__description {
  display: flex;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  gap: 0 28px;
  width: 60%;
}
.ready__item {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 29px 28px 32px;
  max-width: 344px;
  width: 100%;
  border-radius: 5px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  align-self: stretch;
}
.ready__item strong {
  padding: 30px 0 15px;
  font-weight: 700;
  line-height: 1.33;
  font-size: var(--font-size-18);
}
.ready__item p {
  padding: 0 0 15px;
  line-height: 1.625;
}

.footer {
  padding: 70px 0 35px;
}
.footer .wrapper {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1068px;
}
.footer__link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  padding: 0 0 15px;
  margin: 0 0 26px;
  width: 100%;
  border-bottom: 1px solid var(--black);
}
.footer__link > * {
  flex-shrink: 0;
}
.footer__link--column {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.footer__link--column strong {
  padding: 0 0 27px;
  font-weight: 700;
  font-size: var(--font-size-18);
  color: var(--color-black-141414);
}
.footer__link--column li {
  padding: 0 0 21px;
  width: -moz-max-content;
  width: max-content;
  font-weight: 500;
  color: var(--color-black-1f1f1f);
}
.footer__link--column li a {
  position: relative;
}
.footer__link--column li a:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% + 2px);
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-grey-7c7c7c);
  transition: 0.3s all;
}
.footer__link--column li a:hover:after {
  width: 100%;
}
.footer__link:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: -9px;
  left: -44px;
  width: 24px;
  height: 24px;
  background: url(img/icons/finger-scan.svg) center center no-repeat;
}
.footer__social {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.footer__social a {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.footer__contacts {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 0 0 0 auto;
}
.footer__contacts a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 0 5.3vw 0 0;
}
.footer__contacts a p {
  width: -moz-max-content;
  width: max-content;
}
.footer__contacts a:before {
  position: relative;
  content: "";
  margin: 0 5px 0 0;
  width: 24px;
  height: 24px;
}
.footer__contacts a.footer__contacts--phone:before {
  background: url(img/icons/phone.svg) center center no-repeat;
  background-size: 100% auto;
}
.footer__contacts a.footer__contacts--email:before {
  background: url(img/icons/email.svg) center center no-repeat;
  background-size: 100% auto;
}
.footer__contacts a:last-child {
  margin: 0;
}
.footer .copyright {
  padding: 42px 0 0;
  width: 100%;
}

@media (max-width: 1600px) {
  .wrapper,
  .main .wrapper {
    padding-left: 50px;
    padding-right: 50px;
  }
  .header .wrapper,
  .main .wrapper,
  .about .wrapper,
  .companies .wrapper,
  .care .wrapper,
  .steps .wrapper,
  .encrypt .wrapper,
  .choose .wrapper,
  .reviews .wrapper,
  .contact .wrapper,
  .plans .wrapper,
  .ready .wrapper {
    max-width: 1600px;
  }
  .header .logo {
    margin: 0;
  }
  .steps__items--card {
    width: calc(25% - 15px);
  }
  .reviews .swiper-wrapper {
    padding: 40px 0 40px 10px;
  }
}
@media (max-width: 1279px) {
  .wrapper,
  .main .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about {
    padding-bottom: 40px;
  }
  .about__item {
    gap: 15px 0;
  }
  .care,
  .encrypt,
  .choose,
  .reviews {
    padding: 50px 0;
  }
  .steps {
    padding: 0 0 50px;
  }
  .steps h2 {
    padding: 0 0 40px;
  }
  .steps__items--card {
    padding: 20px 20px 105px;
    width: calc(25% - 10px);
    min-height: unset;
  }
  .steps__items--card strong {
    font-size: 18px;
  }
  .choose__items {
    gap: 10px 10px;
  }
  .choose__item {
    width: calc(33.3333333333% - 7px);
  }
  .choose__item br {
    display: none;
  }
  .reviews {
    min-height: 505px;
  }
  .reviews__slider {
    top: 15px;
  }
  .contact {
    padding: 100px 0 50px;
  }
  .plans {
    padding: 50px 0 100px;
  }
  .plans__item {
    width: calc(33.3333333333% - 10px);
  }
  .ready {
    padding: 100px 0 50px;
  }
  .ready__description {
    gap: 0 10px;
  }
  .footer {
    padding: 75px 0 35px;
  }
  .footer__link--column li {
    padding: 0 0 15px;
  }
  .footer__link:before {
    top: auto;
    bottom: calc(100% + 10px);
    left: 0;
  }
}
@media (max-width: 1023px) {
  .wrapper,
  .main .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  .care,
  .encrypt,
  .choose,
  .reviews,
  .companies {
    padding: 40px 0;
  }
  .header .nav-menu .login {
    margin: 0 0 0 4vw;
  }
  .main__info--description {
    gap: 25px 0;
    font-size: var(--font-size-18);
  }
  .main__info .btn {
    padding: 15px 35px;
  }
  .about__item {
    gap: 10px 0;
    font-size: 14px;
  }
  .about__item img, .about__item svg {
    width: 50px;
    height: auto;
  }
  .about__item strong {
    font-size: var(--font-size-16);
  }
  .care__info {
    width: 45%;
  }
  .steps__items {
    gap: 20px 20px;
  }
  .steps__items--card {
    width: calc(50% - 10px);
  }
  .encrypt__info {
    width: 60%;
  }
  .choose__item {
    gap: 10px 0;
    padding: 10px;
    font-size: 14px;
  }
  .choose__item img,
  .choose__item svg {
    width: 50px;
    height: auto;
  }
  .choose__item strong {
    font-size: var(--font-size-16);
  }
  .reviews {
    min-height: 480px;
  }
  .reviews__slider {
    top: 0;
  }
  .reviews .slide__content--header {
    font-size: var(--font-size-18);
  }
  .contact {
    padding: 50px 0;
  }
  .contact__form {
    width: 65%;
  }
  .contact__form form .btn-submit {
    padding: 15px 20px;
  }
  .plans__item {
    padding: 30px 0 0;
    width: calc(33.3333333333% - 5px);
  }
  .plans__item > strong {
    padding: 0 0 15px;
    font-size: var(--font-size-20);
  }
  .plans__item--info {
    padding: 30px 10px 20px;
    font-size: 14px;
  }
  .plans__item--info strong {
    font-size: var(--font-size-16);
  }
  .plans__item--info p {
    padding: 0 0 15px;
  }
  .ready {
    padding: 50px 0;
  }
  .ready__info {
    width: 35%;
  }
  .ready__info .btn-ready {
    padding: 15px 40px;
    margin: 20px 0 0;
  }
  .ready__description {
    width: 63%;
  }
  .ready__item {
    padding: 20px 15px;
    font-size: 14px;
  }
  .ready__item strong {
    padding: 20px 0 15px;
    font-size: var(--font-size-16);
  }
  .ready__item img, .ready__item svg {
    width: 35px;
    height: auto;
  }
  .footer {
    padding: 50px 0 25px;
  }
  .footer__link--column {
    font-size: 14px;
  }
  .footer__link--column strong {
    padding: 0 0 20px;
    font-size: var(--font-size-16);
  }
  .footer__contacts {
    font-size: 14px;
  }
  .footer .copyright {
    padding: 30px 0 0;
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  body:not(.mobaile) .header .wrapper > .nav-menu {
    display: none;
  }
  br {
    display: none;
  }
  .header {
    position: relative;
    padding: 16px 0 20px;
    background: var(--grey);
  }
  .care,
  .encrypt,
  .choose,
  .companies {
    padding: 0 0 40px;
  }
  .main .wrapper {
    padding: 0 0 40px;
    flex-wrap: wrap;
    min-height: unset;
  }
  .main__picture {
    order: 2;
    width: 100%;
  }
  .main__picture--man {
    margin: 0;
  }
  .main__info {
    padding: 0 10px 40px;
    margin: 0;
    width: 100%;
  }
  .main__info > *:not(.btn) {
    display: inline-block;
    text-align: center;
  }
  .main__info .btn {
    margin: 30px auto 0;
  }
  .main__info--description h1 {
    padding: 20px 0 16px;
    line-height: 1.3;
  }
  .main__info--description strong {
    font-size: var(--font-size-20);
  }
  .main__info--description p {
    font-size: var(--font-size-20);
  }
  .about {
    padding-top: 20px;
  }
  .about ul {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: 30px 0;
    flex-direction: column;
  }
  .about__item {
    position: relative;
    gap: 20px 0;
    padding: 0 0 20px;
    width: 100%;
    font-size: var(--font-size-16);
  }
  .about__item[data-aos=fade-left] {
    transform: translate(-100px);
  }
  .about__item[data-aos][data-aos][data-aos-delay="0"], .about__item[data-aos][data-aos][data-aos-delay="300"], .about__item[data-aos][data-aos][data-aos-delay="600"], .about__item[data-aos][data-aos][data-aos-delay="0"].aos-animate, .about__item[data-aos][data-aos][data-aos-delay="300"].aos-animate, .about__item[data-aos][data-aos][data-aos-delay="600"].aos-animate {
    transition-delay: 0s;
  }
  .about__item > *,
  .about__item img, .about__item svg {
    margin: 0 auto;
    text-align: center;
  }
  .about__item strong {
    font-size: var(--font-size-18);
  }
  .about__item p {
    max-width: 360px;
  }
  .about__item:after {
    pointer-events: none;
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    width: 67%;
    height: 1px;
    background: var(--grey-border);
    transform: translateX(-50%);
  }
  .about__item:last-child:after {
    display: none;
  }
  .companies {
    padding-top: 0;
  }
  .companies__brends {
    padding: 30px 0 0;
    gap: 10px 10px;
  }
  .companies .brend-item {
    width: calc(50% - 10px);
  }
  .companies .brend-item[data-aos][data-aos][data-aos-delay="300"], .companies .brend-item[data-aos][data-aos][data-aos-delay="600"], .companies .brend-item[data-aos][data-aos][data-aos-delay="900"], .companies .brend-item[data-aos][data-aos][data-aos-delay="300"].aos-animate, .companies .brend-item[data-aos][data-aos][data-aos-delay="600"].aos-animate, .companies .brend-item[data-aos][data-aos][data-aos-delay="900"].aos-animate {
    transition-delay: 0s;
  }
  .care .wrapper {
    flex-wrap: wrap;
  }
  .care__info {
    gap: 15px 0;
    padding: 0 0 40px;
    width: 100%;
    text-align: center;
  }
  .care__info h2 {
    width: 100%;
    text-align: center;
  }
  .care__picture {
    padding: 0;
    width: auto;
  }
  .care__picture--decoration {
    margin: 0 auto;
  }
  .steps h2 {
    padding: 0 0 30px;
  }
  .steps__items {
    gap: 10px 10px;
  }
  .steps__items--card {
    gap: 10px 0;
    padding: 15px 15px 90px;
    width: calc(50% - 5px);
  }
  .steps__items--card[data-aos][data-aos][data-aos-delay="300"], .steps__items--card[data-aos][data-aos][data-aos-delay="600"], .steps__items--card[data-aos][data-aos][data-aos-delay="900"], .steps__items--card[data-aos][data-aos][data-aos-delay="300"].aos-animate, .steps__items--card[data-aos][data-aos][data-aos-delay="600"].aos-animate, .steps__items--card[data-aos][data-aos][data-aos-delay="900"].aos-animate {
    transition-delay: 0s;
  }
  .steps__items--card:after {
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    font-size: var(--font-size-40);
  }
  .encrypt .wrapper {
    flex-wrap: wrap;
  }
  .encrypt__info {
    width: 100%;
  }
  .encrypt__info > *:not(.btn) {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .encrypt__info .btn {
    margin: 0 auto;
  }
  .encrypt__picture {
    padding: 40px 0 0;
    width: 100%;
  }
  .choose__item {
    width: calc(50% - 5px);
  }
  .choose__item[data-aos][data-aos][data-aos-delay="300"], .choose__item[data-aos][data-aos][data-aos-delay="600"], .choose__item[data-aos][data-aos][data-aos-delay="900"], .choose__item[data-aos][data-aos][data-aos-delay="300"].aos-animate, .choose__item[data-aos][data-aos][data-aos-delay="600"].aos-animate, .choose__item[data-aos][data-aos][data-aos-delay="900"].aos-animate {
    transition-delay: 0s;
  }
  .choose__item > *:not(img, svg) {
    width: 100%;
    text-align: center;
  }
  .choose__item img, .choose__item svg {
    margin: 0 auto;
  }
  .choose__item p {
    line-height: 1.3;
  }
  .reviews {
    padding: 40px 0;
  }
  .reviews h2 {
    width: 100%;
    text-align: center;
  }
  .reviews__slider {
    position: relative;
    top: auto;
    right: auto;
    padding: 0 10px;
    width: 100%;
  }
  .reviews .slide__content:before, .reviews .slide__content:hover:before {
    box-shadow: unset;
  }
  .reviews .swiper-wrapper {
    padding: 40px 0 30px;
  }
  .reviews .container-arrow {
    position: relative;
    top: auto;
    justify-content: flex-end;
  }
  .reviews .slide__content {
    min-height: unset;
  }
  .contact {
    padding: 40px 0;
  }
  .contact h2 {
    padding: 0 0 40px;
    width: 100%;
    text-align: center;
  }
  .contact .wrapper {
    flex-wrap: wrap;
  }
  .contact__form {
    width: 100%;
  }
  .plans {
    padding: 40px 0 130px;
  }
  .plans__items {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 100px 0;
  }
  .plans__item {
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
  }
  .ready {
    padding: 70px 0 40px;
  }
  .ready .wrapper {
    flex-wrap: wrap;
  }
  .ready__info {
    gap: 30px 0;
    width: 100%;
  }
  .ready__info > *:not(.btn) {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .ready__info .btn {
    margin: 0 auto;
  }
  .ready__description {
    padding: 40px 0 0;
    width: 100%;
  }
  .footer {
    padding: 40px 0 25px;
  }
  .footer__link {
    flex-wrap: wrap;
    gap: 20px 10px;
  }
  .footer__link--column {
    width: calc(50% - 5px);
  }
  .footer__link:before {
    bottom: calc(100% + 7px);
  }
  .footer .footer .copyright {
    padding: 20px 0 0;
  }
}
@media (max-width: 479px) {
  .btn {
    width: 100%;
  }
  .main .btn {
    width: 100%;
  }
  .main__info--description p {
    font-size: var(--font-size-16);
  }
  .companies .brend-item {
    width: calc(50% - 5px);
  }
  .companies .brend-item > * {
    max-width: 100%;
    height: auto;
  }
  .steps__items--card {
    width: 100%;
  }
  .steps__items--card > * {
    width: 100%;
    text-align: center;
  }
  .choose__item {
    padding: 20px 15px;
    width: 100%;
  }
  .contact__form form label {
    width: 100%;
  }
  .ready__description {
    flex-wrap: wrap;
    gap: 20px 0;
    justify-content: flex-start;
  }
  .ready__item {
    max-width: unset;
    width: 100%;
  }
  .footer__contacts {
    gap: 0 15px;
    font-size: 12px;
  }
  .footer__contacts a {
    margin: 0;
  }
  .footer__contacts a:before {
    width: 20px;
    height: 20px;
    background-size: 100% auto;
  }
}/*# sourceMappingURL=style.css.map */