@charset "UTF-8";
/**
 * Название темы: Studio 1010
 * URI темы: studio-1010.ru
 * Описание: тема для сайта веб-студии Studio 1010
 * Версия: 1.0.0
 * Автор: thebestkey
 * Лицензия: GPL 2 или более поздняя
 * Лицензия URI: http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Стили структурированы по методологии BEM
*/
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
/* Обнуление отступов */
/*
Каждый браузер устанавливает свои значения стилей по умолчанию для различных HTML-элементов.
С помощью CSS Reset мы можем нивелировать эту разницу для обеспечения кроссбраузерности стилей.
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  vertical-align: baseline;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
}

form, input, textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
  outline: none;
}

/*section {
	overflow: hidden;
}*/
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, td img {
  vertical-align: top;
}

input, select, button, textarea {
  margin: 0; /* убираем отступы по умолчанию для элементов форм (в частности для checkbox и radio) */
  font-size: 100%; /* делаем размер шрифтов везде одинаковым */
}

input[type=checkbox] { /* вертикальное выравнивание чекбоксов и радиобатонов относительно меток */
  vertical-align: bottom;
}

input[type=radio] {
  vertical-align: text-bottom;
}

h1:hover, h2:hover, h3:hover, h4:hover, p:hover {
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
}
/* Основные контейнеры (main, body) и размеры экрана */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
.modal-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  background-color: #1A1A1A;
  opacity: 0.7;
  display: none;
}
.modal-overlay.active {
  display: block;
}

body {
  background-color: white;
  width: 100%;
}
body section {
  padding-top: 42px;
  padding-bottom: 42px;
  width: 1024px;
  max-width: 1024px;
  min-width: 1024px;
  margin-left: calc(50% - 512px);
  margin-right: calc(50% - 512px);
}
body section#main {
  margin-top: 120px;
  padding-top: 0;
  min-height: calc(100vh - 120px);
}
body section#hero {
  padding-top: 42px;
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  body section {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  body section#main {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    min-width: calc(100% - 80px);
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 880px) {
  body section {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
  }
  body section#main {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-width: calc(100% - 40px);
  }
}
body section:last-child {
  padding-bottom: 64px;
}
body section > section {
  padding-top: 0;
  /*
  &::before {
      content: "0101010011010010 1010011010100101 1101001010010010 1001010010100101";
      @include font-mono (16px);
      top: 0;
      left: 0;
      opacity: 0.1;
      white-space: nowrap;
      position: absolute;
      pointer-events: none;
      z-index: $z-index-min;
      @media screen and (max-width: $media-s-max ) {
          display: none;
      }
  }
  &:nth-child(2n+1)::before {
      margin-top: -80px;
      margin-left: -100px;
      transform: rotate(-8deg);
  }
  &:nth-child(2n)::before {
      margin-top: 0;
      margin-left: 900px;
      transform: rotate(8deg);
  }
  */
}
body section .content-block {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 865px) {
  body section .content-block.content-text {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  body section .content-block.content-text {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 880px) {
  body section .content-block.content-text {
    width: 100%;
    margin-left: 0;
  }
  body section .content-block.content-text p {
    text-align: justify;
  }
}

span.anti-bot {
  display: none !important;
}

/* Настройки шрифтов для всего сайта
 * А также общие настройки шрифтов, ссылок, заголовков и абзацев
 */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
:root {
  --scroll-threshold: $menu-height-desktop;
  --font-general: "PT Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, serif;
  --font-caption: "PT Sans Caption", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-serif-caption: "PT Serif Caption", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, serif;
  --font-mono: "PT Mono", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, monospace;
}

/* mixin для шрифтов см. в mixins.scss */
/* Настройки шрифта по умолчанию */
* {
  font-family: var(--font-general);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-underline-offset: 5px;
}

/* Заголовки и абзацы */
* a, html a, body a, header a, footer a {
  text-decoration: underline;
  color: #0355a3;
  cursor: pointer;
  line-height: 150%;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
* a:visited, html a:visited, body a:visited, header a:visited, footer a:visited {
  text-decoration: underline;
}
* a:hover, html a:hover, body a:hover, header a:hover, footer a:hover {
  color: #0084FF;
  text-decoration: underline;
}
* h1, * h2, * h3, html h1, html h2, html h3, body h1, body h2, body h3, header h1, header h2, header h3, footer h1, footer h2, footer h3 {
  font-family: var(--font-general);
  font-weight: 400;
  font-size: 44px;
  line-height: 150%;
  text-underline-offset: 5px;
  text-align: left;
}
* h2, html h2, body h2, header h2, footer h2 {
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
@media screen and (max-width: 880px) {
  * h2, html h2, body h2, header h2, footer h2 {
    font-size: 24px;
  }
}
* h3, html h3, body h3, header h3, footer h3 {
  font-size: 24px;
}
@media screen and (max-width: 880px) {
  * h3, html h3, body h3, header h3, footer h3 {
    font-size: 20px;
  }
}
* p, html p, body p, header p, footer p {
  font-family: var(--font-general);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-underline-offset: 5px;
  font-weight: normal;
  text-align: left;
}
* b, * strong, html b, html strong, body b, body strong, header b, header strong, footer b, footer strong {
  font-weight: 600;
}

/* Кнопки */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
.btn, .btn p, .btn a {
  color: #d7d7d7;
}
.btn:hover, .btn:hover p, .btn:hover a {
  color: #0084FF;
  cursor: pointer;
}

/* Градиентный баннер */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
header#rainbow-header {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
  margin-bottom: 42px;
  width: 1024px;
  max-width: 1024px;
  min-width: 1024px;
  margin-left: calc(50% - 512px);
  margin-right: calc(50% - 512px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  background: white;
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  header#rainbow-header {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    min-width: calc(100% - 80px);
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 880px) {
  header#rainbow-header {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
header#rainbow-header h1, header#rainbow-header h2, header#rainbow-header h3, header#rainbow-header h4, header#rainbow-header p, header#rainbow-header a {
  line-height: 150%;
}
header#rainbow-header .rainbow-gradient {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#0355a3), color-stop(#0084FF), color-stop(#3ba), color-stop(#0084FF), to(#0355a3));
  background: linear-gradient(90deg, #0355a3, #0084FF, #3ba, #0084FF, #0355a3);
  background-repeat: repeat;
  background-size: 1500% 100%;
  -webkit-animation: gradient-flow 64s linear infinite;
          animation: gradient-flow 64s linear infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
header#rainbow-header .rainbow-gradient:nth-child(2n) {
  background-size: 500% 100%;
}
header#rainbow-header .rainbow-gradient p:hover, header#rainbow-header .rainbow-gradient h1:hover, header#rainbow-header .rainbow-gradient h2:hover, header#rainbow-header .rainbow-gradient h3:hover, header#rainbow-header .rainbow-gradient h4:hover {
  cursor: pointer;
}
header#rainbow-header .rainbow-gradient h1 {
  font-family: var(--font-serif-caption);
  font-size: 38px;
  margin-bottom: 12px;
  text-align: center;
}
@media screen and (min-width: 865px) {
  header#rainbow-header .rainbow-gradient h1 {
    font-size: 38px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 880px) {
  header#rainbow-header .rainbow-gradient h1 {
    font-size: 30px;
    margin-bottom: 0;
  }
}
header#rainbow-header .rainbow-gradient h1 a {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  margin-bottom: inherit;
  font-family: inherit;
}
header#rainbow-header .rainbow-gradient h3, header#rainbow-header .rainbow-gradient h3 > a {
  font-family: var(--font-general);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-underline-offset: 5px;
  text-decoration: none;
}
@media screen and (min-width: 865px) {
  header#rainbow-header .rainbow-gradient h3, header#rainbow-header .rainbow-gradient h3 > a {
    font-size: 20px;
  }
}
@media screen and (max-width: 880px) {
  header#rainbow-header .rainbow-gradient h3, header#rainbow-header .rainbow-gradient h3 > a {
    font-size: 24px;
  }
}

