:root {
  --roboto-family: "Roboto", sans-serif;
  --border-color: rgb(240, 240, 240);
  --main-color: rgb(230, 81, 0);
  --hover-main-color: rgb(255, 93, 6);
  --gray-color: rgb(119, 119, 119);
  --dark-gray-color: rgb(34, 34, 34);
  --text-color: rgb(85, 85, 85);
  --red-color:  #e02222;
  --width-1392: 87rem;
  --default-column-padding: 1.5rem;
  --mobi-padding: 1rem;
  --popup-width: 31.25rem;
  --mobi-height: 63px;
  --mobi-width: 300px; }

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

* {
  padding: 0;
  margin: 0; }

html {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.15; }

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block; }

body {
  font-family: var(--roboto-family);
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.5;
  position: relative; }

button, input, textarea {
  font-family: var(--roboto-family); }

a {
  text-decoration: none; }

header.top-header {
  border-bottom: solid 1px var(--border-color); }
  @media (max-width: 767px) {
    header.top-header {
      display: none; } }
  header.top-header div.container {
    width: var(--width-1392);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--default-column-padding);
    padding-right: var(--default-column-padding); }
    @media (max-width: 767px) {
      header.top-header div.container {
        width: 100vw;
        padding-left: var(--mobi-padding);
        padding-right: var(--mobi-padding); } }
  header.top-header div.top-line div.inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6.25rem;
    border-bottom: solid 1px var(--border-color); }
    header.top-header div.top-line div.inner a.logo svg {
      width: 10.25rem;
      height: 4.5rem;
      vertical-align: top; }
    header.top-header div.top-line div.inner div.slogan {
      font-size: 0.875rem;
      line-height: 1.25rem;
      color: var(--gray-color); }
    header.top-header div.top-line div.inner div.address-block {
      display: flex;
      column-gap: 0.75rem; }
      header.top-header div.top-line div.inner div.address-block svg {
        color: var(--main-color); }
      header.top-header div.top-line div.inner div.address-block div.address {
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: var(--dark-gray-color); }
    header.top-header div.top-line div.inner div.contacts {
      display: flex;
      column-gap: 0.75rem; }
      header.top-header div.top-line div.inner div.contacts svg {
        color: var(--main-color);
        transform: translateY(0.25rem); }
      header.top-header div.top-line div.inner div.contacts div.phone {
        font-size: 1.125rem;
        font-weight: bold;
        line-height: 1.25; }
        header.top-header div.top-line div.inner div.contacts div.phone a {
          color: var(--dark-gray-color); }
      header.top-header div.top-line div.inner div.contacts div.mail {
        font-size: 0.8125rem; }
        header.top-header div.top-line div.inner div.contacts div.mail a {
          color: var(--main-color); }
          header.top-header div.top-line div.inner div.contacts div.mail a:hover {
            color: var(--dark-gray-color); }
    header.top-header div.top-line div.inner button.call {
      width: 9.375rem;
      height: 2.40625rem;
      border: 1px solid var(--main-color);
      background-color: white;
      color: var(--main-color);
      font-size: 0.875rem;
      cursor: pointer;
      transition: all 0.2s ease-in-out; }
      header.top-header div.top-line div.inner button.call:hover {
        background-color: var(--main-color);
        color: white; }
  header.top-header div.menu-line div.inner {
    display: grid;
    grid-template-columns: 1fr 3.625rem;
    grid-auto-rows: 3.6875rem; }
    header.top-header div.menu-line div.inner nav.main-menu {
      display: flex;
      justify-content: space-around; }
      header.top-header div.menu-line div.inner nav.main-menu a.menu-item {
        display: flex;
        align-items: center;
        height: 3.6875rem;
        column-gap: 0.5rem;
        color: var(--dark-gray-color);
        position: relative; }
        header.top-header div.menu-line div.inner nav.main-menu a.menu-item.active, header.top-header div.menu-line div.inner nav.main-menu a.menu-item:hover {
          color: var(--main-color); }
        header.top-header div.menu-line div.inner nav.main-menu a.menu-item::after {
          content: '';
          display: block;
          position: absolute;
          left: 0;
          bottom: 0;
          height: 0.125rem;
          background-color: var(--main-color);
          width: 0;
          transition: width 0.3s ease-in-out; }
        header.top-header div.menu-line div.inner nav.main-menu a.menu-item.active::after, header.top-header div.menu-line div.inner nav.main-menu a.menu-item:hover::after {
          width: 100%; }
        header.top-header div.menu-line div.inner nav.main-menu a.menu-item span.title {
          font-size: 1rem;
          font-weight: 700; }
        header.top-header div.menu-line div.inner nav.main-menu a.menu-item svg {
          width: 0.5rem;
          height: 0.5rem; }
    header.top-header div.menu-line div.inner button.search {
      border: none;
      background-color: transparent;
      color: var(--dark-gray-color);
      cursor: pointer; }
      header.top-header div.menu-line div.inner button.search:hover {
        color: var(--main-color); }

