@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

button {
  background: none;
}

blockquote,
q {
  quotes: none;
}

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

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

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

:root {
  --drk: #1b2129;
  --black: #202022;
  --black7: rgba(32, 32, 34, 0.7);
  --black6: rgba(32, 32, 34, 0.6);
  --black5: rgba(32, 32, 34, 0.5);
  --black4: rgba(32, 32, 34, 0.4);
  --black3: rgba(32, 32, 34, 0.3);
  --black2: rgba(32, 32, 34, 0.2);
  --black1: rgba(32, 32, 34, 0.1);
  --black0: rgba(32, 32, 34, 0.06);
  --black04: rgba(32, 32, 34, 0.04);
  --lgt: #ebedf0;
  --accent: #3dc03d;
  --white: #fff;
  --font-family: "Manrope", sans-serif;
  --time: 0.3s ease;
  --orbit-duration-1: 65s;
  --orbit-duration-2: 72s;
  --orbit-duration-3: 55s;
  --orbit-duration-4: 63s;
}

* {
  box-sizing: border-box;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  fill: transparent;
}

input,
textarea {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: var(--black4);
}

input::placeholder,
textarea::placeholder {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: var(--black4);
}

html {
  height: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: var(--lgt);
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: var(--drk);
  font-family: var(--font-family);
  min-width: 412px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

body.locked {
  overflow: hidden;
}

main {
  width: 100%;
  overflow: hidden;
}

a {
  transition: color var(--time);
}

.container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1520px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  height: 100%;
}

.show-on-mobile {
  display: none !important;
}

.section {
  padding: 90px 0;
}

.site-header {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding: 20px 0;
  height: 84px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}

.site-header__slick {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.btn {
  height: 52px;
  border-radius: 76px;
  background: var(--drk);
  color: var(--lgt);
  font-weight: 600;
  font-size: 15px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  transition: opacity var(--time);
}

.btn.btn--small {
  padding: 0 20px;
  height: 44px;
}

.btn.btn--close {
  padding: 0;
  width: 50px;
  height: 50px;
}

.btn.btn--close svg,
.btn.btn--close img {
  width: 14px;
  height: 14px;
}

.btn .default-icon-stroke {
  stroke: var(--white);
  padding-top: 4px;
}

.btn.sx-offender-search {
  background: var(--black0);
  font-weight: 600;
  font-size: 13px;
  color: var(--drk);
  height: 42px;
}

.btn:hover {
  opacity: 0.7;
}

.main-nav {
  display: flex;
  gap: 34px;
  justify-self: center;
}

.main-nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
  transition: opacity var(--time);
}

.main-nav-link:hover {
  opacity: 0.7;
}

.site-header__logo {
  justify-self: start;
}

.site-header__logo img {
  width: 120px;
  height: 36px;
}

.slick_ctrl {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-self: end;
}

.step-page .main-nav {
  display: none;
}

.step-page .site-header__slick {
  grid-template-columns: auto auto;
}

.burger {
  display: none;
}

.burger:hover {
  opacity: 0.7;
}

.mobile-nav {
  display: none;
}

.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
}

.mobile-nav-top span {
  font-weight: 700;
  font-size: 32px;
  line-height: 95%;
  color: var(--drk);
}

.modile-nav-body {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 23px;
  padding-bottom: 30px;
}

.modile-nav-body a {
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: var(--drk);
}

.modile-nav-soc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 30px;
}

.modile-nav-soc__title {
  font-size: 15px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--black5);
}

.socials-line {
  display: flex;
  gap: 8px;
}

.soc-link {
  border-radius: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.soc-link img,
.soc-link svg {
  width: 22px;
  height: 22px;
}

.soc-link:hover {
  opacity: 0.7;
}

.hero-section {
  padding-top: 84px;
  height: 912px;
  position: relative;
  z-index: 3;
}

.hero-section .container {
  height: 100%;
}

.hero-section .row {
  justify-content: center;
  position: relative;
}

.hero-box {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  max-width: 670px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 4;
}

.hero-bg-block {
  position: absolute;
  top: -84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: center;
  width: calc(100% - 20px);
}

.hero-anima-block {
  position: absolute;
  top: -84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: center;
  overflow: hidden;
  word-wrap: break-word;
  width: calc(100% - 20px);
  height: 100%;
}

.hero-anima-block img {
  width: auto;
  z-index: 1;
}

.hero-anima-box {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 912px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #000 50%, #000 70%, rgba(0, 0, 0, 0.1) 85%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #000 50%, #000 82%, rgba(0, 0, 0, 0) 90%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-orbit {
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: dashed 2px var(--white);
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 2;
}

.hero-orbit-1 {
  width: 95.3%;
  animation: orbit-spin var(--orbit-duration-1) linear infinite;
}

.hero-orbit-2 {
  width: 66%;
  animation: orbit-spin2 var(--orbit-duration-2) linear infinite;
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-spin2 {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0);
  }
}

.hero-orbit-filler {
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background: var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
}

.hero-orbit-item {
  position: absolute;
  inset: 0;
}

.hero-orbit-item-1-1 {
  transform: rotate(250deg);
}

.hero-orbit-item-1-1 .hero-orbit-item__inner {
  transform: translate(-50%, -50%) rotate(-250deg);
  animation: orbit-counter-spin5 var(--orbit-duration-1) linear infinite;
}

@keyframes orbit-counter-spin5 {
  from {
    transform: translate(-50%, -50%) rotate(110deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-250deg);
  }
}

.hero-orbit-item-1-2 {
  transform: rotate(75deg);
}

.hero-orbit-item-1-3 {
  transform: rotate(267deg);
}

.hero-orbit-item-1-4 {
  transform: rotate(160deg);
}

.hero-orbit-item-1-5 {
  transform: rotate(100deg);
}

.hero-orbit-item-1-5 .hero-orbit-item__inner {
  transform: translate(-50%, -50%) rotate(-100deg);
  animation: orbit-counter-spin6 var(--orbit-duration-1) linear infinite;
}

@keyframes orbit-counter-spin6 {
  from {
    transform: translate(-50%, -50%) rotate(260deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-100deg);
  }
}

.hero-orbit-item-1-6 {
  transform: rotate(285deg);
}

.hero-orbit-item-1-6 .hero-orbit-item__inner {
  transform: translate(-50%, -50%) rotate(-285deg);
  animation: orbit-counter-spin7 var(--orbit-duration-1) linear infinite;
}

@keyframes orbit-counter-spin7 {
  from {
    transform: translate(-50%, -50%) rotate(75deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-285deg);
  }
}

.hero-orbit-item-2-1 {
  transform: rotate(65deg);
}

.hero-orbit-item-2-1 .hero-orbit-item__inner {
  transform: translate(-50%, -50%) rotate(-65deg);
  animation: orbit-counter-spin2 var(--orbit-duration-2) linear infinite;
}