@-webkit-keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* key */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
/*

Это код для библиотеки key-carousel
не редактировать его!

*/
.key-carousel {
  position: relative;
  display: block;
  width: 1024px;
  max-width: 1024px;
  min-width: 1024px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  /* сам слайдер (библиотека slick)
  *  этот класс присваивается посредством js
  *  моему контейнеру карусели
  *  key-carousel > carousel-container
  */
  /* Один слайд */
  /* контейнер, содержащий .slide-track, внутри которого все слайды */
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  .key-carousel {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    min-width: calc(100% - 80px);
  }
}
@media screen and (max-width: 880px) {
  .key-carousel {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-width: calc(100% - 40px);
  }
}
.key-carousel .carousel-container.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.key-carousel .slick-slide {
  margin: 0;
  display: none;
  float: left;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 1px;
}
.key-carousel .slick-slide .slide-card {
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.key-carousel .slick-slide .slide-card img {
  display: block;
}
.key-carousel .slick-slide .slide-card .slide-card-desc {
  width: 100%;
}
.key-carousel .slick-slide.slick-active:first-of-type .slide-card {
  padding-left: 0;
}
.key-carousel .slick-slide.slick-loading img {
  display: none;
}
.key-carousel .slick-slide.dragging img {
  pointer-events: none;
}
.key-carousel [dir=rtl] .slick-slide {
  float: right;
}
.key-carousel .slick-initialized .slick-slide {
  display: block;
}
.key-carousel .slick-loading .slick-slide {
  visibility: hidden;
}
.key-carousel .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.key-carousel .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.key-carousel .slick-list:focus {
  outline: none;
}
.key-carousel .slick-list.dragging {
  cursor: hand;
}
.key-carousel .slick-slider .slick-track, .key-carousel .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.key-carousel .slick-slider .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.key-carousel .slick-slider .slick-track:before, .key-carousel .slick-slider .slick-track:after {
  display: table;
  content: "";
}
.key-carousel .slick-slider .slick-track:after {
  clear: both;
}
.key-carousel .slick-loading .slick-track {
  visibility: hidden;
}
.key-carousel .slick-arrow.slick-hidden {
  display: none;
}
.key-carousel .dottes {
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 50px;
  width: 100%;
}
@media screen and (min-width: 865px) {
  .key-carousel .dottes {
    width: 100%;
  }
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  .key-carousel .dottes {
    /*width: 622px;*/
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    min-width: calc(100% - 80px);
  }
}
@media screen and (max-width: 880px) {
  .key-carousel .dottes {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-width: calc(100% - 40px);
  }
}
.key-carousel .dottes ul.slick-dots {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.key-carousel .dottes ul.slick-dots li button {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background-color: #0084FF;
  margin-right: 8px;
  color: white;
  font-size: 0;
}
.key-carousel .dottes ul.slick-dots li button::before {
  content: "";
  display: none;
}
.key-carousel .dottes ul.slick-dots li button:hover {
  background-color: #0084FF;
  border: 0;
  cursor: pointer;
}
.key-carousel .dottes ul.slick-dots li button:active, .key-carousel .dottes ul.slick-dots li button:focus {
  background-color: #0084FF;
  cursor: pointer;
  outline: 0;
}
.key-carousel .dottes ul.slick-dots li:last-of-type button {
  margin-right: 0;
}
.key-carousel .dottes ul.slick-dots li.slick-active button {
  background-color: #0084FF;
  border: 0;
}

/* это код для корректировки библлиотеки key-carousel
под мой проект конкретный.
этот код можно редактировать!
*/
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
@media screen and (min-width: 865px) {
  .key-carousel {
    width: 1224px;
    min-width: 1224px;
    max-width: 1224px;
    margin-left: -100px;
  }
}
@media screen and (min-width: 981px) and (max-width: 864px) {
  .key-carousel {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
@media screen and (min-width: 881px) and (max-width: 980px) {
  .key-carousel {
    width: 800px;
    min-width: 800px;
    max-width: 800px;
    margin-left: 0;
  }
}
@media screen and (max-width: 880px) {
  .key-carousel {
    width: calc(100% + 300px);
    min-width: calc(100% + 300px);
    max-width: calc(100% + 300px);
  }
}
.key-carousel .slick-list {
  z-index: auto;
}
@media screen and (min-width: 881px) and (max-width: 980px) {
  .key-carousel .slick-list {
    z-index: 10;
  }
}
.key-carousel .carousel-container.slick-slider {
  display: -ms-grid;
  display: grid;
  width: 100%;
  margin-left: 0;
  margin-top: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 865px) {
  .key-carousel .carousel-container.slick-slider {
    -ms-grid-columns: 100px auto 100px;
    grid-template-columns: 100px auto 100px;
  }
}
@media screen and (min-width: 981px) and (max-width: 864px) {
  .key-carousel .carousel-container.slick-slider {
    -ms-grid-columns: 90px auto 90px;
    grid-template-columns: 90px auto 90px;
  }
}
@media screen and (min-width: 881px) and (max-width: 980px) {
  .key-carousel .carousel-container.slick-slider {
    -ms-grid-columns: 0 800px 0;
    grid-template-columns: 0 800px 0;
  }
}
@media screen and (max-width: 880px) {
  .key-carousel .carousel-container.slick-slider {
    display: block;
    width: 100%;
  }
}
.key-carousel .carousel-container.slick-slider button.slick-arrow {
  z-index: auto;
}
@media screen and (min-width: 865px) {
  .key-carousel .carousel-container.slick-slider button.slick-arrow {
    width: 80px;
    position: relative;
    top: calc(50% - 66px);
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 132px;
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
    background: none;
    color: #d7d7d7;
    font-family: var(--font-general);
    font-weight: 400;
    font-size: 132px;
    line-height: 150%;
    text-underline-offset: 5px;
    line-height: normal;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
  }
  .key-carousel .carousel-container.slick-slider button.slick-arrow:hover {
    color: #4B4B4B;
    cursor: pointer;
  }
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  .key-carousel .carousel-container.slick-slider button.slick-arrow {
    width: 80px;
    position: relative;
    top: calc(50% - 66px);
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 132px;
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
    background: none;
    color: #d7d7d7;
    font-family: var(--font-general);
    font-weight: 400;
    font-size: 132px;
    line-height: 150%;
    text-underline-offset: 5px;
    line-height: normal;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
  }
  .key-carousel .carousel-container.slick-slider button.slick-arrow:hover {
    color: #4B4B4B;
    cursor: pointer;
  }
}
@media screen and (min-width: 881px) and (max-width: 980px) {
  .key-carousel .carousel-container.slick-slider button.slick-arrow {
    z-index: 15;
    top: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
  }
}
@media screen and (max-width: 880px) {
  .key-carousel .carousel-container.slick-slider button.slick-arrow {
    display: none !important;
  }
}
@media screen and (max-width: 880px) {
  .key-carousel .carousel-container.slick-slider button.slick-arrow.slick-prev, .key-carousel .carousel-container.slick-slider button.slick-arrow.slick-next {
    display: none;
  }
}
.key-carousel .carousel-container.slick-slider button.slick-arrow.slick-prev::before, .key-carousel .carousel-container.slick-slider button.slick-arrow.slick-prev::after, .key-carousel .carousel-container.slick-slider button.slick-arrow.slick-next::before, .key-carousel .carousel-container.slick-slider button.slick-arrow.slick-next::after {
  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;
  width: 80px;
  height: 132px;
  vertical-align: middle;
}
@media screen and (max-width: 880px) {
  .key-carousel .carousel-container.slick-slider button.slick-arrow.slick-prev::before, .key-carousel .carousel-container.slick-slider button.slick-arrow.slick-prev::after, .key-carousel .carousel-container.slick-slider button.slick-arrow.slick-next::before, .key-carousel .carousel-container.slick-slider button.slick-arrow.slick-next::after {
    display: none;
  }
}
.key-carousel .carousel-container.slick-slider button.slick-arrow.slick-prev {
  /*@media screen and (min-width: $media-m-min) and (max-width: $carousel-with-buttons-full-width-m) {
      @include key-linear-gradient (to right);
  }*/
}
.key-carousel .carousel-container.slick-slider button.slick-arrow.slick-prev::before {
  content: "«";
}
.key-carousel .carousel-container.slick-slider button.slick-arrow.slick-next {
  left: calc(100% - 80px);
  /*@media screen and (min-width: $media-m-min) and (max-width: $carousel-with-buttons-full-width-m) {
      @include key-linear-gradient (to left);
  }*/
}
.key-carousel .carousel-container.slick-slider button.slick-arrow.slick-next::after {
  content: "»";
}

/* Модальные окна */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
.modal-window {
  display: none;
}
.modal-window.active {
  display: block;
  position: fixed;
  z-index: 500;
  background: white;
}

/* Страницы сайта */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
/* ----------- КАРУСЕЛЬ ПОРТФОЛИО START ----------- */
.key-carousel#portfolio-banner .slide-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 404px;
}
@media screen and (min-width: 865px) {
  .key-carousel#portfolio-banner .slide-card {
    width: 1024px;
  }
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  .key-carousel#portfolio-banner .slide-card {
    width: 800px;
  }
}
@media screen and (max-width: 880px) {
  .key-carousel#portfolio-banner .slide-card {
    width: auto;
    background-size: cover;
  }
}
.key-carousel#portfolio-banner .slide-card .slide-card-desc {
  display: block;
  width: 100%;
  border: 2px solid white;
  border-radius: 6px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
  overflow: hidden;
  padding: 0;
}
.key-carousel#portfolio-banner .slide-card .slide-card-desc:hover {
  border-color: #0355a3;
  cursor: pointer;
}
.key-carousel#portfolio-banner .slide-card .slide-card-desc:hover .txt-block h1, .key-carousel#portfolio-banner .slide-card .slide-card-desc:hover .txt-block p, .key-carousel#portfolio-banner .slide-card .slide-card-desc:hover .txt-block h1 a, .key-carousel#portfolio-banner .slide-card .slide-card-desc:hover .txt-block p a {
  color: #0355a3;
}
@media screen and (min-width: 865px) {
  .key-carousel#portfolio-banner .slide-card .slide-card-desc {
    height: 400px;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
  }
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  .key-carousel#portfolio-banner .slide-card .slide-card-desc {
    height: 400px;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
  }
}
@media screen and (max-width: 880px) {
  .key-carousel#portfolio-banner .slide-card .slide-card-desc {
    width: calc(100% - 8px);
  }
}
.key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f7f7f7;
  border-top: 1px solid #d7d7d7;
  width: 100%;
}
@media screen and (min-width: 865px) {
  .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block {
    height: 120px;
    margin-top: 280px;
  }
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block {
    height: 120px;
    margin-top: 280px;
  }
}
.key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block h1, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block p, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block h1 a, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block p a {
  text-align: center;
  font-family: var(--font-general);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-underline-offset: 5px;
  line-height: 150%;
  margin: 0;
  color: #1A1A1A;
  text-decoration: none;
}
.key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block h1:hover, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block h1:visited, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block h1:active, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block p:hover, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block p:visited, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block p:active, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block h1 a:hover, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block h1 a:visited, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block h1 a:active, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block p a:hover, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block p a:visited, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block p a:active {
  color: #0084FF;
}
@media screen and (max-width: 880px) {
  .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block h1, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block p, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block h1 a, .key-carousel#portfolio-banner .slide-card .slide-card-desc .txt-block p a {
    font-size: 20px;
    line-height: 150%;
  }
}

