@charset "UTF-8";
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/**
* Селекторы для таргетинга на конкретные браузеры без влияния на специфику или
* ограничение использования в медиа-запросах
*
* Плюсы:
* - Работает с медиа-запросами
*
* Минусы:
* - Не может использоваться с @extend, так как это приведет к недействительности других селекторов
*/
/**
* Целевой Internet Explorer, но не Edge
*
* @demo
*	div {
*		@include browser-ie () {
*			// ...
*		}
*	}
*/
/**
* Target IE-Edge
*/
/**
* Target Firefox
*/
/**
* Target Safari
*/
/**
* Target all WebKit browsers
*/
/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/
/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/
/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/
/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/
/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/
/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/
/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/
/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/
/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/
@font-face {
  src: url("../fonts/GBFont/GBFont-Bold.woff2") format("woff2"), url("../fonts/GBFont/GBFont-Bold.woff") format("woff");
  font-family: "GBFont";
  font-weight: 700;
  font-style: normal; }

@font-face {
  src: url("../fonts/GBFont/GBFont-Regular.woff2") format("woff2"), url("../fonts/GBFont/GBFont-Regular.woff") format("woff");
  font-family: "GBFont";
  font-weight: 400;
  font-style: normal; }

/*! 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.
 */
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 {
  -webkit-box-sizing: content-box;
          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 {
  -webkit-box-sizing: border-box;
          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"] {
  -webkit-box-sizing: border-box;
          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; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before, .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

html {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth; }
  html.has-cursor,
  html.has-cursor * {
    cursor: none !important; }
  html.is-lock-scroll,
  html.is-lock-scroll body {
    overflow: hidden; }

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-family: "GBFont";
  color: #1F222E; }

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

p {
  margin: 0; }

a,
button {
  outline: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer; }

a {
  text-decoration: none;
  color: currentColor; }

svg {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  height: 100%;
  fill: currentColor; }

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0; }
  figure img,
  picture img {
    width: 100%; }

img {
  vertical-align: top;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

img[draggable="false"] {
  pointer-events: none;
  -webkit-user-drag: none; }

fieldset {
  margin: 0;
  border: 0;
  padding: 0; }

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0; }

video {
  outline: none;
  width: 100%;
  height: 100%; }

iframe {
  display: block; }

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  border: 0;
  padding: 0;
  text-align: center;
  background-color: transparent;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .btn__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 100%;
    color: currentColor;
    -webkit-transform: translateZ(0);
            transform: translateZ(0); }

.js-lazy-load:not(.is-loaded) {
  max-height: 50vh; }

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 90vw; }
  @media (min-width: 1800px) {
    .container {
      max-width: 1296px; } }
  @media (max-width: 1024px) {
    .container {
      max-width: 100%;
      padding-left: 3.125vmin;
      padding-right: 3.125vmin; } }

input {
  outline: none; }

.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: var(--vh); }

/* stylelint-disable */
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    -webkit-animation-duration: 0.001s !important;
            animation-duration: 0.001s !important;
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
    -webkit-transition-duration: 0.001s !important;
         -o-transition-duration: 0.001s !important;
            transition-duration: 0.001s !important;
    -webkit-transition-delay: 0s !important;
         -o-transition-delay: 0s !important;
            transition-delay: 0s !important; } }

/* stylelint-enable */
.is-hidden {
  display: none !important; }

.is-hide {
  opacity: 0; }

@media (max-width: 1024px) {
  .for-desktop {
    display: none !important; } }

@media (min-width: 1025px) {
  .for-tablet {
    display: none !important; } }

@media (max-width: 991px) {
  .for-tablet {
    display: none !important; } }

@media (min-width: 1025px) {
  .for-mobile {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1024px) {
  .for-mobile {
    display: none !important; } }

@media (min-width: 1025px) {
  .for-devices {
    display: none !important; } }

.clearfix {
  overflow: auto; }
  .clearfix::after {
    content: "";
    display: table;
    clear: both; }

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0); }

/* stylelint-disable */
.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }

/* stylelint-enable */
.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