footer.footer {
  background-color: #373d44; }
  footer.footer div.container {
    width: var(--width-1392);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--default-column-padding);
    padding-right: var(--default-column-padding); }
    @media (max-width: 767px) {
      footer.footer div.container {
        width: 100vw;
        padding-left: var(--mobi-padding);
        padding-right: var(--mobi-padding); } }
  footer.footer div.bottom-middle {
    padding-top: 2.125rem;
    padding-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr); }
    @media (max-width: 767px) {
      footer.footer div.bottom-middle {
        display: flex;
        flex-direction: column;
        row-gap: 1.5rem;
        padding-top: 3.125rem; } }
    footer.footer div.bottom-middle div.column {
      padding-left: 1rem;
      padding-right: 1rem; }
      @media (max-width: 767px) {
        footer.footer div.bottom-middle div.column {
          text-align: center; } }
    footer.footer div.bottom-middle div.title {
      color: white;
      font-size: 0.9375rem;
      font-weight: bold;
      margin-bottom: 1rem; }
      footer.footer div.bottom-middle div.title a {
        color: white; }
        footer.footer div.bottom-middle div.title a:hover {
          color: #999999; }
    footer.footer div.bottom-middle div.items {
      display: flex;
      flex-direction: column; }
      footer.footer div.bottom-middle div.items.menu {
        row-gap: 0.625rem; }
      footer.footer div.bottom-middle div.items.contacts {
        row-gap: 1.375rem; }
        @media (max-width: 767px) {
          footer.footer div.bottom-middle div.items.contacts {
            align-items: center; } }
    footer.footer div.bottom-middle div.menu-item {
      font-size: 0.875rem;
      line-height: 1.125rem; }
      footer.footer div.bottom-middle div.menu-item a {
        color: #999999; }
        footer.footer div.bottom-middle div.menu-item a:hover {
          color: white; }
      footer.footer div.bottom-middle div.menu-item.active a {
        color: white; }
    footer.footer div.bottom-middle div.contact-block {
      display: grid;
      grid-template-columns: 1rem 1fr;
      column-gap: 0.75rem; }
      footer.footer div.bottom-middle div.contact-block div.icon {
        display: flex;
        flex-direction: row;
        justify-content: center;
        color: #999999;
        padding-top: 0.125rem; }
      footer.footer div.bottom-middle div.contact-block div.info {
        font-size: 0.9375rem;
        line-height: 1.25rem;
        color: white; }
        @media (max-width: 767px) {
          footer.footer div.bottom-middle div.contact-block div.info {
            text-align: left; } }
        footer.footer div.bottom-middle div.contact-block div.info div.phone a {
          font-weight: 700;
          color: white; }
        footer.footer div.bottom-middle div.contact-block div.info div.mail {
          font-size: 0.8125rem; }
          footer.footer div.bottom-middle div.contact-block div.info div.mail a {
            color: var(--main-color); }
            footer.footer div.bottom-middle div.contact-block div.info div.mail a:hover {
              color: var(--dark-gray-color); }
  footer.footer div.bottom-under {
    padding-left: 1rem;
    padding-right: 1rem; }
    footer.footer div.bottom-under div.inner {
      border-top: 1px solid #41474e;
      padding-top: 1.75rem;
      padding-bottom: 1.125rem;
      font-size: 0.8125rem;
      color: #999999; }
      @media (max-width: 767px) {
        footer.footer div.bottom-under div.inner {
          text-align: center;
          padding-bottom: 2.5rem; } }
      footer.footer div.bottom-under div.inner a {
        margin-left: 1rem;
        color: white; }

div.page-top div.container {
  width: var(--width-1392);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--default-column-padding);
  padding-right: var(--default-column-padding);
  padding-top: 1.75rem;
  padding-bottom: 1.875rem; }
  @media (max-width: 767px) {
    div.page-top div.container {
      width: 100vw;
      padding-left: var(--mobi-padding);
      padding-right: var(--mobi-padding); } }
div.page-top nav.breadcrumb {
  margin-bottom: 0.5rem; }
  div.page-top nav.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
    color: #9a9a9a;
    font-size: 0.75rem;
    line-height: 1.5rem; }
  div.page-top nav.breadcrumb li {
    display: flex;
    align-items: center;
    column-gap: 0.5rem; }
    div.page-top nav.breadcrumb li:not(:last-of-type)::after {
      content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/></svg>");
      display: block;
      width: 0.375rem;
      height: 0.375rem;
      line-height: 0.375rem;
      color: #9a9a9a; }
  div.page-top nav.breadcrumb a {
    color: #9a9a9a; }
    div.page-top nav.breadcrumb a:hover {
      color: var(--main-color); }

div.page-top h1 {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1; }
  @media (max-width: 767px) {
    div.page-top h1 {
      font-size: 1.5rem; } }
div.main-content {
  padding-bottom: 6.25rem; }
  div.main-content div.container {
    width: var(--width-1392);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--default-column-padding);
    padding-right: var(--default-column-padding);
    display: grid;
    grid-template-columns: 17.5rem 63.5rem;
    column-gap: 3rem; }
    @media (max-width: 767px) {
      div.main-content div.container {
        width: 100vw;
        padding-left: var(--mobi-padding);
        padding-right: var(--mobi-padding); } }
    @media (max-width: 767px) {
      div.main-content div.container {
        display: flex;
        flex-direction: column-reverse;
        row-gap: 2rem; } }
nav.side-menu {
  border-bottom: 1px solid var(--border-color); }
  @media (max-width: 767px) {
    nav.side-menu {
      display: none; } }
  nav.side-menu ul {
    list-style: none; }
  nav.side-menu > ul > li a.menu-item {
    display: block;
    position: relative;
    padding-left: calc(1.25rem - 1px);
    padding-right: calc(3rem - 1px);
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    border: 1px solid var(--border-color);
    border-bottom-width: 0;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--dark-gray-color); }
    nav.side-menu > ul > li a.menu-item:hover {
      color: var(--main-color); }
    nav.side-menu > ul > li a.menu-item span.arrow {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      right: 0.75rem;
      top: 0.75rem;
      width: 1.5rem;
      height: 1.5rem; }
  nav.side-menu > ul > li.active a.menu-item {
    background-color: var(--main-color);
    color: white !important; }
    nav.side-menu > ul > li.active a.menu-item span.arrow {
      transform: rotate(90deg); }
  nav.side-menu > ul > li ul {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    padding: 0.75rem 1rem 1.25rem;
    background-color: var(--border-color);
    font-size: 0.8125rem; }
    nav.side-menu > ul > li ul li a {
      color: var(--text-color); }
      nav.side-menu > ul > li ul li a:hover {
        color: var(--main-color); }
    nav.side-menu > ul > li ul li.active a {
      color: var(--main-color); }

div.side-article {
  margin-top: 2.25rem;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: var(--text-color); }
  @media (max-width: 767px) {
    div.side-article {
      display: none; } }
.gallery-up {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100; }
  .gallery-up:not(.show) {
    display: none; }
  .gallery-up a.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 1rem;
    color: white; }
    .gallery-up a.icon.close {
      right: 1rem; }
    .gallery-up a.icon.toggle {
      right: 4rem; }
    .gallery-up a.icon:hover {
      background-color: rgba(255, 255, 255, 0.15); }
    .gallery-up a.icon svg {
      width: 1.5rem;
      height: 1.5rem; }
  .gallery-up a.arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 4rem;
    height: 4rem;
    top: calc(50% - 2rem);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border-radius: 50%; }
    .gallery-up a.arrow.left {
      left: 1rem; }
    .gallery-up a.arrow.right {
      right: 1rem; }
    .gallery-up a.arrow svg {
      width: 1.5rem;
      height: 1.5rem; }
  .gallery-up .viewport {
    position: absolute;
    left: 1rem;
    top: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center; }
    .gallery-up .viewport img {
      max-width: 100%;
      max-height: 100%; }
  .gallery-up .title {
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
    color: white; }
  .gallery-up .bi-fullscreen-exit {
    display: none; }
  .gallery-up.fullscreen .viewport {
    overflow: auto;
    display: block; }
    .gallery-up.fullscreen .viewport img {
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: none;
      max-height: none; }
  .gallery-up.fullscreen .bi-fullscreen-exit {
    display: inline-block; }
  .gallery-up.fullscreen .bi-arrows-fullscreen {
    display: none; }

body.gallery-freeze-background {
  overflow: hidden; }

div.share-block {
  margin-top: 3.5rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end; }
  div.share-block.with-back {
    justify-content: space-between;
    align-items: center; }
    @media (max-width: 767px) {
      div.share-block.with-back {
        justify-content: flex-end; } }
  div.share-block a.back-url {
    display: flex;
    color: var(--dark-gray-color); }
    @media (max-width: 767px) {
      div.share-block a.back-url {
        display: none; } }
    div.share-block a.back-url span.icon {
      flex: 0 0 3rem;
      height: 3rem;
      background-color: white;
      border: 1px solid var(--border-color);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3 ease-in-out; }
    div.share-block a.back-url:hover span.icon {
      background-color: var(--border-color); }
    div.share-block a.back-url span.caption {
      height: 3rem;
      background-color: white;
      border: 1px solid var(--border-color);
      line-height: calc(3rem - 2px);
      padding-left: 1.25rem;
      padding-right: 1.25rem;
      margin-left: -1px;
      transition: all 0.3 ease-in-out; }
    div.share-block a.back-url:hover span.caption {
      background-color: var(--border-color);
      border-left-color: white; }
  div.share-block div.share-holder {
    display: flex;
    color: var(--dark-gray-color); }
    div.share-block div.share-holder div.icon {
      flex: 0 0 3rem;
      height: 3rem;
      background-color: white;
      border: 1px solid var(--border-color);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3 ease-in-out; }
    div.share-block div.share-holder:hover div.icon {
      background-color: var(--border-color); }
    div.share-block div.share-holder div.share-interior {
      position: relative;
      margin-right: -1px; }
      div.share-block div.share-holder div.share-interior div.bg {
        position: relative;
        height: 3rem;
        background-color: white;
        border: 1px solid var(--border-color);
        line-height: calc(3rem - 2px);
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        transition: all 0.3 ease-in-out; }
      div.share-block div.share-holder div.share-interior div.ya-share2 {
        display: none; }
    div.share-block div.share-holder:hover div.share-interior div.ya-share2 {
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      right: 0;
      top: 0;
      height: 3rem;
      min-width: 100%;
      background-color: var(--border-color);
      border-right: 1px solid white; }

a.scrollup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: white;
  background-color: var(--main-color);
  position: fixed;
  right: 4.5rem;
  bottom: 1.5rem;
  opacity: 1;
  transform: rotate(0deg);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-timing-function: linear; }
  @media (max-width: 767px) {
    a.scrollup {
      right: 1.5rem; } }
  a.scrollup:hover {
    background-color: var(--hover-main-color); }
  a.scrollup:not(.shown) {
    opacity: 0;
    transform: rotate(-180deg); }
  a.scrollup svg {
    width: 1.25rem;
    height: 1.25rem; }

