@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Change the default font family in all browsers (opinionated).
     * 2. Correct the line height in all browsers.
     * 3. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

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

/**
     * Add the correct display in IE 9-.
     */
article,
aside,
footer,
header,
nav,
section {
  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
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
figcaption,
figure {
  display: block;
}

/**
     * Add the correct margin in IE 8.
     */
figure {
  margin: 1em 40px;
}

/**
     * 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 */
}

/**
     * Add the correct display in IE.
     */
main {
  display: block;
}

/**
     * 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 */
}

/* Links
       ========================================================================== */
/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
     * Remove the outline on focused links when they are also active or hovered
     * in all browsers (opinionated).
     */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
       ========================================================================== */
/**
     * 1. Remove the bottom border in Firefox 39-.
     * 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;
     -moz-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */
b,
strong {
  font-weight: inherit;
}

/**
     * 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 style in Android 4.3-.
     */
dfn {
  font-style: italic;
}

/**
     * Add the correct background and color in IE 9-.
     */
mark {
  background-color: #ff0;
  color: #000;
}

/**
     * 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
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
audio,
video {
  display: inline-block;
}

/**
     * Add the correct display in iOS 4-7.
     */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
     * Hide the overflow in IE.
     */
svg:not(:root) {
  overflow: hidden;
}

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

/**
     * Show the overflow in IE.
     */
button {
  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;
}

/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible;
}

/**
     * 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 and cancel buttons in Chrome and Safari on macOS.
       */
}

[type="search"]::-webkit-search-cancel-button, [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 */
}

/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
     * 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 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

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

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

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

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block;
}

/* Scripting
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
canvas {
  display: inline-block;
}

/**
     * Add the correct display in IE.
     */
template {
  display: none;
}

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

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 4px 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.8;
}

.hamburger.is-active:hover {
  opacity: 0.8;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #4F4F4F;
}

.hamburger-box {
  width: 30px;
  height: 25px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #4F4F4F;
  border-radius: 5px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -11px;
}

.hamburger-inner::after {
  bottom: -11px;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1.5px;
}

.hamburger--slider .hamburger-inner::before {
  top: 11px;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 22px;
}

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 11px, 0) rotate(45deg);
          transform: translate3d(0, 11px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-4.28571px, -8px, 0);
          transform: rotate(-45deg) translate3d(-4.28571px, -8px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -22px, 0) rotate(-90deg);
          transform: translate3d(0, -22px, 0) rotate(-90deg);
}

.cf::after {
  clear: both;
  content: "";
  display: table;
}

.hidden {
  display: none;
}