@keyframes orbit-counter-spin2 {
  from {
    transform: translate(-50%, -50%) rotate(-65deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(295deg);
  }
}

.hero-orbit-item-2-2 {
  transform: rotate(110deg);
}

.hero-orbit-item-2-2 .hero-orbit-item__inner {
  transform: translate(-50%, -50%) rotate(-110deg);
  animation: orbit-counter-spin3 var(--orbit-duration-2) linear infinite;
}

@keyframes orbit-counter-spin3 {
  from {
    transform: translate(-50%, -50%) rotate(-110deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(250deg);
  }
}

.hero-orbit-item-2-3 {
  transform: rotate(225deg);
}

.hero-orbit-item-2-4 {
  transform: rotate(270deg);
}

.hero-orbit-item-2-4 .hero-orbit-item__inner {
  transform: translate(-50%, -50%) rotate(-270deg);
  animation: orbit-counter-spin4 var(--orbit-duration-2) linear infinite;
}

@keyframes orbit-counter-spin4 {
  from {
    transform: translate(-50%, -50%) rotate(-270deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.hero-orbit-item-2-5 {
  transform: rotate(310deg);
}

.hero-orbit-item-2-6 {
  transform: rotate(35deg);
}

.hero-orbit-item__inner {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  margin: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s linear;
}

.flip-card__back {
  transform: rotateY(180deg);
}

.authorized-tag {
  border-radius: 100px;
  padding: 6px 12px 6px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(61, 192, 61, 0.2);
  margin: 0 auto 40px;
}

.authorized-tag svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.authorized-tag span {
  font-weight: 700;
  font-size: 12px;
  color: var(--black);
}

.hero-title {
  font-weight: 700;
  font-size: 64px;
  line-height: 95%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--drk);
}

.hero-title span {
  font-weight: 300;
}

.hero-description {
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: var(--black7);
  max-width: 418px;
  margin: 25px auto 40px;
}

.hero-description span {
  color: var(--black);
}

.hero-description strong {
  font-weight: 700;
}

.main-search-tabs-pane {
  display: none;
}

.main-search-tabs-pane.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main-search-tabs {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  overflow-x: auto;
}

.default-icon {
  fill: var(--drk);
  transition: fill var(--time), stroke var(--time);
}

.default-icon-stroke {
  stroke: var(--drk);
  transition: fill var(--time), stroke var(--time);
}

.main-search-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 453px;
  margin: 0 auto;
}

.main-search-tabs__btn {
  border-radius: 28px;
  padding: 10px 13px;
  width: auto;
  height: 38px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  color: var(--drk);
  cursor: pointer;
  transition: background var(--time), color var(--time);
}

.main-search-tabs__btn img,
.main-search-tabs__btn svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.main-search-tabs__btn:hover,
.main-search-tabs__btn.active {
  color: var(--lgt);
  background: var(--drk);
}

.main-search-tabs__btn:hover .default-icon,
.main-search-tabs__btn.active .default-icon {
  fill: var(--accent);
}

.main-search-tabs-pane__title {
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  text-align: center;
  color: var(--black5);
}

.main-search-tabs__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.phone-box {
  display: flex;
  align-items: stretch;
  gap: 4px;
  width: 100%;
}

.phone-box__country {
  position: relative;
  flex: 0 0 114px;
}

.phone-box__country-trigger {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  border-radius: 76px 30px 30px 76px;
  background: #fff;
  cursor: pointer;
  font: inherit;
}

.phone-box__country-value {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.phone-box__arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.2s ease;
  border-radius: 0px 1px 1px 1px;
}

.phone-box__country.is-open .phone-box__arrow {
  transform: rotate(225deg);
  margin-top: 2px;
}

.phone-box__country-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-box__flag {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  flex: 0 0 20px;
  box-shadow: 0px 0px 0px 1px #f4f4f4;
}

.phone-box__dial {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
}

.phone-box__country-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
  z-index: 30;
}

.phone-box__country.is-open .phone-box__country-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.phone-box__country-option {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.phone-box__country-option:hover,
.phone-box__country-option.is-active {
  background: #f4f4f4;
}

.phone-box__country-option strong {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
}

.form-field {
  width: 100%;
  height: 52px;
  padding: 0 24px;
  background: #fff;
  outline: none;
  border-radius: 30px;
}

.form-field input {
  height: 52px;
  padding: 0;
}

.phone-field__input-wrap {
  position: relative;
  flex: 1 1 auto;
}

.phone-field__input {
  width: 100%;
  height: 60px;
  padding: 0 130px 0 20px;
  background: #fff;
  outline: none;
  border-radius: 30px 76px 76px 30px;
}

.single-field__input {
  border-radius: 30px;
}

.phone-field__button {
  position: absolute;
  top: 4px;
  right: 4px;
  height: calc(100% - 8px);
}

.out-field__button {
  width: 100%;
  margin-top: 12px;
}

.photo-field__input-wrap {
  width: 100%;
  height: 140px;
  padding: 8px;
  border-radius: 24px;
  background: var(--white);
}

.file-drop-field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--black2);
  border-radius: 24px;
  background: var(--white);
  cursor: pointer;
  text-align: center;
}

.file-drop-field__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-drop-field__placeholder {
  pointer-events: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: var(--black4);
}

.file-drop-field__placeholder img {
  width: 20px;
  height: 20px;
}

.hero-bottom {
  margin: auto auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.hero-bottom__item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 12px;
  color: var(--black5);
}

.hero-bottom__item strong {
  font-weight: 900;
  color: var(--black);
}

.hero-bottom__item .hero-bottom__img {
  width: 96px;
  height: 32px;
}

.hero-bottom__item .hero-bottom__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.hero-bottom__item.hero-bottom__item--first {
  display: block;
}

.hero-bottom__line {
  width: 1px;
  height: 16px;
  background: var(--black);
  opacity: 0.12;
}

.oneline-section {
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 49.52%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 49.52%, rgba(0, 0, 0, 0) 100%);
  overflow: hidden;
  position: relative;
  padding-top: 130px;
  padding-bottom: 90px;
}

.oneline-section-title {
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  text-align: center;
  color: var(--black5);
  margin-bottom: 10px;
  text-align: center;
}

.oneline-track {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  animation: logoMarquee 30s linear infinite;
  height: 80px;
}

.oneline-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.oneline-group img {
  display: block;
  width: auto;
  flex-shrink: 0;
  max-height: 95%;
}

.oneline-group img {
  margin-right: 80px;
}

@keyframes logoMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-33.333333%, 0, 0);
  }
}

.section-title-row {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 10px;
  margin-bottom: 80px;
}

.section-title {
  font-weight: 300;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--drk);
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-title span {
  font-weight: 700;
}

.section-descr {
  max-width: 445px;
  text-align: center;
}

.section-title-white .section-title {
  color: var(--lgt);
}

.section-title-white .section-descr {
  color: var(--lgt);
}

.canfind-box {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.canfind-item {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.canfind-item-top {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}

.canfind-item-top span {
  font-weight: 800;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--drk);
}

.canfind-item-text {
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--black6);
  margin-top: 32px;
}

.canfind-item-icon {
  border-radius: 100%;
  background: var(--black0);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.canfind-item-icon img,
.canfind-item-icon svg {
  width: 20px;
  height: 20px;
}

.wyneed-black {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  padding: 80px;
  background: var(--drk) url("../img/pattern2.svg") 50% 50% no-repeat;
  background-size: cover;
  border-radius: 48px;
}

.wyneed-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wyneed-item {
  background: #252a30;
  border-radius: 20px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.wyneed-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100%;
}

.wyneed-item-icon img,
.wyneed-item-icon svg {
  width: 20px;
  height: 20px;
}

.wyneed-item-top {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--lgt);
  gap: 14px;
}

.wyneed-item-text {
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--lgt);
  opacity: 0.6;
  margin-top: 25px;
}