div.search-popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(58, 63, 68, 0.7);
  z-index: 2999; }
  div.search-popup.shown {
    display: block; }
  div.search-popup div.panel {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: white; }
    @media (max-width: 767px) {
      div.search-popup div.panel {
        padding-top: 1rem;
        padding-bottom: 1rem; } }
  div.search-popup div.container {
    width: var(--width-1392);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--default-column-padding);
    padding-right: var(--default-column-padding);
    height: 8.25rem;
    display: flex;
    align-items: center;
    column-gap: 1.5rem; }
    @media (max-width: 767px) {
      div.search-popup div.container {
        width: 100vw;
        padding-left: var(--mobi-padding);
        padding-right: var(--mobi-padding); } }
  div.search-popup form {
    flex-grow: 1;
    display: flex;
    column-gap: 1rem; }
    @media (max-width: 767px) {
      div.search-popup form {
        width: calc(100vw - 6rem);
        display: flex;
        flex-direction: column;
        row-gap: 0.75rem; } }
    div.search-popup form input {
      flex-grow: 1;
      border: none;
      background: transparent;
      font-family: var(--roboto-family);
      font-size: 1.75rem;
      outline: none;
      color: var(--text-color); }
      @media (max-width: 767px) {
        div.search-popup form input {
          font-size: 1rem;
          line-height: 1.5;
          border-bottom: 1px solid var(--dark-gray-color); } }
    div.search-popup form button {
      flex: 0 0 6rem;
      height: 2.875rem;
      border: none;
      border-radius: 0.125rem;
      color: white;
      background-color: var(--main-color);
      font-family: var(--roboto-family);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer; }
      @media (max-width: 767px) {
        div.search-popup form button {
          flex-basis: auto; } }
      div.search-popup form button:hover {
        background-color: var(--hover-main-color); }
  div.search-popup button.close {
    flex: 0 0 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: var(--dark-gray-color);
    cursor: pointer; }
    div.search-popup button.close:hover {
      color: var(--main-color); }

div.menu-popup {
  display: none;
  position: absolute;
  width: max-content;
  top: 0;
  left: 0;
  background-color: white;
  box-shadow: 0 0.375rem 0.75rem 0 rgba(0, 0, 0, 0.176); }
  div.menu-popup.about, div.menu-popup.services {
    width: 16.25rem;
    transform: translate(-50%, -0.125rem);
    border-top: 0.125rem solid var(--main-color); }
  div.menu-popup.audit {
    width: 17rem;
    transform: translate(-50%, -0.125rem);
    border-top: 0.125rem solid var(--main-color); }
  div.menu-popup ul.menu-items {
    list-style: none; }
    div.menu-popup ul.menu-items li:not(:last-of-type) {
      border-bottom: 1px solid var(--border-color); }
    div.menu-popup ul.menu-items li a {
      display: block;
      padding: 0.875rem 2.25rem 0.875rem 1.25rem;
      color: var(--dark-gray-color); }
    div.menu-popup ul.menu-items li.active a, div.menu-popup ul.menu-items li:hover a {
      color: var(--main-color); }
  div.menu-popup.catalog {
    width: 84rem;
    height: 28.375rem;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin; }
    div.menu-popup.catalog nav {
      padding: 1.875rem; }
    div.menu-popup.catalog div.grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.875rem 1.875rem; }
    div.menu-popup.catalog article {
      display: grid;
      grid-template-columns: 3.75rem 1fr;
      column-gap: 0.75rem; }
      div.menu-popup.catalog article img {
        width: 3.75rem;
        height: 3.75rem;
        object-fit: contain;
        object-position: center; }
      div.menu-popup.catalog article h4 {
        font-size: 0.9375rem;
        line-height: 1.25;
        margin-bottom: 0.75rem; }
        div.menu-popup.catalog article h4 a {
          color: var(--dark-gray-color); }
          div.menu-popup.catalog article h4 a:hover {
            color: var(--main-color); }
      div.menu-popup.catalog article.active h4 a {
        color: var(--main-color); }
      div.menu-popup.catalog article ul {
        list-style: none;
        font-size: 0.8125rem;
        line-height: 1.25; }
        div.menu-popup.catalog article ul li:not(:last-of-type) {
          margin-bottom: 0.5rem; }
        div.menu-popup.catalog article ul li a {
          color: var(--main-color); }
          div.menu-popup.catalog article ul li a:hover {
            color: var(--dark-gray-color); }
        div.menu-popup.catalog article ul li.active a {
          color: var(--dark-gray-color); }

div.fixed-header {
  display: none;
  position: fixed;
  left: 0;
  top: -3.6875rem;
  width: 100%;
  background: white;
  box-shadow: 0 0.0625rem 0.3125rem rgba(0, 0, 0, 0.136); }
  div.fixed-header.shown {
    display: block;
    top: 0; }
  div.fixed-header div.container {
    width: var(--width-1392);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--default-column-padding);
    padding-right: var(--default-column-padding); }
    @media (max-width: 767px) {
      div.fixed-header div.container {
        width: 100vw;
        padding-left: var(--mobi-padding);
        padding-right: var(--mobi-padding); } }
  div.fixed-header div.fixed-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3.6875rem; }
    div.fixed-header div.fixed-menu a.menu-item {
      display: flex;
      align-items: center;
      height: 3.6875rem;
      column-gap: 0.5rem;
      color: var(--dark-gray-color);
      position: relative; }
      div.fixed-header div.fixed-menu a.menu-item.active, div.fixed-header div.fixed-menu a.menu-item:hover {
        color: var(--main-color); }
      div.fixed-header div.fixed-menu a.menu-item::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        height: 0.125rem;
        background-color: var(--main-color);
        width: 0;
        transition: width 0.3s ease-in-out; }
      div.fixed-header div.fixed-menu a.menu-item.active::after, div.fixed-header div.fixed-menu a.menu-item:hover::after {
        width: 100%; }
      div.fixed-header div.fixed-menu a.menu-item span.title {
        font-size: 1rem;
        font-weight: 700; }
      div.fixed-header div.fixed-menu a.menu-item svg {
        width: 0.5rem;
        height: 0.5rem; }
    div.fixed-header div.fixed-menu button.search {
      border: none;
      background-color: transparent;
      color: var(--dark-gray-color);
      cursor: pointer;
      flex: 0 0 3rem;
      height: 3rem; }
      div.fixed-header div.fixed-menu button.search:hover {
        color: var(--main-color); }

div.side-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  row-gap: 0.0625rem; }
  @media (max-width: 767px) {
    div.side-buttons {
      display: none; } }
  div.side-buttons button {
    flex: 0 0 4.75rem;
    width: 3.625rem;
    border: none;
    color: var(--text-color);
    background-color: var(--border-color);
    transition: color 0.3s ease-in-out;
    cursor: pointer; }
    div.side-buttons button:hover {
      color: var(--dark-gray-color); }

div.contacts-block {
  position: relative;
  margin-bottom: 6.75rem; }
  @media (max-width: 767px) {
    div.contacts-block {
      display: flex;
      flex-direction: column;
      row-gap: 3rem; } }
  div.contacts-block div.map {
    height: 31.25rem; }
  div.contacts-block div.contacts {
    position: absolute;
    top: 2rem;
    left: calc(0.5 * (var(--client-width) - var(--width-1392) + 3rem));
    width: 84rem;
    background-color: white;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    border-radius: 0.125rem;
    padding: 1.25rem; }
    @media (max-width: 767px) {
      div.contacts-block div.contacts {
        position: static;
        box-shadow: none;
        width: auto;
        padding: 0 1rem; } }
    div.contacts-block div.contacts div.grid {
      display: grid;
      grid-template-columns: repeat(4, 25%); }
      @media (max-width: 767px) {
        div.contacts-block div.contacts div.grid {
          display: flex;
          flex-direction: column;
          row-gap: 1.5rem; } }
      div.contacts-block div.contacts div.grid div.contact {
        display: grid;
        grid-template-columns: 2.75rem 1fr;
        column-gap: 1.25rem; }
      div.contacts-block div.contacts div.grid div.icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 50%;
        background-color: var(--main-color); }
        div.contacts-block div.contacts div.grid div.icon svg {
          color: white;
          width: 1.125rem;
          height: 1.125rem; }
      div.contacts-block div.contacts div.grid h6 {
        font-size: 1rem;
        font-weight: 500;
        color: #333; }
      div.contacts-block div.contacts div.grid p {
        font-size: 0.75rem;
        color: #666; }
        div.contacts-block div.contacts div.grid p a {
          color: inherit; }
          div.contacts-block div.contacts div.grid p a:hover {
            text-decoration: underline; }

div.simple-content {
  padding-bottom: 6.25rem; }
  div.simple-content div.container {
    width: var(--width-1392);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--default-column-padding);
    padding-right: var(--default-column-padding); }
    @media (max-width: 767px) {
      div.simple-content div.container {
        width: 100vw;
        padding-left: var(--mobi-padding);
        padding-right: var(--mobi-padding); } }
div.cookie-disclaimer {
  position: fixed;
  display: flex;
  justify-content: center;
  left: 0;
  right: 0;
  bottom: 2rem;
  z-index: 333; }
  div.cookie-disclaimer:not(.shown) {
    display: none; }
  div.cookie-disclaimer div.body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1.5rem;
    border: 1px solid white;
    border-radius: 2.5rem;
    background-color: #141414;
    max-width: 1200px;
    padding: 1rem 1rem 1rem 1.5rem; }
    @media (max-width: 767px) {
      div.cookie-disclaimer div.body {
        width: 98vw;
        flex-direction: column;
        row-gap: 1rem; } }
  div.cookie-disclaimer div.disclaimer {
    font-size: 0.875rem;
    color: white; }
    div.cookie-disclaimer div.disclaimer a {
      color: var(--main-color); }
  div.cookie-disclaimer a.close {
    display: block;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    border-radius: 14px;
    color: white;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    flex-shrink: 0;
    text-decoration: none; }

