@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/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff");
  font-family: "OpenSans";
  font-weight: 700;
  font-style: normal; }

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

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

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

@font-face {
  src: url("../fonts/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans-Light.woff") format("woff");
  font-family: "OpenSans";
  font-weight: 300;
  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: "OpenSans"; */
  color: #fff;
  background-color: #000; }

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; */ text-align: left;
  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.second {margin-top:100px;margin-bottom:100px; display: flex;}

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  /* margin-bottom: 50px; */
  max-width: 86.11111vw; }
  @media (min-width: 1800px) {
    .container {
      max-width: 1240px; } }
  @media (max-width: 1024px) {
    .container {
      max-width: 100%;
      padding-left: 3.125vmin;
      padding-right: 3.125vmin; }
    .container.second {margin-top:100px;margin-bottom:100px; display: inherit;}
  }

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 */
::-moz-selection {
  color: #fff;
  background-color: #004A27; }
::selection {
  color: #fff;
  background-color: #004A27; }

.slick-slide img {
  width: 100% !important;
  display: block !important; }

.page-wrapper {
  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;
  min-height: 100vh;
  font-size: 1.04167vw;
  font-weight: 300;
  position: relative;
  z-index: 1;
  background: url(../images/1.jpg) no-repeat center center;
  background-size: cover; }
  .page-wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8); }
  @media (min-width: 1800px) {
    .page-wrapper {
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .page-wrapper {
      font-size: 4.6875vmin; } }

.header {
  padding: 1.66667vw 0; }
  .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; }
    @media (max-width: 1024px) {
      .header__container {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .header__contacts {
    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-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    @media (max-width: 1024px) {
      .header__contacts {
        -webkit-box-flex: 1;
            -ms-flex: 1 1;
                flex: 1 1; } }
  .header__whatsapp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .header__whatsapp span {
      border-bottom: 1px solid #fff;
      -webkit-transition: all .3s ease-out;
      -o-transition: all .3s ease-out;
      transition: all .3s ease-out; }
    .header__whatsapp:hover span {
      border-bottom: 1px solid transparent; }
    .header__whatsapp svg {
      width: 1.66667vw;
      height: 1.66667vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .header__whatsapp svg {
          width: 24px;
          height: 24px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .header__whatsapp svg {
          width: 7.5vmin;
          height: 7.5vmin;
          margin-right: 3.125vmin; } }
  .header__phone {
    font-weight: 700;
    font-size: 1.38889vw; }
    @media (min-width: 1800px) {
      .header__phone {
        font-size: 20px; } }
    @media (max-width: 1024px) {
      .header__phone {
        font-size: 6.25vmin; } }
  @media (min-width: 1800px) {
    .header {
      padding: 24px 0; } }
  @media (max-width: 1024px) {
    .header {
      padding: 7.5vmin 0; } }

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .logo__img {
    width: 6.25vw;
    height: 4.86111vw;
    margin-right: 1.38889vw; }
    .logo__img img {
      max-height: 100%; }
    @media (min-width: 1800px) {
      .logo__img {
        width: 90px;
        height: 70px;
        margin-right: 20px; } }
    @media (max-width: 1024px) {
      .logo__img {
        width: 28.125vmin;
        height: 21.875vmin;
        margin-right: 6.25vmin; } }
  .logo__txt {
    font-size: 0.97222vw; }
    @media (min-width: 1800px) {
      .logo__txt {
        font-size: 14px; } }
    @media (max-width: 1024px) {
      .logo__txt {
        font-size: 3.125vmin; } }
  @media (max-width: 1024px) {
    .logo {
      width: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-bottom: 3.75vmin; } }

.btn-call {
  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;
  height: 3.33333vw;
  border: 1px solid #fff;
  border-radius: 0.55556vw;
  padding: 0 2.22222vw;
  font-weight: 600;
  text-transform: uppercase; }
  .btn-call:hover {
    color: #000;
    background-color: #fff; }
  @media (min-width: 1800px) {
    .btn-call {
      height: 48px;
      border-radius: 8px;
      padding: 0 32px; } }
  @media (max-width: 1024px) {
    .btn-call {
      height: 15vmin;
      border-radius: 2.5vmin;
      padding: 0 10vmin;
      display: none; } }

.lng {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase; }
  .lng a:hover {
    opacity: 0.7; }
  .lng__item {
    margin-left: 0.34722vw;
    margin-right: 0.34722vw; }
    @media (min-width: 1800px) {
      .lng__item {
        margin-left: 5px;
        margin-right: 5px; } }
    @media (max-width: 1024px) {
      .lng__item {
        margin-left: 1.5625vmin;
        margin-right: 1.5625vmin; } }
  .lng span {
    border-bottom: 1px solid #fff; }

.modelname {font-size: 18px; line-height: 34px; font-weight: 500; margin:10px 0;}
.main {
  padding: 1.55556vw 0; }
  .main__feedback {
    padding: 1.66667vw; }
    @media (min-width: 1800px) {
      .main__feedback {
        padding-top: 24px; } }
    @media (max-width: 1024px) {
      .main__feedback {
        padding-top: 7.5vmin; } }
  .main__title {
    margin-top: 0;
    margin-bottom: 3.33333vw;
    font-size: 2.77778vw;
    font-weight: 300; }
    @media (min-width: 1800px) {
      .main__title {
        margin-bottom: 48px;
        font-size: 40px; } }
    @media (max-width: 1024px) {
      .main__title {
        margin-bottom: 7.5vmin;
        font-size: 6.25vmin;
        line-height: 140%; } }
  .main__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -1.04167vw;
    margin-right: -1.04167vw; }
    @media (min-width: 1800px) {
      .main__container {
        margin-left: -15px;
        margin-right: -15px; } }
    @media (max-width: 1024px) {
      .main__container {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .main__gallery {
    -ms-flex-preferred-size: calc(40% - 2.08333vw);
        flex-basis: calc(40% - 2.08333vw);
    max-width: calc(40% - 2.08333vw);
    margin-left: 1.04167vw;
    margin-right: 1.04167vw; width:400px;}
    @media (min-width: 1800px) {
      .main__gallery {
        -ms-flex-preferred-size: calc(40% - 30px);
            flex-basis: calc(40% - 30px);
        max-width: calc(40% - 30px);
        margin-left: 15px;
        margin-right: 15px; } }
    @media (max-width: 1024px) {
      .main__gallery {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
  .main__content {
    -ms-flex-preferred-size: calc(60% - 2.08333vw);
        flex-basis: calc(60% - 2.08333vw);
    max-width: calc(60% - 2.08333vw);
    margin-left: 1.04167vw;
    margin-right: 1.04167vw;
    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; text-align:left;}
    @media (min-width: 1800px) {
      .main__content {
        -ms-flex-preferred-size: calc(60% - 30px);
            flex-basis: calc(60% - 30px);
        max-width: calc(60% - 30px);
        margin-left: 15px;
        margin-right: 15px; } }
    @media (max-width: 1024px) {
      .main__content {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin-bottom: 10vmin; } }
  .main__advant {
    font-size: 1.66667vw; }
    .main__advant ul li {
      margin-bottom: 1.04167vw; }
      @media (min-width: 1800px) {
        .main__advant ul li {
          margin-bottom: 15px; } }
      @media (max-width: 1024px) {
        .main__advant ul li {
          margin-bottom: 4.6875vmin; } }
    @media (min-width: 1800px) {
      .main__advant {
        font-size: 24px; } }
    @media (max-width: 1024px) {
      .main__advant {
        font-size: 5vmin;
        margin-bottom: 10vmin; } }
  .main__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .main__btns {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .main__btns {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .main__btn {
    font-size: 1.04167vw;
    background: rgba(255, 255, 255, 0.3);
    height: 4.16667vw;
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    border-radius: 0.55556vw;
    border: 1px solid rgba(255, 255, 255, 0.3);
    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;
    padding: 0 1.66667vw; }
    .main__btn:hover {
      background-color: #fff;
      color: #000; }
    @media (min-width: 1800px) {
      .main__btn {
        font-size: 15px;
        height: 60px;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 8px;
        padding: 0 24px; } }
    @media (max-width: 1024px) {
      .main__btn {
        font-size: 4.6875vmin;
        height: 18.75vmin;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 6.25vmin;
        border-radius: 2.5vmin;
        padding: 0 7.5vmin;
        width: 100%;
        text-align: center; } }
  .main__greenbtn {
    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;
    text-transform: uppercase;
    font-size: 1.18056vw;
    background-color: #004A27;
    border-radius: 0.55556vw;
    height: 4.16667vw;
    padding: 0 1.66667vw; }
    .main__greenbtn img {
      -webkit-transform: rotate(-15deg);
          -ms-transform: rotate(-15deg);
              transform: rotate(-15deg);
      margin-left: -1.73611vw;
      margin-right: 1.38889vw;
      width: 4.44444vw; }
      @media (min-width: 1800px) {
        .main__greenbtn img {
          margin-left: -25px;
          margin-right: 20px;
          width: 64px; } }
      @media (max-width: 1024px) {
        .main__greenbtn img {
          display: none; } }
    .main__greenbtn:hover {
      background-color: #fff;
      color: #000; }
    @media (min-width: 1800px) {
      .main__greenbtn {
        font-size: 17px;
        border-radius: 8px;
        height: 48px;
        padding: 0 24px; } }
    @media (max-width: 1024px) {
      .main__greenbtn {
        font-size: 4.6875vmin;
        border-radius: 2.5vmin;
        height: 15vmin;
        padding: 0 7.5vmin;
        width: 100%; } }
  @media (min-width: 1800px) {
    .main {
      padding: 80px 0; } }
  @media (max-width: 1024px) {
    .main {
      padding: 12.5vmin 0; } }

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 0.83333vw; }
  .slider__wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0.83333vw; }
  .slider__title {
    text-align: center;
    margin-top: 0.41667vw;
    font-size: 0.90278vw; }
    @media (min-width: 1800px) {
      .slider__title {
        margin-top: 6px;
        font-size: 13px; } }
    @media (max-width: 1024px) {
      .slider__title {
        margin-top: 1.875vmin;
        font-size: 4.0625vmin; } }
  @media (min-width: 1800px) {
    .slider {
      border-radius: 12px; } }
  @media (max-width: 1024px) {
    .slider {
      border-radius: 3.75vmin; } }

.footer {
  padding: 1.66667vw 0;
  font-weight: 300; }
  .footer__email a:hover {
    opacity: 0.7; }
  .footer__info a {
    border-bottom: 1px solid #fff; }
    .footer__info a:hover {
      border-bottom: 1px solid transparent; }
  @media (max-width: 1024px) {
    .footer__info {
      margin-bottom: 7.5vmin; } }
  @media (max-width: 1024px) {
    .footer__add {
      margin-bottom: 7.5vmin; } }
  .footer__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; }
    @media (max-width: 1024px) {
      .footer__container {
        -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; } }
  @media (min-width: 1800px) {
    .footer {
      padding: 24px 0; } }
  @media (max-width: 1024px) {
    .footer {
      padding: 7.5vmin 0; } }

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

.btn-slider {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 3.47222vw;
  height: 3.47222vw;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.2);
  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;
  z-index: 1; }
  .btn-slider--prev {
    left: 1.04167vw; }
    @media (min-width: 1800px) {
      .btn-slider--prev {
        left: 15px; } }
    @media (max-width: 1024px) {
      .btn-slider--prev {
        left: 2.1875vmin; } }
  .btn-slider--next {
    right: 1.04167vw; }
    @media (min-width: 1800px) {
      .btn-slider--next {
        right: 15px; } }
    @media (max-width: 1024px) {
      .btn-slider--next {
        right: 2.1875vmin; } }
  .btn-slider:hover {
    background-color: rgba(0, 0, 0, 0.5); }
  .btn-slider svg {
    width: 1.66667vw;
    height: 1.66667vw; }
    @media (min-width: 1800px) {
      .btn-slider svg {
        width: 24px;
        height: 24px; } }
    @media (max-width: 1024px) {
      .btn-slider svg {
        width: 7.5vmin;
        height: 7.5vmin; } }
  @media (min-width: 1800px) {
    .btn-slider {
      width: 50px;
      height: 50px; } }
  @media (max-width: 1024px) {
    .btn-slider {
      width: 12.5vmin;
      height: 12.5vmin; } }

.modal {
  padding: 4.16667vw;
  max-width: 76.38889vw;
  border-radius: 0.83333vw;
  position: relative;
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  color: #000; }
  .modal__title {
    font-size: 1.38889vw;
    font-weight: 700;
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .modal__title {
        font-size: 20px;
        margin-bottom: 24px; } }
    @media (max-width: 1024px) {
      .modal__title {
        font-size: 6.25vmin;
        margin-bottom: 7.5vmin; } }
  .modal__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -1.04167vw;
    margin-right: -1.04167vw; }
    @media (min-width: 1800px) {
      .modal__row {
        margin-left: -15px;
        margin-right: -15px; } }
    @media (max-width: 1024px) {
      .modal__row {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .modal__col {
    -ms-flex-preferred-size: calc(50% - 2.08333vw);
        flex-basis: calc(50% - 2.08333vw);
    max-width: calc(50% - 2.08333vw);
    margin-left: 1.04167vw;
    margin-right: 1.04167vw; }
    @media (min-width: 1800px) {
      .modal__col {
        -ms-flex-preferred-size: calc(50% - 30px);
            flex-basis: calc(50% - 30px);
        max-width: calc(50% - 30px);
        margin-left: 15px;
        margin-right: 15px; } }
    @media (max-width: 1024px) {
      .modal__col {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0; }
        .modal__col:nth-child(1) {
          -webkit-box-ordinal-group: 3;
              -ms-flex-order: 2;
                  order: 2; }
        .modal__col:nth-child(2) {
          -webkit-box-ordinal-group: 2;
              -ms-flex-order: 1;
                  order: 1;
          margin-bottom: 1.66667vw; } }
  @media (min-width: 1800px) {
    .modal {
      padding: 60px;
      max-width: 1100px;
      border-radius: 12px; } }
  @media (max-width: 1024px) {
    .modal {
      padding: 9.375vmin 6.25vmin;
      max-width: 100%;
      border-radius: 3.75vmin; } }

.slider-thumb {
  margin-top: 1.38889vw;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  .slider-thumb__item {
    padding: 0 0.69444vw;
    cursor: pointer; }
    .slider-thumb__item:hover {
      opacity: 0.7; }
    .slider-thumb__item img {
      border-radius: 0.41667vw; }
      @media (min-width: 1800px) {
        .slider-thumb__item img {
          border-radius: 6px; } }
      @media (max-width: 1024px) {
        .slider-thumb__item img {
          border-radius: 1.875vmin; } }
    @media (min-width: 1800px) {
      .slider-thumb__item {
        padding: 0 10px; } }
    @media (max-width: 1024px) {
      .slider-thumb__item {
        padding: 0 1.5625vmin; } }
  @media (min-width: 1800px) {
    .slider-thumb {
      margin-top: 20px;
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .slider-thumb {
      margin-top: 3.125vmin;
      margin-left: -1.5625vmin;
      margin-right: -1.5625vmin; } }

.typography {
  font-size: 1.04167vw;
  line-height: 150%;
  font-weight: 300; }
  .typography p {
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .typography p {
        margin-bottom: 24px; } }
    @media (max-width: 1024px) {
      .typography p {
        margin-bottom: 7.5vmin; } }
  .typography b, .typography strong {
    font-weight: 700; }
  .typography ul {
    margin-left: 1.66667vw; }
    .typography ul li {
      list-style-type: decimal;
      margin-bottom: 0.69444vw; }
      @media (min-width: 1800px) {
        .typography ul li {
          margin-bottom: 10px; } }
      @media (max-width: 1024px) {
        .typography ul li {
          margin-bottom: 3.125vmin; } }
    @media (min-width: 1800px) {
      .typography ul {
        margin-left: 24px; } }
    @media (max-width: 1024px) {
      .typography ul {
        margin-left: 7.5vmin; } }
  @media (min-width: 1800px) {
    .typography {
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .typography {
      font-size: 4.6875vmin; } }

.popup-form {
  padding: 2.77778vw;
  border-radius: 0.83333vw;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  color: #000;
  max-width: 29.16667vw;
  text-align: center;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.11111vw; }
  .popup-form__title {
    font-size: 1.66667vw;
    font-weight: 700;
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .popup-form__title {
        font-size: 24px;
        margin-bottom: 24px; } }
    @media (max-width: 1024px) {
      .popup-form__title {
        font-size: 7.5vmin;
        margin-bottom: 7.5vmin; } }
  .popup-form__input {
    height: 3.33333vw;
    width: 100%;
    border-radius: 0.27778vw;
    margin-bottom: 0.69444vw;
    text-indent: 1.04167vw;
    border: 1px solid rgba(0, 0, 0, 0.1); }
    @media (min-width: 1800px) {
      .popup-form__input {
        height: 48px;
        border-radius: 4px;
        margin-bottom: 10px;
        text-indent: 15px; } }
    @media (max-width: 1024px) {
      .popup-form__input {
        height: 15vmin;
        border-radius: 1.25vmin;
        margin-bottom: 3.125vmin;
        text-indent: 4.6875vmin; } }
  .popup-form__btn {
    height: 3.33333vw;
    width: 100%;
    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;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.11111vw;
    border-radius: 0.27778vw;
    border: none;
    background-color: #004A27; }
    .popup-form__btn:hover {
      background-color: #00170c; }
    @media (min-width: 1800px) {
      .popup-form__btn {
        height: 48px;
        font-size: 16px;
        border-radius: 4px; } }
    @media (max-width: 1024px) {
      .popup-form__btn {
        height: 15vmin;
        font-size: 5vmin;
        border-radius: 1.25vmin; } }
  @media (min-width: 1800px) {
    .popup-form {
      padding: 40px;
      border-radius: 12px;
      max-width: 420px;
      font-size: 16px; } }
  @media (max-width: 1024px) {
    .popup-form {
      padding: 12.5vmin;
      border-radius: 3.75vmin;
      max-width: 131.25vmin;
      font-size: 5vmin; } }

.done-w {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 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: #fff;
  text-align: center;
  padding: 3.81944vw;
  border-radius: 0.41667vw;
  z-index: 10000; }
  .done-window__title {
    font-size: 1.66667vw;
    font-weight: 700;
    margin-bottom: 1.04167vw;
    color: #000; }
    @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;
    color: #000; }
    @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); } }

  .main__btn { background: none; border:2px solid #fff;}
  .page-wrapper::after { background: rgba(0,0,0, .7)}

  .main__greenbtn {
              background-color: #31AEFC;
              border-radius: 30px;
              border:3px solid #fff;
            font-weight: bold;}
/*# sourceMappingURL=main.css.map */

.main__container {text-align:center;justify-content: space-around;}
.catalog_item {padding:50px;}
.catalog_item img,.catalog_item2 img {height: 300px;}
.catalog_item2 {padding:10px;}