/* ----------- КАРУСЕЛЬ ПОРТФОЛИО END ----------- */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
article {
  width: 800px;
  margin-left: calc(50% - 400px);
  margin-right: calc(50% - 400px);
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  article {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 880px) {
  article {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
article h1 {
  margin-bottom: 24px;
}
article h2 {
  margin-bottom: 24px;
}
article p {
  margin-top: 6px;
  margin-bottom: 10px;
}
article figure {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 32px;
}
article figure img {
  border: 1px dotted #d7d7d7;
}
article figure figcaption {
  /* @include font-caption(16px); */
  font-family: var(--font-caption);
  font-size: 14px;
  margin-bottom: 12px;
  font-size: 14px;
}
article .entry-meta,
article .entry-footer,
article .post-thumbnail {
  display: none;
}

nav.navigation.post-navigation {
  display: none;
}

/* ХЕДЕР, ФУТЕР */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
/* blue style */
.hero-cards {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: white;
}
@media screen and (max-width: 880px) {
  .hero-cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.hero-cards .card {
  display: block;
  width: 310px;
  height: 130px;
  overflow: hidden;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  background-color: #f7f7f7;
  border: 2px solid #1A1A1A;
  border-radius: 6px;
}
.hero-cards .card > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 310px;
  height: 130px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  border-radius: 6px;
  text-decoration: none;
}
.hero-cards .card > a::before {
  content: ">";
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  color: #0355a3;
  display: block;
  margin-right: 230px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.hero-cards .card:hover {
  cursor: pointer;
  border-color: #0084FF;
}
.hero-cards .card:hover > a::before {
  color: #0084FF;
}
.hero-cards .card:hover > a p {
  cursor: pointer;
}
.hero-cards .card > a p {
  display: block;
  position: absolute;
  width: 200px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  margin-bottom: 0;
  font-family: var(--font-general);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-underline-offset: 5px;
  letter-spacing: normal;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  color: #1A1A1A;
  /*&::before {
      content: attr(data-text);
      cursor: pointer;
      color: $col-blue;
  }*/
}
.hero-cards .card > a p span.price {
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  color: #4B4B4B;
  font-style: italic;
}

/* grey style */
/*
.hero-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    height: fit-content;
    background-color: $col-white;
    .card {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: calc($media-m-max / 3 - 80px / 3);
        height: 130px;
        overflow: hidden;
        @include transition-common();
        background-color: $col-grey-light;
        &:hover {
            cursor: pointer;
            &::before {
                text-shadow: 0 0 2px $col-grey-light1, 0 0 4px $col-grey-light1, 0 0 6px $col-grey-light1;
            }
            & p {
                cursor: pointer;
                color: $col-blue;
            }
        }
        &::before {
            content: attr(data-text);
            @include font-mono (160px);
            letter-spacing: -0.1em;
            font-weight: 900;
            text-align: center;
            transform: scale(1,0.7);
            color: $col-white;
        }
        p {
            display: block;
            position: absolute;
            width: fit-content;
            height: fit-content;
            text-align: center;
            @include font-caption (20px);
            letter-spacing: normal;
            @include transition-common();
            color: $col-black;
            &::before {
                content: attr(data-text);
                cursor: pointer;
                color: $col-blue;
            }
        }

    }
}
*/
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
.blog-cards {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: white;
}
@media screen and (max-width: 880px) {
  .blog-cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.blog-cards .blog-card {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 460px;
  height: 260px;
  overflow: hidden;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  background-color: #f7f7f7;
  border: 2px solid #f7f7f7;
  border-radius: 6px;
}
.blog-cards .blog-card:hover {
  cursor: pointer;
  border-color: #0084FF;
}
.blog-cards .blog-card .card-img {
  display: block;
  position: relative;
  width: 100%;
  height: 130px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blog-cards .blog-card h3 {
  display: block;
}
.blog-cards .blog-card .txt {
  display: block;
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.blog-cards .blog-card .txt, .blog-cards .blog-card .txt p {
  text-align: center;
  margin-bottom: 0;
  font-family: var(--font-general);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-underline-offset: 5px;
  letter-spacing: normal;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  color: #1A1A1A;
}
.blog-cards .blog-card .date {
  display: block;
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.blog-cards .blog-card .date, .blog-cards .blog-card .date p {
  text-align: center;
  margin-bottom: 0;
  font-family: var(--font-general);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-underline-offset: 5px;
  letter-spacing: normal;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  color: #f7f7f7;
}

/* grey style */
/*
.hero-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    height: fit-content;
    background-color: $col-white;
    .card {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: calc($media-m-max / 3 - 80px / 3);
        height: 130px;
        overflow: hidden;
        @include transition-common();
        background-color: $col-grey-light;
        &:hover {
            cursor: pointer;
            &::before {
                text-shadow: 0 0 2px $col-grey-light1, 0 0 4px $col-grey-light1, 0 0 6px $col-grey-light1;
            }
            & p {
                cursor: pointer;
                color: $col-blue;
            }
        }
        &::before {
            content: attr(data-text);
            @include font-mono (160px);
            letter-spacing: -0.1em;
            font-weight: 900;
            text-align: center;
            transform: scale(1,0.7);
            color: $col-white;
        }
        p {
            display: block;
            position: absolute;
            width: fit-content;
            height: fit-content;
            text-align: center;
            @include font-caption (20px);
            letter-spacing: normal;
            @include transition-common();
            color: $col-black;
            &::before {
                content: attr(data-text);
                cursor: pointer;
                color: $col-blue;
            }
        }

    }
}
*/
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
header .numbers, footer .numbers {
  position: absolute;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  z-index: 40;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
header .numbers p, footer .numbers p {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 24px;
  color: #1A1A1A;
  opacity: 0.1;
  width: 100%;
  margin-top: 4px;
  overflow: hidden;
  white-space: nowrap;
  line-height: 100%;
  letter-spacing: 7px;
  vertical-align: top;
  text-indent: 0;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

header .numbers {
  border-bottom: 1px solid white;
}
header.compact .numbers {
  border-bottom-color: #d7d7d7;
}

/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
header {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  background: white;
  /* ОТДЕЛЬНО - компактный вид меню при скролле */
  /* МЕНЮ ПРИ СКРОЛЛЕ - см. menu.scss */
}
header#main-header {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}
@supports (padding: max(0px)) {
  header#main-header {
    padding-top: max(0px, env(safe-area-inset-top));
  }
}
@media screen and (min-width: 865px) {
  header#main-header {
    height: 105px;
  }
  header#main-header.compact {
    height: 40px;
    padding-bottom: 8px;
  }
  header#main-header.compact .numbers {
    height: 32px;
    overflow: hidden;
  }
  header#main-header.compact .header-container {
    height: 32px;
  }
  header#main-header.compact .header-container #logo-container {
    height: 32px;
  }
  header#main-header.compact .header-container #logo-container .logo-base {
    height: 27px;
  }
  header#main-header.compact .header-container #logo-container .logo-base .logo {
    height: 27px;
  }
  header#main-header.compact .header-container #logo-container .logo-base .logo .logo-top {
    display: none;
  }
  header#main-header.compact .header-container #logo-container .logo-base .logo .logo-bottom {
    margin-top: 2px;
  }
  header#main-header.compact .header-container #logo-container .logo-txt-solution {
    opacity: 0;
  }
  header#main-header.compact .header-container .key-menu-container nav.key-menu-nav .menu ul li a {
    margin-top: 0;
  }
}
@media screen and (min-width: 881px) and (max-width: 864px), screen and (max-width: 880px) {
  header#main-header {
    /*@include section-width ('s');*/
    /*z-index: auto;*/
    height: 105px;
  }
  header#main-header.compact {
    height: 40px;
    padding-bottom: 8px;
  }
  header#main-header.compact .numbers {
    height: 32px;
    overflow: hidden;
  }
  header#main-header.compact .header-container {
    height: 32px;
  }
  header#main-header.compact .header-container #logo-container {
    height: 32px;
  }
  header#main-header.compact .header-container #logo-container .logo-base {
    height: 27px;
  }
  header#main-header.compact .header-container #logo-container .logo-base .logo {
    height: 27px;
  }
  header#main-header.compact .header-container #logo-container .logo-base .logo .logo-top {
    display: none;
  }
  header#main-header.compact .header-container #logo-container .logo-txt-solution {
    opacity: 0;
  }
  header#main-header.compact .key-menu-container {
    height: 27px;
    margin-top: 0;
  }
}
header .header-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 82px;
  z-index: 50;
  padding-top: 3px;
  /* MENU - см. menu.scss */
}
@media screen and (min-width: 865px) {
  header .header-container {
    width: 1024px;
    max-width: 1024px;
    min-width: 1024px;
    margin-left: calc(50% - 512px);
    margin-right: calc(50% - 512px);
  }
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  header .header-container {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    min-width: calc(100% - 80px);
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 880px) {
  header .header-container {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}
header .header-container #logo-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 865px) {
  header .header-container #logo-container {
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
    margin-left: 3px;
  }
  @supports (-moz-appearance: none) {
    header .header-container #logo-container {
      margin-left: 0;
    }
  }
}
@media screen and (max-width: 880px) {
  header .header-container #logo-container {
    margin-left: 16px;
  }
}
header .header-container #logo-container.on-hover .logo-txt-solution {
  color: #0084FF;
  cursor: pointer;
}
header .header-container #logo-container.on-hover .logo-base .logo {
  cursor: pointer;
  border-color: #0084FF;
}
header .header-container #logo-container.on-hover .logo-base .logo .logo-top {
  cursor: pointer;
  color: #0084FF;
}
header .header-container #logo-container.on-hover .logo-base .logo .logo-bottom {
  cursor: pointer;
  color: #0084FF;
}
header .header-container #logo-container .logo-base {
  height: 59px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: white;
  margin-top: -2px;
}
@media screen and (min-width: 865px) {
  header .header-container #logo-container .logo-base {
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
  }
  @supports (-moz-appearance: none) {
    header .header-container #logo-container .logo-base {
      margin-top: 0;
    }
  }
}
header .header-container #logo-container .logo-base .logo {
  position: relative;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: 3px solid #1A1A1A;
  border-radius: 6px;
  color: #1A1A1A;
  width: 90px;
  height: 59px;
  padding-left: 3px;
}
@media screen and (min-width: 865px) {
  header .header-container #logo-container .logo-base .logo {
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
  }
}
header .header-container #logo-container .logo-base .logo .logo-top {
  display: block;
  position: relative;
  font-family: var(--font-caption);
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  margin-bottom: 0;
}
@media screen and (min-width: 865px) {
  header .header-container #logo-container .logo-base .logo .logo-top {
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
    padding-top: 3px;
  }
  @supports (-moz-appearance: none) {
    header .header-container #logo-container .logo-base .logo .logo-top {
      margin-top: 2px;
    }
  }
}
header .header-container #logo-container .logo-base .logo .logo-bottom {
  display: block;
  position: relative;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 7px;
}
@media screen and (min-width: 865px) {
  header .header-container #logo-container .logo-base .logo .logo-bottom {
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
    margin-left: 3px;
    margin-top: -3px;
  }
  @supports (-moz-appearance: none) {
    header .header-container #logo-container .logo-base .logo .logo-bottom {
      margin-top: -4px;
    }
  }
}
header .header-container #logo-container .logo-txt-solution {
  font-family: var(--font-caption);
  font-size: 12px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  padding-top: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #1A1A1A;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-wrap-mode: nowrap;
  opacity: 1;
  -webkit-transition: 0.6s all ease;
  transition: 0.6s all ease;
}
header .header-container #logo-container .logo-txt-solution:hover {
  cursor: pointer;
  color: #0084FF;
}
header .header-container #logo-container .logo-txt-solution:hover ~ .logo-base .logo {
  cursor: pointer;
  color: #0084FF;
  border-color: #0084FF;
}
header .header-container #logo-container .logo-txt-solution:hover ~ .logo-base .logo .logo-top, header .header-container #logo-container .logo-txt-solution:hover ~ .logo-base .logo .logo-bottom {
  cursor: pointer;
  color: #0084FF;
  border-color: #0084FF;
}