section.gallery-block div.grid {
  display: grid;
  gap: 1.25rem 1.25rem;
  width: 63.5rem; }
  @media (max-width: 767px) {
    section.gallery-block div.grid {
      display: flex;
      flex-direction: column;
      width: auto; } }
section.gallery-block.twocol div.grid {
  grid-template-columns: repeat(2, 31.125rem); }

section.gallery-block.threecol div.grid {
  grid-template-columns: repeat(3, 20.33333rem); }

section.gallery-block.fourcol div.grid {
  grid-template-columns: repeat(4, 14.9375rem); }

section.gallery-block.portrait div.photo {
  aspect-ratio: 1 / 1.575; }

section.gallery-block:not(.logo) div.photo {
  cursor: pointer; }

section.gallery-block.landscape div.photo {
  aspect-ratio: 1 / 0.7; }

section.gallery-block.logo div.photo {
  aspect-ratio: 3.315;
  padding: 0.5rem;
  border: 1px solid var(--border-color); }

section.gallery-block img {
  width: 100%;
  height: 100%;
  object-position: center;
  vertical-align: top; }

section.gallery-block.portrait img, section.gallery-block.landscape img {
  object-fit: cover; }

section.gallery-block.logo img {
  object-fit: contain; }

section.article-block {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color); }
  section.article-block h2 {
    font-size: 1.75rem;
    line-height: 1;
    font-weight: normal;
    margin-bottom: 1.875rem; }
  section.article-block h3 {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: normal;
    margin-bottom: 1.875rem;
    color: black; }
  section.article-block h4 {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: normal;
    margin-top: 1.875rem;
    margin-bottom: 1.5rem; }
  section.article-block h5 {
    font-size: 1.125rem;
    line-height: 1;
    font-weight: normal;
    margin-top: 1.875rem;
    margin-bottom: 1.5rem; }
  section.article-block h6 {
    font-size: 1rem;
    line-height: 1.375;
    font-weight: normal;
    margin-bottom: 1.5rem; }
  section.article-block p {
    margin-bottom: 1.5rem; }
  section.article-block ol, section.article-block ul {
    margin-bottom: 1.25rem; }
  section.article-block ol {
    padding-left: 1.625rem; }
  section.article-block ul li {
    list-style-type: none;
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem; }
    section.article-block ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.625rem;
      width: 0.25rem;
      height: 0.25rem;
      background: #222; }
  section.article-block a {
    color: var(--main-color); }
  section.article-block hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border: none;
    border-top: 1px solid var(--border-color); }
  section.article-block img {
    max-width: 100%; }
  section.article-block blockquote {
    color: var(--text-color);
    position: relative;
    padding: 1.25rem 1.25rem 1.5rem 4.5rem;
    border: none;
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem; }
    section.article-block blockquote:before {
      position: absolute;
      top: 0.75rem;
      left: 0;
      font-family: Arial;
      content: "\201C";
      font-size: 5.125rem;
      line-height: 4.875rem;
      font-weight: 600;
      color: var(--main-color); }
    section.article-block blockquote p {
      font-size: 1.125rem;
      font-weight: 300; }
  section.article-block table.requisites {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 20px;
    max-width: 100%; }
    @media (max-width: 767px) {
      section.article-block table.requisites tr {
        display: flex;
        flex-direction: column; } }
    section.article-block table.requisites tr:nth-child(odd) td {
      background: white; }
    section.article-block table.requisites tr:nth-child(even) td {
      background: #eff5f7; }
    section.article-block table.requisites td {
      padding: 0.5rem;
      line-height: 1.375;
      vertical-align: top; }
  section.article-block table.common-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-top: 0.75rem;
    margin-bottom: 1.25rem; }
    section.article-block table.common-table thead th {
      background-color: var(--main-color);
      color: white;
      padding: 0.625rem;
      text-align: left; }
    section.article-block table.common-table tbody td {
      padding: 0.375rem 0.625rem;
      border-bottom: 1px solid #dedede; }
    section.article-block table.common-table button {
      width: 10rem;
      height: 2.5rem;
      border: 1px solid var(--main-color);
      background-color: white;
      color: var(--main-color);
      vertical-align: top;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease-in-out; }
      section.article-block table.common-table button:hover {
        background-color: var(--main-color);
        color: white; }
  section.article-block div.sketch {
    display: grid;
    grid-template-columns: repeat(2, 31.125rem);
    column-gap: 1.25rem;
    margin-bottom: 1.25rem; }
    section.article-block div.sketch h4 {
      margin-top: 0; }
  section.article-block div.good-list {
    padding-top: 1px;
    margin-bottom: 2rem; }
    section.article-block div.good-list div.good {
      padding: 1.25rem;
      margin-top: -1px;
      border: 1px solid var(--border-color);
      display: grid;
      grid-template-columns: 3.125rem 1fr 15.5rem;
      column-gap: 1.25rem; }
      @media (max-width: 767px) {
        section.article-block div.good-list div.good {
          grid-template-columns: 3.125rem 1fr;
          row-gap: 1.25rem; }
          section.article-block div.good-list div.good div.actions {
            grid-column: span 2; } }
      section.article-block div.good-list div.good:hover {
        box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1); }
    section.article-block div.good-list div.image {
      width: 3.125rem;
      height: 3.125rem;
      display: flex;
      justify-content: center;
      align-items: center; }
      section.article-block div.good-list div.image svg {
        color: var(--gray-color); }
    section.article-block div.good-list h6 {
      line-height: 1.5;
      margin-bottom: 0;
      font-weight: 500;
      color: var(--text-color); }
    section.article-block div.good-list div.in-stock {
      display: flex;
      align-items: center;
      column-gap: 0.25rem; }
      section.article-block div.good-list div.in-stock svg {
        color: #20af59; }
      section.article-block div.good-list div.in-stock span {
        font-size: 0.8125rem;
        color: #666666; }
    section.article-block div.good-list button {
      width: 6.625rem;
      height: 2.5rem;
      border: none;
      background-color: var(--main-color);
      color: white;
      cursor: pointer;
      font-size: 1rem; }
      section.article-block div.good-list button:hover {
        background-color: var(--hover-main-color); }
  section.article-block .main-color {
    color: var(--main-color); }
  section.article-block figure {
    text-align: center;
    margin-bottom: 1.5rem; }
    section.article-block figure img {
      max-height: 370px; }

section.equipment-list table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%; }

section.equipment-list th {
  background-color: var(--main-color);
  color: white;
  padding: 0.625rem;
  text-align: left; }

section.equipment-list td {
  color: var(--text-color);
  padding: 0.3125rem 0.625rem; }

div.content-block {
  position: relative;
  height: 18.75rem;
  margin-bottom: 1.875rem; }
  @media (max-width: 767px) {
    div.content-block {
      height: auto; } }
  div.content-block img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
  div.content-block div.info {
    position: absolute;
    left: 1.25rem;
    top: 3.125rem;
    width: 26.875rem;
    color: white; }
    @media (max-width: 767px) {
      div.content-block div.info {
        position: relative;
        padding: 1.25rem;
        width: auto;
        left: 0;
        top: 0; } }
  div.content-block h4 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1.5rem; }
  div.content-block p {
    font-size: 1.125rem;
    line-height: 1.4; }