.double-slider-box {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.card-slider,
.vert-slider {
  flex: 1 1 0;
  max-width: 689px;
}

.card-slider .swiper-slide,
.card-slider .swiper-slide-shadow,
.vert-slider .swiper-slide,
.vert-slider .swiper-slide-shadow {
  background: transparent !important;
}

.stack-sliders {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.card-slider {
  height: 428px;
}

.vert-slider {
  padding: 30px;
  min-height: 300px;
  height: 428px;
  width: 100%;
  position: relative;
}

.vert-slider.swiper {
  z-index: 3;
}

.card-slider .swiper-slide:first-child .card-slider-item {
  background: #b1b9c5;
}

.card-slider .swiper-slide + .swiper-slide .card-slider-item {
  background: #a0b3c2;
}

.card-slider .swiper-slide + .swiper-slide + .swiper-slide .card-slider-item {
  background: #8c9fae;
}

.card-slider .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide .card-slider-item {
  background: #6e8190;
}

.card-slider .card-slider-item img {
  opacity: 0;
  transition: opacity var(--time);
}

.card-slider .swiper-slide-active .card-slider-item img {
  opacity: 1;
}

.card-slider-item {
  border-radius: 48px;
  background: #6e8190;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.cards-static__item {
  position: relative;
}

.cards-static__text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.cards-static__item.is-active .cards-static__text {
  max-height: 100px;
  opacity: 1;
}

.cards-static {
  position: relative;
  z-index: 2;
  width: 100%;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding-right: 40px;
}

.cards-static + .swiper-wrapper {
  z-index: 3;
}

.cards-static + .swiper-wrapper + .swiper-pagination {
  z-index: 4;
}

.cards-static,
.vert-slider {
  grid-column: 1;
  grid-row: 1;
}

.cards-static__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cards-static__step {
  font-weight: 500;
  font-size: 12px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--black5);
}

.cards-static__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--drk);
}

.cards-static__item.swiper-slide-active + .cards-static__item {
  margin-top: 16px;
}

.vert-slider .swiper-pagination-bullet {
  background: #1B2129;
  margin: 12px 0 !important;
  width: 4px;
  height: 4px;
  transition: height var(--time);
}

.vert-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  height: 12px;
  border-radius: 16px;
}

.cards-static__text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  font-size: 15px;
  line-height: 140%;
  color: var(--drk);
}

.cards-static__item.is-active .cards-static__text {
  max-height: 100px;
  opacity: 1;
  margin-top: 6px;
}

.section-badge {
  background: #EBDF99;
  padding: 6px 12px 6px 6px;
  border-radius: 100px;
  font-weight: 400;
  font-size: 12px;
  color: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 6px;
  margin-top: 32px;
}

.section-badge strong {
  font-weight: 700;
}

.section-badge img {
  width: 20px;
  height: 20px;
}

.section-title-anim {
  background: var(--white);
  border-radius: 10px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform;
}

.section-title-anim img,
.section-title-anim svg {
  width: 14px;
  height: 14px;
}

.section-title-anim.section-title-anim__dot {
  border-radius: 100%;
  width: 12px;
  height: 12px;
}

.section-title-anim.section-title-anim-1 {
  transform: translate(-50%, -50%) translate(-100px, -100px) scale(1) rotate(0deg);
  animation: sectionTitleFloat1 20s ease-in-out infinite alternate;
}

.section-title-anim.section-title-anim-2 {
  transform: translate(-50%, -50%) translate(100px, -100px) scale(1) rotate(0deg);
  animation: sectionTitleFloat2 25s ease-in-out infinite alternate;
}

.section-title-anim.section-title-anim-3 {
  transform: translate(-50%, -50%) translate(100px, 100px) scale(1) rotate(0deg);
  animation: sectionTitleFloat3 16s ease-in-out infinite alternate;
}

.section-title-anim.section-title-anim-4 {
  transform: translate(-50%, -50%) translate(-100px, 100px) scale(1) rotate(0deg);
  animation: sectionTitleFloat4 14s ease-in-out infinite alternate;
}

.section-title-anim.section-title-anim-5 {
  transform: translate(-50%, 0) translate(0px, -90px) scale(1) rotate(0deg);
  animation: sectionTitleFloat5 18s ease-in-out infinite alternate;
}

@keyframes sectionTitleFloat1 {
  0% {
    transform: translate(-50%, -50%) translate(-100px, -100px) scale(1) rotate(0deg);
  }

  20% {
    transform: translate(-50%, -50%) translate(-128px, -122px) scale(1.16) rotate(-10deg);
  }

  40% {
    transform: translate(-50%, -50%) translate(-82px, -138px) scale(0.88) rotate(12deg);
  }

  60% {
    transform: translate(-50%, -50%) translate(-142px, -74px) scale(1.22) rotate(-14deg);
  }

  80% {
    transform: translate(-50%, -50%) translate(-70px, -108px) scale(0.9) rotate(9deg);
  }

  100% {
    transform: translate(-50%, -50%) translate(-116px, -130px) scale(1.14) rotate(-8deg);
  }
}

@keyframes sectionTitleFloat2 {
  0% {
    transform: translate(-50%, -50%) translate(100px, -100px) scale(1) rotate(0deg);
  }

  20% {
    transform: translate(-50%, -50%) translate(134px, -126px) scale(1.18) rotate(11deg);
  }

  40% {
    transform: translate(-50%, -50%) translate(78px, -142px) scale(0.86) rotate(-13deg);
  }

  60% {
    transform: translate(-50%, -50%) translate(146px, -72px) scale(1.24) rotate(15deg);
  }

  80% {
    transform: translate(-50%, -50%) translate(88px, -112px) scale(0.92) rotate(-8deg);
  }

  100% {
    transform: translate(-50%, -50%) translate(122px, -132px) scale(1.12) rotate(10deg);
  }
}

@keyframes sectionTitleFloat3 {
  0% {
    transform: translate(-50%, -50%) translate(100px, 100px) scale(1) rotate(0deg);
  }

  20% {
    transform: translate(-50%, -50%) translate(138px, 124px) scale(1.15) rotate(-12deg);
  }

  40% {
    transform: translate(-50%, -50%) translate(82px, 146px) scale(0.87) rotate(14deg);
  }

  60% {
    transform: translate(-50%, -50%) translate(148px, 70px) scale(1.21) rotate(-15deg);
  }

  80% {
    transform: translate(-50%, -50%) translate(92px, 118px) scale(0.91) rotate(9deg);
  }

  100% {
    transform: translate(-50%, -50%) translate(126px, 136px) scale(1.13) rotate(-11deg);
  }
}

@keyframes sectionTitleFloat4 {
  0% {
    transform: translate(-50%, -50%) translate(-100px, 100px) scale(1) rotate(0deg);
  }

  20% {
    transform: translate(-50%, -50%) translate(-130px, 128px) scale(1.17) rotate(10deg);
  }

  40% {
    transform: translate(-50%, -50%) translate(-78px, 144px) scale(0.85) rotate(-14deg);
  }

  60% {
    transform: translate(-50%, -50%) translate(-146px, 76px) scale(1.23) rotate(13deg);
  }

  80% {
    transform: translate(-50%, -50%) translate(-86px, 116px) scale(0.9) rotate(-9deg);
  }

  100% {
    transform: translate(-50%, -50%) translate(-120px, 134px) scale(1.11) rotate(12deg);
  }
}