/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
footer {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 12px;
  background-color: #f7f7f7;
  border-top: 2px solid #4B4B4B;
}
footer .footer-body {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 20px auto;
  grid-template-rows: auto auto;
  padding-top: 30px;
  padding-bottom: 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  row-gap: 20px;
  /*z-index: 2;*/
  /*
  .footer-container {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 56px 56px;
      row-gap: 35px;
      align-items: start;
      justify-content: start;
      .footer-container-item {
          display: block;
          width:fit-content;
          height:fit-content;
          &.copyright {
              grid-row: 2;
          }
          a, p, span {
              display: inline-block;
              text-indent: 0;
              white-space: nowrap;
              @include font-mono (24px);
              letter-spacing: 7px;
              line-height: 100%;
              vertical-align: top;
              background-color: $col-white;
              &::after {
                  content: '';
                  display: inline-block;
                  margin-right: -7px; // Компенсируем letter-spacing последней буквы
              }
          }
          a.phone {
              text-decoration: none;
              &:hover {
                  text-decoration: none;
              }
          }
      }
  }
  */
}
@media screen and (min-width: 865px) {
  footer .footer-body {
    width: 1024px;
    max-width: 1024px;
    min-width: 1024px;
    margin-left: calc(50% - 512px);
    margin-right: calc(50% - 512px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  footer .footer-body {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 880px) {
  footer .footer-body {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
footer .footer-body p {
  color: #1A1A1A;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
}
footer .footer-body p a {
  color: #1A1A1A;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 16px;
}
footer .footer-body p a:hover {
  color: #0084FF;
}
footer .footer-body .footer-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr 2fr;
  grid-template-columns: 1fr 2fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
footer .footer-body .footer-row > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
footer .footer-body .footer-row > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
footer .footer-body .footer-row > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media screen and (max-width: 880px) {
  footer .footer-body .footer-row.row-1 {
    -ms-grid-columns: 1fr 20px 2fr;
    grid-template-columns: 1fr 2fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  footer .footer-body .footer-row.row-1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  footer .footer-body .footer-row.row-1 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  footer .footer-body .footer-row.row-2 {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -ms-grid-rows: auto 20px auto;
    grid-template-rows: auto auto;
    row-gap: 20px;
  }
  footer .footer-body .footer-row.row-2 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  footer .footer-body .footer-row.row-2 > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}
footer .footer-body .footer-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
footer .footer-body .footer-col.eat-2-col {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media screen and (max-width: 880px) {
  footer .footer-body .footer-col.eat-2-col {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
footer .footer-body .row-1 .col-1 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
footer .footer-body .row-1 .col-2 p {
  margin-bottom: 8px;
}
footer .footer-body .row-1 .col-2 p:first-child {
  margin-top: 0;
}
@media screen and (max-width: 880px) {
  footer .footer-body .row-2 .col-1 {
    display: none;
  }
}
footer .footer-body .row-2 .col-3 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  footer .footer-body .row-2 .col-3 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 880px) {
  footer .footer-body .row-2 .col-3 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
footer #logo-container-footer {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 865px) {
  footer #logo-container-footer {
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
    margin-left: 3px;
  }
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  footer #logo-container-footer {
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
  }
}
footer #logo-container-footer:hover .logo-base .logo {
  cursor: pointer;
  border-color: #0084FF;
}
footer #logo-container-footer:hover .logo-base .logo .logo-top {
  cursor: pointer;
  color: #0084FF;
}
footer #logo-container-footer:hover .logo-base .logo .logo-bottom {
  cursor: pointer;
  color: #0084FF;
}
footer #logo-container-footer .logo-base {
  height: 59px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 865px) {
  footer #logo-container-footer .logo-base {
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
  }
}
footer #logo-container-footer .logo-base .logo {
  position: relative;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid #1A1A1A;
  border-radius: 6px;
  color: #1A1A1A;
  width: 90px;
  height: 59px;
  padding-left: 3px;
}
@media screen and (min-width: 865px) {
  footer #logo-container-footer .logo-base .logo {
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
  }
}
footer #logo-container-footer .logo-base .logo .logo-top {
  display: block;
  position: relative;
  font-family: var(--font-caption);
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  margin-bottom: 0;
}
@media screen and (min-width: 865px) {
  footer #logo-container-footer .logo-base .logo .logo-top {
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
    padding-top: 3px;
  }
  @supports (-moz-appearance: none) {
    footer #logo-container-footer .logo-base .logo .logo-top {
      margin-top: 2px;
    }
  }
}
footer #logo-container-footer .logo-base .logo .logo-bottom {
  display: block;
  position: relative;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 7px;
}
@media screen and (min-width: 865px) {
  footer #logo-container-footer .logo-base .logo .logo-bottom {
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
    margin-left: 3px;
    margin-top: -3px;
  }
  @supports (-moz-appearance: none) {
    footer #logo-container-footer .logo-base .logo .logo-bottom {
      margin-top: -4px;
    }
  }
}