div.home-blocks {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  --step: calc(var(--width-1392) - 3rem); }
  @media (max-width: 767px) {
    div.home-blocks {
      margin-top: 0;
      --step: 100vw; } }
  div.home-blocks div.container {
    width: var(--width-1392);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--default-column-padding);
    padding-right: var(--default-column-padding); }
    @media (max-width: 767px) {
      div.home-blocks div.container {
        width: 100vw;
        padding-left: var(--mobi-padding);
        padding-right: var(--mobi-padding); } }
    @media (max-width: 767px) {
      div.home-blocks div.container {
        padding-left: 0;
        padding-right: 0; } }
  div.home-blocks div.slider {
    position: relative;
    width: var(--step);
    height: 31.25rem;
    overflow: hidden; }
    @media (max-width: 767px) {
      div.home-blocks div.slider {
        height: 66.666667vw; } }
    div.home-blocks div.slider button.arrow {
      position: absolute;
      width: 2.625rem;
      height: 2.625rem;
      top: 14.3125rem;
      transition: all 0.3s ease-in-out;
      background-color: white;
      border: none;
      border-radius: 50%;
      box-shadow: 0 0 1px rgba(0, 0, 0, 0.8);
      color: var(--dark-gray-color);
      cursor: pointer; }
      @media (max-width: 767px) {
        div.home-blocks div.slider button.arrow {
          display: none; } }
      div.home-blocks div.slider button.arrow svg {
        vertical-align: top;
        width: 0.625rem;
        height: 1.125rem; }
      div.home-blocks div.slider button.arrow:hover {
        background-color: var(--main-color);
        color: white; }
      div.home-blocks div.slider button.arrow.prev {
        left: -3.875rem; }
      div.home-blocks div.slider button.arrow.next {
        right: -3.875rem; }
        div.home-blocks div.slider button.arrow.next svg {
          transform: rotate(180deg); }
    div.home-blocks div.slider:hover button.arrow.prev {
      left: 1.25rem; }
    div.home-blocks div.slider:hover button.arrow.next {
      right: 1.25rem; }
  div.home-blocks div.runner {
    position: absolute;
    display: flex;
    left: 0;
    top: 0;
    width: 100000px;
    height: 31.25rem; }
    @media (max-width: 767px) {
      div.home-blocks div.runner {
        height: 66.666667vw; } }
  div.home-blocks div.block {
    display: flex; }
  div.home-blocks div.slide {
    position: relative;
    width: var(--step);
    height: 31.25rem; }
    @media (max-width: 767px) {
      div.home-blocks div.slide {
        height: 66.666667vw; } }
    div.home-blocks div.slide img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
    div.home-blocks div.slide div.cover {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      padding-left: 5.25rem;
      padding-right: 5.25rem; }
      @media (max-width: 767px) {
        div.home-blocks div.slide div.cover {
          padding-left: 0;
          padding-right: 0;
          justify-content: center; }
          div.home-blocks div.slide div.cover div.lead {
            font-size: 0.75rem; } }
      div.home-blocks div.slide div.cover div.info {
        width: 31.25rem;
        color: white;
        opacity: 0; }
        @media (max-width: 767px) {
          div.home-blocks div.slide div.cover div.info {
            width: 77vw;
            text-align: center; } }
      div.home-blocks div.slide div.cover div.title {
        font-size: 2.25rem;
        font-weight: 500;
        margin-bottom: 1rem; }
        @media (max-width: 767px) {
          div.home-blocks div.slide div.cover div.title {
            font-size: 1.125rem;
            margin-bottom: 0.5rem; } }
      div.home-blocks div.slide div.cover div.link {
        margin-top: 1.875rem; }
        @media (max-width: 767px) {
          div.home-blocks div.slide div.cover div.link {
            margin-top: 0.75rem; } }
        div.home-blocks div.slide div.cover div.link a {
          display: inline-block;
          padding: 0.625rem 1.5rem;
          background-color: var(--main-color);
          color: white;
          border-radius: 0.125rem;
          font-weight: 700;
          transition: all 0.3s ease-in-out; }
          @media (max-width: 767px) {
            div.home-blocks div.slide div.cover div.link a {
              padding-top: 0.375rem;
              padding-bottom: 0.375rem;
              font-size: 0.875rem; } }
          div.home-blocks div.slide div.cover div.link a:hover {
            background-color: var(--hover-main-color); }
    div.home-blocks div.slide.textright div.cover {
      justify-content: flex-end; }
    div.home-blocks div.slide.active div.cover div.info {
      opacity: 1;
      transition: opacity 0.5s ease-out; }
  div.home-blocks div.dots {
    position: absolute;
    left: 0;
    bottom: 1.5rem;
    width: 100%;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.625rem; }
    @media (max-width: 767px) {
      div.home-blocks div.dots {
        display: none; } }
    div.home-blocks div.dots button {
      display: block;
      width: 0.625rem;
      height: 0.625rem;
      background-color: transparent;
      border: 0.125rem solid white;
      border-radius: 50%;
      cursor: pointer; }
      div.home-blocks div.dots button:hover, div.home-blocks div.dots button.active {
        background-color: white; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

section.employee-list div.grid {
  display: grid;
  grid-template-columns: repeat(3, 21.16667rem);
  padding-top: 1px;
  padding-left: 1px; }
  @media (max-width: 767px) {
    section.employee-list div.grid {
      display: flex;
      flex-direction: column;
      padding-left: 0; } }
section.employee-list article.employee {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 2rem 1.5rem;
  border: 1px solid var(--border-color);
  margin-top: -1px;
  margin-left: -1px;
  transition: box-shadow .3s ease; }
  @media (max-width: 767px) {
    section.employee-list article.employee {
      margin-left: 0; } }
  section.employee-list article.employee:hover {
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1); }
  section.employee-list article.employee img {
    width: 11.875rem;
    height: 11.875rem;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin-bottom: 1.5rem; }
  section.employee-list article.employee h4 {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #222222; }
  section.employee-list article.employee div.position {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #9a9a9a;
    margin-bottom: 1rem; }
  section.employee-list article.employee div.mail {
    font-size: 1rem;
    line-height: 1.5rem; }
    section.employee-list article.employee div.mail a {
      color: var(--main-color); }
  section.employee-list article.employee div.phone {
    font-size: 1rem;
    line-height: 1.5rem; }
    section.employee-list article.employee div.phone a {
      color: #555555; }

section.vacancy-list h3 {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-weight: 400; }

section.vacancy-list div.vacancies {
  padding-top: 1px; }

section.vacancy-list article.vacancy {
  border: 1px solid var(--border-color);
  margin-top: -1px;
  background-color: white;
  transition: background-color 0.3s ease-in-out; }
  section.vacancy-list article.vacancy.expanded {
    background-color: var(--border-color); }
  section.vacancy-list article.vacancy div.head {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem; }
    @media (max-width: 767px) {
      section.vacancy-list article.vacancy div.head {
        flex-wrap: wrap; } }
    section.vacancy-list article.vacancy div.head:hover {
      cursor: pointer; }
    section.vacancy-list article.vacancy div.head h4 {
      margin-right: auto;
      font-size: 1rem;
      color: var(--dark-gray-color); }
      @media (max-width: 767px) {
        section.vacancy-list article.vacancy div.head h4 {
          flex-grow: 1; } }
    section.vacancy-list article.vacancy div.head span.salary {
      margin-right: 1.5rem;
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark-gray-color); }
      @media (max-width: 767px) {
        section.vacancy-list article.vacancy div.head span.salary {
          margin-right: auto;
          order: 10; } }
    section.vacancy-list article.vacancy div.head span.icon {
      display: flex;
      justify-content: center;
      align-items: center;
      flex: 0 0 1.75rem;
      width: 1.75rem;
      height: 1.75rem;
      border-radius: 50%; }
    section.vacancy-list article.vacancy div.head:hover span.icon {
      background-color: var();
      background-color: var(--border-color); }
  section.vacancy-list article.vacancy.expanded div.head span.icon {
    transform: rotate(180deg); }
  section.vacancy-list article.vacancy div.body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out; }
  section.vacancy-list article.vacancy.expanded div.body {
    max-height: fit-content; }
  section.vacancy-list article.vacancy div.text {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color); }
    section.vacancy-list article.vacancy div.text h2 {
      font-size: 1.75rem;
      line-height: 1;
      font-weight: normal;
      margin-bottom: 1.875rem; }
    section.vacancy-list article.vacancy div.text h3 {
      font-size: 1.5rem;
      line-height: 1;
      font-weight: normal;
      margin-bottom: 1.875rem;
      color: black; }
    section.vacancy-list article.vacancy div.text h4 {
      font-size: 1.25rem;
      line-height: 1;
      font-weight: normal;
      margin-top: 1.875rem;
      margin-bottom: 1.5rem; }
    section.vacancy-list article.vacancy div.text h5 {
      font-size: 1.125rem;
      line-height: 1;
      font-weight: normal;
      margin-top: 1.875rem;
      margin-bottom: 1.5rem; }
    section.vacancy-list article.vacancy div.text h6 {
      font-size: 1rem;
      line-height: 1.375;
      font-weight: normal;
      margin-bottom: 1.5rem; }
    section.vacancy-list article.vacancy div.text p {
      margin-bottom: 1.5rem; }
    section.vacancy-list article.vacancy div.text ol, section.vacancy-list article.vacancy div.text ul {
      margin-bottom: 1.25rem; }
    section.vacancy-list article.vacancy div.text ol {
      padding-left: 1.625rem; }
    section.vacancy-list article.vacancy div.text ul li {
      list-style-type: none;
      position: relative;
      padding-left: 1.25rem;
      margin-bottom: 0.5rem; }
      section.vacancy-list article.vacancy div.text ul li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.625rem;
        width: 0.25rem;
        height: 0.25rem;
        background: #222; }
    section.vacancy-list article.vacancy div.text a {
      color: var(--main-color); }
    section.vacancy-list article.vacancy div.text hr {
      margin-top: 1.5rem;
      margin-bottom: 1.5rem;
      border: none;
      border-top: 1px solid var(--border-color); }
    section.vacancy-list article.vacancy div.text img {
      max-width: 100%; }
    section.vacancy-list article.vacancy div.text blockquote {
      color: var(--text-color);
      position: relative;
      padding: 1.25rem 1.25rem 1.5rem 4.5rem;
      border: none;
      font-size: 1rem;
      margin-top: 0.5rem;
      margin-bottom: 0.25rem; }
      section.vacancy-list article.vacancy div.text blockquote:before {
        position: absolute;
        top: 0.75rem;
        left: 0;
        font-family: Arial;
        content: "\201C";
        font-size: 5.125rem;
        line-height: 4.875rem;
        font-weight: 600;
        color: var(--main-color); }
      section.vacancy-list article.vacancy div.text blockquote p {
        font-size: 1.125rem;
        font-weight: 300; }
    section.vacancy-list article.vacancy div.text table.requisites {
      border-collapse: collapse;
      border-spacing: 0;
      width: 100%;
      margin-bottom: 20px;
      max-width: 100%; }
      @media (max-width: 767px) {
        section.vacancy-list article.vacancy div.text table.requisites tr {
          display: flex;
          flex-direction: column; } }
      section.vacancy-list article.vacancy div.text table.requisites tr:nth-child(odd) td {
        background: white; }
      section.vacancy-list article.vacancy div.text table.requisites tr:nth-child(even) td {
        background: #eff5f7; }
      section.vacancy-list article.vacancy div.text table.requisites td {
        padding: 0.5rem;
        line-height: 1.375;
        vertical-align: top; }
    section.vacancy-list article.vacancy div.text table.common-table {
      border-collapse: collapse;
      border-spacing: 0;
      width: 100%;
      margin-top: 0.75rem;
      margin-bottom: 1.25rem; }
      section.vacancy-list article.vacancy div.text table.common-table thead th {
        background-color: var(--main-color);
        color: white;
        padding: 0.625rem;
        text-align: left; }
      section.vacancy-list article.vacancy div.text table.common-table tbody td {
        padding: 0.375rem 0.625rem;
        border-bottom: 1px solid #dedede; }
      section.vacancy-list article.vacancy div.text table.common-table button {
        width: 10rem;
        height: 2.5rem;
        border: 1px solid var(--main-color);
        background-color: white;
        color: var(--main-color);
        vertical-align: top;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease-in-out; }
        section.vacancy-list article.vacancy div.text table.common-table button:hover {
          background-color: var(--main-color);
          color: white; }
    section.vacancy-list article.vacancy div.text div.sketch {
      display: grid;
      grid-template-columns: repeat(2, 31.125rem);
      column-gap: 1.25rem;
      margin-bottom: 1.25rem; }
      section.vacancy-list article.vacancy div.text div.sketch h4 {
        margin-top: 0; }
    section.vacancy-list article.vacancy div.text div.good-list {
      padding-top: 1px;
      margin-bottom: 2rem; }
      section.vacancy-list article.vacancy div.text div.good-list div.good {
        padding: 1.25rem;
        margin-top: -1px;
        border: 1px solid var(--border-color);
        display: grid;
        grid-template-columns: 3.125rem 1fr 15.5rem;
        column-gap: 1.25rem; }
        @media (max-width: 767px) {
          section.vacancy-list article.vacancy div.text div.good-list div.good {
            grid-template-columns: 3.125rem 1fr;
            row-gap: 1.25rem; }
            section.vacancy-list article.vacancy div.text div.good-list div.good div.actions {
              grid-column: span 2; } }
        section.vacancy-list article.vacancy div.text div.good-list div.good:hover {
          box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1); }
      section.vacancy-list article.vacancy div.text div.good-list div.image {
        width: 3.125rem;
        height: 3.125rem;
        display: flex;
        justify-content: center;
        align-items: center; }
        section.vacancy-list article.vacancy div.text div.good-list div.image svg {
          color: var(--gray-color); }
      section.vacancy-list article.vacancy div.text div.good-list h6 {
        line-height: 1.5;
        margin-bottom: 0;
        font-weight: 500;
        color: var(--text-color); }
      section.vacancy-list article.vacancy div.text div.good-list div.in-stock {
        display: flex;
        align-items: center;
        column-gap: 0.25rem; }
        section.vacancy-list article.vacancy div.text div.good-list div.in-stock svg {
          color: #20af59; }
        section.vacancy-list article.vacancy div.text div.good-list div.in-stock span {
          font-size: 0.8125rem;
          color: #666666; }
      section.vacancy-list article.vacancy div.text div.good-list button {
        width: 6.625rem;
        height: 2.5rem;
        border: none;
        background-color: var(--main-color);
        color: white;
        cursor: pointer;
        font-size: 1rem; }
        section.vacancy-list article.vacancy div.text div.good-list button:hover {
          background-color: var(--hover-main-color); }
    section.vacancy-list article.vacancy div.text .main-color {
      color: var(--main-color); }
  section.vacancy-list article.vacancy div.foot {
    padding: 0 1.5rem 1.5rem; }
    section.vacancy-list article.vacancy div.foot button {
      padding: 0.625rem 1.25rem;
      background-color: var(--main-color);
      color: white;
      border: none;
      font-size: 0.9375rem;
      cursor: pointer; }

section.index-steps {
  margin-top: 2rem;
  margin-bottom: 2rem; }
  section.index-steps div.container {
    width: var(--width-1392);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--default-column-padding);
    padding-right: var(--default-column-padding); }
    @media (max-width: 767px) {
      section.index-steps div.container {
        width: 100vw;
        padding-left: var(--mobi-padding);
        padding-right: var(--mobi-padding); } }
  section.index-steps ul {
    list-style: none;
    padding-bottom: 2.375rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2rem; }
    @media (max-width: 767px) {
      section.index-steps ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        row-gap: 1rem; } }
  section.index-steps li {
    flex: 0 0 12rem;
    display: grid;
    grid-template-columns: 3.75rem 1fr;
    column-gap: 0.5rem;
    align-items: center; }
    @media (max-width: 767px) {
      section.index-steps li {
        flex-basis: auto; } }
    section.index-steps li svg {
      width: 3.75rem;
      height: 3.75rem; }
    section.index-steps li span {
      font-size: 0.8125rem;
      line-height: 1rem;
      color: #205b7d; }

section.service-list {
  padding-top: 1px; }
  @media (max-width: 767px) {
    section.service-list {
      display: flex;
      flex-direction: column;
      row-gap: 3rem; } }
  section.service-list article {
    padding: 2rem;
    margin-top: -1px;
    display: grid;
    grid-template-columns: 17.5rem 1fr;
    column-gap: 2rem;
    grid-auto-rows: 13.125rem;
    border: 1px solid var(--border-color); }
    @media (max-width: 767px) {
      section.service-list article {
        display: flex;
        flex-direction: column;
        padding: 0;
        border: none;
        row-gap: 1rem; } }
    section.service-list article:hover {
      box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1); }
    section.service-list article img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
    section.service-list article h3 {
      font-size: 1.125rem;
      margin-bottom: 0.75rem; }
      section.service-list article h3 a {
        color: #333333; }
    section.service-list article div.more a {
      display: inline-block;
      padding: 0.5rem 1rem;
      color: white;
      background-color: var(--main-color);
      font-size: 0.8125rem; }

section.article-block ~ section.service-list {
  margin-top: 2.25rem; }

div.order-block {
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  background-color: #fbfbfb;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 3rem 1fr 10.375rem;
  column-gap: 2rem; }
  @media (max-width: 767px) {
    div.order-block {
      padding: 1rem;
      grid-template-columns: 3rem 1fr;
      column-gap: 1rem;
      row-gap: 1rem; } }
  div.order-block svg {
    width: 3rem;
    height: 3.4375rem;
    color: var(--main-color); }
  div.order-block div.text, div.order-block div.btn {
    align-content: center; }
  @media (max-width: 767px) {
    div.order-block div.btn {
      grid-column: 1 / span 2;
      display: flex;
      justify-content: center; } }
  div.order-block p {
    color: var(--text-color); }
  div.order-block button {
    width: 10.375rem;
    height: 2.6875rem;
    border: none;
    background-color: var(--main-color);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    align-self: center;
    cursor: pointer; }

div.question-block {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
  padding: 3rem 1.5rem 2.5rem;
  border: 1px solid var(--border-color);
  background-color: #fbfbfb; }
  div.question-block svg {
    width: 5.5rem;
    height: 4.875rem;
    color: var(--main-color); }
  div.question-block p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
    color: var(--text-color); }
  div.question-block button {
    width: 9.75rem;
    height: 2.6875rem;
    border: 1px solid var(--main-color);
    background-color: white;
    color: var(--main-color);
    font-weight: 700;
    font-size: 1rem;
    align-self: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out; }
    div.question-block button:hover {
      background-color: var(--main-color);
      color: white; }

section.service-gallery {
  margin-top: 3.25rem;
  padding-top: 2.5rem;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--border-color); }
  section.service-gallery h5 {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 2rem; }
    @media (max-width: 767px) {
      section.service-gallery h5 {
        font-size: 1.25rem; } }
  section.service-gallery div.photos {
    display: grid;
    grid-template-columns: repeat(3, 20.33333rem);
    grid-auto-rows: 12.875rem;
    gap: 1.25rem; }
    @media (max-width: 767px) {
      section.service-gallery div.photos {
        display: flex;
        flex-direction: column; } }
    section.service-gallery div.photos img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      cursor: pointer; }