@keyframes sectionTitleFloat5 {
  0% {
    transform: translate(-50%, 0) translate(0px, -90px) scale(1) rotate(0deg);
  }

  20% {
    transform: translate(-50%, 0) translate(26px, -124px) scale(1.2) rotate(-9deg);
  }

  40% {
    transform: translate(-50%, 0) translate(-24px, -146px) scale(0.84) rotate(13deg);
  }

  60% {
    transform: translate(-50%, 0) translate(34px, -72px) scale(1.25) rotate(-15deg);
  }

  80% {
    transform: translate(-50%, 0) translate(-30px, -110px) scale(0.89) rotate(8deg);
  }

  100% {
    transform: translate(-50%, 0) translate(18px, -132px) scale(1.14) rotate(-11deg);
  }
}

.revs-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 30%, #000 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 30%, #000 70%, rgba(0, 0, 0, 0) 100%);
}

.revs-line {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 3;
  width: -moz-max-content;
  width: max-content;
}

.revs-line.revs-line--left {
  transform: translateX(-10%);
  animation: running-line-left 30s linear infinite;
}

.revs-line.revs-line--right {
  transform: translateX(-10%);
  animation: running-line-right 30s linear infinite;
}

@keyframes running-line-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-10% - 10px));
  }
}

@keyframes running-line-right {
  from {
    transform: translateX(calc(-10% - 10px));
  }

  to {
    transform: translateX(0);
  }
}

.revs-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  width: 355px;
  height: 200px;
  flex-shrink: 0;
}

.rev-item-body {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--drk);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}

.rev-item-rating-box {
  width: 100%;
  margin: 11px 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rev-item-rating {
  width: 68px;
  height: 12px;
  position: relative;
}

.rev-item-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 68px;
  height: 12px;
}

.rev-item-stars img,
.rev-item-stars svg {
  width: 12px;
  height: 12px;
}

.rev-item-raiting-back {
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

.rev-item-real-rating {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 80%;
  overflow: hidden;
}

.rev-item-rating-date {
  font-weight: 500;
  font-size: 11px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--black5);
}

.revs-item-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.revs-item-ava {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 100%;
  flex-shrink: 0;
}

.revs-item-ava img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.rev-item-bio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
}

.rev-item-icon {
  margin-right: 0;
  margin-left: auto;
}

.rev-item-icon img {
  width: 18px;
  height: 18px;
}

.rev-item-name {
  font-weight: 700;
  font-size: 15px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--drk);
}

.rev-item-some {
  font-weight: 500;
  font-size: 11px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--black5);
}

.looking-left {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(50% - 20px);
  text-align: left;
}

.looking-left .section-title,
.looking-left .section-descr {
  text-align: left;
}

.looking-left .section-title {
  margin-bottom: 20px;
}

.look-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
}

.look-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.look-list-ico {
  border-radius: 14px;
  width: 48px;
  height: 48px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.look-list-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.look-list-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--drk);
}

.look-list-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--black6);
}

.looking-right {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(50% - 20px);
}

.looking-black-box {
  width: 100%;
  height: 460px;
  border-radius: 48px;
  background: var(--drk) url("../img/pattern3.svg") 50% 50% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.black-icon-center {
  width: 241px;
  height: 241px;
  position: relative;
  z-index: 2;
}

.black-icon-center img {
  width: 100%;
  height: 100%;
}

.looking-orbit {
  border-radius: 100%;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.looking-orbit-1 {
  width: 560px;
  height: 560px;
  border: dashed 1px rgba(61, 192, 61, 0.3);
  animation: orbit-spin3 var(--orbit-duration-3) linear infinite;
}

.looking-orbit-2 {
  width: 360px;
  height: 360px;
  border: dashed 1px rgba(61, 192, 61, 0.5);
  animation: orbit-spin4 var(--orbit-duration-4) linear infinite;
}

.looking-orbit-filler {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: var(--accent);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
}

.looking-orbit-item {
  position: absolute;
  inset: 0;
}

.looking-orbit-item__inner {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  position: absolute;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.04);
  background: #2f353f;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.looking-orbit-item__inner img {
  width: 28px;
  height: 28px;
  z-index: 1;
}

.looking-orbit-item-1-1 {
  transform: rotate(-50deg);
}

.looking-orbit-item-1-2 {
  transform: rotate(250deg);
}

.looking-orbit-item-1-2 .looking-orbit-item__inner {
  transform: translate(-50%, -50%) rotate(-250deg);
  animation: orbit-counter-spin71 var(--orbit-duration-3) linear infinite;
}

@keyframes orbit-counter-spin71 {
  from {
    transform: translate(-50%, -50%) rotate(110deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-250deg);
  }
}

.looking-orbit-item-1-3 {
  transform: rotate(75deg);
}

.looking-orbit-item-1-3 .looking-orbit-item__inner {
  transform: translate(-50%, -50%) rotate(-75deg);
  animation: orbit-counter-spin72 var(--orbit-duration-3) linear infinite;
}

@keyframes orbit-counter-spin72 {
  from {
    transform: translate(-50%, -50%) rotate(285deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-75deg);
  }
}

.looking-orbit-item-1-4 {
  transform: rotate(125deg);
}

.looking-orbit-item-2-1 {
  transform: rotate(-85deg);
}

.looking-orbit-item-2-2 {
  transform: rotate(45deg);
}

.looking-orbit-item-2-2 .looking-orbit-item__inner {
  transform: translate(-50%, -50%) rotate(-45deg);
  animation: orbit-counter-spin73 var(--orbit-duration-4) linear infinite;
}

@keyframes orbit-counter-spin73 {
  from {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(315deg);
  }
}

.looking-orbit-item-2-3 {
  transform: rotate(15deg);
}

@keyframes orbit-spin3 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-spin4 {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0);
  }
}

.package-item {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  padding: 40px;
  background: #fff url("../img/pattern-w.svg") 50% 50% no-repeat;
  border-radius: 48px;
  display: flex;
  justify-content: space-between;
  gap: 64px;
  min-height: 264px;
  height: auto;
}

.package-item-left-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.package-item-left-icon img {
  width: 60px;
  height: 60px;
}

.package-item-left {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  width: 59%;
}

.package-item-right {
  background: #eefbf4;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  height: 100%;
  border-radius: 20px;
  width: 41%;
}

.package-item-left-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-item-descr {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--drk);
}

.package-item-descr strong {
  font-weight: 800;
}

.package-item-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 20px;
  color: var(--accent);
  margin-top: 16px;
}

.package-item-link svg {
  margin-top: 3px;
  width: 15px;
  height: 10px;
}

.package-item-link svg path {
  transition: stroke var(--time);
}

.package-item-link:hover {
  color: var(--drk);
}

.package-item-link:hover svg path {
  stroke: var(--drk);
}

.package-item-link .btn {
  width: 100%;
}

.package-item-right__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 20px;
  line-height: 140%;
}

.package-item-right__label {
  color: var(--drk);
}

.package-item-right__price {
  color: var(--accent);
}

.faq-box {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-box-item {
  display: flex;
  flex-direction: column;
  background: #252a30;
  border-radius: 20px;
  overflow: hidden;
}

.faq-box-item.open .faq-box-question svg {
  transform: rotate(-180deg);
}

.faq-box-item.open .faq-box-answer {
  grid-template-rows: 1fr;
}

.faq-box-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--lgt);
  cursor: pointer;
  transition: opacity var(--time);
}

