/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
* {
  box-sizing: border-box;
}

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

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Libraries, which is used in current project. */
/* Libraries, which is used in current project. */
/* Some styles, which is used for correct sprite-generation, vars, mixins and etc */
/* Please, do not edit with file! */
/* This file can be overwritten by update-project! */
/* Mixins, which are specific for current project */
/* Mixins and vars for sprite generation */
/* Scss for used fonts */
/* Vars, which are specific for current project */
/* Styles for UI-elements */
:root {
  --font-family: "DM Sans", sans-serif;
  --font-family-secondary: "Instrument sans", sans-serif;
  --color-main: #000;
  --color-gray: #464646;
  --color-accent: #7E3DFF;
  --color-secondary: #009D52;
  --color-gray-bg: #fcfcfc;
  --color-check: #10D458;
  --section-padding: 7.5rem 0;
  --transition: .3s ease-out;
}
@media (max-width: 992px) {
  :root {
    --section-padding: 4.5rem 0;
  }
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-main);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.title {
  margin: 0 0 1rem;
  padding: 0;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (max-width: 680px) {
  .title br {
    display: none;
  }
}
.title span {
  color: var(--color-accent);
}
.title_section {
  font-size: 3.625rem;
}
@media (max-width: 992px) {
  .title_section {
    font-size: 3rem;
  }
}
@media (max-width: 680px) {
  .title_section {
    font-size: 1.75rem;
  }
}
.title em {
  display: block;
  font-style: normal;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 680px) {
  .title em {
    display: inline;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    margin-right: 4px;
  }
}
.title.title_show em {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.title.title_show em:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.title.title_show em:nth-child(5) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.title_card {
  font-size: 2.75rem;
}
@media (max-width: 992px) {
  .title_card {
    font-size: 2.25rem;
  }
}
@media (max-width: 680px) {
  .title_card {
    font-size: 2rem;
  }
}
.title_medium {
  font-size: 2.125rem;
}
@media (max-width: 992px) {
  .title_medium {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .title_medium br {
    display: none;
  }
}
.title_small {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
  .title_small {
    font-size: 1.125rem;
  }
}
.title_middle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 728px;
}
@media (max-width: 992px) {
  .title_middle {
    max-width: 540px;
  }
}

h2 br {
  display: none;
}

.section-heading {
  margin: 0 0 1rem;
  display: -webkit-box;
  display: flex;
}
.section-heading_middle {
  -webkit-box-pack: center;
          justify-content: center;
}
.section-heading span {
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 0.688rem;
  font-weight: 700;
  height: 1.5rem;
  padding: 0 0.75rem;
  letter-spacing: 0.06em;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 4px;
  color: var(--color-secondary);
  background: #E8FBF2;
}

.section-text {
  max-width: 540px;
  color: var(--color-gray);
  font-family: var(--font-family-secondary);
}
.section-text_top {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}
@media (max-width: 1280px) {
  .section-text_top {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.section-text_middle {
  margin-left: auto;
  text-align: center;
  margin-right: auto;
}
@media (max-width: 1280px) {
  .section-text {
    font-size: 0.875rem;
  }
}
@media (max-width: 992px) {
  .section-text {
    max-width: 420px;
  }
}
@media (max-width: 680px) {
  .section-text br {
    display: none;
  }
}

.section-buttons {
  display: -webkit-box;
  display: flex;
  position: relative;
  z-index: 2;
  gap: 0.5rem;
}
.section-buttons_middle {
  -webkit-box-pack: center;
          justify-content: center;
}
@media (max-width: 680px) {
  .section-buttons {
    flex-wrap: wrap;
  }
  .section-buttons .button {
    width: 100%;
  }
}

.button {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  background: var(--color-accent);
  outline: none;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: 0;
  color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: var(--font-family);
  border-radius: 5px;
  height: 2.5rem;
  padding: 0 1.125rem;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  gap: 6px;
}
.button_empty {
  background: none;
  color: var(--color-accent);
}
.button_empty-white {
  background: none;
  color: #fff;
}
@media (min-width: 600px) {
  .button:hover {
    background: #8D53FF;
  }
  .button_empty:hover {
    color: var(--color-main);
    background: rgba(0, 0, 0, 0.05);
  }
  .button_empty-white:hover {
    background: none;
    color: var(--color-accent);
  }
}

/* Common styles for current project */
html {
  font-size: 16px;
}

html, body {
  height: 100%;
}

body {
  background: #fff;
  color: var(--color-main);
  font-size: 1rem;
  font-family: var(--font-family);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-display: swap;
}

.max-width {
  max-width: 1504px;
  padding: 0 48px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .max-width {
    padding: 0 20px;
  }
}

.section {
  padding: var(--section-padding);
  position: relative;
}
.section_overflow {
  overflow: hidden;
}
.section_no-padding {
  padding: 0;
}
.section_final {
  padding: 0;
  background: #15161A;
}
.section_hero {
  padding: 4rem 0 0;
}
@media (max-width: 680px) {
  .section_hero {
    padding-top: 2.5rem;
  }
}
.section_gray {
  background: var(--color-gray-bg);
}

.fadeIn {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.fadeIn:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.fadeIn:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.fadeIn:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.fadeIn:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.fadeIn:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.fadeIn:nth-child(7) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.fadeIn:nth-child(8) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.fadeIn:nth-child(9) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.fadeIn_active {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

/* Plugins, which is used in current project. */
/* Components, which is used in current project. */
/*! Header
----------------------------
 */
.header-b {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9;
  background: #fff;
  width: 100%;
  left: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.header-b_hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.header-b__grid {
  height: 5.75rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (max-width: 992px) {
  .header-b__grid {
    height: 3rem;
  }
}
.header-b__logo {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header-b__content {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media (max-width: 992px) {
  .header-b__content {
    display: block;
    top: 100%;
    left: -20px;
    background: #fff;
    width: calc(100% + 40px);
    z-index: 3;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    position: absolute;
    pointer-events: none;
    padding: 1.5rem 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header-b__content_show {
    opacity: 1;
    pointer-events: auto;
  }
}
.header-b__menu {
  display: -webkit-box;
  display: flex;
  gap: 2rem;
}
@media (max-width: 992px) {
  .header-b__menu {
    -webkit-box-align: center;
            align-items: center;
    margin: 0 0 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 1rem;
  }
}
.header-b__links {
  height: 5.75rem;
  display: -webkit-box;
  display: flex;
  font-weight: 600;
  letter-spacing: -0.03em;
  -webkit-box-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .header-b__links {
    height: initial;
    font-size: 1.125rem;
  }
}
.header-b__links:hover {
  color: var(--color-accent);
}
.header-b__actions {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 5.75rem;
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .header-b__actions {
    height: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 1rem;
  }
}
.header-b__themeforest {
  letter-spacing: -0.03em;
  text-transform: capitalize;
  text-align: center;
  font-weight: bold;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.header-b__themeforest:hover {
  color: var(--color-accent);
}
.header-b__themeforest img {
  margin: 0 2px 0 0;
}
.header-b__themeforest svg {
  margin: 0 0 0 6px;
}
.header-b__burger {
  display: none;
  position: relative;
  z-index: 10;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 26px;
}
@media (max-width: 992px) {
  .header-b__burger {
    display: -webkit-box;
    display: flex;
  }
}
.header-b__burger i {
  background: var(--color-main);
  width: 26px;
  display: block;
  height: 2px;
  margin: 3px 0;
  -webkit-transition: width 0.1s linear;
  transition: width 0.1s linear;
}
.header-b__burger i:first-child {
  top: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: relative;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}
.header-b__burger i:nth-child(2) {
  opacity: 1;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.header-b__burger i:nth-child(3) {
  position: relative;
  top: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}
.header-b__burger_active i {
  background: var(--color-accent);
}
.header-b__burger_active i:first-child {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}
.header-b__burger_active i:nth-child(2) {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.header-b__burger_active i:nth-child(3) {
  top: -8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}

/*! Footer
-------------------
 */
.an-hero__top {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 1rem;
  margin: 0 0 1.25rem;
}
.an-hero__top-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 6px;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.an-hero__top-item img {
  height: 24px;
}
.an-hero .title {
  max-width: 860px;
}
@media (max-width: 680px) {
  .an-hero .title {
    font-size: 2rem;
  }
}
.an-hero .section-text {
  margin-bottom: 1.125rem;
}
@media (max-width: 680px) {
  .an-hero .section-text {
    margin-bottom: 1rem;
  }
  .an-hero .section-buttons {
    flex-wrap: initial;
  }
}
.an-hero__fiches {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0 0;
}
.an-hero__fiches-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 4px;
  letter-spacing: -0.04em;
  font-weight: 600;
  font-size: 1.125rem;
  font-family: var(--font-family-secondary);
}
@media (max-width: 680px) {
  .an-hero__fiches {
    gap: 0rem;
    margin-top: 1.5rem;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .an-hero__fiches-item {
    gap: 6px;
    font-size: 0.875rem;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    text-align: center;
  }
}
.an-hero__screens {
  position: relative;
  overflow: hidden;
  height: 349px;
}
.an-hero__screens img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 1rem;
  min-width: 1800px;
}
@media (max-width: 992px) {
  .an-hero__screens {
    height: 280px;
  }
  .an-hero__screens img {
    min-width: 1200px;
  }
}
@media (max-width: 680px) {
  .an-hero__screens {
    height: 160px;
  }
  .an-hero__screens img {
    min-width: 800px;
  }
}

.an-demos {
  margin-top: 2.875rem;
}
.an-demos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.25rem;
  grid-row-gap: 3.5rem;
  margin: 0 0 5rem;
}
@media (max-width: 1280px) {
  .an-demos__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 0 0 3rem;
  }
}
.an-demos__item {
  display: block;
  text-align: center;
}
.an-demos__item_info {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
}
@media (max-width: 680px) {
  .an-demos__item_info {
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
  }
}
.an-demos__pic {
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  margin: 0 0 1rem;
  display: block;
  overflow: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 680px) {
  .an-demos__pic {
    margin: 0 0 0.5rem;
  }
}
.an-demos__title {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -0.04em;
}
.an-demos__title span {
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.an-demos__title span svg {
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  -webkit-transition: left var(--transition);
  transition: left var(--transition);
  opacity: 0;
}
.an-demos__item:hover .an-demos__pic {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.an-demos__item:hover .an-demos__title {
  color: var(--color-accent);
}
.an-demos__item:hover .an-demos__title svg {
  opacity: 1;
  left: calc(100% + 6px);
}
.an-demos__info {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
}
.an-demos__info-count {
  color: var(--color-accent);
  font-weight: bold;
  line-height: 0.75;
  letter-spacing: -0.05em;
  font-size: 8.125rem;
  margin: 0 0 1rem;
}
@media (max-width: 1280px) {
  .an-demos__info-count {
    font-size: 5.5rem;
  }
}
.an-demos__info-title {
  color: var(--color-accent);
  font-weight: bold;
  line-height: 1.1;
  margin: 0 0 6px;
  font-size: 2.125rem;
  letter-spacing: -0.04em;
}
.an-demos__info-text {
  color: var(--color-gray);
  font-family: var(--font-family-secondary);
  margin: 0 0 0.75rem;
  max-width: 280px;
}
.an-demos__info-include {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.04em;
}
.an-demos__end .title {
  max-width: 528px;
}
.an-demos__end .section-text {
  max-width: 450px;
}
.an-demos__fiches {
  display: -webkit-box;
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 680px) {
  .an-demos__fiches {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.an-demos__fiches-item {
  -webkit-box-flex: 1;
          flex: 1;
  padding-left: 84px;
  position: relative;
  font-size: 0.975rem;
  color: var(--color-gray);
  font-family: var(--font-family-secondary);
}
@media (max-width: 1280px) {
  .an-demos__fiches-item {
    padding: 0;
  }
}
@media (max-width: 680px) {
  .an-demos__fiches-item {
    font-size: 0.875rem;
  }
}
.an-demos__fiches-item strong {
  display: block;
  margin: 0 0 0.25rem;
  font-weight: 600;
  line-height: 1.2;
  font-size: 1.375rem;
  color: #000;
  letter-spacing: -0.04em;
}
@media (max-width: 680px) {
  .an-demos__fiches-item strong {
    font-size: 1.125rem;
  }
}
.an-demos__fiches-item span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(126, 61, 255, 0.08);
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1280px) {
  .an-demos__fiches-item span {
    -webkit-transform: none;
            transform: none;
    position: initial;
    margin: 0 0 1rem;
  }
}

.an-faq {
  max-width: 930px;
  margin: 0 auto;
  margin-top: 3.5rem;
}
@media (max-width: 680px) {
  .an-faq {
    margin-top: 2.5rem;
  }
}
.an-faq__item {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1.25rem 0;
}
@media (max-width: 680px) {
  .an-faq__item {
    padding: 1rem 0;
  }
}
.an-faq__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.an-faq__label {
  padding: 0 4rem 0 0;
  letter-spacing: -0.04em;
  font-size: 1.375rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 600;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}
@media (max-width: 680px) {
  .an-faq__label {
    font-size: 1rem;
  }
}
.an-faq__label:hover {
  color: var(--color-accent);
}
.an-faq__label span {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 680px) {
  .an-faq__label span {
    top: -2px;
  }
  .an-faq__label span svg {
    width: 28px;
    height: auto;
  }
}
.an-faq__label span svg:last-child {
  display: none;
}
.an-faq__item_active .an-faq__label {
  color: var(--color-accent);
}
.an-faq__item_active .an-faq__label span svg {
  display: block;
}
.an-faq__item_active .an-faq__label span svg:first-child {
  display: none;
}
.an-faq__text {
  max-width: 530px;
  color: var(--color-gray);
  font-family: var(--font-family-secondary);
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
}
@media (max-width: 680px) {
  .an-faq__text {
    font-size: 0.875rem;
  }
}
.an-faq__item_active .an-faq__text {
  max-height: 1000px;
}

.an-reviews__author {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0 0 1.25rem;
  gap: 4px;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.an-reviews .title {
  max-width: 980px;
}
.an-reviews .section-text_top {
  margin-bottom: 1.25rem;
}
.an-reviews__image {
  position: relative;
  margin: 3.5rem 0 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 0 1rem;
}
.an-reviews__image:before {
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, from(#fcfcfc), to(rgba(252, 252, 252, 0)));
  background: linear-gradient(to top, #fcfcfc, rgba(252, 252, 252, 0));
}
.an-reviews__rate {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
.an-reviews__rate span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  background: #10D458;
  height: 42px;
  border-radius: 100px;
  padding: 0 1.25rem;
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: -0.04em;
  font-weight: 600;
}
@media (max-width: 680px) {
  .an-reviews__rate span {
    padding: 0 1rem;
    height: 32px;
    font-size: 1rem;
  }
}

.an-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.25rem;
  margin: 0 0 5rem;
}
@media (max-width: 992px) {
  .an-features__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
@media (max-width: 680px) {
  .an-features__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.an-features__card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8E8E8;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.an-features__card:nth-child(5) {
  gap: 7px;
}
.an-features__card .section-text {
  max-width: 370px;
}
.an-features__about {
  padding: 2rem 2rem 0;
}
@media (max-width: 1280px) {
  .an-features__about {
    padding: 1.5rem 1.5rem 0;
  }
}
@media (max-width: 992px) {
  .an-features__about {
    padding: 1.25rem 1.25rem 0;
  }
}
.an-features__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  grid-row-gap: 3.5rem;
}
@media (max-width: 1280px) {
  .an-features__list {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
@media (max-width: 680px) {
  .an-features__list {
    gap: 2rem;
  }
}
.an-features__icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  background: rgba(126, 61, 255, 0.08);
  width: 4rem;
  height: 4rem;
  margin: 0 0 1.25rem;
  border-radius: 8px;
}
@media (max-width: 680px) {
  .an-features__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 6px;
  }
  .an-features__icon svg {
    height: 24px;
    width: auto;
  }
}
.an-features__item .section-text {
  max-width: 400px;
}
.an-features__end {
  max-width: 528px;
  margin: 0 auto 3.5rem;
}
.an-features__end .section-text {
  max-width: 450px;
}

.an-final {
  color: #fff;
  position: relative;
  overflow: hidden;
}
.an-final__about {
  max-width: 660px;
  padding: 5.25rem 0;
}
.an-final__about .title {
  margin: 0 0 2.5rem;
}
@media (max-width: 1280px) {
  .an-final__about .title {
    font-size: 3rem;
  }
}
@media (max-width: 680px) {
  .an-final__about .title {
    font-size: 2rem;
  }
}
@media (max-width: 992px) {
  .an-final__about {
    padding: 6rem 0 1.5rem;
    max-width: initial;
    text-align: center;
  }
}
@media (max-width: 680px) {
  .an-final__about {
    padding: 3rem 0 1.5rem;
  }
}
.an-final__logo {
  margin: 0 0 5rem;
}
@media (max-width: 992px) {
  .an-final__logo {
    margin: 0 auto 5rem;
    display: table;
  }
}
@media (max-width: 680px) {
  .an-final__logo {
    margin: 0 auto 3rem;
  }
}
.an-final__author {
  margin: 0 0 1rem;
  position: relative;
  padding-left: 60px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.04em;
}
@media (max-width: 992px) {
  .an-final__author {
    margin: 0 auto 1rem;
    display: table;
    text-align: left;
  }
}
.an-final__author span {
  margin: 4px 0 0;
  display: block;
  opacity: 0.7;
}
.an-final__author img {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.an-final__actions {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin: 0 0 5rem;
  gap: 1rem;
}
@media (max-width: 992px) {
  .an-final__actions {
    -webkit-box-pack: center;
            justify-content: center;
    margin: 0 0 3rem;
  }
}
.an-final__note {
  opacity: 0.7;
  max-width: 210px;
  font-family: var(--font-family-secondary);
}
@media (max-width: 992px) {
  .an-final__note {
    font-size: 0.875rem;
    text-align: left;
    max-width: 180px;
  }
}
.an-final__fiches {
  display: -webkit-box;
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 992px) {
  .an-final__fiches {
    gap: 2rem;
    -webkit-box-pack: center;
            justify-content: center;
  }
}
@media (max-width: 680px) {
  .an-final__fiches {
    gap: 1rem;
    -webkit-box-pack: center;
            justify-content: center;
  }
}
.an-final__fiches-item {
  font-weight: 500;
  line-height: 1.2;
  width: 140px;
}
@media (max-width: 992px) {
  .an-final__fiches-item {
    width: 120px;
    font-size: 0.875rem;
  }
}
@media (max-width: 680px) {
  .an-final__fiches-item {
    width: initial;
    -webkit-box-flex: 1;
            flex: auto;
    font-size: 0.75rem;
  }
}
.an-final__fiches-item strong {
  display: block;
  margin: 0 0 8px;
  letter-spacing: -0.04em;
  font-weight: 600;
  line-height: 1.1;
  font-size: 2.75rem;
}
@media (max-width: 992px) {
  .an-final__fiches-item strong {
    font-size: 2.125rem;
  }
}
@media (max-width: 680px) {
  .an-final__fiches-item strong {
    margin: 0 0 4px;
  }
}
.an-final__pic {
  position: absolute;
  right: 7.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1600px) {
  .an-final__pic {
    right: -6rem;
  }
}
@media (max-width: 1280px) {
  .an-final__pic {
    right: -25rem;
  }
}
@media (max-width: 992px) {
  .an-final__pic {
    -webkit-transform: none;
            transform: none;
    position: relative;
    top: 0;
    height: 420px;
    right: 0;
  }
  .an-final__pic img {
    position: absolute;
    right: -3rem;
    top: 0;
    min-width: 110%;
  }
}
@media (max-width: 680px) {
  .an-final__pic {
    height: 280px;
  }
  .an-final__pic img {
    min-width: 50%;
  }
}

.an-key__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.25rem;
}
@media (max-width: 1280px) {
  .an-key__list {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
@media (max-width: 992px) {
  .an-key__list {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
@media (max-width: 680px) {
  .an-key__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.an-key__list_x2 {
  margin: 0 0 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(580px, 1fr));
}
@media (max-width: 1280px) {
  .an-key__list_x2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}
@media (max-width: 992px) {
  .an-key__list_x2 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
.an-key__item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8E8E8;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.an-key__item .section-text {
  max-width: 350px;
}
.an-key__item_double .section-text {
  margin: 0 0 0.75rem;
}
.an-key__about {
  padding: 2rem 2rem 0;
}
@media (max-width: 1280px) {
  .an-key__about {
    padding: 1.5rem 1.5rem 0;
  }
}
@media (max-width: 992px) {
  .an-key__about {
    padding: 1.25rem 1.25rem 0;
  }
}
.an-key__item_double .an-key__about {
  padding: 2.5rem 2.5rem 0;
}
@media (max-width: 1280px) {
  .an-key__item_double .an-key__about {
    padding: 2rem 2rem 0;
  }
}
@media (max-width: 992px) {
  .an-key__item_double .an-key__about {
    padding: 1.5rem 1.5rem 0;
  }
}
.an-key__item_double:first-child .an-key__about {
  padding: 2.5rem 2.5rem 0;
}
@media (max-width: 1280px) {
  .an-key__item_double:first-child .an-key__about {
    padding: 2rem 2rem 0;
  }
}
@media (max-width: 992px) {
  .an-key__item_double:first-child .an-key__about {
    padding: 1.5rem 1.5rem 0;
  }
}
.an-key__pic {
  position: relative;
}
.an-key__pic span {
  position: absolute;
  right: 1rem;
  bottom: calc(100% - 5rem);
}
.an-key__pic span img {
  max-width: initial;
  height: 112px;
}

.an-perf__grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 4rem;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .an-perf__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 3rem;
  }
}
.an-perf__about {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 640px;
}
.an-perf__about .section-text {
  margin: 0 0 2.5rem;
  max-width: 542px;
}
@media (max-width: 680px) {
  .an-perf__about .section-text {
    margin: 0 0 1.5rem;
  }
}
.an-perf__fiches {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 2rem;
}
.an-perf__speed {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.an-perf__speed-column {
  position: relative;
}
.an-perf__speed-column:not(:first-child) {
  margin-left: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 1280px) {
  .an-perf__speed-column:not(:first-child) {
    margin-left: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media (max-width: 680px) {
  .an-perf__speed-column:not(:first-child) {
    margin-left: 1.25rem;
    padding-left: 1.25rem;
  }
}
.an-perf__speed-column:not(:first-child):before {
  width: 2px;
  height: 56px;
  background: #e8e8e8;
  position: absolute;
  left: 0;
  content: "";
  top: 45px;
}
@media (max-width: 1280px) {
  .an-perf__speed-column:not(:first-child):before {
    top: 25px;
  }
}
@media (max-width: 680px) {
  .an-perf__speed-column:not(:first-child):before {
    top: 15px;
    height: 34px;
    width: 1px;
  }
}

.speed-value {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  gap: 12px;
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-size: 1.375rem;
  line-height: 1.2;
}
@media (max-width: 1280px) {
  .speed-value {
    font-size: 1rem;
  }
}
@media (max-width: 680px) {
  .speed-value {
    font-size: 0.875rem;
  }
}
.speed-value span {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  font-size: 3.313rem;
  font-family: "Roboto Mono", sans-serif;
  font-weight: 400;
  letter-spacing: -0.12em;
  padding: 0 2px 0 0;
}
@media (max-width: 1280px) {
  .speed-value span {
    width: 100px;
    height: 100px;
    font-size: 2.75rem;
  }
}
@media (max-width: 680px) {
  .speed-value span {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }
}
.speed-value span em {
  font-style: normal;
}
.speed-value span em.number {
  position: relative;
  z-index: 4;
  color: #248438;
}
.speed-value span svg {
  top: 0;
  left: 0;
  position: absolute;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}
.speed-value span svg circle {
  fill: #E6FAEF;
  stroke-width: 4px;
  stroke: #58C970;
}

.an-template__main {
  margin: 3.5rem 0 7.5rem;
  position: relative;
}
@media (max-width: 992px) {
  .an-template__main {
    margin-bottom: 4rem;
  }
}
@media (max-width: 680px) {
  .an-template__main {
    margin: 2rem 0 3.5rem;
  }
}
.an-template__main:before {
  z-index: 2;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  position: absolute;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}
@media (max-width: 992px) {
  .an-template__main:before {
    width: 5%;
  }
}
.an-template__main:after {
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  z-index: 2;
  position: absolute;
  content: "";
  background: -webkit-gradient(linear, right top, left top, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}
@media (max-width: 992px) {
  .an-template__main:after {
    width: 5%;
  }
}
.an-template__scroller {
  display: -webkit-box;
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  overflow: hidden;
}
.an-template__scroller:last-child {
  margin-top: 1.5rem;
  -webkit-box-pack: end;
          justify-content: flex-end;
}
@media (max-width: 992px) {
  .an-template__scroller:last-child {
    margin-top: 1rem;
  }
}
.an-template__list {
  flex-shrink: 0;
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .an-template__list img {
    height: 160px;
  }
}
.an-template__list_top {
  -webkit-animation: floatTemplateTop 150s linear infinite;
          animation: floatTemplateTop 150s linear infinite;
}
.an-template__list_bottom {
  -webkit-animation: floatTemplateBottom 150s linear infinite;
          animation: floatTemplateBottom 150s linear infinite;
}
@-webkit-keyframes floatTemplateTop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 1.5rem));
            transform: translateX(calc(-100% - 1.5rem));
  }
}
@keyframes floatTemplateTop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 1.5rem));
            transform: translateX(calc(-100% - 1.5rem));
  }
}
@-webkit-keyframes floatTemplateBottom {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(100% + 1.5rem));
            transform: translateX(calc(100% + 1.5rem));
  }
}
@keyframes floatTemplateBottom {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(100% + 1.5rem));
            transform: translateX(calc(100% + 1.5rem));
  }
}
.an-template__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
@media (max-width: 1280px) {
  .an-template__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
@media (max-width: 992px) {
  .an-template__grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
@media (max-width: 680px) {
  .an-template__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.an-template__grid_x2 {
  margin: 0 0 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
}
@media (max-width: 1280px) {
  .an-template__grid_x2 {
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  }
}
@media (max-width: 992px) {
  .an-template__grid_x2 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
@media (max-width: 680px) {
  .an-template__grid_x2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.an-template__item {
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.an-template__about {
  padding: 2rem 2rem 0;
}
@media (max-width: 1280px) {
  .an-template__about {
    padding: 1.5rem 1.5rem 0;
  }
}
@media (max-width: 992px) {
  .an-template__about {
    padding: 1.25rem 1.25rem 0;
  }
}
.an-template__about .section-text {
  max-width: 370px;
}
.an-template__grid_x2 .an-template__about {
  padding: 2.5rem 2.5rem 0;
}
@media (max-width: 1280px) {
  .an-template__grid_x2 .an-template__about {
    padding: 2rem 2rem 0;
  }
}
@media (max-width: 992px) {
  .an-template__grid_x2 .an-template__about {
    padding: 1.5rem 1.5rem 0;
  }
}
.an-template__grid_x2 .an-template__about .section-text {
  max-width: 404px;
}
.an-template__end {
  margin: 5rem 0 0;
}
@media (max-width: 992px) {
  .an-template__end {
    margin: 3rem 0 0;
  }
}
.an-template__end .title {
  margin-bottom: 12px;
}
.an-template__end .section-text {
  font-size: 1.125rem;
  max-width: 450px;
}
@media (max-width: 992px) {
  .an-template__end .section-text {
    font-size: 1rem;
    max-width: 380px;
  }
}

.an-use__screen {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  position: relative;
  padding: 3.5rem 0 0;
  margin: -3.5rem 0 5.938rem;
  overflow: hidden;
}
@media (max-width: 992px) {
  .an-use__screen {
    padding-right: 20px;
  }
}
@media (max-width: 680px) {
  .an-use__screen {
    padding-right: 10px;
    margin-bottom: 2.5rem;
    border: 0;
    padding-bottom: 0;
  }
}
.an-use__screen-mobile {
  display: none;
}
@media (max-width: 1600px) {
  .an-use__screen-tablet {
    max-width: 800px;
  }
}
@media (max-width: 992px) {
  .an-use__screen-tablet {
    display: none;
  }
  .an-use__screen-mobile {
    display: block;
  }
}
.an-use__screen-ill {
  position: absolute;
  left: 50%;
  top: 50%;
}
@media (max-width: 992px) {
  .an-use__screen-ill {
    display: none;
  }
}
.an-use__screen-ill img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.an-use__screen-ill_1 {
  -webkit-transform: translate(-750px, -100px);
          transform: translate(-750px, -100px);
}
.an-use__screen-ill_1 img {
  height: 83px;
}
@media (max-width: 1600px) {
  .an-use__screen-ill_1 {
    -webkit-transform: translate(-500px, -100px);
            transform: translate(-500px, -100px);
  }
  .an-use__screen-ill_1 img {
    height: 52px;
  }
}
.an-use__screen-ill_2 {
  -webkit-transform: translate(-820px, 180px);
          transform: translate(-820px, 180px);
}
.an-use__screen-ill_2 img {
  height: 260px;
}
@media (max-width: 1600px) {
  .an-use__screen-ill_2 {
    -webkit-transform: translate(-560px, 150px);
            transform: translate(-560px, 150px);
  }
  .an-use__screen-ill_2 img {
    height: 180px;
  }
}
.an-use__screen-ill_3 {
  -webkit-transform: translate(-650px, -230px);
          transform: translate(-650px, -230px);
}
.an-use__screen-ill_3 img {
  height: 655px;
}
@media (max-width: 1600px) {
  .an-use__screen-ill_3 {
    -webkit-transform: translate(-450px, -100px);
            transform: translate(-450px, -100px);
  }
  .an-use__screen-ill_3 img {
    height: 420px;
  }
}
.an-use__screen-ill_4 {
  -webkit-transform: translate(380px, 220px);
          transform: translate(380px, 220px);
}
.an-use__screen-ill_4 img {
  height: 128px;
}
@media (max-width: 1600px) {
  .an-use__screen-ill_4 {
    -webkit-transform: translate(260px, 240px);
            transform: translate(260px, 240px);
  }
  .an-use__screen-ill_4 img {
    height: 76px;
  }
}
.an-use__screen-ill_5 {
  -webkit-transform: translate(480px, -110px);
          transform: translate(480px, -110px);
}
.an-use__screen-ill_5 img {
  height: 77px;
}
@media (max-width: 1600px) {
  .an-use__screen-ill_5 {
    -webkit-transform: translate(340px, 0px);
            transform: translate(340px, 0px);
  }
  .an-use__screen-ill_5 img {
    height: 50px;
  }
}
.an-use__screen-ill_6 {
  -webkit-transform: translate(480px, 50px);
          transform: translate(480px, 50px);
}
.an-use__screen-ill_6 img {
  height: 239px;
}
@media (max-width: 1600px) {
  .an-use__screen-ill_6 {
    -webkit-transform: translate(340px, 120px);
            transform: translate(340px, 120px);
  }
  .an-use__screen-ill_6 img {
    height: 170px;
  }
}
.an-use__row {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8E8E8;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 680px) {
  .an-use__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 0;
  }
}
.an-use__row-about {
  padding: 2.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start;
}
@media (max-width: 992px) {
  .an-use__row-about {
    padding: 1.5rem;
  }
}
@media (max-width: 680px) {
  .an-use__row-about {
    padding-bottom: 0;
  }
}
.an-use__row-about .title {
  max-width: 454px;
}
.an-use__row-about .section-text {
  max-width: 350px;
}
.an-use__row-about img {
  margin: 0 0 auto;
}
@media (max-width: 992px) {
  .an-use__row-about img {
    height: 30px;
  }
}
@media (max-width: 680px) {
  .an-use__row-about img {
    margin: 0 0 2.5rem;
  }
}
.an-use__row-pic {
  padding: 2.5rem 2.5rem 0 0;
}
@media (max-width: 992px) {
  .an-use__row-pic {
    padding: 1.5rem 1.5rem 0 0;
  }
}
.an-use__row-pic img {
  -webkit-filter: drop-shadow(0 4px 40px rgba(13, 0, 85, 0.12));
          filter: drop-shadow(0 4px 40px rgba(13, 0, 85, 0.12));
}
.an-use__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.25rem;
}
@media (max-width: 1280px) {
  .an-use__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
@media (max-width: 992px) {
  .an-use__grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
@media (max-width: 680px) {
  .an-use__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.an-use__item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8E8E8;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.an-use__item img {
  -webkit-filter: drop-shadow(0 4px 40px rgba(13, 0, 85, 0.12));
          filter: drop-shadow(0 4px 40px rgba(13, 0, 85, 0.12));
}
.an-use__about {
  padding: 2rem 2rem 1rem;
}
@media (max-width: 1280px) {
  .an-use__about {
    padding: 1.5rem 1.5rem 1rem;
  }
}
@media (max-width: 992px) {
  .an-use__about {
    padding: 1rem 1rem 0.875rem;
  }
}
.an-use__about .section-text {
  max-width: 380px;
}
.an-use__end {
  margin: 5rem 0 0;
}
@media (max-width: 992px) {
  .an-use__end {
    margin: 3rem 0 0;
  }
}
.an-use__end .title {
  max-width: 510px;
}
.an-use__end .section-text {
  font-size: 1.125rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 992px) {
  .an-use__end .section-text {
    font-size: 1rem;
  }
}
@media (max-width: 680px) {
  .an-use__end .section-text {
    font-size: 0.875rem;
  }
}
.an-use__fiches {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 2rem;
}
.an-use__fiches-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 4px;
  letter-spacing: -0.04em;
  font-size: 1.125rem;
  font-weight: 600;
}
@media (max-width: 680px) {
  .an-use__fiches-item {
    font-size: 1rem;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 6px;
    line-height: 1.2;
  }
}

.an-banner {
  background: #15161a;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .an-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}
.an-banner__about {
  padding: 4rem;
}
@media (max-width: 1280px) {
  .an-banner__about {
    padding: 2.5rem;
  }
}
@media (max-width: 992px) {
  .an-banner__about {
    padding: 3rem 2rem 0;
    text-align: center;
  }
}
@media (max-width: 680px) {
  .an-banner__about {
    padding: 2rem 1.5rem 0;
    text-align: center;
  }
}
.an-banner__logo {
  margin: 0 0 3.75rem;
}
@media (max-width: 992px) {
  .an-banner__logo {
    margin: 0 auto 2.5rem;
    display: table;
  }
}
.an-banner__author {
  margin: 0 0 1rem;
  position: relative;
  padding-left: 60px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.04em;
}
@media (max-width: 992px) {
  .an-banner__author {
    margin: 0 auto 1rem;
    display: table;
    text-align: left;
  }
}
.an-banner__author span {
  margin: 4px 0 0;
  display: block;
  opacity: 0.7;
}
.an-banner__author img {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.an-banner__title {
  margin: 0 0 2rem;
  max-width: 450px;
  letter-spacing: -0.04em;
  font-weight: 600;
  line-height: 1.1;
  font-size: 2.75rem;
}
@media (max-width: 1280px) {
  .an-banner__title {
    font-size: 2rem;
  }
}
@media (max-width: 1280px) and (max-width: 992px) {
  .an-banner__title {
    margin-left: auto;
    margin-right: auto;
  }
}
.an-banner__buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .an-banner__buttons {
    -webkit-box-pack: center;
            justify-content: center;
  }
}
.an-banner__note {
  margin: 1rem 0 0;
  opacity: 0.7;
}
@media (max-width: 1280px) {
  .an-banner__note {
    font-size: 0.875rem;
  }
}
.an-banner__pic {
  margin: auto 0 0;
}
@media (max-width: 992px) {
  .an-banner__pic {
    margin: 0 0 0 auto;
    position: relative;
    height: 420px;
  }
  .an-banner__pic img {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 700px;
  }
}
@media (max-width: 680px) {
  .an-banner__pic {
    height: 240px;
  }
  .an-banner__pic img {
    min-width: 320px;
  }
}