section.index-services {
  margin-top: 3.625rem;
  margin-bottom: 3.75rem; }
  section.index-services div.container {
    width: var(--width-1392);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--default-column-padding);
    padding-right: var(--default-column-padding); }
    @media (max-width: 767px) {
      section.index-services div.container {
        width: 100vw;
        padding-left: var(--mobi-padding);
        padding-right: var(--mobi-padding); } }
  section.index-services div.head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem; }
    @media (max-width: 767px) {
      section.index-services div.head {
        margin-bottom: 0.5rem; } }
    section.index-services div.head h3 {
      font-size: 1.625rem;
      line-height: 1;
      font-weight: 400; }
      @media (max-width: 767px) {
        section.index-services div.head h3 {
          font-size: 1.5rem; } }
    section.index-services div.head a {
      color: var(--main-color); }
      section.index-services div.head a:hover {
        color: var(--dark-gray-color); }
  section.index-services div.body {
    display: grid;
    grid-template-columns: 19rem 63.5rem;
    column-gap: 2rem; }
    @media (max-width: 767px) {
      section.index-services div.body {
        display: flex;
        flex-direction: column;
        row-gap: 1rem; } }
  section.index-services div.sidebar {
    position: relative;
    padding-top: 2.1875rem; }
    @media (max-width: 767px) {
      section.index-services div.sidebar {
        padding-top: 0.75rem; }
        section.index-services div.sidebar div.btns {
          display: none; } }
    section.index-services div.sidebar::before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      height: 0.125rem;
      width: 3rem;
      background-color: var(--main-color); }
    section.index-services div.sidebar p {
      font-size: 1.125rem;
      line-height: 1.625rem;
      color: var(--dark-gray-color);
      margin-bottom: 1.5rem; }
    section.index-services div.sidebar p.small {
      font-size: 0.9375rem;
      line-height: 1.5rem;
      color: var(--gray-color);
      margin-bottom: 1.5rem; }
    section.index-services div.sidebar div.btns a {
      display: inline-block;
      padding: 0.5rem 1.25rem;
      border: 1px solid var(--main-color);
      background-color: white;
      color: var(--main-color);
      font-size: 1rem;
      transition: all 0.3s ease-in-out; }
      section.index-services div.sidebar div.btns a:hover {
        background-color: var(--main-color);
        color: white; }
  section.index-services div.services {
    display: grid;
    grid-template-columns: repeat(3, 19.83333rem);
    gap: 2rem; }
    @media (max-width: 767px) {
      section.index-services div.services {
        display: flex;
        flex-direction: column; } }
    section.index-services div.services a.image {
      display: block;
      position: relative;
      width: 100%;
      height: 12.5rem;
      overflow: hidden;
      margin-bottom: 1rem; }
      section.index-services div.services a.image img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.5s ease-in-out; }
      section.index-services div.services a.image:hover img {
        transform: scale(1.25); }
    section.index-services div.services h3 {
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.5; }
      section.index-services div.services h3 a {
        color: #333333; }
        section.index-services div.services h3 a:hover {
          color: var(--main-color); }

section.index-groups {
  margin-bottom: 1.5rem; }
  section.index-groups div.grid {
    display: grid;
    grid-template-columns: repeat(2, 31.75rem);
    padding: 1px 0 0 1px; }
    @media (max-width: 767px) {
      section.index-groups div.grid {
        display: flex;
        flex-direction: column;
        padding-left: 0; } }
  section.index-groups article {
    margin-top: -1px;
    margin-left: -1px;
    padding: 1.875rem 1.875rem 2.5rem;
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    column-gap: 1.5rem; }
    @media (max-width: 767px) {
      section.index-groups article {
        display: flex;
        flex-direction: column;
        row-gap: 1.5rem;
        margin-left: 0; } }
    section.index-groups article:hover {
      box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1); }
  section.index-groups img {
    max-width: 100%; }
  section.index-groups h3 {
    font-size: 1.125rem;
    line-height: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem; }
    section.index-groups h3 a {
      color: var(--dark-gray-color); }
      section.index-groups h3 a:hover {
        color: var(--main-color); }
  section.index-groups ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 0.25rem;
    font-size: 0.875rem; }
    section.index-groups ul a {
      color: var(--main-color); }
      section.index-groups ul a:hover {
        color: var(--dark-gray-color); }