.faq-box-question svg {
  width: 16px;
  height: 9px;
  flex-shrink: 0;
  stroke: var(--white);
  transition: transform var(--time), opacity var(--time);
}

.faq-box-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--time);
  overflow: hidden;
}

.faq-box-answer-inner {
  min-height: 0;
}

.faq-box-answer-body {
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--lgt);
  opacity: 0.6;
  padding: 0 90px 26px 30px;
}

.faq-box-answer-body p {
  margin-bottom: 16px;
}

.faq-box-answer-body strong {
  font-weight: 700;
}

.faq-box-answer-body p + ul {
  margin-top: -10px;
}

.faq-box-answer-body ul {
  padding-left: 10px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-box-answer-body ul li {
  padding-left: 4px;
}

.faq-box-answer-body ul li::marker {
  content: "• ";
}

.blog-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
}

.blog-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px;
  border-radius: 32px;
  background: var(--white);
}

.blog-item-image {
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
}

.blog-item-image img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

.blog-item-body {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.blog-item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--drk);
}

.blog-item-link {
  margin-top: auto;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--drk);
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.blog-item-link svg {
  stroke: var(--drk);
  flex-shrink: 0;
}

.blog-item-short {
  font-size: 15px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--black6);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item-info {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--drk);
}

.blog-item-readtime {
  color: rgba(27, 33, 41, 0.5);
}

.section-controls {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.site-footer {
  margin-top: 80px;
}

.footer-content,
.footer-bottom {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  border-top: solid 1px var(--black1);
}

.footer-content {
  display: flex;
  gap: 20px;
  padding: 40px 0;
}

.footer-content-item {
  width: 25%;
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom .copyright,
.footer-bottom .legal-links a {
  font-size: 13px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--black5);
}

.legal-links {
  display: flex;
  gap: 18px;
}

.legal-links a:hover {
  color: var(--drk);
}

.footer-secription {
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--black5);
  margin: 18px 0 32px;
  max-width: 300px;
}

.footer-col-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--drk);
  margin-bottom: 22px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  font-size: 15px;
  color: var(--black);
}

.footer-nav a:hover {
  color: var(--black5);
}

.footer-content-last-descr {
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--black5);
}

.footer-content-last .footer-col-title {
  margin-bottom: 10px;
}

.footer-content-item.footer-content-col1 {
  align-items: center;
}

.step1-section {
  padding-top: 84px;
}

.step1-section .row {
  justify-content: center;
}

.step1-section .hero-description {
  max-width: 100%;
}

.step1 {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  max-width: 560px;
  margin-top: -60px;
}

.step1-process {
  max-width: 375px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 4px;
}

.step1-process-item {
  width: 100%;
  height: 52px;
  padding: 4px 4px 4px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 51px;
  background: var(--white);
}

.step1-process-item-label {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: var(--black5);
}

.step1-process-item-tag {
  height: 100%;
  border-radius: 51px;
  padding: 0 18px;
  background: var(--black04);
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.step1-process-item-tag img {
  height: 20px;
  width: auto;
}

.blured-item {
  position: relative;
}

.blured-item:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(27, 33, 41, 0.01);
  border-radius: 51px;
}

.loader {
  display: flex;
  gap: 3px;
  align-items: center;
}

.loader::before,
.loader::after,
.loader span {
  content: "";
  width: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--black5);
  animation: l5 1.1s infinite ease-in-out;
}

.loader::before {
  animation-delay: 0s;
}

.loader span {
  animation-delay: 0.15s;
}

.loader::after {
  animation-delay: 0.3s;
}

@keyframes l5 {
  0%, 80%, 100% {
    opacity: 0.1;
    transform: scale(0.8);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.steps-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 360px;
  margin: 0 auto 56px;
  position: relative;
}

.steps-list:after {
  content: "";
  width: calc(100% - 65px);
  height: 1px;
  border-top: dashed 1px var(--drk);
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%, 0);
}

.steps-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 11px;
  line-height: 100%;
  text-align: center;
  color: var(--black5);
  gap: 6px;
}

.steps-list-item.steps-list-item__active {
  color: var(--black);
}

.steps-list-item.steps-list-item__active .steps-list-item-indicator {
  border: solid 1px var(--black);
}

.steps-list-item.steps-list-item__active .steps-list-item-indicator span {
  background: var(--black);
}

.steps-list-item-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: solid 1px var(--black4);
  width: 16px;
  height: 16px;
  padding: 2px;
  background: var(--lgt);
  position: relative;
  z-index: 3;
}

.steps-list-item-indicator span {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.step2-proces {
  margin: 0 auto;
}

.step2-progress-box {
  margin: 0 auto;
  width: 140px;
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step2-progress-avatar {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  overflow: hidden;
}

.step2-progress-avatar img {
  width: 100%;
  height: 100%;
}

.step2-progress-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  --progress: 75;
  --circumference: 282.743;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}

.step2-progress-bar svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}

.step2-progress-bar__bg,
.step2-progress-bar__bar {
  fill: none;
  stroke-width: 4px;
}

.step2-progress-bar__bg {
  stroke: var(--white);
}

.step2-progress-bar__bar {
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-dasharray: var(--circumference);
  stroke-dashoffset: calc(var(--circumference) - var(--circumference) * var(--progress) / 100);
  transition: stroke-dashoffset 0.35s ease;
}

.step2-progress-tags-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.step2-progress-tag {
  width: 100%;
  height: auto;
  font-weight: 600;
  font-size: 13px;
  line-height: 120%;
  color: var(--drk);
  padding: 10px;
  background: var(--white);
  border-radius: 51px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.step2-progress-tag-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step2-progress-tag-icon img,
.step2-progress-tag-icon svg {
  width: 16px;
  height: 16px;
}

.step2-progress-tags-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  text-align: center;
  color: var(--drk);
  margin-bottom: 20px;
}

.step2 {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  max-width: 940px;
  margin-top: -60px;
}

.step2 .hero-description {
  max-width: 470px;
}

.circle-loader {
  width: 15px;
  height: 15px;
  border: 2px solid var(--black3);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  animation: rotation 0.6s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.step3 {
  margin-top: -60px;
}

.step3 .hero-description {
  max-width: 470px;
}

.step-login-form {
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  margin: 0 auto;
}

.step-login-form .custom-checkbox {
  margin-top: 24px;
}

.step-login-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  text-align: center;
  color: var(--drk);
}

.login-form-ctrl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-form-ctrl .btn {
  width: 100%;
}

.google-btn {
  border-radius: 76px;
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  color: var(--drk);
}

.google-btn img {
  width: 24px;
  height: 24px;
}

.google-btn:hover {
  opacity: 0.8;
}

.login-form-razd {
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  color: var(--black5);
  overflow: hidden;
}

.login-form-razd span {
  display: inline-block;
  position: relative;
}

.login-form-razd span:after {
  content: "";
  width: 125px;
  height: 1px;
  position: absolute;
  left: calc(100% + 7px);
  top: 50%;
  background: linear-gradient(90deg, rgba(27, 33, 41, 0) 0%, rgba(27, 33, 41, 0.2) 100%);
  transform: rotate(180deg);
}