.no-border {
  border: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inline-block {
  display: inline-block !important;
}

.hidden-xs-only {
  display: none !important;
}

@media (min-width: 480px) {
  .hidden-xs-only {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm-only {
    display: none !important;
  }
}

.hidden-sm-and-down {
  display: none !important;
}

@media (min-width: 768px) {
  .hidden-sm-and-down {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .hidden-sm-and-up {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .hidden-md-only {
    display: none !important;
  }
}

.hidden-md-and-down {
  display: none !important;
}

@media (min-width: 992px) {
  .hidden-md-and-down {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .hidden-md-and-up {
    display: none !important;
  }
}

@media (min-width: 1280px) and (max-width: 1499px) {
  .hidden-lg-only {
    display: none !important;
  }
}

.hidden-lg-and-down {
  display: none !important;
}

@media (min-width: 1280px) {
  .hidden-lg-and-down {
    display: block !important;
  }
}

@media (min-width: 1280px) {
  .hidden-lg-and-up {
    display: none !important;
  }
}

@media (min-width: 1500px) {
  .hidden-xl-only {
    display: none !important;
  }
}

.text-center {
  text-align: center;
}

.fx {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.justify-between {
  -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-around {
  -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important;
}

.items-center {
  -webkit-align-items: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

/**
 * Better box-sizing. Prevent breaking components that leverage other behavior:
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/**
 * Fix selection highlighting issues
 *
 * 1. Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * 2. Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * 3. Customize the background color in settings/_variables.scss to match your design
 */
::-moz-selection {
  /* [2] */
  text-shadow: none;
  /* [1] */
  background: #b3d4fc;
  /* [3] */
}

::selection {
  /* [2] */
  text-shadow: none;
  /* [1] */
  background: #b3d4fc;
  /* [3] */
}

/**
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/**
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  max-width: 100%;
}

/**
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/**
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

ul[class] {
  margin: 0;
  list-style: none;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #454545;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .2px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: #0088C8;
}

h2 {
  font-weight: 400;
  font-size: 40px;
}

._container, .container, .questions2 .wrapper, .repair-ability .container, .module-body {
  margin: 0 auto;
  width: 290px;
  position: relative;
}

._container::after, .container::after, .questions2 .wrapper::after, .repair-ability .container::after, .module-body::after {
  clear: both;
  content: "";
  display: block;
}

@media only screen and (min-width: 480px) {
  ._container, .container, .questions2 .wrapper, .repair-ability .container, .module-body {
    width: 480px;
  }
}

@media only screen and (min-width: 768px) {
  ._container, .container, .questions2 .wrapper, .repair-ability .container, .module-body {
    width: 768px;
  }
}

@media only screen and (min-width: 992px) {
  ._container, .container, .questions2 .wrapper, .repair-ability .container, .module-body {
    width: 992px;
  }
}

@media only screen and (min-width: 1280px) {
  ._container, .container, .questions2 .wrapper, .repair-ability .container, .module-body {
    width: 1280px;
  }
}

._container--fluid {
  width: 100%;
  padding: 0 15px;
}

.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  text-align: center;
  padding: .8em 1em;
  text-decoration: none;
  outline: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  transition: all .2s;
}

.hamburger {
  z-index: 20;
  margin-left: auto;
}

.hamburger.is-active {
  position: fixed;
  top: 10px;
  right: 15px;
}

.hamburger-box {
  display: block;
  color: #4F4F4F;
}

.icon {
  display: inline-block;
  position: relative;
  fill: currentColor;
  height: 1em;
  width: 1em;
}

.site-body {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.site-main {
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
  padding-top: 250px;
}

@media screen and (min-width: 768px) {
  .site-header {
    position: absolute;
    z-index: 1;
    width: 100%;
  }
}

.site-header__top {
  background-color: #E0F5FF;
  padding: 10px 0;
}

@media screen and (min-width: 768px) {
  .site-header__top {
    background-color: #eee;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
    font-size: .8rem;
    padding: 0;
  }
}

@media screen and (min-width: 992px) {
  .site-header__top {
    font-size: 1rem;
  }
}

.site-header__menu-top {
  margin-left: 15px;
  border-right: 1px solid #aaafb4;
  padding-right: 15px;
}

.site-header__menu-secondary {
  margin-left: auto;
}

.site-header__menu-secondary ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1.125em 0;
  margin: 0;
  list-style: none;
}

.site-header__menu-secondary ul li {
  padding: 0 1.2em;
  border-right: 1px solid;
  line-height: 1;
}

.site-header__menu-secondary ul li:last-child {
  border: none;
  padding-right: 0;
}

.site-header__menu-secondary ul li a:hover {
  color: #7A3F88;
}

.site-header__advantages li + li {
  margin-left: .9em;
}

.site-header__phone {
  background-image: url("../img/content/phone.svg");
  background-size: 20px;
}

.site-header__phone--topbar {
  font-weight: 700;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .header-inner {
    background-color: #eee;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
    padding: 10px 0;
  }
}

@media screen and (min-width: 768px) {
  .header-inner {
    padding: 1.8em 0 0.6em;
  }
}

.header-inner__contacts {
  display: none;
  margin-left: auto;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .header-inner__contacts {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.header-inner__contacts p {
  margin: 0;
}

.bg-icon {
  padding-left: 28px;
  background-repeat: no-repeat;
  background-position: left center;
}

.vremya {
  background-image: url("../img/content/clock.svg");
  background-size: 25px;
  line-height: 1.5;
  padding-left: 40px;
}

.vremya span {
  color: #0088C8;
  font-weight: 700;
}

.site-header__kontakti {
  margin-left: 2.3em;
}

.kontakts__telefon {
  font-size: 24px;
}

.kontakts__email {
  color: #7A3F88;
  background-image: url("../img/content/email.svg");
}

.site-footer {
  padding: 2em 0;
  background: linear-gradient(135deg, rgba(224, 245, 255, 0) 2.86%, #E0F5FF 66.87%);
}

@media screen and (min-width: 768px) {
  .site-footer__inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

ul.site-footer__nav {
  margin: 1em 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  ul.site-footer__nav {
    margin-top: 0;
    -webkit-flex: 2;
        -ms-flex: 2;
            flex: 2;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

@media screen and (min-width: 992px) {
  ul.site-footer__nav {
    padding: 0 2em;
    max-height: 100px;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

ul.site-footer__nav li {
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.site-footer__logo {
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 992px) {
  .site-footer__logo {
    padding-right: 2em;
  }
}

.site-footer__copy {
  padding: .5em 0;
}

.site-footer__kontakti {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .site-footer__kontakti {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .site-footer__kontakti {
    padding-left: 2em;
  }
}

.site-name__city {
  cursor: pointer;
  margin: .2em;
  letter-spacing: 1.5px;
  position: relative;
}
.site-name__city > span {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid black;
}
.site-name__city:hover {
  color: #909090;
}
.site-name__city:hover > span {
  border-top: 8px solid #909090;
}
@media screen and (max-width: 767px) {
  .site-name {
    margin: 0 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-name__logo {
    width: 120px;
  }
  .site-name__city {
    margin-left: 20px;
  }
}

@media screen and (min-width: 768px) {
  .site-name {
    margin-left: initial;
  }
}

.mobile-menu {
  width: 320px;
  position: fixed;
  top: 0;
  right: -350px;
  transition: all .2s ease;
  background-color: #eee;
  padding: 13px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
  height: 100vh;
  overflow-y: scroll;
}

.mobile-menu.is-active {
  right: 0;
}

.mobile-menu__header {
  padding-bottom: 12px;
  border-bottom: 1px solid;
}

ul.mobile-menu__services,
ul.mobile-menu__pages {
  padding: 12px 0;
  border-bottom: 1px solid;
}

ul.mobile-menu__services {
  border-bottom: none;
}

.menu-link {
  display: block;
  padding: 10px 35px;
  transition: all .2s ease;
}

.menu-item:hover {
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  color: #7A3F88;
}

.menu-item.has-child {
  border-radius: 10px 10px 0 0;
}

ul.mobile-menu__services .menu-link:before {
  width: 100px;
}

ul.mobile-menu__services .menu-link {
  padding-left: 100px;
}

.nav__link {
  display: block;
  padding: 10px;
  padding-left: 60px;
  position: relative;
}

.nav__link:before {
  content: '';
  width: 60px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.nav__link--12:before {
  background-image: url("../img/icons/desktop.svg");
}

.nav__link--9:before {
  background-image: url("../img/icons/laptop.svg");
}

.nav__link--15:before {
  background-image: url("../img/icons/comp-remont.svg");
}

.nav__link--166:before {
  background-image: url("../img/icons/xbox.svg");
}

.nav__link--109:before {
  background-image: url("../img/icons/tv.svg");
}

.nav__link--91:before {
  background-image: url("../img/icons/tablet.svg");
}

.nav__link--176:before {
  background-image: url("../img/icons/phone.svg");
}

.primary-nav {
  margin-bottom: 10px;
}

.primary-nav__nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1279px) {
  .primary-nav__nav {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.primary-nav__nav .nav__item {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 10px;
}

.primary-nav__nav .nav__item--12 {
  -webkit-flex-basis: 180px;
      -ms-flex-preferred-size: 180px;
          flex-basis: 180px;
}

.primary-nav__nav .nav__item--9 {
  -webkit-flex-basis: 150px;
      -ms-flex-preferred-size: 150px;
          flex-basis: 150px;
}

.primary-nav__nav .nav__item--166 {
  -webkit-flex-basis: 200px;
      -ms-flex-preferred-size: 200px;
          flex-basis: 200px;
}

.nav__item {
  position: relative;
}

ul.nav-child {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
  border-radius: 0 0 10px 10px;
  padding: 10px;
}

.nav__item:hover .nav-child {
  display: block;
}

.section, .repair-ability {
  padding: 3em 0;
}

.section--white {
  background-color: #fff;
}

.section--blue {
  background: linear-gradient(131.52deg, #E0F5FF 2.86%, rgba(224, 245, 255, 0) 66.87%);
}

.section__heading, .service-praises {
  margin-top: 0;
  margin-bottom: .85em;
  font-size: 28px;
  text-align: center;
  font-weight: 400;
}

@media screen and (min-width: 992px) {
  .section__heading, .service-praises {
    font-size: 40px;
  }
}

.hero {
  padding-top: 250px;
  padding-bottom: 10px;
}

._masters__wrapper {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

._master {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1em;
}

._master__img {
  height: 180px;
  width: 180px;
  -webkit-filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.25));
  border-radius: 10px;
  margin: 0 auto 10px;
  overflow: hidden;
}

._master__title {
  font-size: 20px;
  font-weight: 700;
}

._master__position {
  color: #0088C8;
}

.schema {
  /*-webkit-flex: 1 50%;
      -ms-flex: 1 50%;
          flex: 1 50%;*/
  flex: 0 0 25%;
  max-width: 25%;
  margin-bottom: 1.5em;
  position: relative;
}

.schemas__wrapper {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.schema__icon {
  position: relative;
  padding-bottom: 1em;
  margin-bottom: 1em;
  height: 100px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.schema__icon img {
  margin: auto;
}

.schema__desctiption {
  width: 90%;
  margin: 0 auto;
}

.schema__icon:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -3px;
  left: 50%;
  margin-left: -30px;
  width: 60px;
  height: 6px;
  border-radius: 10px;
}

.schema--step1 .schema__icon:after {
  background-color: #70A334;
}

.schema--step2 .schema__icon:after {
  background-color: #E32B3E;
}

.schema--step3 .schema__icon:after {
  background-color: #7A3F88;
}

.schema--step4 .schema__icon:after {
  background-color: #F68943;
}

@media screen and (min-width: 768px) {
  .schema--step1:after,
  .schema--step2:after,
  .schema--step3:after {
    content: '';
    display: block;
    width: 11px;
    height: 19px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAATCAYAAABGKffQAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACrSURBVHgBjZLBDQIhEEWBsQBLMIQCLIED0JZrBWY78WgCiVqBFUApIGzUEFzYmQP5mXkP5gAYYy6c85sQgnjvn2RQUMBPlltCgWkuiREghPDAClAOrADfgBGgNrcEaPcaCX/wSFiFe0IXboRDSmlehZRSUmt9bPusbeS/cso33XN8FakLFzA/N/2GjO3r+a4H5ny21l5rmPZA59xEmqJYcFkLCy5wjHHGgKXercSIR0GGiSgAAAAASUVORK5CYII=") no-repeat center;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    right: 0;
  }
}

.table-praises {
  line-height: 1.4;
}

@media screen and (min-width: 992px) {
  .table-praises {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
}

.table-prais, #main-table {
  -webkit-flex: 1 500px;
      -ms-flex: 1 500px;
          flex: 1 500px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.table-prais .center-tr3, #main-table .center-tr3,
.table-praises .table-prais__title {
  padding: 15px;
  padding-right: 2em;
  font-weight: 600;
  font-size: 20px;
  color: #7A3F88;
  position: relative;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .table-prais .center-tr3, #main-table .center-tr3,
  .table-praises .table-prais__title {
    cursor: initial;
  }
}

.table-prais__title:after {
  content: '';
  position: absolute;
  top: 25px;
  right: 15px;
  width: 19px;
  height: 11px;
  transition: 0.5s;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAALCAYAAACd1bY6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADKSURBVHgBlZJBDoIwEEVnqPdQb2GikCbofdgpuLBsIKzUG+AtXEgC4kHwIo5QQywIQv9qMjP/9TcZ3FvRkZAcIBTBfeuDpjwrOgCSIMITM2frq+wicHO6gfx5y3RB0o6wYObcxrLkukAV9PGSz/IiSXWBXaAgdQWrah1gH6gqWd0bA9ytQo4GxF2gSob6qhyUC8qykElqTZTlFqiRbEzCR5EUy7mdEcIlTN247UXokcdDUd7eN9WIOzT6Br9fBgcGZPwbNoD4OsOA3nPpeETdRFHAAAAAAElFTkSuQmCC") no-repeat center;
}

@media screen and (min-width: 768px) {
  .table-prais__title:after {
    display: none;
  }
}

.table-prais__title.is-unfolded:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.center-tr,
.center-tr2 {
  border-top: 1px solid #ececec;
  transition: all .2s ease;
}

.center-tr:hover,
.center-tr2:hover {
  cursor: pointer;
  background-color: #7A3F88;
  color: #fff;
}

.center-tr .title,
.center-tr2 .title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.center-tr {
  background-color: #ececec;
}

.left-td,
.right-td {
  padding: 8px 12px;
}

.right-td {
  border-left: 2px solid #fff;
  font-weight: bold;
  font-size: .9em;
}

.right-td,
.right-td2 {
  width: 75px;
}

.left-td2,
.left-td {
  width: calc(100% - 75px);
}

@media screen and (min-width: 480px) {
  .right-td2,
  .right-td {
    width: 125px;
  }
  .left-td2,
  .left-td {
    width: calc(100% - 125px);
  }
}

/** хрень какая-то **/
.center-tr3 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 15px;
}

.left-td2,
.right-td2 {
  font-size: 14px;
  display: block;
}

.right-td2 {
  text-align: right;
}

.questions2 {
  background: #000 url("../img/content/question2_bg.webp") center no-repeat;
  position: relative;
  color: #fff;
  /* padding: 60px 0; */
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 992px) {
  .questions2 {
    /* padding: 100px 0; */
  }
}

.questions2:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
}

.questions2 .questions2__title {
  font-size: 38px;
  text-transform: uppercase;
}

.questions2 p {
  font-size: 1.2em;
}

.questions2 .wrapper {
  margin: auto;
  z-index: 2;
}

.questions2 button {
  background: #f68943;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  height: 45px;
  margin-top: 23px;
  border: none;
  color: #fff;
  width: 100%;
  max-width: 290px;
  cursor: pointer;
}

.repair-ability h1 {
  font-weight: 400;
  font-size: 28px;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .repair-ability h1 {
    font-size: 40px;
  }
}

.repair-ability__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.repair-ability__content p {
  -webkit-flex: 0 50%;
      -ms-flex: 0 50%;
          flex: 0 50%;
}

@media screen and (min-width: 768px) {
  .repair-ability__content p {
    -webkit-flex: 0 25%;
        -ms-flex: 0 25%;
            flex: 0 25%;
  }
}

@media screen and (min-width: 992px) {
  .repair-ability__content p {
    -webkit-flex: 0 20%;
        -ms-flex: 0 20%;
            flex: 0 20%;
  }
}

@media screen and (min-width: 1280px) {
  .repair-ability__content p {
    -webkit-flex: 0 16.66%;
        -ms-flex: 0 16.66%;
            flex: 0 16.66%;
  }
}

@media screen and (min-width: 992px) {
  .repair-ability__content {
    max-width: 90%;
    margin: 0 auto;
  }
}

.reviews {
  background: url("../img/content/review-bg-1_xs.png") 90% 240px no-repeat, url("../img/content/review-bg-2_xs.png") 100% 220px no-repeat;
  background-size: 130px;
}

@media screen and (min-width: 480px) {
  .reviews {
    background: url("../img/content/review-bg-1_xs.png") 90% 150px no-repeat, url("../img/content/review-bg-2_xs.png") 100% 130px no-repeat;
  }
}

@media screen and (min-width: 768px) {
  .reviews {
    background: url("../img/content/review-bg-1_lg.png") 50px 150px no-repeat, url("../img/content/review-bg-2_lg.png") 0 100px no-repeat;
    background-size: 300px;
  }
}

@media screen and (min-width: 1280px) {
  .reviews {
    background: url("../img/content/review-bg-1_lg.png") 80px 120px no-repeat, url("../img/content/review-bg-2_lg.png") left center no-repeat;
    background-size: 400px;
      display: flex;
    align-items: center;
  }
}

.rev {
  position: relative;
  padding-top: 50px;
}

@media screen and (min-width: 768px) {
  .rev {
    margin-left: 300px;
  }
}

@media screen and (min-width: 1280px) {
  .rev {
    margin-left: 360px;
    min-height: 200px;
  }
}

.rev__name {
  font-weight: 600;
  font-size: 20px;
  color: #7A3F88;
  position: relative;
  width: 50%;
  position: absolute;
  top: 0;
  left: 145px;
}

.rev__name:before {
  content: '';
  height: 60px;
  width: 65px;
  position: absolute;
  top: 5px;
  right: 100%;
  margin-right: 16px;
  background: url("../img/icons/quote.svg") center no-repeat;
}

@media screen and (min-width: 480px) {
  .rev__name {
    width: unset;
    padding-top: 10px;
  }
}

@media screen and (min-width: 1280px) {
  .rev__name {
    left: calc(145px + 1em);
  }
}

.rev__photo {
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .rev__photo {
    float: left;
    margin-right: 1em;
  }
}

.rev__content.collapsed {
  height: 150px;
  overflow: hidden;
}

.rev__content.collapsed:before {
    content: "Текст перед отзывом: ";

.rev__more {
  border: none;
  outline: none;
  padding: 5px 0;
  color: #7A3F88;
  background: transparent;
  cursor: pointer;
  box-shadow: none;
}

/*# sourceMappingURL=styles.css.map */