div.modal {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding-top: 5.625rem;
  padding-bottom: 5.625rem;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999; }
  div.modal:not(.shown) {
    display: none; }
  div.modal div.popup {
    background-color: white;
    width: var(--popup-width); }
    @media (max-width: 767px) {
      div.modal div.popup {
        width: 90vw; } }
  div.modal div.head {
    padding: 2rem 1.25rem 1.75rem 3.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media (max-width: 767px) {
      div.modal div.head {
        padding-left: 1.25rem; } }
    div.modal div.head h6 {
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1.75rem; }
    div.modal div.head a {
      display: block;
      flex: 0 0 1.75rem;
      height: 1.75rem;
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--dark-gray-color); }
      div.modal div.head a:hover {
        color: var(--red-color); }
  div.modal div.body {
    padding: 0 3.25rem 3.75rem 3.25rem; }
    @media (max-width: 767px) {
      div.modal div.body {
        padding-left: 1.25rem;
        padding-right: 1.25rem; } }
div.dialog p {
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gray-color); }

div.dialog div.control-box {
  margin-top: 1rem; }
  div.dialog div.control-box div.errtext {
    font-size: 0.75rem;
    line-height: 1rem;
    min-height: 1rem;
    text-align: right;
    color: var(--red-color); }
  div.dialog div.control-box div.control {
    position: relative; }
  div.dialog div.control-box input, div.dialog div.control-box textarea {
    display: block;
    background-color: #fbfbfb;
    border: 0.0625rem solid #e8e8e8;
    border-radius: 0.125rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%;
    outline: none;
    font-size: 1rem; }
    div.dialog div.control-box input:focus, div.dialog div.control-box textarea:focus {
      background-color: white;
      border-color: #999999; }
  div.dialog div.control-box input {
    height: 3rem;
    line-height: 2.875rem; }
  div.dialog div.control-box textarea {
    height: 7.375rem;
    padding-top: 0.625rem;
    padding-bottom: 0.5rem; }
  div.dialog div.control-box input::placeholder, div.dialog div.control-box textarea::placeholder {
    color: transparent; }
  div.dialog div.control-box label {
    display: block;
    position: absolute;
    left: 0.75rem;
    top: 0;
    height: 3rem;
    line-height: 3rem;
    font-size: 0.875rem;
    color: #999999;
    transition: all 0.3s ease-in-out; }
    div.dialog div.control-box label .required {
      font-size: 1.125rem;
      line-height: 1;
      color: var(--red-color); }
  div.dialog div.control-box input:focus ~ label, div.dialog div.control-box textarea:focus ~ label,
  div.dialog div.control-box input:not(:placeholder-shown) ~ label, div.dialog div.control-box textarea:not(:placeholder-shown) ~ label {
    font-size: 0.75rem;
    left: 0.375rem;
    padding-left: 0.375rem;
    padding-right: 0.375rem;
    background-color: white;
    height: 0.875rem;
    line-height: 0.875rem;
    top: -0.4375rem; }

div.dialog div.check-box {
  margin-top: 1rem; }
  div.dialog div.check-box div.errtext {
    font-size: 0.75rem;
    line-height: 1rem;
    min-height: 1rem;
    text-align: right;
    color: var(--red-color); }
  div.dialog div.check-box label {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    cursor: pointer; }
    div.dialog div.check-box label input {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      width: 1rem;
      height: 1rem;
      border: 0.0625rem solid #cccccc;
      border-radius: 0.125rem;
      background-color: white;
      flex: 0 0 1rem; }
      div.dialog div.check-box label input:hover {
        background-color: var(--main-color);
        border-color: var(--main-color); }
      div.dialog div.check-box label input:checked {
        background-color: var(--main-color);
        border-color: var(--main-color); }
        div.dialog div.check-box label input:checked::after {
          content: "";
          display: block;
          width: 0.375rem;
          height: 0.75rem;
          border: solid white;
          border-width: 0 0.1875rem 0.1875rem 0;
          transform: rotate(45deg);
          margin-left: 0.3125rem;
          margin-top: 0; }
    div.dialog div.check-box label span {
      font-size: 0.875rem;
      color: var(--text-color); }
    div.dialog div.check-box label a {
      color: var(--main-color); }

div.dialog div.submit {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  column-gap: 0.5rem; }
  div.dialog div.submit button {
    width: 8rem;
    height: 2.625rem;
    border: none;
    border-radius: 0.125rem;
    background-color: var(--main-color);
    color: white;
    font-size: 1rem;
    cursor: pointer; }
    div.dialog div.submit button:hover {
      background-color: var(--hover-main-color); }
  div.dialog div.submit svg.progress {
    display: none;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--main-color);
    animation: rotate-infinite 2s linear infinite; }