.login-form-razd span:before {
  content: "";
  width: 125px;
  height: 1px;
  position: absolute;
  right: calc(100% + 7px);
  top: 50%;
  background: linear-gradient(90deg, rgba(27, 33, 41, 0) 0%, rgba(27, 33, 41, 0.2) 100%);
}

.custom-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.custom-checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-checkbox__box {
  width: 18px;
  height: 18px;
  border: 1px solid var(--black4);
  border-radius: 5px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.custom-checkbox__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg) scale(0);
  transition: 0.2s ease;
}

.custom-checkbox__input:checked + .custom-checkbox__box {
  border-color: var(--black);
}

.custom-checkbox__input:checked + .custom-checkbox__box::after {
  transform: rotate(45deg) scale(1);
}

.custom-checkbox__text {
  font-size: 15px;
  line-height: 120%;
  color: var(--black5);
}

.custom-checkbox__text strong {
  font-weight: 500;
  color: var(--black);
}

.step-result .row {
  justify-content: center;
}

.step-result-box {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  max-width: 980px;
  margin-top: 50px;
}

.step-result-top {
  padding: 28px 32px;
  border-radius: 20px;
  background: var(--white);
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.step-result-top__left {
  display: flex;
  gap: 16px;
}

.step-result-ava {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.step-result-ava img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: relative;
  z-index: 1;
}

.step-result-ava:after {
  content: "";
  display: block;
  width: 19px;
  height: 24px;
  background: url("../img/lock.svg") 0 0 no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.step-result-data {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.step-result-searched-input {
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  color: var(--drk);
  margin-bottom: 4px;
}

.step-result-data__line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-result-data__left {
  font-size: 15px;
  line-height: 120%;
  color: var(--black6);
}

.step-result-data__right {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: var(--drk);
  display: flex;
  align-items: center;
  gap: 3px;
}

.step-result-data__right.step-result-data__blur {
  border-radius: 14px;
  height: 24px;
  padding: 0 9px;
  position: relative;
  overflow: hidden;
}

.step-result-data__right.step-result-data__blur:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: rgba(27, 33, 41, 0.08);
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}

.step-result-data__full {
  font-size: 15px;
  line-height: 120%;
  color: rgba(27, 33, 41, 0.6);
}

.step-result-data__full span {
  font-weight: 800;
  color: var(--drk);
}

.step-result-warning {
  margin-left: auto;
  margin-right: 0;
}

.step-result-warning__title {
  font-weight: 900;
  font-size: 15px;
  line-height: 120%;
  color: var(--drk);
  margin-bottom: 15px;
}

.step-result-warning__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px 24px;
}

.step-result-warning__item {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: var(--drk);
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-result-warning__item:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: var(--accent);
}

.step-result-body {
  padding: 10px;
  background: var(--white);
  border-radius: 20px;
  margin-top: 10px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}

.step-result-body__title {
  font-weight: 900;
  font-size: 20px;
  line-height: 120%;
  color: var(--drk);
  margin-bottom: 24px;
}

.step-result-body__left {
  padding: 22px;
  width: 100%;
}

.step-result-body__right {
  padding: 22px 32px;
  border-radius: 12px;
  background: var(--lgt);
  width: 100%;
}

.step-result-body__left-icon {
  flex-shrink: 0;
}

.step-result-body__left-icon img {
  width: 44px;
  height: 44px;
}

.step-result-body__left-item {
  display: flex;
  gap: 12px;
}

.step-result-body__left-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-result-body__left-item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-result-body__left-item-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  color: var(--drk);
}

.step-result-body__left-item-descr {
  font-size: 14px;
  line-height: 120%;
  color: var(--black6);
}

.step-result-body__bottom {
  margin-top: 26px;
  border-top: solid 1px rgba(32, 32, 34, 0.08);
  padding-top: 10px;
  width: 100%;
  overflow: hidden;
}

.mini-track {
  display: flex;
  width: 100%;
  gap: 32px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 49.52%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 49.52%, rgba(0, 0, 0, 0) 100%);
  max-width: 100%;
  margin: 15px auto 0;
  animation: logoMarquee 20s linear infinite;
}

.mini-track img {
  max-height: 12px;
  flex-shrink: 0;
  opacity: 0.3;
}

.step-result-body__right-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-result-body__right-list-item {
  display: flex;
  gap: 8px;
  font-size: 15px;
  line-height: 120%;
  color: var(--drk);
}

.step-result-body__right-list-item img {
  height: 14px;
  width: 14px;
  flex-shrink: 0;
}

.step-result-payments {
  width: 100%;
  margin-top: 34px;
}

.step-result-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.step-result-price-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  text-align: center;
  color: var(--drk);
}