@media (max-width: 1024px) {
  .header__btn {
    width: 13.4375vmin;
    height: 13.4375vmin;
    border-radius: 1.25vmin;
    margin-left: 1.875vmin;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: none; }
    .header__btn--phone {
      border: 1px solid #D4D4DD;
      color: #FF0082; }
    .header__btn--menu {
      background-color: #0937FD;
      color: #fff; }
      .header__btn--menu .if-show-menu {
        display: none; }
      .header__btn--menu.is-active .if-hide-menu {
        display: none; }
      .header__btn--menu.is-active .if-show-menu {
        display: block; }
    .header__btn svg {
      width: 6.875vmin;
      height: 6.875vmin; } }

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #E6E8F4;
  padding: 1.66667vw 0; }
  @media (min-width: 1800px) {
    .header__container {
      padding: 24px 0; } }
  @media (max-width: 1024px) {
    .header__container {
      padding: 1.875vmin 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.header__logo img {
  width: 13.47222vw;
  height: 4.16667vw; }
  @media (min-width: 1800px) {
    .header__logo img {
      width: 194px;
      height: 60px; } }
  @media (max-width: 1024px) {
    .header__logo img {
      width: 37.5vmin;
      height: 12.5vmin; } }

@media (max-width: 1024px) {
  .header__logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .header__nav a {
    margin-left: 1.11111vw;
    margin-right: 1.11111vw; }
    .header__nav a:hover {
      color: #0937FD; }
    @media (min-width: 1800px) {
      .header__nav a {
        margin-left: 16px;
        margin-right: 16px; } }
    @media (max-width: 1024px) {
      .header__nav a {
        margin-left: 0;
        margin-right: 0;
        font-size: 5.625vmin;
        padding: 3.125vmin 0;
        width: 100%;
        display: block; } }
  @media (max-width: 1024px) {
    .header__nav {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      width: 100%;
      display: none;
      padding-top: 7.5vmin; } }

.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25vw;
  font-weight: 700; }
  .header__phone svg {
    width: 1.25vw;
    height: 1.25vw;
    margin-right: 0.69444vw;
    position: relative;
    top: -0.13889vw; }
    @media (min-width: 1800px) {
      .header__phone svg {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        top: -2px; } }
    @media (max-width: 1024px) {
      .header__phone svg {
        width: 5.625vmin;
        height: 5.625vmin;
        margin-right: 5.625vmin;
        top: -0.625vmin; } }
  @media (min-width: 1800px) {
    .header__phone {
      font-size: 18px; } }
  @media (max-width: 1024px) {
    .header__phone {
      font-size: 5.625vmin;
      display: none; } }

.footer {
  padding-bottom: 3.47222vw; }
  .footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #E6E8F4;
    padding: 2.22222vw 0; }
    @media (min-width: 1800px) {
      .footer__top {
        padding: 32px 0; } }
    @media (max-width: 1024px) {
      .footer__top {
        padding: 5vmin 0; } }
  .footer__logo img {
    width: 13.47222vw;
    height: 4.16667vw; }
    @media (min-width: 1800px) {
      .footer__logo img {
        width: 194px;
        height: 60px; } }
    @media (max-width: 1024px) {
      .footer__logo img {
        width: 37.5vmin;
        height: 12.5vmin; } }
  .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .footer__nav a {
      margin-left: 1.11111vw;
      margin-right: 1.11111vw; }
      .footer__nav a:hover {
        color: #0937FD; }
      @media (min-width: 1800px) {
        .footer__nav a {
          margin-left: 16px;
          margin-right: 16px; } }
      @media (max-width: 1024px) {
        .footer__nav a {
          margin-left: 5vmin;
          margin-right: 5vmin; } }
    @media (max-width: 1024px) {
      .footer__nav {
        display: none; } }
  .footer__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.25vw;
    font-weight: 700; }
    .footer__phone svg {
      width: 1.25vw;
      height: 1.25vw;
      margin-right: 1.25vw; }
      @media (min-width: 1800px) {
        .footer__phone svg {
          width: 18px;
          height: 18px;
          margin-right: 18px; } }
      @media (max-width: 1024px) {
        .footer__phone svg {
          width: 4.6875vmin;
          height: 4.6875vmin;
          margin-right: 3.125vmin;
          margin-top: -0.625vmin; } }
    @media (min-width: 1800px) {
      .footer__phone {
        font-size: 18px; } }
    @media (max-width: 1024px) {
      .footer__phone {
        font-size: 4.6875vmin; } }
  .footer__mdl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 2.22222vw 0; }
    @media (min-width: 1800px) {
      .footer__mdl {
        padding: 32px 0; } }
    @media (max-width: 1024px) {
      .footer__mdl {
        padding: 6.25vmin 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .footer__add {
    font-size: 1.04167vw; }
    .footer__add strong {
      font-weight: 700; }
    @media (min-width: 1800px) {
      .footer__add {
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .footer__add {
        font-size: 4.0625vmin;
        margin-bottom: 5.625vmin; } }
  .footer__copyright {
    color: rgba(31, 34, 46, 0.5);
    font-size: 0.90278vw; }
    @media (min-width: 1800px) {
      .footer__copyright {
        font-size: 13px; } }
    @media (max-width: 1024px) {
      .footer__copyright {
        font-size: 3.4375vmin; } }
  @media (min-width: 1800px) {
    .footer {
      padding-bottom: 50px; } }
  @media (max-width: 1024px) {
    .footer {
      padding-bottom: 15.625vmin; } }

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 3.75vw;
  padding-left: 2.22222vw;
  padding-right: 2.22222vw;
  border-radius: 0.55556vw;
  font-size: 1.04167vw;
  font-weight: 700;
  color: #fff; }
  .btn--blue {
    background: -o-linear-gradient(4.81deg, #012CE7 0.99%, #0937FD 99.57%);
    background: linear-gradient(85.19deg, #012CE7 0.99%, #0937FD 99.57%);
    border: 1px solid rgba(255, 255, 255, 0.45); }
    .btn--blue-shadow {
      -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15), 0px 5px 45px rgba(9, 55, 253, 0.45);
              box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15), 0px 5px 45px rgba(9, 55, 253, 0.45); }
    .btn--blue:hover {
      opacity: .8; }
  @media (min-width: 1800px) {
    .btn {
      height: 54px;
      padding-left: 32px;
      padding-right: 32px;
      border-radius: 8px;
      font-size: 15px; } }
  .btn--order-courses {
    height: 4.86111vw;
    font-size: 1.18056vw; }
    @media (min-width: 1800px) {
      .btn--order-courses {
        height: 70px;
        font-size: 17px; } }
  .btn--rose {
    background-color: #FF0082; }
    .btn--rose:hover {
      background-color: #cc0068; }
  @media (max-width: 1024px) {
    .btn {
      height: 14.375vmin;
      padding-left: 8.125vmin;
      padding-right: 8.125vmin;
      padding-top: 1.25vmin;
      border-radius: 2.5vmin;
      font-size: 4.0625vmin; } }

.title-h2 {
  margin-top: 0;
  font-weight: 700;
  font-size: 4.16667vw;
  line-height: 5.41667vw;
  margin-bottom: 0.27778vw; }
  .title-h2 span {
    color: #0937FD; }
  @media (min-width: 1800px) {
    .title-h2 {
      font-size: 60px;
      line-height: 78px;
      margin-bottom: 4px; } }
  @media (max-width: 1024px) {
    .title-h2 {
      font-size: 8.4375vmin;
      line-height: 10.9375vmin;
      margin-bottom: 1.25vmin; } }

.subtitle-h2 {
  font-size: 1.66667vw;
  line-height: 2.5vw;
  margin-bottom: 2.91667vw; }
  @media (min-width: 1800px) {
    .subtitle-h2 {
      font-size: 24px;
      line-height: 36px;
      margin-bottom: 42px; } }
  @media (max-width: 1024px) {
    .subtitle-h2 {
      font-size: 4.21875vmin;
      line-height: 6.5625vmin;
      margin-bottom: 7.5vmin; } }

.form--popup {
  position: relative;
  max-width: 37.5vw;
  padding: 3.125vw 4.86111vw;
  border-radius: 1.38889vw;
  background-color: #0937FD;
  margin: 0 auto;
  color: #fff; }
  @media (min-width: 1800px) {
    .form--popup {
      max-width: 540px;
      padding: 45px 70px;
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .form--popup {
      max-width: 100%;
      padding: 10.625vmin 4.375vmin;
      border-radius: 3.75vmin; } }

.form__input {
  width: 100%;
  height: 3.88889vw;
  text-indent: 1.04167vw;
  border-radius: 0.41667vw;
  border: none;
  font-size: 1.04167vw; }
  @media (min-width: 1800px) {
    .form__input {
      height: 56px;
      text-indent: 15px;
      border-radius: 6px;
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .form__input {
      height: 14.375vmin;
      text-indent: 4.6875vmin;
      border-radius: 1.875vmin;
      font-size: 4.6875vmin; } }

.form__fieldset {
  margin-bottom: 0.97222vw; }
  @media (min-width: 1800px) {
    .form__fieldset {
      margin-bottom: 14px; } }
  @media (max-width: 1024px) {
    .form__fieldset {
      margin-bottom: 4.375vmin; } }

.form__title {
  font-size: 2.22222vw;
  margin-top: 0;
  margin-bottom: 1.25vw;
  font-weight: 700; }
  @media (min-width: 1800px) {
    .form__title {
      font-size: 32px;
      margin-bottom: 18px; } }
  @media (max-width: 1024px) {
    .form__title {
      font-size: 8.125vmin;
      margin-bottom: 5.625vmin; } }

.done-w {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(36, 51, 74, 0.5);
  bottom: 0;
  right: 0;
  z-index: 9999;
  display: none; }
  @media (max-width: 1024px) {
    .done-w {
      padding-left: 4.6875vmin;
      padding-right: 4.6875vmin; } }

.done-window {
  position: fixed;
  display: block;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #ff0a87;
  text-align: center;
  padding: 3.81944vw;
  border-radius: 0.41667vw;
  color: #fff;
  z-index: 10000; }
  .done-window__title {
    font-size: 1.66667vw;
    font-weight: 700;
    margin-bottom: 1.04167vw;
    color: #F4F5FA; }
    @media (min-width: 1800px) {
      .done-window__title {
        font-size: 24px;
        margin-bottom: 15px; } }
    @media (max-width: 1024px) {
      .done-window__title {
        font-size: 6.25vmin;
        margin-bottom: 4.6875vmin; } }
  .done-window__subtitle {
    font-size: 1.11111vw; }
    @media (min-width: 1800px) {
      .done-window__subtitle {
        font-size: 16px; } }
    @media (max-width: 1024px) {
      .done-window__subtitle {
        font-size: 4.0625vmin; } }
  @media (min-width: 1800px) {
    .done-window {
      padding: 55px;
      border-radius: 6px; } }
  @media (max-width: 1024px) {
    .done-window {
      padding: 14.0625vmin 4.6875vmin;
      border-radius: 1.875vmin;
      width: calc(100% - 12.5vmin); } }

.first-screen {
  padding: 6.66667vw 0; }
  .first-screen__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: -0.83333vw;
    margin-right: 0.83333vw; }
    @media (min-width: 1800px) {
      .first-screen__container {
        margin-left: -12px;
        margin-right: 12px; } }
    @media (max-width: 1024px) {
      .first-screen__container {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .first-screen__col {
    margin-left: 0.83333vw;
    margin-right: 0.83333vw;
    -ms-flex-preferred-size: calc(50% - 1.66667vw);
        flex-basis: calc(50% - 1.66667vw); }
    @media (min-width: 1800px) {
      .first-screen__col {
        margin-left: 12px;
        margin-right: 12px;
        -ms-flex-preferred-size: calc(50% - 24px);
            flex-basis: calc(50% - 24px); } }
    @media (max-width: 1024px) {
      .first-screen__col {
        margin-left: 0;
        margin-right: 0;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  .first-screen__title {
    font-size: 3.33333vw;
    line-height: 4.30556vw;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.25vw; }
    @media (min-width: 1800px) {
      .first-screen__title {
        font-size: 48px;
        line-height: 62px;
        margin-bottom: 18px; } }
    @media (max-width: 1024px) {
      .first-screen__title {
        font-size: 8.4375vmin;
        line-height: 10.9375vmin;
        margin-bottom: 2.5vmin; } }
  .first-screen__subtitle {
    font-size: 1.38889vw;
    line-height: 1.80556vw;
    margin-bottom: 3.05556vw; }
    @media (min-width: 1800px) {
      .first-screen__subtitle {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 44px; } }
    @media (max-width: 1024px) {
      .first-screen__subtitle {
        font-size: 4.0625vmin;
        line-height: 6.875vmin;
        margin-bottom: 3.75vmin; } }
  .first-screen__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .first-screen__image img {
      width: 28.05556vw;
      height: 25.27778vw; }
      @media (min-width: 1800px) {
        .first-screen__image img {
          width: 404px;
          height: 364px; } }
      @media (max-width: 1024px) {
        .first-screen__image img {
          display: none; } }
  @media (min-width: 1800px) {
    .first-screen {
      padding: 96px 0; } }
  @media (max-width: 1024px) {
    .first-screen {
      padding: 11.875vmin 0; } }

.advantage {
  background-color: #1F222E;
  padding: 5.13889vw 0 6.66667vw;
  color: #fff; }
  .advantage__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -0.83333vw;
    margin-right: -0.83333vw; }
    @media (min-width: 1800px) {
      .advantage__container {
        margin-left: -12px;
        margin-right: -12px; } }
    @media (max-width: 1024px) {
      .advantage__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-left: 0;
        margin-right: 0; } }
  @media (min-width: 1800px) {
    .advantage {
      padding: 74px 0 96px; } }
  @media (max-width: 1024px) {
    .advantage {
      padding: 10.625vmin 0 0; } }

.advant {
  -ms-flex-preferred-size: calc(25% - 1.66667vw);
      flex-basis: calc(25% - 1.66667vw);
  margin-left: 0.83333vw;
  margin-right: 0.83333vw; }
  .advant__ico {
    width: 5.97222vw;
    height: 5.97222vw;
    border-radius: 0.55556vw;
    margin-bottom: 1.80556vw;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 0.13889vw solid rgba(255, 255, 255, 0.25);
    z-index: 1;
    position: relative; }
    .advant__ico:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: -1;
      background-color: #fff;
      border-radius: 0.55556vw; }
      @media (min-width: 1800px) {
        .advant__ico:after {
          border-radius: 8px; } }
      @media (max-width: 1024px) {
        .advant__ico:after {
          border-radius: 2.5vmin; } }
    .advant__ico--indigo {
      background-color: #0937FD;
      -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15), 0px 5px 45px rgba(9, 55, 253, 0.45);
              box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15), 0px 5px 45px rgba(9, 55, 253, 0.45); }
      .advant__ico--indigo:after {
        background: -o-linear-gradient(45.55deg, #0937FD 4.63%, rgba(9, 55, 253, 0) 95.63%);
        background: linear-gradient(44.45deg, #0937FD 4.63%, rgba(9, 55, 253, 0) 95.63%); }
    .advant__ico--rose {
      background: #E100BD;
      -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15), 0px 5px 45px rgba(225, 0, 189, 0.45);
              box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15), 0px 5px 45px rgba(225, 0, 189, 0.45); }
      .advant__ico--rose:after {
        background: -o-linear-gradient(45.55deg, rgba(87, 25, 177, 0.45) 4.63%, rgba(141, 70, 246, 0) 95.63%);
        background: linear-gradient(44.45deg, rgba(87, 25, 177, 0.45) 4.63%, rgba(141, 70, 246, 0) 95.63%); }
    .advant__ico--blue {
      background: #00A9FF;
      -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15), 0px 5px 45px rgba(0, 169, 255, 0.45);
              box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15), 0px 5px 45px rgba(0, 169, 255, 0.45); }
      .advant__ico--blue:after {
        background: -o-linear-gradient(45.55deg, rgba(0, 169, 255, 0.45) 4.63%, rgba(0, 169, 255, 0) 95.63%);
        background: linear-gradient(44.45deg, rgba(0, 169, 255, 0.45) 4.63%, rgba(0, 169, 255, 0) 95.63%); }
    .advant__ico--green {
      background: #00FF75;
      -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15), 0px 5px 45px rgba(0, 255, 117, 0.45);
              box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15), 0px 5px 45px rgba(0, 255, 117, 0.45); }
      .advant__ico--green:after {
        background: -o-linear-gradient(45.55deg, rgba(0, 255, 117, 0.45) 4.63%, rgba(0, 255, 117, 0) 95.63%);
        background: linear-gradient(44.45deg, rgba(0, 255, 117, 0.45) 4.63%, rgba(0, 255, 117, 0) 95.63%); }
    .advant__ico svg {
      width: 2.91667vw;
      height: 2.91667vw;
      position: relative;
      z-index: 3; }
      @media (min-width: 1800px) {
        .advant__ico svg {
          width: 42px;
          height: 42px; } }
      @media (max-width: 1024px) {
        .advant__ico svg {
          width: 11.25vmin;
          height: 11.25vmin; } }
    @media (min-width: 1800px) {
      .advant__ico {
        width: 86px;
        height: 86px;
        border-radius: 8px;
        margin-bottom: 26px;
        border: 2px solid rgba(255, 255, 255, 0.25); } }
    @media (max-width: 1024px) {
      .advant__ico {
        width: 23.125vmin;
        height: 23.125vmin;
        border-radius: 2.5vmin;
        margin-bottom: 8.125vmin;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-right: 5.625vmin;
        border: 0.625vmin solid rgba(255, 255, 255, 0.25); } }
  .advant__title {
    font-size: 1.38889vw;
    line-height: 1.94444vw;
    margin-bottom: 0.34722vw;
    font-weight: 700; }
    @media (min-width: 1800px) {
      .advant__title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 5px; } }
    @media (max-width: 1024px) {
      .advant__title {
        font-size: 4.84375vmin;
        line-height: 6.875vmin;
        margin-bottom: 1.5625vmin; } }
  .advant__txt {
    font-size: 1.04167vw;
    line-height: 1.59722vw; }
    @media (min-width: 1800px) {
      .advant__txt {
        font-size: 15px;
        line-height: 23px; } }
    @media (max-width: 1024px) {
      .advant__txt {
        font-size: 3.75vmin;
        line-height: 5.9375vmin; } }
  @media (min-width: 1800px) {
    .advant {
      -ms-flex-preferred-size: calc(25% - 24px);
          flex-basis: calc(25% - 24px);
      margin-left: 12px;
      margin-right: 12px; } }
  @media (max-width: 1024px) {
    .advant {
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
      margin-left: 0;
      margin-right: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 10vmin; } }

.services {
  padding: 5.69444vw 0 5vw; }
  .services__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.83333vw;
    margin-right: -0.83333vw; }
    @media (min-width: 1800px) {
      .services__container {
        margin-left: -12px;
        margin-right: -12px; } }
    @media (max-width: 1024px) {
      .services__container {
        margin-left: -3.125vmin;
        margin-right: -3.125vmin;
        padding-left: 3.125vmin;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        overflow-x: scroll; } }
  @media (min-width: 1800px) {
    .services {
      padding: 82px 0 72px; } }
  @media (max-width: 1024px) {
    .services {
      padding: 10vmin 0 8.75vmin; } }

.serv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: calc(25% - 1.66667vw);
      flex-basis: calc(25% - 1.66667vw);
  margin-left: 0.83333vw;
  margin-right: 0.83333vw;
  position: relative;
  z-index: 1;
  margin-bottom: 1.66667vw;
  overflow: hidden;
  border-radius: 1.38889vw; }
  .serv:after {
    content: "";
    position: absolute;
    background: -webkit-gradient(linear, left bottom, left top, from(#1F222E), to(rgba(31, 34, 46, 0)));
    background: -o-linear-gradient(bottom, #1F222E 0%, rgba(31, 34, 46, 0) 100%);
    background: linear-gradient(0deg, #1F222E 0%, rgba(31, 34, 46, 0) 100%);
    top: 1.38889vw;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; }
    @media (min-width: 1800px) {
      .serv:after {
        top: 20px; } }
    @media (max-width: 1024px) {
      .serv:after {
        top: 6.25vmin; } }
  .serv img {
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    width: 100%; }
  .serv__title {
    position: absolute;
    left: 2.22222vw;
    bottom: 1.80556vw;
    font-size: 1.52778vw;
    line-height: 2.22222vw;
    margin-right: 2.08333vw;
    color: #fff;
    font-weight: 700;
    z-index: 2; }
    @media (min-width: 1800px) {
      .serv__title {
        left: 32px;
        bottom: 26px;
        font-size: 22px;
        line-height: 32px;
        margin-right: 30px; } }
    @media (max-width: 1024px) {
      .serv__title {
        left: 5vmin;
        bottom: 5vmin;
        font-size: 4.0625vmin;
        line-height: 5.9375vmin;
        margin-right: 9.375vmin; } }
  .serv:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1); }
    @media (max-width: 1024px) {
      .serv:hover img {
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; } }
  @media (min-width: 1800px) {
    .serv {
      -ms-flex-preferred-size: calc(25% - 24px);
          flex-basis: calc(25% - 24px);
      margin-left: 12px;
      margin-right: 12px;
      margin-bottom: 24px;
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .serv {
      -ms-flex-preferred-size: 52.1875vmin;
          flex-basis: 52.1875vmin;
      width: 52.1875vmin;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-left: 0;
      margin-right: 3.75vmin;
      margin-bottom: 7.5vmin;
      border-radius: 3.125vmin; } }

.open-world {
  background-color: #1F222E;
  color: #fff;
  padding: 5.83333vw 0 6.66667vw; }
  .open-world .title-h2 {
    font-size: 3.19444vw;
    line-height: 4.02778vw;
    margin-bottom: 2.08333vw; }
    .open-world .title-h2 span {
      color: #FF0082; }
    @media (min-width: 1800px) {
      .open-world .title-h2 {
        font-size: 46px;
        line-height: 58px;
        margin-bottom: 30px; } }
    @media (max-width: 1024px) {
      .open-world .title-h2 {
        font-size: 6.25vmin;
        line-height: 8.125vmin;
        margin-bottom: 8.125vmin;
        text-align: center; } }
  @media (max-width: 1024px) {
    .open-world .btn {
      height: 25.625vmin;
      font-size: 4.6875vmin; } }
  .open-world__content {
    font-size: 1.25vw; }
    .open-world__content ul {
      margin-left: 1.66667vw; }
      .open-world__content ul li {
        list-style-type: disc;
        margin-bottom: 0.83333vw; }
        @media (min-width: 1800px) {
          .open-world__content ul li {
            margin-bottom: 12px; } }
        @media (max-width: 1024px) {
          .open-world__content ul li {
            margin-bottom: 3.75vmin; } }
      @media (min-width: 1800px) {
        .open-world__content ul {
          margin-left: 24px; } }
      @media (max-width: 1024px) {
        .open-world__content ul {
          margin-left: 7.5vmin; } }
    @media (min-width: 1800px) {
      .open-world__content {
        font-size: 18px; } }
    @media (max-width: 1024px) {
      .open-world__content {
        font-size: 4.6875vmin; } }
  @media (min-width: 1800px) {
    .open-world {
      padding: 84px 0 96px; } }
  @media (max-width: 1024px) {
    .open-world {
      padding: 10.9375vmin 0 12.8125vmin; } }

.for-children__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -0.83333vw;
  margin-right: -0.83333vw; }
  @media (min-width: 1800px) {
    .for-children__container {
      margin-left: -12px;
      margin-right: -12px; } }
  @media (max-width: 1024px) {
    .for-children__container {
      margin-left: 0;
      margin-right: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.for-children__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -0.83333vw;
  margin-right: -0.83333vw; }
  @media (min-width: 1800px) {
    .for-children__wrapper {
      margin-left: -12px;
      margin-right: -12px; } }
  @media (max-width: 1024px) {
    .for-children__wrapper {
      margin-left: 0;
      margin-right: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.for-children__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  padding-top: 5.90278vw;
  padding-bottom: 5.90278vw;
  margin-left: 0.83333vw;
  margin-right: 0.83333vw;
  -ms-flex-preferred-size: calc(66.66% - 1.66667vw);
      flex-basis: calc(66.66% - 1.66667vw); }
  @media (min-width: 1800px) {
    .for-children__left {
      padding-top: 85px;
      padding-bottom: 85px;
      margin-left: 12px;
      margin-right: 12px;
      -ms-flex-preferred-size: calc(66.66% - 24px);
          flex-basis: calc(66.66% - 24px); } }
  @media (max-width: 1024px) {
    .for-children__left {
      padding-top: 10.625vmin;
      padding-bottom: 0;
      margin-left: 0;
      margin-right: 0;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%; } }

.for-children__right {
  -ms-flex-preferred-size: calc(33.33% - 1.66667vw);
      flex-basis: calc(33.33% - 1.66667vw);
  max-width: calc(33.33% - 1.66667vw);
  margin-left: 0.83333vw;
  margin-right: 0.83333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }
  @media (min-width: 1800px) {
    .for-children__right {
      margin-left: 12px;
      margin-right: 12px;
      -ms-flex-preferred-size: calc(33.33% - 24px);
          flex-basis: calc(33.33% - 24px);
      max-width: calc(33.33% - 24px); } }
  @media (max-width: 1024px) {
    .for-children__right {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; } }

.for-children__image {
  margin-top: -10.55556vw; }
  .for-children__image img {
    width: 30.55556vw;
    height: 35.13889vw;
    max-width: none; }
    @media (min-width: 1800px) {
      .for-children__image img {
        width: 600px;
        height: 690px; } }
    @media (max-width: 1024px) {
      .for-children__image img {
        width: 51.875vmin;
        height: 60vmin; } }
  @media (min-width: 1800px) {
    .for-children__image {
      margin-top: -152px; } }
  @media (max-width: 1024px) {
    .for-children__image {
      margin-top: -20vmin; } }

.for-children__advantage {
  background-color: #F4F5FA;
  padding: 6.94444vw 0; }
  @media (min-width: 1800px) {
    .for-children__advantage {
      padding: 100px 0; } }
  @media (max-width: 1024px) {
    .for-children__advantage {
      padding: 11.25vmin 0 8.125vmin; } }

.for-children__subtitle {
  font-size: 2.22222vw;
  line-height: 2.5vw;
  margin-bottom: 2.22222vw;
  font-weight: 700; }
  @media (min-width: 1800px) {
    .for-children__subtitle {
      font-size: 32px;
      line-height: 36px;
      margin-bottom: 32px; } }
  @media (max-width: 1024px) {
    .for-children__subtitle {
      font-size: 8.59375vmin;
      line-height: 10.78125vmin;
      margin-bottom: 5vmin; } }

.for-children__card {
  margin-left: 0.83333vw;
  margin-right: 0.83333vw;
  -ms-flex-preferred-size: calc(33.33% - 1.66667vw);
      flex-basis: calc(33.33% - 1.66667vw); }
  @media (min-width: 1800px) {
    .for-children__card {
      margin-left: 12px;
      margin-right: 12px;
      -ms-flex-preferred-size: calc(33.33% - 24px);
          flex-basis: calc(33.33% - 24px); } }
  @media (max-width: 1024px) {
    .for-children__card {
      margin-left: 0;
      margin-right: 0;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-bottom: 3.75vmin; } }

.card {
  background-color: #fff;
  padding: 2.08333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.83333vw; }
  .card__ico {
    background-color: #0937FD;
    width: 5.97222vw;
    height: 5.97222vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 0.55556vw;
    margin-right: 1.66667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .card__ico svg {
      width: 2.91667vw;
      height: 2.91667vw; }
      @media (min-width: 1800px) {
        .card__ico svg {
          width: 42px;
          height: 42px; } }
      @media (max-width: 1024px) {
        .card__ico svg {
          width: 8.125vmin;
          height: 8.125vmin; } }
    @media (min-width: 1800px) {
      .card__ico {
        width: 86px;
        height: 86px;
        border-radius: 8px;
        margin-right: 24px; } }
    @media (max-width: 1024px) {
      .card__ico {
        width: 16.25vmin;
        height: 16.25vmin;
        border-radius: 1.875vmin;
        margin-right: 3.125vmin; } }
  .card__title {
    font-size: 1.38889vw;
    line-height: 1.94444vw;
    font-weight: 700;
    margin-bottom: 0.97222vw; }
    @media (min-width: 1800px) {
      .card__title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .card__title {
        font-size: 5.3125vmin;
        line-height: 7.8125vmin;
        margin-bottom: 3.125vmin; } }
  .card__txt {
    font-size: 1.04167vw;
    line-height: 1.59722vw;
    color: rgba(31, 34, 46, 0.5); }
    .card__txt p {
      margin-bottom: 1.11111vw; }
      @media (min-width: 1800px) {
        .card__txt p {
          margin-bottom: 16px; } }
      @media (max-width: 1024px) {
        .card__txt p {
          margin-bottom: 5vmin; } }
    @media (min-width: 1800px) {
      .card__txt {
        font-size: 15px;
        line-height: 23px; } }
    @media (max-width: 1024px) {
      .card__txt {
        font-size: 4.0625vmin;
        line-height: 6.25vmin; } }
  @media (min-width: 1800px) {
    .card {
      padding: 30px;
      border-radius: 12px; } }
  @media (max-width: 1024px) {
    .card {
      padding: 3.75vmin 3.125vmin;
      border-radius: 3.75vmin; } }

.courses {
  padding: 5.55556vw 0 5vw; }
  .courses .title-h2 {
    margin-bottom: 2.22222vw; }
    .courses .title-h2 span {
      color: #FF0082; }
    @media (min-width: 1800px) {
      .courses .title-h2 {
        margin-bottom: 32px; } }
    @media (max-width: 1024px) {
      .courses .title-h2 {
        margin-bottom: 6.875vmin; } }
  .courses__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.83333vw;
    margin-right: -0.83333vw; }
    @media (min-width: 1800px) {
      .courses__container {
        margin-left: -12px;
        margin-right: -12px; } }
    @media (max-width: 1024px) {
      .courses__container {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  @media (min-width: 1800px) {
    .courses {
      padding: 80px 0 72px; } }
  @media (max-width: 1024px) {
    .courses {
      padding: 10.625vmin 0 8.75vmin; } }

.course {
  border-radius: 1.38889vw;
  padding: 2.08333vw;
  border: 1px solid #D4D4DD;
  margin-left: 0.83333vw;
  margin-right: 0.83333vw;
  margin-bottom: 1.66667vw;
  -ms-flex-preferred-size: calc(33.33% - 1.66667vw);
      flex-basis: calc(33.33% - 1.66667vw); }
  .course__title {
    font-size: 1.25vw;
    line-height: 1.80556vw;
    margin-bottom: 0.97222vw;
    font-weight: 700; }
    @media (min-width: 1800px) {
      .course__title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .course__title {
        font-size: 4.6875vmin;
        line-height: 7.1875vmin;
        margin-bottom: 1.5625vmin; } }
  .course__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 0.90278vw;
    line-height: 1.59722vw;
    margin-bottom: 0.97222vw; }
    .course__info svg {
      width: 1.25vw;
      height: 1.25vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .course__info svg {
          width: 18px;
          height: 18px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .course__info svg {
          width: 5.625vmin;
          height: 5.625vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .course__info {
        font-size: 13px;
        line-height: 23px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .course__info {
        font-size: 4.0625vmin;
        line-height: 7.1875vmin;
        margin-bottom: 0; } }
  .course__level, .course__age {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .course__intro {
    font-size: 1.04167vw;
    line-height: 1.59722vw;
    color: rgba(31, 34, 46, 0.5); }
    @media (min-width: 1800px) {
      .course__intro {
        font-size: 15px;
        line-height: 23px; } }
    @media (max-width: 1024px) {
      .course__intro {
        font-size: 4.6875vmin;
        line-height: 7.1875vmin;
        display: none; } }
  @media (min-width: 1800px) {
    .course {
      border-radius: 20px;
      padding: 30px;
      margin-left: 12px;
      margin-right: 12px;
      margin-bottom: 24px;
      -ms-flex-preferred-size: calc(33.33% - 24px);
          flex-basis: calc(33.33% - 24px); } }
  @media (max-width: 1024px) {
    .course {
      border-radius: 5vmin;
      padding: 8.125vmin;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 3.75vmin;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%; } }

.shedule {
  background-color: #F4F5FA;
  padding: 6.66667vw 0 5vw; }
  .shedule__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.83333vw;
    margin-right: -0.83333vw; }
    @media (min-width: 1800px) {
      .shedule__container {
        margin-left: -12px;
        margin-right: -12px; } }
    @media (max-width: 1024px) {
      .shedule__container {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  @media (min-width: 1800px) {
    .shedule {
      padding: 96px 0 72px; } }
  @media (max-width: 1024px) {
    .shedule {
      padding: 11.875vmin 0 4.375vmin; } }

.event {
  margin-left: 0.83333vw;
  margin-right: 0.83333vw;
  padding: 2.08333vw;
  -ms-flex-preferred-size: calc(50% - 1.66667vw);
      flex-basis: calc(50% - 1.66667vw);
  margin-bottom: 1.66667vw;
  border-radius: 1.38889vw;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .event__date {
    font-size: 2.22222vw;
    color: #FF0082;
    margin-bottom: 0.97222vw; }
    @media (min-width: 1800px) {
      .event__date {
        font-size: 32px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .event__date {
        font-size: 6.5625vmin;
        margin-bottom: 3.75vmin; } }
  .event__title {
    font-size: 1.66667vw;
    line-height: 2.77778vw;
    margin-bottom: 0.97222vw;
    font-weight: 700; }
    @media (min-width: 1800px) {
      .event__title {
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .event__title {
        font-size: 4.84375vmin;
        line-height: 7.34375vmin;
        margin-bottom: 4.375vmin; } }
  .event__age {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.04167vw;
    line-height: 1.59722vw;
    margin-bottom: 0.97222vw; }
    .event__age svg {
      width: 1.80556vw;
      height: 1.80556vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .event__age svg {
          width: 26px;
          height: 26px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .event__age svg {
          width: 6.875vmin;
          height: 6.875vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .event__age {
        font-size: 15px;
        line-height: 23px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .event__age {
        font-size: 4.0625vmin;
        line-height: 7.1875vmin;
        margin-bottom: 4.375vmin; } }
  @media (min-width: 1800px) {
    .event {
      margin-left: 12px;
      margin-right: 12px;
      padding: 30px;
      -ms-flex-preferred-size: calc(50% - 24px);
          flex-basis: calc(50% - 24px);
      margin-bottom: 24px;
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .event {
      margin-left: 0;
      margin-right: 0;
      padding: 9.375vmin 6.25vmin;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-bottom: 7.5vmin;
      border-radius: 6.25vmin; } }

.faq {
  padding: 5.83333vw 0 5.27778vw; }
  .faq .accordeon {
    max-width: 59.72222vw;
    margin: 0 auto; }
    @media (min-width: 1800px) {
      .faq .accordeon {
        max-width: 860px; } }
    @media (max-width: 1024px) {
      .faq .accordeon {
        max-width: 100%; } }
  .faq .title-h2 {
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .faq .title-h2 {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .faq .title-h2 {
        margin-bottom: 6.25vmin; } }
  @media (min-width: 1800px) {
    .faq {
      padding: 84px 0 76px; } }
  @media (max-width: 1024px) {
    .faq {
      padding: 10.625vmin 0 8.125vmin; } }

.accordeon {
  font-size: 1.04167vw;
  line-height: 1.59722vw; }
  .accordeon dl {
    margin: 0;
    margin-bottom: 0.83333vw; }
    @media (min-width: 1800px) {
      .accordeon dl {
        margin-bottom: 12px; } }
    @media (max-width: 1024px) {
      .accordeon dl {
        margin-bottom: 3.75vmin; } }
  .accordeon dt {
    padding: 1.38889vw 1.66667vw;
    border-radius: 0.83333vw;
    font-weight: 700;
    font-size: 1.25vw;
    line-height: 1.80556vw;
    border: 1px solid #D4D4DD;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .accordeon dt:hover {
      color: #0937FD; }
    .accordeon dt:after {
      content: "";
      display: inline-block;
      width: 2.08333vw;
      height: 2.08333vw;
      background: url(../images/sprites/svg/down.svg) no-repeat center center;
      margin-left: 0.69444vw; }
      @media (min-width: 1800px) {
        .accordeon dt:after {
          width: 30px;
          height: 30px;
          margin-left: 10px; } }
      @media (max-width: 1024px) {
        .accordeon dt:after {
          width: 9.375vmin;
          height: 9.375vmin;
          margin-left: 3.125vmin; } }
    .accordeon dt.active {
      color: #0937FD; }
      .accordeon dt.active:after {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
    @media (min-width: 1800px) {
      .accordeon dt {
        padding: 20px 24px;
        border-radius: 12px;
        font-size: 18px;
        line-height: 26px; } }
    @media (max-width: 1024px) {
      .accordeon dt {
        padding: 3.75vmin 5vmin 2.5vmin;
        border-radius: 3.75vmin;
        font-size: 4.0625vmin;
        line-height: 6.25vmin; } }
  .accordeon dd {
    margin: 0;
    padding: 1.66667vw; }
    @media (min-width: 1800px) {
      .accordeon dd {
        padding: 24px; } }
    @media (max-width: 1024px) {
      .accordeon dd {
        padding: 7.5vmin; } }
  @media (min-width: 1800px) {
    .accordeon {
      font-size: 15px;
      line-height: 23px; } }
  @media (max-width: 1024px) {
    .accordeon {
      font-size: 4.6875vmin;
      line-height: 7.1875vmin; } }

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #0937FD; }
  .gallery__item {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%; }
    .gallery__item img {
      -webkit-transition: all .3s ease-out;
      -o-transition: all .3s ease-out;
      transition: all .3s ease-out;
      opacity: .8; }
      .gallery__item img:hover {
        opacity: 1; }
    @media (max-width: 1024px) {
      .gallery__item {
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%; } }

.reviews-block {
  padding: 5.83333vw 0 6.66667vw;
  background-color: #1F222E;
  position: relative;
  overflow: hidden; }
  .reviews-block .title-h2 {
    color: #fff;
    margin-bottom: 1.04167vw; }
    @media (min-width: 1800px) {
      .reviews-block .title-h2 {
        margin-bottom: 15px; } }
    @media (max-width: 1024px) {
      .reviews-block .title-h2 {
        margin-bottom: 4.6875vmin; } }
  @media (min-width: 1800px) {
    .reviews-block {
      padding: 84px 0 96px; } }
  @media (max-width: 1024px) {
    .reviews-block {
      padding: 10.625vmin 0 30vmin;
      margin-left: -3.125vmin;
      padding-left: 3.125vmin; } }

.reviews {
  margin-right: -10.41667vw; }
  .reviews__item {
    padding-right: 0.83333vw; }
    @media (min-width: 1800px) {
      .reviews__item {
        padding-right: 12px; } }
    @media (max-width: 1024px) {
      .reviews__item {
        padding-right: 3.75vmin; } }
  @media (min-width: 1800px) {
    .reviews {
      margin-right: -400px; } }
  @media (max-width: 1024px) {
    .reviews {
      margin-right: -3.125vmin;
      margin-left: -3.125vmin;
      padding-left: 3.125vmin; } }

.review {
  max-width: 36.52778vw;
  background-color: #fff;
  padding: 2.08333vw;
  font-size: 1.04167vw;
  line-height: 1.59722vw;
  border-radius: 1.38889vw;
  min-height: 25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .review__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .review__image {
    width: 4.86111vw;
    height: 4.86111vw;
    margin-right: 0.83333vw; }
    @media (min-width: 1800px) {
      .review__image {
        width: 70px;
        height: 70px;
        margin-right: 12px; } }
    @media (max-width: 1024px) {
      .review__image {
        width: 18.75vmin;
        height: 18.75vmin;
        margin-right: 3.75vmin;
        -ms-flex-negative: 0;
            flex-shrink: 0; } }
  .review__text {
    margin-bottom: 1.11111vw; }
    @media (min-width: 1800px) {
      .review__text {
        margin-bottom: 5vmin; } }
    @media (max-width: 1024px) {
      .review__text {
        margin-bottom: 16px; } }
  .review__name {
    font-size: 0.90278vw;
    line-height: 1.25vw;
    font-weight: 700; }
    .review__name span {
      font-weight: 400;
      color: rgba(31, 34, 46, 0.5); }
      @media (max-width: 1024px) {
        .review__name span {
          font-size: 3.125vmin;
          display: inline-block; } }
    @media (min-width: 1800px) {
      .review__name {
        font-size: 13px;
        line-height: 18px; } }
    @media (max-width: 1024px) {
      .review__name {
        font-size: 3.75vmin;
        line-height: 4.375vmin; } }
  @media (min-width: 1800px) {
    .review {
      max-width: 526px;
      padding: 30px;
      font-size: 15px;
      line-height: 23px;
      border-radius: 20px;
      min-height: 360px; } }
  @media (max-width: 1024px) {
    .review {
      max-width: 84.375vmin;
      padding: 6.25vmin 3.75vmin;
      font-size: 4.0625vmin;
      line-height: 5.9375vmin;
      border-radius: 6.25vmin;
      min-height: auto; } }

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.38889vw; }
  .slick-dots li {
    font-size: 0;
    margin-right: 0.20833vw; }
    .slick-dots li button {
      width: 0.83333vw;
      height: 0.83333vw;
      border: none;
      background-color: #fff;
      border-radius: 50%; }
      @media (min-width: 1800px) {
        .slick-dots li button {
          width: 12px;
          height: 12px; } }
      @media (max-width: 1024px) {
        .slick-dots li button {
          width: 2.5vmin;
          height: 2.5vmin !important;
          -ms-flex-negative: 0;
              flex-shrink: 0; } }
    .slick-dots li.slick-active button {
      background-color: #0937FD; }
    @media (min-width: 1800px) {
      .slick-dots li {
        margin-right: 3px; } }
    @media (max-width: 1024px) {
      .slick-dots li {
        margin-right: 1.875vmin; } }
  @media (min-width: 1800px) {
    .slick-dots {
      margin-top: 20px; } }
  @media (max-width: 1024px) {
    .slick-dots {
      margin-top: 6.25vmin; } }

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