div.dialog.sending div.submit svg.progress {
  display: block; }

@keyframes rotate-infinite {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

section.contact-form {
  border-top: 0.0625rem solid var(--border-color);
  padding-top: 3.125rem;
  margin-bottom: 6.25rem; }
  section.contact-form div.container {
    width: var(--width-1392);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--default-column-padding);
    padding-right: var(--default-column-padding); }
    @media (max-width: 767px) {
      section.contact-form div.container {
        width: 100vw;
        padding-left: var(--mobi-padding);
        padding-right: var(--mobi-padding); } }
  section.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark-gray-color); }
  section.contact-form div.wrapper {
    display: grid;
    grid-template-columns: 26rem 1fr;
    column-gap: 2rem;
    margin-top: -0.5rem; }
    @media (max-width: 767px) {
      section.contact-form div.wrapper {
        display: flex;
        flex-direction: column;
        row-gap: 2rem; } }
  section.contact-form div.note {
    font-size: 0.9375rem;
    color: #333;
    padding-top: 2rem; }
  section.contact-form div.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem; }
    @media (max-width: 767px) {
      section.contact-form div.columns {
        display: flex;
        flex-direction: column; } }
  section.contact-form div.dialog div.control-box textarea {
    height: 18rem; }

div.mobi-head {
  display: flex;
  align-items: center;
  height: var(--mobi-height);
  column-gap: 4px; }
  @media (min-width: 768px) {
    div.mobi-head {
      display: none; } }
  div.mobi-head .icon {
    flex: 0 0 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-gray-color);
    border: none;
    background-color: transparent; }
  div.mobi-head .search {
    margin-left: auto; }

div.mobi-menu {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(58, 63, 68, 0.7);
  z-index: 99999; }
  div.mobi-menu:not(.shown) {
    display: none; }
  div.mobi-menu div.slider {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--mobi-width);
    height: 100%;
    background-color: white;
    box-shadow: 3px 0 10px 0 rgba(0, 0, 0, 0.45);
    transform: translateX(-300px);
    overflow: hidden; }
    div.mobi-menu div.slider.finished {
      transform: none; }
  div.mobi-menu div.runner {
    display: grid;
    grid-template-columns: repeat(3, var(--mobi-width));
    transition: transform 0.5s ease-in-out; }
  div.mobi-menu div.column {
    display: flex;
    flex-direction: column; }
  div.mobi-menu .menu-item {
    display: flex;
    align-items: center;
    height: var(--mobi-height);
    border: none;
    border-bottom: 1px solid var(--border-color);
    background-color: white;
    padding: 0 20px;
    color: var(--dark-gray-color);
    width: 100%; }
    div.mobi-menu .menu-item.active {
      border-left: 3px solid var(--main-color); }
    div.mobi-menu .menu-item.shift-left {
      justify-content: space-between;
      column-gap: 4px; }
      div.mobi-menu .menu-item.shift-left svg {
        flex: 0 0 8px;
        color: var(--gray-color);
        width: 8px;
        height: 8px; }
    div.mobi-menu .menu-item.shift-right {
      column-gap: 8px; }
      div.mobi-menu .menu-item.shift-right span {
        font-weight: 400; }
    div.mobi-menu .menu-item.mobi-menu-phone {
      column-gap: 8px;
      background-color: #fbfbfb;
      border-color: #fbfbfb; }
    div.mobi-menu .menu-item.highlight {
      color: var(--main-color); }
    div.mobi-menu .menu-item span {
      font-size: 15px;
      font-weight: 700;
      text-align: left; }
    div.mobi-menu .menu-item.mobi-menu-demand button {
      border: none;
      background-color: var(--main-color);
      width: 100%;
      height: 50px;
      color: white;
      font-size: 15px;
      border-radius: 2px; }
  div.mobi-menu ul.mobi-menu-contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 32px 20px 0 20px;
    row-gap: 12px; }
    div.mobi-menu ul.mobi-menu-contacts li {
      display: flex;
      align-items: center;
      column-gap: 8px;
      color: var(--text-color); }
      div.mobi-menu ul.mobi-menu-contacts li span {
        font-size: 13px; }

section.search-results div.container {
  width: var(--width-1392);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--default-column-padding);
  padding-right: var(--default-column-padding);
  display: flex;
  flex-direction: column;
  row-gap: 2rem; }
  @media (max-width: 767px) {
    section.search-results div.container {
      width: 100vw;
      padding-left: var(--mobi-padding);
      padding-right: var(--mobi-padding); } }
section.search-results article div.head {
  margin-bottom: 0.5rem; }
  section.search-results article div.head h3 {
    font-weight: 400;
    font-size: 1.5rem; }
    section.search-results article div.head h3 a {
      color: var(--main-color); }

div.pager {
  margin-top: 3rem;
  margin-bottom: 3rem; }
  div.pager .container {
    width: var(--width-1392);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--default-column-padding);
    padding-right: var(--default-column-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
    row-gap: 1rem;
    flex-wrap: wrap; }
    @media (max-width: 767px) {
      div.pager .container {
        width: 100vw;
        padding-left: var(--mobi-padding);
        padding-right: var(--mobi-padding); } }
  div.pager a {
    display: block;
    height: 2.8125rem;
    line-height: 2.6875rem;
    min-width: 2.8125rem;
    text-align: center;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 0.3125rem;
    font-size: 1.25rem; }
    div.pager a:hover, div.pager a.active {
      border-color: var(--main-color);
      background-color: var(--main-color);
      color: white;
      font-weight: bold; }