/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* rainbow colors */
/* menu height */
/* ширина экрана и контента */
/* media запросы по ширине экрана*/
/* Высота контента */
/* Z-INDEXES */
/* ПОЛЕЗНЫЕ ФУНКЦИИ */
/* padding с боков и сверху-снизу */
/* margin с боков и сверху-снизу */
/* ОТСТУПЫ */
/* ширина section */
/* максимальная ширина текста в article */
/* ШРИФТЫ */
/* АНИМАЦИЯ */
/* стандартный transition для всех элементов на сайте */
/* ДЛЯ CAROUSEL */
/*@mixin key-linear-gradient ( $direction: to right, $col1: $col-white, $col2: transparent) {
  background: linear-gradient($direction, rgba($col1, 0.7), $col2);
}
*/
header {
  /* ОТДЕЛЬНО - компактный вид меню при скролле */
  /* МЕНЮ ПРИ СКРОЛЛЕ - см. menu.scss */
}
@media screen and (min-width: 865px) {
  header.compact .key-menu-container {
    margin-top: 1px;
  }
}
header .key-menu-container {
  z-index: 103;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 32px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  /* Кнопка мобильного меню */
  /* Само меню */
  /*
  &.active {
      @media screen and (max-width: $media-s-max ) {
          background: $col-white;
          @include padding-x (12px);
          @include padding-y (8px);
          width: 100%;
          left: 0;
          min-width: 300px;
          height: fit-content;
          row-gap: 0;
      }
      .btn.key-menu {
          @media screen and (max-width: $media-s-max ) {
              background-color: $col-white;
              width: fit-content;
              align-self: flex-end;
              &::after {
                  content: "ЗАКРЫТЬ";
              }
          }
      }
      nav.key-menu-nav {
          @media screen and (max-width: $media-s-max ) {
              display: flex;
          }
      }
  }
  */
}
@media screen and (min-width: 881px) and (max-width: 864px), screen and (max-width: 880px) {
  header .key-menu-container {
    position: relative;
    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: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    z-index: 480;
    height: 82px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    top: 0;
    right: 0;
    left: 0;
    margin-top: 2px;
    margin-right: 9px;
    margin-left: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
  }
}
header .key-menu-container .btn.key-menu {
  display: none;
}
@media screen and (min-width: 881px) and (max-width: 864px), screen and (max-width: 880px) {
  header .key-menu-container .btn.key-menu {
    display: block;
    height: 27px;
    width: 70px;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 490;
    background-color: white;
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 24px;
    color: #1A1A1A;
    line-height: normal;
  }
  header .key-menu-container .btn.key-menu::after {
    content: "МЕНЮ";
  }
}
@media screen and (min-width: 881px) and (max-width: 864px), screen and (max-width: 880px) {
  header .key-menu-container nav.key-menu-nav {
    display: none;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-left: 12px;
  }
}
@media screen and (min-width: 881px) and (max-width: 864px), screen and (max-width: 880px) {
  header .key-menu-container nav.key-menu-nav .menu {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
header .key-menu-container nav.key-menu-nav .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  margin-left: 11px;
  /*
  @media screen and (max-width: $media-s-max ) {
      width:100%;
      min-width: 100%;
      max-width: 100%;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      column-gap: 24px;
      height: fit-content;
      margin-top:40px;
      padding-left: 0;
      margin-bottom: 60px;
  }
  */
}
header .key-menu-container nav.key-menu-nav .menu ul li {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
header .key-menu-container nav.key-menu-nav .menu ul li:hover a {
  color: #0084FF;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
@media screen and (min-width: 881px) and (max-width: 864px), screen and (max-width: 880px) {
  header .key-menu-container nav.key-menu-nav .menu ul li {
    border-top: 0;
    border-bottom: 0;
  }
}
header .key-menu-container nav.key-menu-nav .menu ul li a {
  display: inline-block;
  text-indent: 0;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 7px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 100%;
  vertical-align: top;
  background-color: white;
  color: #1A1A1A;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  margin-top: -2px;
  padding-left: 2px;
  padding-right: 2px;
  margin-left: -4px;
}
header .key-menu-container nav.key-menu-nav .menu ul li a::after {
  content: "";
  display: inline-block;
  margin-right: -7px;
}

.modal-window#main-menu-modal-win {
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 0;
  padding-bottom: 60px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  row-gap: 0;
  z-index: 510;
  background: white;
}
@media screen and (min-width: 881px) and (max-width: 864px) {
  .modal-window#main-menu-modal-win {
    padding-left: 100px;
  }
}
.modal-window#main-menu-modal-win .btn[key-modal-win-btn-close] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-right: -20px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 24px;
  color: #4B4B4B;
}
.modal-window#main-menu-modal-win .btn[key-modal-win-btn-close]::after {
  content: "ЗАКРЫТЬ";
}
.modal-window#main-menu-modal-win .menu {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.modal-window#main-menu-modal-win .menu ul {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.modal-window#main-menu-modal-win .menu ul li {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-top: 0;
  border-bottom: 0;
  margin-bottom: 16px;
}
.modal-window#main-menu-modal-win .menu ul li:last-child {
  margin-bottom: 0;
}
.modal-window#main-menu-modal-win .menu ul li a {
  display: inline-block;
  text-indent: 0;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 7px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 100%;
  vertical-align: top;
  background-color: white;
  color: #1A1A1A;
}