/*! 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: "Instrument sans", sans-serif;
  --font-family-secondary: "Figtree", sans-serif;
  --color-main: #000;
  --color-gray: #696683;
  --color-orange: #FF5D29;
  --color-purple: #525FEE;
  --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 0.875rem;
  padding: 0;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
@media (max-width: 680px) {
  .title br {
    display: none;
  }
}
.title span {
  color: var(--color-orange);
}
.title_section {
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 992px) {
  .title_section {
    font-size: 2.25rem;
  }
}
@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.375rem;
}
@media (max-width: 992px) {
  .title_medium {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .title_medium br {
    display: none;
  }
}
.title_small {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
  .title_small {
    font-size: 1rem;
  }
}
.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;
  -webkit-box-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-purple);
  font-family: var(--font-family-secondary);
}
.section-heading_middle {
  -webkit-box-pack: center;
          justify-content: center;
}
.section-heading span {
  font-size: 1.5rem;
}

.section-text {
  max-width: 400px;
  color: var(--color-gray);
  font-family: var(--font-family-secondary);
  font-size: 1.125rem;
}
@media (max-width: 992px) {
  .section-text {
    font-size: 1rem;
  }
}
.section-text_medium {
  font-size: 1.375rem;
  max-width: 540px;
}
@media (max-width: 992px) {
  .section-text_medium {
    font-size: 1rem;
  }
}
.section-text_middle {
  margin-left: auto;
  text-align: center;
  margin-right: auto;
}
@media (max-width: 680px) {
  .section-text {
    font-size: 0.875rem;
  }
  .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 {
    -webkit-box-pack: center;
            justify-content: center;
  }
}

.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-orange);
  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: 4px;
  height: 3rem;
  padding: 0 0.5rem 0 1.125rem;
  font-size: 1.25rem;
  position: relative;
  font-weight: bold;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  overflow: hidden;
}
.button:before {
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: #e84410;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.button svg:last-child {
  display: none;
}
.button span {
  display: -webkit-box;
  display: flex;
  gap: 2px;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.button_empty {
  background: none;
  color: var(--color-orange);
}
.button_empty:before {
  display: none;
}
.button_light {
  background: #fff4e6;
  color: var(--color-orange);
}
.button_none {
  background: none;
  color: #fff;
}
.button_none:before {
  display: none;
}
@media (max-width: 680px) {
  .button {
    height: 2.5rem;
    font-size: 1rem;
    padding: 0 0.5rem 0 0.875rem;
  }
}
@media (min-width: 600px) {
  .button:hover:before {
    -webkit-transform: none;
            transform: none;
  }
  .button:hover svg {
    display: none;
  }
  .button:hover svg:last-child {
    display: block;
  }
}
.button_none:hover {
  background: none;
  color: #fff;
}
.button_light:hover {
  color: #fff;
}

/* 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: 1336px;
  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_hero {
  padding: 0 0 3.75rem;
}
.section_overflow {
  overflow: hidden;
}
.section_no-padding {
  padding: 0;
}
.section_features, .section_perf {
  background: -webkit-gradient(linear, left top, left bottom, from(#f9f9ff), to(#f7f7ff));
  background: linear-gradient(180deg, #f9f9ff 0%, #f7f7ff 100%);
}
.section_final {
  background: -webkit-gradient(linear, left top, left bottom, from(#f9f9ff), to(#f1f1ff));
  background: linear-gradient(180deg, #f9f9ff 0%, #f1f1ff 100%);
  padding: 0;
  overflow: hidden;
}
.section_bottom-stroke:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(53.85%, #cbdcf5), to(#fff));
  background: linear-gradient(90deg, #fff 0%, #cbdcf5 53.85%, #fff 100%);
  left: 0;
  bottom: 0;
}
.section_runline {
  padding: 0 0 2%;
  margin: -5% 0 -4%;
}
@media (max-width: 680px) {
  .section_runline {
    padding: 0 0 2rem;
    margin: -8% 0 -5%;
  }
}
.section_gradient {
  background: url("../img/content/gradient-bg.png") no-repeat 50% 50%;
}
@media (max-width: 992px) {
  .section_gradient {
    background-position: 50% 100%;
  }
}
.section_banner {
  padding: 4.75rem 0 14.875rem;
  overflow: hidden;
}
@media (max-width: 680px) {
  .section_banner {
    padding: 0 0 5rem;
  }
}
.section__head {
  margin: 0 0 2.5rem;
  max-width: 650px;
}
.section__head_middle {
  display: -webkit-box;
  display: flex;
  max-width: 600px;
  -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;
  margin-left: auto;
  margin-right: auto;
}

.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. */
.sg-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9;
  background: #fff;
  width: 100%;
  left: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.sg-header_shadow:not(.sg-header_hidden) {
  box-shadow: 0 20px 40px 0 rgba(52, 22, 170, 0.06);
}
.sg-header_hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.sg-header__grid {
  height: 5rem;
  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) {
  .sg-header__grid {
    height: 3rem;
  }
}
.sg-header__logo {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 992px) {
  .sg-header__logo img {
    height: 2.5rem;
  }
}
.sg-header__content {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media (max-width: 992px) {
  .sg-header__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);
  }
  .sg-header__content_show {
    opacity: 1;
    pointer-events: auto;
  }
}
.sg-header__menu {
  display: -webkit-box;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .sg-header__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;
  }
}
.sg-header__links {
  height: 5rem;
  display: -webkit-box;
  display: flex;
  font-weight: 600;
  letter-spacing: -0.02em;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1.125rem;
}
@media (max-width: 992px) {
  .sg-header__links {
    font-size: 1.25rem;
    height: initial;
  }
}
@media (max-width: 680px) {
  .sg-header__links {
    font-size: 1.125rem;
  }
}
.sg-header__links:hover {
  color: var(--color-orange);
}
.sg-header__actions {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 5rem;
  gap: 1.25rem;
}
.sg-header__actions .button {
  height: 2.25rem;
  font-size: 1rem;
  padding: 0 0.5rem 0 0.875rem;
}
@media (max-width: 992px) {
  .sg-header__actions {
    height: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 1rem;
  }
}
.sg-header__themeforest {
  letter-spacing: -0.02em;
  text-transform: capitalize;
  text-align: center;
  font-weight: bold;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.sg-header__themeforest:hover {
  color: var(--color-orange);
}
.sg-header__themeforest img {
  margin: 0 8px 0 0;
}
.sg-header__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) {
  .sg-header__burger {
    display: -webkit-box;
    display: flex;
  }
}
.sg-header__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;
}
.sg-header__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;
}
.sg-header__burger i:nth-child(2) {
  opacity: 1;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.sg-header__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;
}
.sg-header__burger_active i {
  background: var(--color-orange);
}
.sg-header__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;
}
.sg-header__burger_active i:nth-child(2) {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.sg-header__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
-------------------
 */
.sg-hero {
  padding: 0 2rem;
}
@media (max-width: 992px) {
  .sg-hero {
    padding: 0 0.5rem;
  }
}
.sg-hero__img {
  position: absolute;
  pointer-events: none;
}
@media (max-width: 992px) {
  .sg-hero__img {
    display: none;
  }
}
.sg-hero__img img {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  will-change: transform;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.sg-hero__img_left-top {
  left: 0;
  top: 10%;
}
@media (max-width: 1600px) {
  .sg-hero__img_left-top {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
}
@media (max-width: 1444px) {
  .sg-hero__img_left-top {
    -webkit-transform: translateX(-150px);
            transform: translateX(-150px);
  }
}
@media (max-width: 1280px) {
  .sg-hero__img_left-top {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
}
.sg-hero__img_left-btm {
  left: 0;
  top: 42%;
}
@media (max-width: 1600px) {
  .sg-hero__img_left-btm {
    -webkit-transform: translateX(-150px);
            transform: translateX(-150px);
  }
}
@media (max-width: 1444px) {
  .sg-hero__img_left-btm {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
}
@media (max-width: 1280px) {
  .sg-hero__img_left-btm {
    -webkit-transform: translateX(-250px);
            transform: translateX(-250px);
  }
}
.sg-hero__img_right-top {
  right: 0;
  top: 14%;
}
@media (max-width: 1600px) {
  .sg-hero__img_right-top {
    -webkit-transform: translateX(120px);
            transform: translateX(120px);
  }
}
@media (max-width: 1280px) {
  .sg-hero__img_right-top {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
}
@media (max-width: 1444px) {
  .sg-hero__img_right-top {
    -webkit-transform: translateX(250px);
            transform: translateX(250px);
  }
}
.sg-hero__img_right-btm {
  right: 0;
  top: 46%;
}
.sg-hero__img_right-btm img {
  -webkit-transform: translateY(-27px);
          transform: translateY(-27px);
}
@media (max-width: 1600px) {
  .sg-hero__img_right-btm {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
}
@media (max-width: 1444px) {
  .sg-hero__img_right-btm {
    -webkit-transform: translateX(250px);
            transform: translateX(250px);
  }
}
@media (max-width: 1280px) {
  .sg-hero__img_right-btm {
    -webkit-transform: translateX(350px);
            transform: translateX(350px);
  }
}
.sg-hero__block {
  background: #515ED0;
  color: #fff;
  border-radius: 20px;
  padding: 8.75rem 2rem 17.5rem;
  margin: 0 auto;
  max-width: 1480px;
}
@media (max-width: 992px) {
  .sg-hero__block {
    padding: 5rem 1.25rem 15rem;
    border-radius: 0;
    margin: 0 -20px;
  }
}
@media (max-width: 680px) {
  .sg-hero__block {
    padding: 4.5rem 1.25rem 12rem;
  }
}
.sg-hero__block .title {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
}
@media (max-width: 1280px) {
  .sg-hero__block .title {
    max-width: 800px;
    font-size: 3rem;
  }
}
@media (max-width: 680px) {
  .sg-hero__block .title {
    font-size: 2rem;
  }
}
.sg-hero__block .title b {
  position: relative;
}
@media (max-width: 992px) {
  .sg-hero__block .title b {
    display: table;
    margin: 0 auto;
  }
}
.sg-hero__block .title b:after {
  content: "";
  right: -7.5rem;
  top: 20px;
  background: url("../img/content/final/underline.svg") no-repeat;
  background-size: contain;
  width: 100%;
  height: 74px;
  pointer-events: none;
  position: absolute;
}
@media (max-width: 1280px) {
  .sg-hero__block .title b:after {
    right: -11.5rem;
    top: 25px;
    width: 100%;
    height: 50px;
  }
}
@media (max-width: 992px) {
  .sg-hero__block .title b:after {
    right: -11.5rem;
    top: 25px;
    width: 100%;
    height: 50px;
  }
}
@media (max-width: 680px) {
  .sg-hero__block .title b:after {
    right: -2rem;
    width: 100%;
    top: 10px;
  }
}
.sg-hero__block .sg-reviews__about {
  margin: 0 auto 1.5rem;
}
@media (max-width: 680px) {
  .sg-hero__block .sg-reviews__about {
    font-size: 0.75rem;
  }
  .sg-hero__block .sg-reviews__about .sg-reviews__column {
    -webkit-box-flex: initial;
            flex: initial;
  }
  .sg-hero__block .sg-reviews__about .sg-reviews__column:not(:last-child) {
    padding-right: 1.5rem;
  }
}
.sg-hero__block .sg-reviews__column {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 680px) {
  .sg-hero__block .sg-reviews__column {
    -webkit-box-flex: 1;
            flex: auto;
    padding-left: 2.5rem;
    line-height: 1.3;
  }
  .sg-hero__block .sg-reviews__column:not(:last-child) {
    padding-right: 0.5rem;
    margin: 0 0.5rem 0 0;
  }
  .sg-hero__block .sg-reviews__column img {
    width: 1.5rem;
    height: auto;
    left: 0.5rem;
  }
}
.sg-hero__block .sg-reviews__column:after {
  background: #fff;
  opacity: 0.4;
}
@media (max-width: 680px) {
  .sg-hero__block .sg-reviews__column:after {
    height: 2rem !important;
  }
}
.sg-hero__block .sg-reviews__column strong {
  color: #fff;
}
.sg-hero__block .section-buttons {
  margin-top: 3.25rem;
}
@media (max-width: 680px) {
  .sg-hero__block .section-buttons {
    margin: 2.5rem 0 0;
  }
}
.sg-hero__pic {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin: -160px 0 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 680px) {
  .sg-hero__pic {
    margin: -7.5rem 1.25rem 0;
  }
}
.sg-hero__pic img {
  -webkit-filter: drop-shadow(0 20px 40px rgba(52, 22, 170, 0.06));
          filter: drop-shadow(0 20px 40px rgba(52, 22, 170, 0.06));
}

.sg-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  margin: 0 0 2.5rem;
}
.sg-features__grid_center {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .sg-features__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .sg-features__grid_tablet {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (max-width: 680px) {
  .sg-features__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sg-features__card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px 0 rgba(52, 22, 170, 0.06);
  background: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: relative;
  padding-bottom: 69%;
}
@media (max-width: 992px) {
  .sg-features__card {
    text-align: center;
  }
}
.sg-features__card .title {
  font-size: 1.375rem;
}
.sg-features__card .section-text {
  max-width: 370px;
}
@media (max-width: 992px) {
  .sg-features__card .section-text {
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  .sg-features__grid_tablet .sg-features__card:last-child {
    grid-column: 1/-1;
    padding-bottom: 32%;
  }
}
.sg-features__about {
  padding: 2.5rem 2.5rem 0;
}
@media (max-width: 1280px) {
  .sg-features__about {
    padding: 1.5rem 1.5rem 0;
  }
}
@media (max-width: 680px) {
  .sg-features__about {
    padding: 1.25rem 1.25rem 0;
    text-align: center;
  }
}
.sg-features__pic {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
  pointer-events: none;
  left: 0;
  width: 100%;
}
.sg-features__grid_center .sg-features__card {
  padding-bottom: 54%;
}
.sg-features__grid_triple .sg-features__card {
  padding-bottom: 76%;
}
.sg-features__grid_center .sg-features__about {
  margin: 0 auto;
  max-width: 460px;
  text-align: center;
  padding: 2rem 2rem 0;
}
@media (max-width: 992px) {
  .sg-features__grid_center .sg-features__about {
    padding: 1.5rem 1.5rem 0;
  }
}
.sg-features__grid_center .sg-features__about .title {
  font-size: 1.75rem;
}
@media (max-width: 992px) {
  .sg-features__grid_center .sg-features__about .title {
    font-size: 1.375rem;
  }
}
.sg-features__grid_center .sg-features__about .section-text {
  max-width: 100%;
  font-size: 1.125rem;
}
@media (max-width: 992px) {
  .sg-features__grid_center .sg-features__about .section-text {
    font-size: 1rem;
  }
}
.sg-features__grid_triple .sg-features__about {
  margin: 0 auto;
  text-align: center;
  padding: 2rem 2rem 0;
}
@media (max-width: 992px) {
  .sg-features__grid_triple .sg-features__about {
    padding: 1.5rem 1.5rem 0;
  }
}
.sg-features__grid_triple .sg-features__about .title {
  font-size: 1.75rem;
}
@media (max-width: 992px) {
  .sg-features__grid_triple .sg-features__about .title {
    font-size: 1.25rem;
  }
}
.sg-features__grid_triple .sg-features__about .section-text {
  max-width: 100%;
  font-size: 1rem;
}
@media (max-width: 992px) {
  .sg-features__grid_triple .sg-features__about .section-text {
    font-size: 0.875rem;
  }
}
.sg-features__grid_center .sg-features__pic {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
}
.sg-features__grid_triple .sg-features__pic {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
.sg-features__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  grid-row-gap: 3.5rem;
}
@media (max-width: 992px) {
  .sg-features__list {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
@media (max-width: 680px) {
  .sg-features__list {
    gap: 2rem;
  }
}
.sg-features__icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  box-shadow: 0 20px 40px 0 rgba(52, 22, 170, 0.06);
  background: #fff;
  width: 4rem;
  height: 4rem;
  margin: 0 0 1.5rem;
  border-radius: 8px;
}
@media (max-width: 680px) {
  .sg-features__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 6px;
  }
  .sg-features__icon svg {
    height: 24px;
    width: auto;
  }
}
.sg-features__item .section-text {
  max-width: 400px;
}
.sg-features__end {
  max-width: 528px;
  margin: 0 auto 3.5rem;
}
.sg-features__end .section-text {
  max-width: 450px;
}
.sg-features__runline {
  background: var(--color-purple);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 2.375rem;
  white-space: nowrap;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: #fff;
  position: relative;
  z-index: 3;
  overflow: hidden;
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
  margin: 0 -1rem;
  will-change: transform;
}
@media (max-width: 680px) {
  .sg-features__runline {
    height: 2rem;
    font-size: 1rem;
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
.sg-features__runline_first {
  margin-top: 2.5rem;
  z-index: 4;
}
@media (max-width: 680px) {
  .sg-features__runline_first {
    margin-top: 2rem;
  }
}
.sg-features__runline_second {
  margin-top: -2.5rem;
  background: var(--color-orange);
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}
@media (max-width: 680px) {
  .sg-features__runline_second {
    margin-top: -2rem;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
.sg-features__runline-scroller {
  display: -webkit-box;
  display: flex;
  will-change: transform;
  overflow: hidden;
  -webkit-box-pack: end;
          justify-content: flex-end;
}
.sg-features__runline-list {
  flex-shrink: 0;
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  -webkit-animation: floatLine 100s linear infinite;
          animation: floatLine 100s linear infinite;
}
@-webkit-keyframes floatLine {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes floatLine {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.sg-features__runline_first .sg-features__runline-list {
  animation-direction: reverse;
}
.sg-features__runline-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.sg-features__runline-item:after {
  content: "";
  width: 8px;
  height: 9px;
  margin: 0 1.25rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgOCA5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMy4wNjUwNiAwLjUyNzM0NEw0LjgyMjg4IDAuNTI3MzQ0TDQuNjM1MzggNC41SDMuMjUyNTZMMy4wNjUwNiAwLjUyNzM0NFpNMy4wNjUwNiA4LjQ3MjY2TDMuMjUyNTYgNC41SDQuNjM1MzhMNC44MjI4OCA4LjQ3MjY2SDMuMDY1MDZaTTAuMTAwMjIgMy4xODc1TDAuOTkwODQ1IDEuODE2NDFMNC4yODM4MSAzLjk0OTIyTDMuNTkyNDEgNS4wMzkwNkwwLjEwMDIyIDMuMTg3NVpNNy43ODc3MiAzLjE4NzVMNC4yOTU1MyA1LjAzOTA2TDMuNjA0MTMgMy45NDkyMkw2Ljg5NzA5IDEuODE2NDFMNy43ODc3MiAzLjE4NzVaTTcuNzg3NzIgNS44MDA3OEw2Ljg5NzA5IDcuMTcxODhMMy42MDQxMyA1LjAzOTA2TDQuMjk1NTMgMy45NDkyMkw3Ljc4NzcyIDUuODAwNzhaTTAuMTAwMjIgNS44MTI1TDMuNTkyNDEgMy45NjA5NEw0LjI4MzgxIDUuMDUwNzhMMC45OTA4NDUgNy4xODM1OUwwLjEwMDIyIDUuODEyNVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=") no-repeat;
  display: block;
}
@media (max-width: 680px) {
  .sg-features__runline-item:after {
    margin: 0 1rem;
  }
}

.sg-demos__icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin-bottom: -2rem;
}
.sg-demos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  grid-row-gap: 4rem;
  margin-top: 4rem;
}
@media (max-width: 992px) {
  .sg-demos__grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    flex-wrap: wrap;
    grid-row-gap: 2rem;
    margin-bottom: 5rem;
  }
}
@media (max-width: 680px) {
  .sg-demos__grid {
    margin-bottom: 0;
  }
}
.sg-demos__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  cursor: default;
  gap: 1rem;
}
@media (max-width: 992px) {
  .sg-demos__item {
    width: calc(50% - 1rem);
  }
  .sg-demos__item:last-child {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .sg-demos__item {
    width: 100%;
  }
}
.sg-demos__pic {
  padding: 1.5rem;
  display: block;
  cursor: pointer;
  border-radius: 20px;
}
.sg-demos__pic img {
  border-radius: 10px;
}
@media (max-width: 992px) {
  .sg-demos__pic {
    border-radius: 10px;
    padding: 0.875rem;
  }
  .sg-demos__pic img {
    border-radius: 5px;
  }
}
.sg-demos__item_purple .sg-demos__pic {
  background: #f1f1ff;
}
.sg-demos__item_green .sg-demos__pic {
  background: -webkit-gradient(linear, left top, left bottom, from(#edf7de), to(#edf7de));
  background: linear-gradient(180deg, #edf7de 0%, #edf7de 100%);
}
.sg-demos__item_pink .sg-demos__pic {
  background: #f8eaff;
}
.sg-demos__item_blue .sg-demos__pic {
  background: #e5f5ff;
}
.sg-demos__item_orange .sg-demos__pic {
  background: #fff0dd;
}
.sg-demos__title {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  position: relative;
}
.sg-demos__title-value {
  letter-spacing: -0.03em;
  font-weight: 600;
  font-size: 1.75rem;
  z-index: 5;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 992px) {
  .sg-demos__title-value {
    font-size: 1.25rem;
  }
}
.sg-demos__title-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  background: #fff4e6;
  color: var(--color-orange);
  outline: none;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: var(--font-family);
  border-radius: 4px;
  height: 2.25rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  overflow: hidden;
  opacity: 0;
  font-size: 1rem;
  padding: 0 0.5rem 0 0.875rem;
}
@media (max-width: 992px) {
  .sg-demos__title-btn {
    display: none;
  }
}
.sg-demos__title-btn:before {
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: #e84410;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  z-index: 1;
}
.sg-demos__title-btn svg:last-child {
  display: none;
}
.sg-demos__title-btn span {
  display: -webkit-box;
  display: flex;
  gap: 2px;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.sg-demos__title-btn:hover {
  color: #fff;
}
.sg-demos__title-btn:hover:before {
  -webkit-transform: none;
          transform: none;
}
.sg-demos__title-btn:hover svg {
  display: none;
}
.sg-demos__title-btn:hover svg:last-child {
  display: block;
}
.sg-demos__item:hover .sg-demos__title-value {
  -webkit-transform: translateX(-79px);
          transform: translateX(-79px);
}
.sg-demos__item:hover .sg-demos__title-btn {
  opacity: 1;
  left: calc(50% + 79px);
}
.sg-demos__info {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  text-align: center;
}
@media (max-width: 992px) {
  .sg-demos__info {
    margin-top: 3rem;
  }
}
@media (max-width: 680px) {
  .sg-demos__info {
    margin: 2.5rem 0;
  }
}
.sg-demos__info .title {
  margin: 0 0 1.5rem;
}
@media (max-width: 1280px) {
  .sg-demos__info .title {
    font-size: 2.5rem;
  }
}
@media (max-width: 680px) {
  .sg-demos__info .title {
    font-size: 2.2rem;
  }
}
.sg-demos__info .section-buttons {
  margin-top: 2.375rem;
  position: relative;
}
.sg-demos__info .section-buttons img {
  position: absolute;
  right: calc(100% - 2.5rem);
  top: calc(50% + 2.5rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  min-width: 225px;
  min-height: 91px;
}
@media (max-width: 680px) {
  .sg-demos__info .section-buttons img {
    min-width: 140px;
  }
}
.sg-demos__fiches {
  display: -webkit-box;
  display: flex;
  gap: 1.5rem;
  max-width: 530px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sg-demos__fiches {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    gap: 0;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}
.sg-demos__fiches-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 6px;
  letter-spacing: -0.03em;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: left;
}
@media (max-width: 680px) {
  .sg-demos__fiches-item {
    font-size: 0.75rem;
    -webkit-box-flex: 1;
            flex: auto;
  }
  .sg-demos__fiches-item img {
    width: 1.65rem;
    height: auto;
  }
}

.sg-perf__grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 4rem;
  margin: 0 0 4.125rem;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .sg-perf__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 3rem;
  }
}
.sg-perf__about {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 600px;
}
@media (max-width: 1280px) {
  .sg-perf__about .title {
    font-size: 2.75rem;
  }
}
@media (max-width: 992px) {
  .sg-perf__about {
    text-align: center;
    max-width: initial;
  }
  .sg-perf__about .section-heading {
    -webkit-box-pack: center;
            justify-content: center;
  }
}
@media (max-width: 680px) {
  .sg-perf__about .title {
    font-size: 2rem;
  }
}
.sg-perf__fiches {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 2rem;
}
.sg-perf__info {
  margin-right: 5rem;
  -webkit-box-flex: 0;
          flex: none;
  position: relative;
}
@media (max-width: 992px) {
  .sg-perf__info {
    margin: 0 auto;
  }
}
@media (max-width: 680px) {
  .sg-perf__info {
    margin: 0;
  }
}
.sg-perf__speed {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin: 0 0 1.5rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid #CBDCF5;
  -webkit-box-pack: center;
          justify-content: center;
}
.sg-perf__speed-column {
  position: relative;
}
.sg-perf__speed-column:not(:first-child) {
  margin-left: 2.375rem;
  padding-left: 2.375rem;
}
@media (max-width: 680px) {
  .sg-perf__speed-column:not(:first-child) {
    margin-left: 1.5rem;
    padding-left: 1.5rem;
  }
}
.sg-perf__speed-column:not(:first-child):before {
  width: 1px;
  height: 100%;
  background: #CBDCF5;
  position: absolute;
  left: 0;
  content: "";
  top: 0;
}
.sg-perf__main {
  margin: 0 0 2.5rem;
  display: -webkit-box;
  display: flex;
  gap: 3rem;
  padding-right: 60%;
  border-radius: 20px;
  background: #fff;
  position: relative;
  box-shadow: 0 20px 40px 0 rgba(52, 22, 170, 0.06);
  overflow: hidden;
}
@media (max-width: 680px) {
  .sg-perf__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    padding: 0;
    border-radius: 10px;
    gap: 0;
    margin: 0 0 1.5rem;
  }
}
.sg-perf__main-about {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-height: 460px;
  padding: 2.5rem;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .sg-perf__main-about {
    padding: 1.5rem;
    min-height: initial;
  }
}
@media (max-width: 992px) {
  .sg-perf__main-logo {
    margin: 0 0 3rem;
  }
  .sg-perf__main-logo img {
    height: 2.5rem;
  }
}
.sg-perf__main-info {
  max-width: 465px;
}
.sg-perf__main-info .title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}
@media (max-width: 992px) {
  .sg-perf__main-info .title {
    font-size: 1.25rem;
  }
}
.sg-perf__main-info .section-text {
  font-size: 1.125rem;
}
@media (max-width: 992px) {
  .sg-perf__main-info .section-text {
    font-size: 1rem;
  }
}
@media (max-width: 680px) {
  .sg-perf__main-info .section-text {
    font-size: 0.875rem;
  }
}
.sg-perf__main-pic {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 680px) {
  .sg-perf__main-pic {
    position: initial;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
            justify-content: flex-end;
  }
  .sg-perf__main-pic img {
    min-width: 550px;
  }
}
.sg-perf__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.43rem;
}
@media (max-width: 680px) {
  .sg-perf__list {
    gap: 1.25rem;
  }
}
.sg-perf__item {
  padding: 2.5rem 2.5rem 0;
  padding-bottom: 67%;
  border-radius: 20px;
  box-shadow: 0 20px 40px 0 rgba(52, 22, 170, 0.06);
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .sg-perf__item:last-child {
    grid-column: 1/-1;
    padding-bottom: 36%;
  }
}
@media (max-width: 680px) {
  .sg-perf__item {
    padding: 1.5rem 1.5rem 69%;
    border-radius: 10px;
  }
}
.sg-perf__item .title {
  font-size: 1.375rem;
  margin: 0 0 0.5rem;
}
@media (max-width: 680px) {
  .sg-perf__item .title {
    font-size: 1.125rem;
  }
}
.sg-perf__item .section-text {
  margin: 0 auto;
}
.sg-perf__pic {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.sg-perf__awards {
  margin: 5rem 0 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.sg-perf__awards-icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0 0 -230px;
}
@media (max-width: 680px) {
  .sg-perf__awards-icon {
    margin: 0 0 -100px;
  }
}
.sg-perf__awards-flower {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}
@media (max-width: 680px) {
  .sg-perf__awards-flower {
    display: none;
  }
}
.sg-perf__awards-flower_l {
  margin-right: -110px;
}
.sg-perf__awards-flower_r {
  margin-left: -110px;
}
.sg-perf__awards-block .section-text {
  max-width: 660px;
  margin: 0 auto 2rem;
}
@media (max-width: 680px) {
  .sg-perf__awards-block .section-text {
    margin-bottom: 1rem;
  }
}

.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: 9px;
  text-align: center;
  letter-spacing: -0.04em;
  font-size: 1.375rem;
  line-height: 1.2;
}
@media (max-width: 680px) {
  .speed-value {
    font-size: 1.125rem;
  }
}
.speed-value span {
  width: 178px;
  height: 178px;
  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: 5.313rem;
  font-family: "Roboto Mono", sans-serif;
  font-weight: 400;
  letter-spacing: -0.06em;
  padding: 0 2px 0 0;
}
@media (max-width: 680px) {
  .speed-value span {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
}
.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;
}

.sg-design {
  margin: 3rem 0 0;
  padding: 3rem 0 0;
  position: relative;
}
.sg-design:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(53.85%, #cbdcf5), to(#fff));
  background: linear-gradient(90deg, #fff 0%, #cbdcf5 53.85%, #fff 100%);
  left: 0;
  top: 0;
}
.sg-design .section__head .title {
  margin: 0 0 0.5rem;
}
.sg-design .section__head .section-text {
  max-width: 540px;
}
.sg-design__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 24px;
  margin: 0 0 7.5rem;
}
.sg-design__item {
  display: -webkit-box;
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem 2.5rem 0;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-pack: justify;
          justify-content: space-between;
  background: -webkit-gradient(linear, left top, left bottom, from(#f9f9ff), to(#f7f7ff));
  background: linear-gradient(180deg, #f9f9ff 0%, #f7f7ff 100%);
}
@media (max-width: 992px) {
  .sg-design__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 680px) {
  .sg-design__item {
    padding: 1.5rem 1.5rem 0;
  }
}
.sg-design__about {
  max-width: 484px;
  padding: 0 2.5rem 2.5rem 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .sg-design__about {
    margin: 0 auto;
    -webkit-box-align: center;
            align-items: center;
    text-align: center;
  }
  .sg-design__about .section-text {
    max-width: 100%;
  }
}
.sg-design__about .title {
  margin: auto 0 0.5rem;
  font-size: 1.75rem;
}
@media (max-width: 992px) {
  .sg-design__about .title {
    font-size: 1.25rem;
  }
}
@media (max-width: 680px) {
  .sg-design__about {
    padding: 0 1.5rem 1.5rem 0;
  }
  .sg-design__about .title {
    font-size: 1.5rem;
  }
}
.sg-design__about .section-text {
  font-size: 1.125rem;
}
@media (max-width: 992px) {
  .sg-design__about .section-text {
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  .sg-design__icon {
    margin: 0 0 1.5rem;
  }
}
@media (max-width: 680px) {
  .sg-design__icon img {
    height: 3rem;
    width: auto;
  }
}
.sg-design__icon img {
  -webkit-filter: drop-shadow(0 20px 40px rgba(52, 22, 170, 0.06));
          filter: drop-shadow(0 20px 40px rgba(52, 22, 170, 0.06));
}
.sg-design__pic {
  -webkit-box-flex: 0;
          flex: none;
}
.sg-design__pic img {
  -webkit-filter: drop-shadow(0 20px 40px rgba(52, 22, 170, 0.06));
          filter: drop-shadow(0 20px 40px rgba(52, 22, 170, 0.06));
}
@media (max-width: 992px) {
  .sg-design__pic img {
    width: 100%;
  }
}
.sg-design__features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
}
@media (max-width: 992px) {
  .sg-design__features-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (max-width: 680px) {
  .sg-design__features-list {
    gap: 1.25rem;
  }
}
.sg-design__features-item {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#f9f9ff), to(#f1f1ff));
  background: linear-gradient(180deg, #f9f9ff 0%, #f1f1ff 100%);
  border-radius: 20px;
  overflow: hidden;
  padding: 2rem;
  padding-bottom: 80%;
  text-align: center;
}
.sg-design__features-item .title {
  font-size: 1.375rem;
  margin: 0 0 0.5rem;
}
@media (max-width: 992px) {
  .sg-design__features-item:last-child {
    grid-column: 1/-1;
    padding-bottom: 40%;
  }
}
@media (max-width: 680px) {
  .sg-design__features-item {
    padding: 1.5rem 1.5rem 80%;
    border-radius: 10px;
  }
  .sg-design__features-item .title {
    font-size: 1.125rem;
  }
}
.sg-design__features-item .section-text {
  margin: 0 auto;
}
.sg-design__features-pic {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  left: 0;
  width: 100%;
  bottom: 0;
  position: absolute;
}

.sg-dark {
  background: #363636 url("../img/content/dark/dark-bg.png") no-repeat;
  background-size: cover;
  border-radius: 20px;
  color: #fff;
  padding: 4rem 0 0;
  overflow: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 992px) {
  .sg-dark {
    border-radius: 0;
    margin: 0 -20px;
  }
}
@media (max-width: 680px) {
  .sg-dark {
    padding: 2.5rem 1.25rem 0;
  }
}
.sg-dark:has(input:checked) {
  background: #f9f9ff url("../img/content/dark/light-bg.png") no-repeat;
  background-size: cover;
  color: var(--color-main);
}
.sg-dark__head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.sg-dark__head .title {
  margin: 0 0 0.5rem;
}
.sg-dark__head .section-text {
  margin: 0 auto;
  color: currentColor;
  font-size: 1.125rem;
  max-width: 520px;
}
@media (max-width: 680px) {
  .sg-dark__head .section-text {
    font-size: 1rem;
  }
}
.sg-dark__toggle {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 2.5rem 0 0;
  gap: 0.75rem;
  -webkit-box-align: center;
          align-items: center;
}
.sg-dark__toggle-label {
  font-weight: bold;
  font-size: 1.125rem;
}
.sg-dark__toggle-value {
  position: relative;
}
.sg-dark__toggle-value img {
  position: absolute;
  left: 100%;
  top: -2rem;
  min-width: 182px;
  min-width: 132px;
}
@media (max-width: 680px) {
  .sg-dark__toggle-value img {
    top: 0rem;
    min-width: 100px;
    left: calc(100% - 1rem);
  }
}
.sg-dark__toggle-value input {
  display: none;
}
.sg-dark__toggle-value input + label {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  width: 76px;
  height: 38px;
  background: var(--color-orange);
  border-radius: 100px;
  position: relative;
  -webkit-box-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: flex;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 2px 10px 0;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.sg-dark__toggle-value input + label:before {
  content: "";
  background: #fff;
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  top: 10px;
  position: absolute;
  left: 49px;
  width: 18px;
  height: 18px;
}
.sg-dark__toggle-value input + label:hover:before {
  -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
}
.sg-dark__toggle-value input + label span {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.sg-dark__toggle-value input + label span:last-child {
  opacity: 0;
}
.sg-dark__toggle-value input:checked + label:before {
  left: 10px;
}
.sg-dark__toggle-value input:checked + label:hover:before {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.sg-dark__toggle-value input:checked + label span {
  opacity: 0;
}
.sg-dark__toggle-value input:checked + label span:last-child {
  opacity: 1;
}
.sg-dark__icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0 0 0.5rem;
}
.sg-dark__pic {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 2.875rem 0 0;
}
@media (max-width: 992px) {
  .sg-dark__pic {
    margin: 2.5rem 1.5rem 0;
  }
}
@media (max-width: 680px) {
  .sg-dark__pic {
    margin: 2.5rem -0.5rem 0;
  }
}
.sg-dark__pic img:last-child {
  display: none;
}
.sg-dark:has(input:checked) .sg-dark__pic img {
  display: none;
}
.sg-dark:has(input:checked) .sg-dark__pic img:last-child {
  display: block;
  -webkit-filter: drop-shadow(0 20px 40px rgba(52, 22, 170, 0.06));
          filter: drop-shadow(0 20px 40px rgba(52, 22, 170, 0.06));
}

.sg-other__main {
  margin: 0 0 2.5rem;
  padding: 15% 5%;
  background: -webkit-gradient(linear, left top, left bottom, from(#f9f9ff), to(#f7f7ff));
  background: linear-gradient(180deg, #f9f9ff 0%, #f7f7ff 100%);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
}
@media (max-width: 680px) {
  .sg-other__main {
    padding: 10% 1.25rem 30%;
    margin: 0 0 2rem;
    border-radius: 10px;
  }
}
.sg-other__main .title {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}
@media (max-width: 680px) {
  .sg-other__main .title {
    font-size: 1.25rem;
  }
}
.sg-other__main .section-text {
  max-width: 440px;
  font-size: 1.125rem;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sg-other__main .section-text {
    font-size: 1rem;
  }
}
.sg-other__main-left {
  bottom: 0;
  left: 0;
  position: absolute;
}
@media (max-width: 1280px) {
  .sg-other__main-left {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}
@media (max-width: 992px) {
  .sg-other__main-left {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
}
@media (max-width: 680px) {
  .sg-other__main-left {
    display: none;
  }
}
.sg-other__main-right {
  bottom: 0;
  right: 0;
  position: absolute;
}
@media (max-width: 1280px) {
  .sg-other__main-right {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
@media (max-width: 992px) {
  .sg-other__main-right {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
}
@media (max-width: 680px) {
  .sg-other__main-right {
    display: none;
  }
}
.sg-other__main-btm {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 680px) {
  .sg-other__main-btm {
    width: 100%;
  }
}
.sg-other__grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
@media (max-width: 992px) {
  .sg-other__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (max-width: 680px) {
  .sg-other__grid {
    gap: 1.25rem;
  }
}
.sg-other__item {
  background: -webkit-gradient(linear, left top, left bottom, from(#f9f9ff), to(#f1f1ff));
  background: linear-gradient(180deg, #f9f9ff 0%, #f1f1ff 100%);
  padding: 2rem;
  border-radius: 20px;
  padding-bottom: 51%;
  position: relative;
  text-align: center;
}
@media (max-width: 680px) {
  .sg-other__item {
    padding: 1.5rem 1.5rem 51%;
    border-radius: 10px;
  }
}
.sg-other__item .title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}
@media (max-width: 680px) {
  .sg-other__item .title {
    font-size: 1.25rem;
  }
}
.sg-other__item .section-text {
  max-width: 340px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .sg-other__about .title {
    font-size: 1.25rem;
  }
}
.sg-other__pic {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

.sg-banner {
  position: relative;
}
.sg-banner__img {
  position: absolute;
}
@media (max-width: 992px) {
  .sg-banner__img {
    display: none;
  }
}
.sg-banner__img_left {
  left: 0;
  top: 0;
  -webkit-transform: translate(-250px, -80px);
          transform: translate(-250px, -80px);
}
@media (max-width: 1280px) {
  .sg-banner__img_left {
    -webkit-transform: translate(-350px, -80px);
            transform: translate(-350px, -80px);
  }
}
.sg-banner__img_right {
  right: 0;
  top: 0;
  -webkit-transform: translate(300px, -100px);
          transform: translate(300px, -100px);
}
@media (max-width: 1280px) {
  .sg-banner__img_right {
    -webkit-transform: translate(400px, -100px);
            transform: translate(400px, -100px);
  }
}
.sg-banner__content {
  max-width: 690px;
  text-align: center;
  margin: 0 auto;
}
.sg-banner__content .title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 0.5rem;
}
@media (max-width: 680px) {
  .sg-banner__content .title {
    font-size: 2rem;
  }
}
.sg-banner__content .section-text {
  max-width: 590px;
  margin: 0 auto;
  font-size: 1.375rem;
}
@media (max-width: 680px) {
  .sg-banner__content .section-text {
    font-size: 1rem;
  }
}
.sg-banner__content .section-buttons {
  margin-top: 2rem;
  position: relative;
}
.sg-banner__content .section-buttons img {
  position: absolute;
  left: 1.5rem;
  top: calc(100% - 1.5rem);
  min-width: 225px;
  min-height: 91px;
}
@media (max-width: 680px) {
  .sg-banner__content .section-buttons img {
    display: none;
  }
}

.sg-reviews__about {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0 0 1.25rem;
}
@media (max-width: 680px) {
  .sg-reviews__about {
    font-size: 0.75rem;
  }
}
.sg-reviews__column {
  position: relative;
  padding-left: 45px;
  color: var(--color-gray);
}
.sg-reviews__column:first-child {
  margin: 0 1.5rem 0 0;
  padding-right: 1.5rem;
}
@media (max-width: 680px) {
  .sg-reviews__column {
    padding-left: 2rem;
    line-height: 1.3;
  }
  .sg-reviews__column:not(:last-child) {
    padding-right: 1rem;
    margin: 0 0.5rem 0 0;
  }
  .sg-reviews__column img {
    width: 1.5rem;
    height: auto;
  }
}
.sg-reviews__column:first-child:after {
  content: "";
  width: 1px;
  height: 3rem;
  background: #CBDCF5;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 680px) {
  .sg-reviews__column:first-child:after {
    height: 2rem !important;
  }
}
.sg-reviews__column strong {
  display: block;
  font-weight: bold;
  color: var(--color-main);
}
.sg-reviews__column img {
  position: absolute;
  top: 0;
  left: 0;
}
.sg-reviews .section__head {
  max-width: 980px;
}
.sg-reviews .section__head .title {
  max-width: 100%;
}
.sg-reviews .section-text {
  font-size: 1.375rem;
  max-width: 530px;
}
@media (max-width: 680px) {
  .sg-reviews .section-text {
    font-size: 1rem;
  }
}
.sg-reviews__image {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  .sg-reviews__image {
    margin: 0 -3rem;
  }
}
@media (max-width: 680px) {
  .sg-reviews__image {
    margin: 0 -1rem;
  }
}
.sg-reviews__button {
  margin: 2.5rem 0 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
@media (max-width: 680px) {
  .sg-reviews__button {
    margin: 1.5rem 0 0;
  }
}

.sg-doc {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 4rem;
}
@media (max-width: 992px) {
  .sg-doc {
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}
.sg-doc__about {
  -webkit-box-flex: 1;
          flex: auto;
}
.sg-doc__about .title {
  font-size: 3rem;
}
@media (max-width: 680px) {
  .sg-doc__about .title {
    font-size: 2rem;
  }
}
.sg-doc__about .section-text {
  max-width: 530px;
  font-size: 1.375rem;
}
@media (max-width: 680px) {
  .sg-doc__about .section-text {
    font-size: 1rem;
  }
}
.sg-doc__about .section-buttons {
  margin: 2.5rem 0 0;
}
@media (max-width: 680px) {
  .sg-doc__about .section-buttons .button {
    -webkit-box-flex: 1;
            flex: auto;
    padding: 0;
  }
}
.sg-doc__pic {
  -webkit-box-flex: 0;
          flex: none;
  width: 50%;
  max-width: 608px;
}
@media (max-width: 992px) {
  .sg-doc__pic {
    width: 100%;
    max-width: initial;
  }
  .sg-doc__pic img {
    width: 100%;
  }
}
.sg-doc__pic img {
  border-radius: 8px;
  -webkit-filter: drop-shadow(0 20px 40px rgba(52, 22, 170, 0.06));
          filter: drop-shadow(0 20px 40px rgba(52, 22, 170, 0.06));
  border: 1px solid #CBDCF5;
}

.sg-faq .section-text {
  font-size: 1.375rem;
  max-width: 540px;
}
@media (max-width: 680px) {
  .sg-faq .section-text {
    font-size: 1rem;
  }
}
.sg-faq__list {
  max-width: 818px;
}
.sg-faq__item {
  border-top: 1px solid #CBDCF5;
  padding: 1.75rem 0;
}
@media (max-width: 680px) {
  .sg-faq__item {
    padding: 1rem 0;
  }
}
.sg-faq__item:last-child {
  border-bottom: 1px solid #CBDCF5;
}
.sg-faq__label {
  padding: 0 4rem 0 0;
  letter-spacing: -0.03em;
  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;
  color: var(--color-main);
}
@media (max-width: 680px) {
  .sg-faq__label {
    font-size: 1rem;
  }
}
.sg-faq__label:hover {
  color: var(--color-orange);
}
.sg-faq__label span {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sg-faq__item_active .sg-faq__label {
  color: var(--color-orange);
}
.sg-faq__item_active .sg-faq__label span {
  top: calc(50% - 5px);
}
.sg-faq__item_active .sg-faq__label span svg {
  -webkit-transform: rotate(180deg) translateY(-50%);
          transform: rotate(180deg) translateY(-50%);
}
.sg-faq__text {
  max-width: 630px;
  font-size: 1.125rem;
  font-family: var(--font-family-secondary);
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 680px) {
  .sg-faq__text {
    font-size: 1rem;
  }
}
.sg-faq__item_active .sg-faq__text {
  padding-top: 0.5rem;
  max-height: 1000px;
}

.sg-final {
  padding: 7.5rem 0 0;
  position: relative;
}
@media (max-width: 992px) {
  .sg-final {
    padding: 4.5rem 0 0;
  }
}
@media (max-width: 680px) {
  .sg-final {
    padding: 2.5rem 0 0;
  }
}
.sg-final__img {
  position: absolute;
  pointer-events: none;
}
@media (max-width: 992px) {
  .sg-final__img {
    display: none;
  }
}
.sg-final__img_left-top {
  left: 0;
  top: 3%;
}
@media (max-width: 1444px) {
  .sg-final__img_left-top {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
}
@media (max-width: 1280px) {
  .sg-final__img_left-top {
    -webkit-transform: translateX(-250px);
            transform: translateX(-250px);
  }
}
.sg-final__img_left-btm {
  left: 0;
  top: 38%;
}
@media (max-width: 1444px) {
  .sg-final__img_left-btm {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
}
@media (max-width: 1280px) {
  .sg-final__img_left-btm {
    -webkit-transform: translateX(-250px);
            transform: translateX(-250px);
  }
}
.sg-final__img_right-top {
  right: 0;
  top: 8%;
}
@media (max-width: 1444px) {
  .sg-final__img_right-top {
    -webkit-transform: translateX(250px);
            transform: translateX(250px);
  }
}
@media (max-width: 1280px) {
  .sg-final__img_right-top {
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
  }
}
.sg-final__img_right-btm {
  right: 0;
  top: 41%;
}
@media (max-width: 1444px) {
  .sg-final__img_right-btm {
    -webkit-transform: translateX(250px);
            transform: translateX(250px);
  }
}
@media (max-width: 1280px) {
  .sg-final__img_right-btm {
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
  }
}
.sg-final__logo {
  margin: 0 0 1.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
.sg-final .section__head {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.sg-final .section__head .title {
  font-size: 3.5rem;
  max-width: 100%;
  margin: 0 0 0.75rem;
}
@media (max-width: 992px) {
  .sg-final .section__head .title {
    font-size: 2.5rem;
  }
}
@media (max-width: 680px) {
  .sg-final .section__head .title {
    font-size: 2rem;
  }
}
.sg-final .section__head .title b {
  position: relative;
}
.sg-final .section__head .title b i {
  font-style: normal;
  position: relative;
  z-index: 1;
}
.sg-final .section__head .title b:after {
  content: "";
  right: -1rem;
  top: 35px;
  background: url("../img/content/final/underline.svg") no-repeat;
  background-size: contain;
  width: calc(100% + 7rem);
  height: 200px;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
@media (max-width: 992px) {
  .sg-final .section__head .title b:after {
    right: -0.5rem;
    width: 100%;
    height: 100px;
  }
}
@media (max-width: 680px) {
  .sg-final .section__head .title b:after {
    right: -1rem;
    width: calc(100% + 5rem);
    top: 20px;
  }
}
.sg-final .section__head .section-text {
  font-size: 1.175rem;
  max-width: 520px;
}
@media (max-width: 680px) {
  .sg-final .section__head .section-text {
    font-size: 1rem;
  }
}
.sg-final .section__head .section-buttons {
  margin: 1.5rem 0 0;
}
.sg-final__pic {
  margin: 5rem 0 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
@media (max-width: 680px) {
  .sg-final__pic {
    margin: 2.5rem -1.25rem 0;
  }
}
.sg-final__runline {
  background: var(--color-purple);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 2.375rem;
  white-space: nowrap;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: #fff;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
@media (max-width: 680px) {
  .sg-final__runline {
    font-size: 1rem;
    height: 2rem;
  }
}
.sg-final__runline-scroller {
  display: -webkit-box;
  display: flex;
  will-change: transform;
  overflow: hidden;
  -webkit-box-pack: end;
          justify-content: flex-end;
}
.sg-final__runline-list {
  flex-shrink: 0;
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  -webkit-animation: floatLine4 50s linear infinite;
          animation: floatLine4 50s linear infinite;
}
@media (max-width: 680px) {
  .sg-final__runline-list {
    -webkit-animation: floatLine4 100s linear infinite;
            animation: floatLine4 100s linear infinite;
  }
}
@-webkit-keyframes floatLine4 {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes floatLine4 {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.sg-final__runline-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.sg-final__runline-item:after {
  content: "";
  width: 8px;
  height: 9px;
  margin: 0 1.25rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgOCA5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMy4wNjUwNiAwLjUyNzM0NEw0LjgyMjg4IDAuNTI3MzQ0TDQuNjM1MzggNC41SDMuMjUyNTZMMy4wNjUwNiAwLjUyNzM0NFpNMy4wNjUwNiA4LjQ3MjY2TDMuMjUyNTYgNC41SDQuNjM1MzhMNC44MjI4OCA4LjQ3MjY2SDMuMDY1MDZaTTAuMTAwMjIgMy4xODc1TDAuOTkwODQ1IDEuODE2NDFMNC4yODM4MSAzLjk0OTIyTDMuNTkyNDEgNS4wMzkwNkwwLjEwMDIyIDMuMTg3NVpNNy43ODc3MiAzLjE4NzVMNC4yOTU1MyA1LjAzOTA2TDMuNjA0MTMgMy45NDkyMkw2Ljg5NzA5IDEuODE2NDFMNy43ODc3MiAzLjE4NzVaTTcuNzg3NzIgNS44MDA3OEw2Ljg5NzA5IDcuMTcxODhMMy42MDQxMyA1LjAzOTA2TDQuMjk1NTMgMy45NDkyMkw3Ljc4NzcyIDUuODAwNzhaTTAuMTAwMjIgNS44MTI1TDMuNTkyNDEgMy45NjA5NEw0LjI4MzgxIDUuMDUwNzhMMC45OTA4NDUgNy4xODM1OUwwLjEwMDIyIDUuODEyNVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=") no-repeat;
  display: block;
}
@media (max-width: 680px) {
  .sg-final__runline-item:after {
    margin: 0 1rem;
  }
}