.step-result-price-holder {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.step-result-price-old {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  text-decoration: line-through;
  text-align: right;
  color: var(--black4);
}

.step-result-price-current {
  font-weight: 900;
  font-size: 32px;
  line-height: 120%;
  text-align: right;
  color: var(--accent);
}

.step-result-price-current sup {
  font-size: 18px;
  vertical-align: super;
  line-height: normal;
}

.step-result-payments-btns {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.step-result-payments-btns .btn{
  width: 100%;
}

.paypal,
.googlepay {
  background: #fff;
  width: 100%;
}

.paypal:hover,
.googlepay:hover {
  opacity: 0.8;
}

.paypal img {
  width: 68px;
  height: 18px;
}

.googlepay img {
  width: 56px;
  height: 22px;
}

.full-result__top {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.full-result__nav {
  display: flex;
  gap: 27px;
}

.full-result__nav a {
  font-weight: 700;
  font-size: 15px;
  color: var(--black5);
}

.full-result__nav a:hover,
.full-result__nav a.active {
  color: var(--black);
}

.full-result__main {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
  width: calc(100% - 20px);
  display: grid;
  grid-template-columns: 300px 1fr;
  margin-top: 24px;
  gap: 20px;
}

.full-result__history {
  padding: 24px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.full-result__history-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}

.full-result__history-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.full-result__history-link {
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
  display: flex;
  align-items: center;
}

.full-result__history-link:hover,
.full-result__history-link.active {
  background: var(--black04);
}

.full-result__body {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.full-result-body__top {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.full-result-body__top .btn-download {
  background: var(--black0);
  color: var(--drk);
  margin-left: auto;
  margin-right: 0;
}

.full-result-body__top .btn-download img {
  width: 8px;
  height: 13px;
}

.full-result-body__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.full-result__avatar {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 100%;
  overflow:hidden;
}

.full-result__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.full-result__bio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.full-result__searched-input {
  font-weight: 900;
  font-size: 24px;
  color: var(--black);
}

.full-result__info {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.full-result__rating-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: var(--black4);
}

.full-result__help {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: rgba(32, 32, 34, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.full-result__help > svg {
  width: 2px;
  height: 8px;
  flex-shrink: 0;
}

.full-result__help .footnote {
  display: none;
  position: absolute;
  left: 4px;
  bottom: 100%;
  width: 200px;
  z-index: 4;
  padding: 10px;
  background: var(--lgt);
  color: var(--black7);
  font-size: 12px;
  line-height: 16px;
  border-radius: 5px;
}

.full-result__help:hover .footnote {
  display: block;
}

.full-result__rating {
  position: relative;
  width: 46px;
  height: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  line-height: 15px;
  color: var(--accent);
}

.full-result__rating span {
  position: relative;
  z-index: 2;
}

.full-result__rating-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.full-result__rating-arc-track,
.full-result__rating-arc-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}

.full-result__rating-arc-track {
  stroke: var(--black1);
}

.full-result__rating-arc-fill {
  stroke: var(--accent);
  stroke-dasharray: 50 100;
}

.full-result__body-item {
  border-radius: 16px;
  background: var(--black04);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.full-result__body-item .no-found {
  color: var(--black5);
}

.full-result__body-item__title {
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}

.full-result__body-item__content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
}

.full-result__body-item__icons .full-result__body-item__content {
  justify-content: flex-start;
  gap: 4px;
  flex-wrap: wrap;
}

.full-result__body-item__icons .full-result__body-item__content img {
  width: 36px;
  height: 36px;
}

.full-result__body-item__profile .full-result__body-item__content {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.full-result__profile-item {
  display: flex;
  gap: 11px;
}

.full-result__profile-icon {
  width: 42px;
  height: 42px;
}

.full-result__profile-icon img {
  width: 100%;
  height: 100%;
}

.full-result__profile-label {
  font-weight: 500;
  font-size: 12px;
  color: var(--black5);
}

.full-result__body-item__publicacc .full-result__body-item__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: flex-start;
}

.full-result__body-acc {
  display: flex;
  gap: 12px;
  border-radius: 12px;
  min-height: 58px;
  background: var(--white);
  padding: 8px;
}

.full-result__body-acc-icon {
  width: 42px;
  height: 42px;
}

.full-result__body-acc-icon img {
  width: 100%;
  height: 100%;
}

.full-result__body-acc-body {
  display: flex;
  flex-direction: column;
}

.full-result__body-acc-label {
  color: var(--black5);
  font-size: 12px;
}

.full-result__body-item__content-answer {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.full-result__body-item__content-answer img {
  flex-shrink: 0;
}

.full-result__body-item__leaks .full-result__body-item__content {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
}

.full-result__body-item__leaks .full-result__body-item__content-answer {
  align-items: center;
  white-space: nowrap;
}

.full-result__body-item__gallery .full-result__body-item__content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}

.full-result__body-item__gallery-link {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.full-result__body-item__gallery-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.full-result__body-item__operator .full-result__body-item__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}

.full-result__body-item__operator .full-result__profile-item {
  border-radius: 12px;
  background: var(--white);
  padding: 8px;
}

.first-screen-section{
  padding-top:140px;
}

@media screen and (max-width: 1200px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media all and (max-width: 1200px) {
  .section {
    padding: 60px 0;
  }

.first-screen-section{
  padding-top:90px;
}
  .main-nav {
    display: none;
  }

  .slick_ctrl {
    display: none;
  }

  .burger {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-self: end;
    width: 20px;
    gap: 5px;
    cursor: pointer;
    transition: opacity var(--time);
  }

  .burger span {
    height: 3px;
    width: 100%;
    background: var(--drk);
    display: inline-block;
    border-radius: 5px;
  }

  .burger span:first-child {
    width: 14px;
  }

  .burger span:last-child {
    width: 17px;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    padding: 20px 20px 30px;
    left: -100%;
    top: 0;
    z-index: 900;
    opacity: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    background: rgba(235, 237, 240, 0.8);
    transition: left var(--time), opacity var(--time);
    overflow-y: auto;
  }

  .mobile-nav.open {
    left: 0;
    opacity: 1;
  }

  .mobile-nav > .btn {
    margin: auto;
    min-width: 170px;
  }

  .hero-title {
    font-size: 50px;
  }

  .oneline-section {
    padding-top: 70px;
    padding-bottom: 55px;
  }

  .oneline-track {
    height: 60px;
  }

  .oneline-group img {
    margin-right: 60px;
  }

  .section-title-row {
    margin-bottom: 55px;
  }

  .section-title {
    font-size: 40px;
  }

  .canfind-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .wyneed-black {
    padding: 60px 30px;
  }

  .wyneed-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .double-slider-box {
    flex-direction: column;
    gap: 50px;
  }

  .package-item {
    gap: 40px;
    padding: 30px;
    border-radius: 32px;
  }

  .package-item-left {
    flex-direction: column;
    padding: 0;
  }

  .package-item-right {
    padding: 20px 30px;
  }

  .package-item-descr {
    font-size: 16px;
  }

  .package-item-link {
    font-size: 16px;
  }

  .package-item-right__top {
    font-size: 16px;
  }

  .blog-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    margin-top: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .copyright {
    order: 2;
  }

  .legal-links {
    order: 1;
  }
}

@media (max-width: 1200px) {
  .step2-progress-tags-box {
    grid-template-columns: repeat(4, 1fr);
  }

  .step-result-top__left {
    gap: 12px;
  }

  .step-result-ava {
    width: 80px;
    height: 80px;
  }

  .step-result-warning__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .full-result__main {
    grid-template-columns: 1fr;
  }

  .full-result__body-item__gallery .full-result__body-item__content {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (max-width: 960px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media all and (max-width: 960px) {
  .card-slider,
  .vert-slider {
    max-width: 100%;
    width: 100%;
  }

  .looking-left {
    width: calc(100% - 20px);
  }

  .looking-right {
    width: calc(100% - 20px);
    margin-top: 40px;
  }
}

@media (max-width: 960px) {
  .full-result__body-item__publicacc .full-result__body-item__content {
    grid-template-columns: repeat(2, 1fr);
  }

  .full-result__body-item__operator .full-result__body-item__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 780px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media all and (max-width: 767px) {
  .section.first-screen-section{
    padding-top:90px;
  } 

  .hide-on-mobile {
    display: none !important;
  }

  .show-on-mobile {
    display: flex !important;
  }

  .section {
    padding: 40px 0;
  }

  .site-header__slick {
    grid-template-columns: auto auto;
  }

  .hero-section {
    height: 788px;
  }

  .hero-box {
    padding-top: 34px;
  }

  .hero-bg-block {
    width: 200%;
    height: 150%;
  }

  .hero-anima-block {
    width: 200%;
    height: 200%;
  }

  .authorized-tag {
    margin: 0 auto 30px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-description {
    margin: 20px auto 40px;
  }

  .main-search-tabs {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
  }

  .main-search-form {
    width: 100%;
  }

  .phone-field__input {
    padding: 0 20px 0 20px;
  }

  .single-field__input {
    border-radius: 15px;
  }

  .oneline-section {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .oneline-track {
    height: 60px;
  }

  .oneline-group img {
    margin-right: 40px;
  }

  .section-title-row {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .canfind-box {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px);
    padding: 0 20px;
  }

  .canfind-item {
    width: 340px;
    flex-shrink: 0;
  }

  .wyneed-black {
    padding: 40px 20px 20px;
    border-radius: 32px;
    background: var(--drk) url("../img/pattern2_mb.svg") 50% 50% no-repeat;
    background-size: cover;
  }

  .wyneed-box {
    grid-template-columns: repeat(1, 1fr);
  }

  .wyneed-item {
    height: auto;
  }

  .card-slider {
    height: 240px;
  }

  .cards-static {
    justify-content: flex-start;
  }

  .section-badge {
    margin-top: 20px;
  }

  .revs-box {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .look-list {
    margin-top: 40px;
  }

  .looking-black-box {
    height: 340px;
  }

  .black-icon-center {
    width: 160px;
    height: 160px;
  }

  .looking-orbit-1 {
    width: 386px;
    height: 386px;
  }

  .looking-orbit-2 {
    width: 240px;
    height: 240px;
  }

  .package-item {
    padding: 20px;
    flex-wrap: wrap;
    gap: 30px;
  }

  .package-item-left {
    width: 100%;
  }

  .package-item-right {
    padding: 20px;
    width: 100%;
    height: auto;
  }

  .faq-box-question {
    font-size: 16px;
    padding: 26px 20px;
  }

  .faq-box-answer-body {
    padding: 0 40px 26px 20px;
  }

  .blog-box {
    overflow-y: auto;
    display: flex;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
    padding: 0 20px;
  }

  .blog-item {
    width: 91%;
    min-width: 340px;
    flex-shrink: 0;
  }

  .section-controls {
    margin-top: 32px;
  }

  .site-footer {
    margin-top: 20px;
  }

  .footer-content {
    padding: 32px 0;
    flex-wrap: wrap;
    gap: 32px 20px;
  }

  .footer-content-item.footer-content-main {
    width: 100%;
  }

  .footer-content-last {
    width: 100%;
  }

  .footer-content-item.footer-content-col1 {
    width: calc(50% - 10px);
    align-items: flex-start;
  }

  .footer-content-item.footer-content-col2 {
    width: calc(50% - 10px);
  }
}

@media (max-width: 767px) {
@keyframes sectionTitleFloat1 {
    0% {
      transform: translate(-50%, -50%) translate(-50px, -50px) scale(1) rotate(0deg);
    }

    20% {
      transform: translate(-50%, -50%) translate(-64px, -61px) scale(1.08) rotate(-5deg);
    }

    40% {
      transform: translate(-50%, -50%) translate(-41px, -69px) scale(0.94) rotate(6deg);
    }

    60% {
      transform: translate(-50%, -50%) translate(-71px, -37px) scale(1.11) rotate(-7deg);
    }

    80% {
      transform: translate(-50%, -50%) translate(-35px, -54px) scale(0.95) rotate(4deg);
    }

    100% {
      transform: translate(-50%, -50%) translate(-58px, -65px) scale(1.07) rotate(-4deg);
    }
}

@keyframes sectionTitleFloat2 {
    0% {
      transform: translate(-50%, -50%) translate(50px, -50px) scale(1) rotate(0deg);
    }

    20% {
      transform: translate(-50%, -50%) translate(67px, -63px) scale(1.09) rotate(5deg);
    }

    40% {
      transform: translate(-50%, -50%) translate(39px, -71px) scale(0.93) rotate(-6deg);
    }

    60% {
      transform: translate(-50%, -50%) translate(73px, -36px) scale(1.12) rotate(7deg);
    }

    80% {
      transform: translate(-50%, -50%) translate(44px, -56px) scale(0.96) rotate(-4deg);
    }

    100% {
      transform: translate(-50%, -50%) translate(61px, -66px) scale(1.06) rotate(5deg);
    }
}

@keyframes sectionTitleFloat3 {
    0% {
      transform: translate(-50%, -50%) translate(50px, 50px) scale(1) rotate(0deg);
    }

    20% {
      transform: translate(-50%, -50%) translate(69px, 62px) scale(1.08) rotate(-6deg);
    }

    40% {
      transform: translate(-50%, -50%) translate(41px, 73px) scale(0.94) rotate(7deg);
    }

    60% {
      transform: translate(-50%, -50%) translate(74px, 35px) scale(1.1) rotate(-7deg);
    }

    80% {
      transform: translate(-50%, -50%) translate(46px, 59px) scale(0.95) rotate(4deg);
    }

    100% {
      transform: translate(-50%, -50%) translate(63px, 68px) scale(1.07) rotate(-5deg);
    }
}

@keyframes sectionTitleFloat4 {
    0% {
      transform: translate(-50%, -50%) translate(-50px, 50px) scale(1) rotate(0deg);
    }

    20% {
      transform: translate(-50%, -50%) translate(-65px, 64px) scale(1.09) rotate(5deg);
    }

    40% {
      transform: translate(-50%, -50%) translate(-39px, 72px) scale(0.93) rotate(-7deg);
    }

    60% {
      transform: translate(-50%, -50%) translate(-73px, 38px) scale(1.11) rotate(6deg);
    }

    80% {
      transform: translate(-50%, -50%) translate(-43px, 58px) scale(0.95) rotate(-4deg);
    }

    100% {
      transform: translate(-50%, -50%) translate(-60px, 67px) scale(1.06) rotate(6deg);
    }
}

@keyframes sectionTitleFloat5 {
    0% {
      transform: translate(-50%, 0) translate(0px, -45px) scale(1) rotate(0deg);
    }

    20% {
      transform: translate(-50%, 0) translate(13px, -62px) scale(1.1) rotate(-5deg);
    }

    40% {
      transform: translate(-50%, 0) translate(-12px, -73px) scale(0.93) rotate(6deg);
    }

    60% {
      transform: translate(-50%, 0) translate(17px, -36px) scale(1.12) rotate(-7deg);
    }

    80% {
      transform: translate(-50%, 0) translate(-15px, -55px) scale(0.95) rotate(4deg);
    }

    100% {
      transform: translate(-50%, 0) translate(9px, -66px) scale(1.07) rotate(-5deg);
    }
}

  .step1 {
    margin-top: 8px;
  }

  .steps-list {
    margin: 0 auto 40px;
  }

  .step2-progress-tags-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .step2 {
    margin-top: 8px;
  }

  .step3 {
    margin-top: 8px;
  }

  .step-result-top {
    flex-direction: column;
    gap: 24px;
    padding: 20px;
  }

  .step-result-data {
    gap: 7px;
  }

  .step-result-searched-input {
    margin-bottom: 0px;
    font-size: 15px;
    line-height: 120%;
  }

  .step-result-body {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .step-result-body__left {
    order: 2;
    padding: 10px;
  }

  .step-result-body__right {
    order: 1;
    padding: 20px;
  }

  .step-result-payments {
    margin-top: 24px;
  }

  .full-result__top {
    flex-direction: column;
    padding-top: 60px;
    gap: 24px;
  }

  .full-result__top .btn {
    order: 1;
    width: 100%;
  }

  .full-result__nav {
    order: 2;
  }

  .full-result__history {
    padding: 20px;
  }

  .full-result__body {
    padding: 20px;
  }

  .full-result-body__top .btn-download {
    width: 100%;
  }

  .full-result-body__top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .full-result__avatar {
    width: 80px;
    height: 80px;
  }

  .full-result__searched-input {
    font-size: 20px;
  }

  .full-result__body-item {
    padding: 20px;
  }

  .full-result__body-item__publicacc .full-result__body-item__content {
    grid-template-columns: 1fr;
  }

  .full-result__body-item__leaks .full-result__body-item__content {
    flex-wrap: wrap;
  }

  .full-result__body-item__leaks .full-result__body-item__content-answer {
    align-items: flex-start;
  }

  .full-result__body-item__leaks .full-result__body-item__content-answer-second {
    padding-left: 20px;
  }

  .full-result__body-item__gallery .full-result__body-item__content {
    grid-template-columns: repeat(3, 1fr);
  }

  .full-result__body-item__operator .full-result__body-item__content {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 560px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (hover: hover) {
  .faq-box-question:hover {
    opacity: 0.7;
  }
}