/* Основа */
@-ms-viewport {
  width: "device-width";
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans";
  font-size: 16px;
  color: #000000;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

header input,
header button,
header textarea,
header ul,
header ol,
header p,
main input,
main button,
main textarea,
main ul,
main ol,
main p,
nav ul,
nav ol {
  padding: 0;
  margin: 0;
}

header li,
main li,
nav li {
  list-style: none;
  display: block;
}

header ul li,
main ul li,
nav ul li {
  color: #2d2e2e;
  position: relative;
  left: 0;
  top: 0;
  padding-left: 0.7222222222222222em;
}

header ul li:before,
main ul li:before,
nav ul li:before {
  content: "•";
  position: absolute;
  left: 0;
}

header input,
header button,
header textarea,
main input,
main button,
main textarea,
nav input,
nav button,
nav textarea {
  border: 0;
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
  margin: 0;
}

header textarea,
main textarea,
nav textarea {
  resize: none;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  line-height: 1.25em;
  margin: 20px 0 10px;
}

main h2 span {
  color: #e84e26;
}

header a,
main a,
nav a {
  text-decoration: none;
  line-height: 1.25em;
  transition: color 0.35s;
  color: #e84e26;
}

main a:hover,
nav a:hover {
  color: #e82d00ff;
}

header a img,
main a img {
  border: 0;
  border: unset;
  border: none;
}

header table,
main table {
  border-collapse: separate;
  border-spacing: 0;
  border-color: transparent;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

header ::-ms-clear,
main ::-ms-clear {
  display: none;
}

header ::-ms-reveal,
main ::-ms-reveal {
  display: none;
}

p {
  color: #2d2e2e;
}

.nav--logo-mob {
  display: none;
  padding-left: 25px;
}

.back-to-catalog {
  font-size: 1.333333333333333em;
  line-height: 1.25em;
  color: #0b0b0a;
}

.back-to-catalog:visited {
  color: #0b0b0a;
}

.text_underline span {
  display: inline;
  border-bottom: 2px solid #20201f;
  transition: border-bottom-color 0.35s;
}

.text_underline span:hover {
  border-bottom-color: #ffb347;
  transition: border-bottom-color 0.35s;
}

.socials {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
}

.socials a {
  margin: 0.3888888888888889em 0.4444444444444444em 0 0.4444444444444444em;
  width: 1.611111111111111em;
  height: 1.611111111111111em;
  border-radius: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
}

.socials a.facebook {
  background-image: url(images/icons/socials/facebook.png);
}

.socials a.vk {
  background-image: url(images/icons/socials/vk.png);
}

.socials a.youtube {
  background-image: url(images/icons/socials/youtube.png);
}

.socials a.instagram {
  background-image: url(images/icons/socials/instagram.png);
}

.socials a.whatsapp {
  background-image: url(images/icons/socials/whatsapp.png);
}

.btn {
  border: 1px solid #c9c9c9;
  line-height: 116%;
  color: #2b2a29;
  text-transform: uppercase;
  text-align: left;
  display: inline-block;
  background-color: transparent;
  transition: background-color 0.35s;
  cursor: pointer;
  outline: none;
  padding: 30px 40px;
}

.btn:hover {
  background-color: #e84e26;
  color: white;
}

.btn.btn-active {
  background-color: #e84e26;
  color: white;
}

.btn.btn-active:hover {
  background-color: transparent;
}

.btn-arrow {
  width: 40px;
  height: 40px;
  background: url(images/svg/btn_arrow.svg) scroll no-repeat center transparent;
}

/*
Модальные окна
*/
body.openModal {
  overflow: scroll;
}

.modal {
  display: block;

  visibility: hidden;
  transform: translateY(-100%);

  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  transition: visibility 0.35s, transform 0.35s, background-color 1.05s;
}

.modal.openModal {
  background-color: rgba(21, 18, 18, 0.4);
  visibility: visible;
  transform: translateY(0);
}

.modal-container {
  display: block;
  width: 100%;
  /*max-width: 1314px;*/
  max-width: 40em;
  /*margin: 25px auto;*/
  margin: 1.388888888888889em auto;
  background: #fff;
  /*padding: 0 68px 44px;*/
  padding: 0 3.777777777777778em 2.444444444444444em;
  transform: translateY(-50%);
  /*opacity: 0;*/
  transition: opacity 0.5s, transform 0.5s;
}

.modal.openModal .modal-container {
  transform: translateY(0);
  opacity: 1;
}

.modal-head {
  display: block;
  width: 100%;
  position: relative;
  left: 0;
  top: 0;
  /*padding-top: 63px;*/
  padding-top: 3.5em;
}

.modal-head p {
  display: block;
  width: 100%;
  font-size: 1.587222222222222em;
  line-height: 1.666783339166958em;
  font-weight: 400;
  color: #383838;
  text-transform: uppercase;
}

.close-modal {
  font-size: 1em;
  position: absolute;
  right: -2.333333333333333em;
  top: 1.444444444444444em;
  width: 0.9444444444444444em;
  height: 0.9444444444444444em;
  border: 0;
  outline: none;
  cursor: pointer;
  background: transparent;
  padding: 0;
  margin: 0;
}

.close-modal > span {
  position: absolute;
  width: 1.277777777777778em;
  height: 2px;
  left: 50%;
  top: 50%;
  background: #ffb347;
}

.close-modal > span:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.close-modal > span:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.modal-body {
  /*padding: 22px 0 0;*/
  padding: 1.222222222222222em 0 0;
  position: relative;
}

.modal-body form {
  display: block;
  width: 100%;
  /*max-width: 1162px;*/
  max-width: 64.55555555555556em;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.label--input {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;

  width: 100%;
}

.label--input:not(:last-child) {
  margin-bottom: 14px;
}

.label--input span {
  font-size: 1em;
  line-height: 1.666666666666667em;
  margin-bottom: 0.3333333333333333em;
  color: #383838;
  text-transform: uppercase;
  order: 1;
  cursor: pointer;
}

.label--input input:required ~ span:after,
.label--input select:required ~ span:after {
  content: "*";
  color: #ffb347;
}

.label--input input {
  display: block;
  width: 100%;
  height: 2.722222222222222em;
  line-height: 2.722222222222222em;
  color: #000;
  border: 1px solid #000000;
  padding: 0 1em;
  transition: border-color 0.35s;
  order: 2;
  outline: none;
}

.label--input input:focus {
  border-color: #ffb347;
}

@supports (-webkit-overflow-scrolling: touch) {
  .label--input input {
    line-height: normal;
  }
}

.label--input select {
  display: block;
  width: 100%;
  font-size: 1em;
  height: 2.722222222222222em;
  line-height: 2.422222222222222em;
  border: 1px solid #000000;
  color: #000;
  padding: 0 3.777777777777778em 0 1em;

  background-color: transparent;
  background-position: center right 1.222222222222222em;
  background-size: 1.277777777777778em 0.8333333333333333em;
  background-image: url(images/icons/arrow--select.png);
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  transition: border-color 0.35s;
  outline: none;

  order: 2;
}

.label--input select:focus {
  border-color: #ffb347;
}

@supports (-webkit-overflow-scrolling: touch) {
  /*
    Фикс для iOs и Я.Браузера
    */
  .label--input select {
    line-height: normal;
  }
}

.form_bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;

  width: 100%;
  /*max-width: 900px;*/
  max-width: 50em;
  /*padding-top: 45px;*/
  padding-top: 2.5em;
}

.form_bottom .btn {
  /*max-width: 431px;*/
  max-width: 23.94444444444444em;
  width: 100%;
  /*padding: 27px 47px;*/
  padding: 1.5em 2.611111111111111em;
}

.form_bottom .btn:disabled {
  background-color: silver;
}

.form_bottom .btn:not(:last-child) {
  /*margin-bottom: 28px;*/
  margin-bottom: 1.555555555555556em;
}

.info_for_form {
  display: block;
  max-width: 100%;
  color: #383838;
  line-height: 1.333333333333333em;
}

.info_for_form sup {
  vertical-align: top;
  color: #ffb347;
}

.label-checkbox {
  display: inline-block;
  max-width: 100%;
  position: relative;
  left: 0;
  top: 0;
  /*padding-left: 87px;*/
  padding-left: 4.833333333333333em;
  /*min-height: 38px;*/
  min-height: 2.111111111111111em;
}

.label-checkbox:not(:last-child) {
  /*margin-bottom: 46px;*/
  margin-bottom: 2.555555555555556em;
}

.label-checkbox input[type="checkbox"],
.label-checkbox input[type="radio"] {
  display: none;
}

.label-checkbox span {
  cursor: pointer;
}

.label-checkbox span:not(.label-checkbox__indicator) {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  color: #383838;
  line-height: 1.333333333333333em;
}

.label-checkbox__indicator {
  display: block;
  position: absolute;
  /*left: -1px;*/
  left: -0.0555555555555556em;
  /*top: 4px;*/
  top: 0.2222222222222222em;
  /*width: 36px;*/
  width: 2em;
  /*height: 38px;*/
  height: 2.111111111111111em;
  border: 1px solid #000000;
  cursor: pointer;
}

.label-checkbox__indicator:after {
  content: "";
  display: block;
  opacity: 0;
  transition: opacity 0.35s;
  background-position: center;
  background-repeat: no-repeat;
  /*background-size: 21px 17px;*/
  background-size: 1.166666666666667em 0.9444444444444444em;
  background-image: url(images/icons/checked--arrow.png);
  width: 100%;
  height: 100%;
}

.label-checkbox input[type="checkbox"]:checked ~ .label-checkbox__indicator:after,
.label-checkbox input[type="radio"]:checked ~ .label-checkbox__indicator:after {
  opacity: 1;
}

/*
Шапка
*/
.page_header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  background-color: white;
  height: 70px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid #f6f6f6;
}

.page_header--start {
  height: 60px;
  border-bottom: 1px solid #d7d7d7;
}

.page_header--container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: flex-start;
  border-bottom: 1px solid #d7d7d7;
  width: 100%;
  max-width: 1692px;
  align-content: flex-start;
}

@media (max-width: 867px) {
  .page_header--container {
    align-content: center;
  }
}

.page_header--start .page_header--container {
  max-width: 100%;
  margin: 0;
  height: 60px;
  align-items: center;
}

.page_header--left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 600px) {
  .page_header--left {
    flex-direction: column;
  }

  .navigation__block {
    margin-top: 5px;
    margin-left: 100px;
  }
}

@media (max-width: 425px) {
  .navigation__block {
    margin-left: 80px;
  }
}

@media (max-width: 390px) {
  .navigation__block {
    margin-left: 70px;
  }
}

.page_header--left__logo {
  display: block;
}

.page_header--left__logo img {
  max-width: 15.77777777777778em;
  display: block;
}

.header--menu__btn {
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
  left: 0;
  top: 0;
  cursor: pointer;
  background-color: #2b2a29;
  text-align: center;
}

.header--menu__btn span {
  position: absolute;
  display: block;
  width: 20px;
  height: 0.1111111111111111rem;
  left: 20px;
  background-color: #ffffff;
  opacity: 1;
  transition: all 0.35s;
  transform: translate(0, 0) rotate(0deg);
}

.header--menu__btn span:first-child {
  top: 25px;
}

.header--menu__btn span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}

.header--menu__btn span:last-child {
  bottom: 25px;
}

.header--menu__btn.active span:first-child {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.header--menu__btn.active span:nth-child(2) {
  opacity: 0;
}

.header--menu__btn.active span:last-child {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* .header--search {
  margin: 0;
  padding: 0;
  position: fixed;
  width: 100%;
  height: 60px;
  background-color: #f6f6f6;
  top: 0;
  display: none;
} */

/* .header--search.active {
  display: block;
  top: 60px;
  transition: top 5s;
  z-index: 100;
} */

/* .header--search form {
  display: flex;
} */

/* .header--search-left-close {
  width: 60px;
  height: 60px;
  border: none;
  border-right: 1px solid #d7d7d7;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/svg/close.svg);
} */

/* .header--search__input {
  height: 60px;
  padding: 0 40px;
  margin: 0;
  outline: none;
  color: #000000;
  font-weight: 300;
  background-color: #f6f6f6;
  border: none;
  font-size: 16px;
  flex-grow: 1;
} */

/* .header--search__input::-moz-placeholder,
.header--search__input:-ms-input-placeholder,
.header--search__input:-moz-placeholder,
.header--search__input::-webkit-input-placeholder {
  color: #808080;
  font-weight: 300;
  font-size: 16px;
} */

.header--btn-search {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 60px;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  color: #aaaaa8;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/svg/loupe.svg);
  border-left: 1px solid #e5e5e5;
}

/* .header--search__btn {
  height: 60px;
  width: 60px;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  color: #aaaaa8;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/svg/loupe.svg);
  background-color: #f6f6f6;
  border: none;
} */

.page_header--left .nav--logo {
  margin-left: 90px;
}

.page_header--right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
}

.page_header--right a:hover,
.page_header--right a:visited {
  color: #000000;
}

.header--link-mail {
  padding: 17px 10px 19px 10px;
  font-size: 16px;
  line-height: 23px;
  color: #2b2a29;
  border-left: 1px solid #e5e5e5;
  font-weight: 700;
}

a.header--link-mail:hover {
  color: #e84e26;
}

.header--link-phone {
  padding: 20px 10px;
  color: #000000;
  font-size: 16px;
  line-height: 19.2px;
  border-left: 1px solid #e5e5e5;
}

a.header--link-phone:hover {
  color: #e84e26;
}

@media (max-width: 1160px) {
  .header--link-mail {
    padding: 17px 10px 19px 10px;
  }

  .header--link-phone {
    padding: 20px 10px;
  }
}

@media (max-width: 970px) {
  .page_header--left {
    padding-right: 0;
  }

  .nav--logo img {
    margin-right: 10px !important;
  }
}

@media (max-width: 896px) {
  .nav--logo img {
    margin-right: 5px !important;
  }
}

.header--icons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  margin-right: 60px;
}

.header--icons img {
  width: 30px;
}

.header--callback {
  padding: 18px 10px 11px 10px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}

.header--callback img {
  width: 25px;
}

@media (max-width: 867px) {
  .header--callback,
  .header--icons {
    display: none;
  }
}

.header--link-phone-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 60px;
  font-size: 16px;
  cursor: pointer;
  border-left: 1px solid #e5e5e5;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/svg/phone.svg);
}

.block-mobile-icons {
  display: none;
}

@media (max-width: 867px) {
  .block-mobile-icons {
    width: 130px;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
  }

  .block-mobile-icons img {
    width: 35px;
  }
}

@media (max-width: 374px) {
  .block-mobile-icons {
    width: 45px;
  }

  .block-mobile-icons a:nth-child(2),
  .block-mobile-icons a:nth-child(3) {
    display: none;
  }
}

/*
Навигационная панель
*/
@supports (-webkit-overflow-scrolling: touch) {
  /*
    Фикс для iOs и Я.Браузера
    */
  /*body.openMenu {*/
  /*    overflow: hidden;*/
  /*}*/
}

nav {
  position: fixed;
  z-index: 98;
  width: 100%;
  background-color: #f6f6f6;
  top: 0;
  left: 0;

  padding-top: 70px;
  -webkit-overflow-scrolling: touch;

  transform: translateX(-100%);
  transition: transform 0.35s;
}

nav.active {
  transform: translateX(0);
}

.nav--logo img {
  display: block;
  max-width: 12.27777777777778em;
  margin-right: 20px;
}

.navigation--links {
  display: block;
  width: 100%;
}

.navigation--links ul {
  font-size: 1em;
  /*padding: 0 1em 0 2.555555555555556em;*/
  padding-bottom: 2.555555555555556em;
}

.navigation--links ul.second-menu {
  padding-bottom: 0;
}

.navigation--links li {
  padding-left: 0;
}

.navigation--links li:before {
  display: none;
}

.navigation--links li:not(:last-child) {
  /*margin-bottom: 29px;*/
  /*margin-bottom: 1.611111111111111em;*/
}

.navigation--links li a {
  color: #0b0b0b;
  /*font-size: 14px;*/
  font-size: 0.7777777777777778em;
  cursor: pointer;
  display: inline-block;
  /*text-transform: capitalize;*/
  /*padding: 17px 10px 13px 46px;*/
  padding: 1em 1em 0.9em 3.285714285714286em;
  width: 100%;
  transition: background-color 0.35s;
  background-color: transparent;
}

.navigation--links li a:hover,
.navigation--links li a.active {
  background-color: #ffb347;
}

.navigation--links li a span {
  font-size: 1.142857142857143em;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
}

/*Второй уровень каталога*/
.navigation--links li.menu-catalog {
  position: relative;
}

.navigation--links li .root-item {
}

.navigation--links li.menu-catalog .second-menu-button {
  right: 0;
  height: 40px;
  width: 40px;
  position: absolute;
  cursor: pointer;
}

.navigation--links li.menu-catalog .second-menu-arrow {
  position: absolute;
  right: 12px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  transform: rotate(-135deg);
}

.navigation--links li.menu-catalog .second-menu-arrow.close {
  transform: rotate(316deg);
  top: 10px;
}

.navigation--links li.menu-catalog .second-menu.close {
  display: none;
}

/*Второй уровень каталога*/
/*END*/

.navigation--container {
  display: block;
  width: 50%;
  position: relative;
  left: 0;
  top: 0;
  height: calc(100vh - 11.5em);
  overflow: hidden;
  padding-bottom: 1.666666666666667em;
}

/* .navigation--container .header--search {
  display: none;
} */

.navigation--container .mCSB_inside > .mCSB_container {
  margin: 0;
}

.navigation--container .mCSB_scrollTools {
  right: unset;
  left: 0;
}

.navigation--container .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #ffb347;
}

/*
-----------------------------------------
*/
main {
  display: flex;
  width: 100%;
  /*padding-top: 21px;*/
  padding-left: 0;
  transition: padding 0.35s;
  /*overflow: hidden;*/
  -webkit-overflow-scrolling: touch;
}

.left-vertical-column,
.right-vertical-column {
  width: 64px;
}

.left-vertical-column {
  border-right: 1px solid #c9c9c9;
}

.right-vertical-column {
  border-left: 1px solid #c9c9c9;
}

.left-vertical-column__footer {
  border-right: 1px solid #4b4a48;
}

.right-vertical-column__footer {
  border-left: 1px solid #4b4a48;
}

.contacts__title {
  color: #ffffff;
}

.social__icons img {
  width: 30px;
  height: 30px;
}

.social__icons--invert {
  filter: invert(1);
}

.container_contents {
  width: 100%;
  display: block;
}

.main__video {
  display: block;
  width: 100%;
  height: 42.88888888888889em;
}

.catalog-container {
  display: block;
  position: relative;
  width: 100%;
}

.catalog-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}

.catalog--item {
  font-size: 1em;
  display: block;
  width: 100%;
  max-width: 445px;
}

.catalog--item__inner {
  display: block;
  font-size: 1em;
  height: 25em;
  position: relative;
  left: 0;
  top: 0;
  background-color: #fff;
}

.catalog--item__inner img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
}

.catalog--item__inner--name {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 116%;
  z-index: 2;
  background-color: #464544;
  color: #ffffff;
  text-transform: uppercase;
  padding: 0.9444444444444444em 72px 1.055555555555556em 1.111111111111111em;
  min-height: 110px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Для Видов работ*/
@media (max-width: 1124px) and (min-width: 769px) {
  .container_contents .catalog--inner .catalog-container .section--items .catalog--item__inner--name {
    min-height: 110px !important;
    padding: 20px !important;
  }
}

/*Для Перевозки*/
@media (max-width: 1493px) and (min-width: 1125px) {
  .container_contents .catalog--inner .catalog-container .section--items .catalog--item__inner--name {
    min-height: 110px !important;
    padding: 30px !important;
  }
}

/*Для Аренды*/
@media (max-width: 1183px) and (min-width: 769px) {
  .container_contents .catalog-container .section--items .catalog--item__inner--name {
    min-height: 150px;
    /*padding: 40px 1em 40px 1.1em;*/
  }
}

/*Для главной*/
@media (max-width: 1082px) and (min-width: 769px) {
  .main_block--block.section-list .catalog--item__inner--name {
    padding: 0.9444444444444444em 1em 1.055555555555556em 1.111111111111111em;
    min-height: 133px;
    hyphens: auto;
  }
}

.catalog--item__inner--name > span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 116%;
  color: #7a7a7a;
}

.catalog--item__inner--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 20em;
  position: relative;
  background-color: #fff;
}

.catalog--banner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #ffb347;

  height: 25em;
  /*padding: 66px 42px 52px 19px;*/
  padding: 3.666666666666667em 2.333333333333333em 2.888888888888889em 1.055555555555556em;
}

.catalog--banner__top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;

  width: 100%;
}

.catalog--banner__top p {
  display: block;
  width: calc(100% - 11.88888888888889em);
  max-width: 100%;
  color: #0d0c0c;
  /*font-size: 30px;*/
  font-size: 1.666666666666667em;
  /*line-height: 44.19px;*/
  line-height: 1.473em;
  letter-spacing: -0.0425em;
  padding-right: 0.5em;

  -ms-flex-positive: 1;
  flex-grow: 1;
}

.catalog--banner__top--image {
  width: 11.88888888888889em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: start;
  align-items: flex-start;
}

.catalog--banner__top img {
  /*max-width: 214px;*/
  max-width: 11.88888888888889em;
  /*max-height: 172px;*/
  max-height: 9.555555555555556em;
}

.catalog--banner__bottom {
  display: block;
  width: 100%;
}

.catalog--banner__bottom p {
  display: block;
  max-width: 100%;

  /*font-size: 26.02px;*/
  font-size: 1.445555555555556em;
  /*line-height: 31.23px;*/
  line-height: 1.200230591852421em;
  color: #0c0c0c;
  letter-spacing: -0.042em;
}

.catalog--bottom {
  font-size: 1em;
  padding: 1.5em 1.222222222222222em 0;
  display: block;
  width: 100%;
}

.catalog--load_more {
  display: block;
  text-align: center;
  background-color: #423f3f;
  border-radius: 4px;
  color: #ffffff;
  /*font-size: 30px;*/
  font-size: 1.666666666666667em;
  text-transform: uppercase;
  /*padding: 14px 5px 17px;*/
  padding: 0.4666666666666667em 0.1666666666666667em 0.5666666666666667em;
}

.title {
  display: block;
  width: 100%;
  text-align: center;
  /*padding: 0 15px;*/
  padding: 0 0.4932587964485367em;
  /*font-size: 30.41px;*/
  font-size: 1.689444444444444em;
  color: #2d2e2e;
  font-weight: 400;
  text-transform: uppercase;
}

.partners .title {
  /*margin-bottom: 66px;*/
  margin-bottom: 2.170338704373561em;
}

.partners {
  display: block;
  width: 100%;
}

.partners_carousel {
  display: block;
  width: 100%;
  background-color: #ffffff;
  /*padding: 144px 0 189px;*/
  padding: 8em 0 10.5em;
}

.partners_carousel--container {
  display: block;
  width: 100%;
  /*padding: 0 15px;*/
  padding: 0 0.8333333333333333em;
  /*max-width: 1360px;*/
  max-width: 75.55555555555556em;
  margin: 0 auto;
}

.partners_carousel--slide {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  /*height: 96px;*/
  height: 5.333333333333333em;
  outline: none;
}

.partners_carousel--slide img {
  display: block;
  max-height: 100%;
  max-width: 90%;
}

.partners_carousel--inner .slick-dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;

  position: absolute;
  left: 50%;
  /*bottom: -82px;*/
  bottom: -4.555555555555556em;
  transform: translateX(-50%);
  padding: 0 15px;
  width: 100%;
}

.partners_carousel--inner .slick-dots li {
  padding-left: 0;
  line-height: 0;
  display: block;
  margin: 9px 9px 0;
}

.partners_carousel--inner .slick-dots li:not(:last-child) {
  margin-bottom: 0;
}

.partners_carousel--inner .slick-dots li:before {
  display: none;
}

.carousel__dots {
  display: block;
  line-height: 0;
  height: 9px;
  width: 9px;
  border-radius: 100%;
  cursor: pointer;
  background-color: #b1b1b1;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition: box-shadow 0.35s, background-color 0.35s;
}

.partners_carousel--inner .slick-dots li.slick-active .carousel__dots {
  background-color: transparent;
  box-shadow: 0 0 0 2px #da4835;
}

/* .footer {
  display: block;
  width: 100%;
  background-color: #2b2a29;
  padding: 3.944444444444444em 0 4.555555555555556em 0;
} */

/* .footer_container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;

  width: 100%;
  padding: 0 4.944444444444444em;
  margin: 0 auto;
} */

.copyright {
  font-size: 1em;
  line-height: 2em;
  color: #e9e9e9;
}

/*
Детальная страница
*/
.container_product {
  display: block;
  width: 100%;
  max-width: 1749px;
  /*padding: 18px 28.5px 0;*/
  padding: 1em 1.583333333333333em 4.833333333333333em;
  margin: 0 auto;
}

.product--top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: end;
  align-items: flex-end;

  /*padding-bottom: 21px;*/
  padding-bottom: 1.166666666666667em;
}

.product--top .title {
  text-align: left;
  /*font-size: 36px;*/
  font-size: 2em;
  display: block;
  padding: 0;

  margin-top: 0;
  /*margin-bottom: 5px;*/
  margin-bottom: 0.1388888888888889em;
  margin-right: 0;
  margin-left: 0;

  width: auto;
  width: none;
  width: unset;

  text-transform: initial;
  text-transform: inherit;
  text-transform: unset;
  text-transform: none;
}

.product--row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;

  margin: 0 -1.583333333333333em;
}

.product--left {
  display: block;
  width: 100%;
  max-width: 58.1901489117984%;
  /*padding: 7px 28.5px 0;*/
  padding: 0.3888888888888889em 1.583333333333333em 0;
}

.product_photos {
  display: block;
  width: 100%;
  position: relative;
}

.product_photos:not(:last-child) {
  /*margin-bottom: 62px;*/
  margin-bottom: 3.444444444444444em;
}

.product_photos--main {
  display: block;
  width: 100%;
  max-height: 32.03125vw;
  overflow: hidden;
}

.product_photos--main:not(:last-child) {
  /*margin-bottom: 25px;*/
  margin-bottom: 1.388888888888889em;
}

.product_photos--main__slide {
  display: block;
  width: 100%;
  cursor: pointer;
  outline: none;
  outline-offset: -1px;
  outline: 1px solid #c3c3c3;
}

.product_photos--main__slide--image {
  display: block;
  width: 100%;
  height: 32.03125vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  outline: none;
}

/*Навигация слайдера*/
/*START*/
:root {
  --arrow-border-width: 4px;
  --arrow-size: 20px;
}

.slick-arrow {
  position: absolute;
  height: 100%;
  width: 50px;
  z-index: 1;
  cursor: pointer;
}

.slick-arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.2s;
}

.slick-arrow.slick-next {
  right: 0;
  top: 0;
}

.slick-arrow:before {
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-style: solid;
  border-color: #ff9600;
  border-width: 0 0 var(--arrow-border-width) var(--arrow-border-width);
  position: absolute;
  top: 47%;
  content: "";
}

.slick-prev.slick-arrow:before {
  left: 20px;
  transform: rotate(45deg);
}

.slick-next.slick-arrow:before {
  right: 20px;
  transform: rotate(-135deg);
}

/*END*/
/*Навигация слайдера*/
/*Счётчик слайдера*/
/*START*/
.countsSlides {
  position: absolute;
  z-index: 90;
  background-color: #ffb347;
  right: 0;
  top: 0px;
  padding: 9px;
  border-bottom-left-radius: 4px;
}

/*END*/
/*Счётчик слайдера*/
.product_photos--small {
  display: block;
  /*margin: 0 -15px;*/
  margin: 0 -0.8333333333333333em;
  /*height: 223px;*/
  max-height: 12.38888888888889em;
  overflow: hidden;
}

.product_photos--small__slide {
  width: 100%;
  /*padding: 0 15px;*/
  padding: 0 0.8333333333333333em;

  outline: none;
}

.product_photos--small__slide--image {
  display: block;
  width: 100%;
  /*height: 223px;*/
  max-height: 12.38888888888889em;
  min-height: 11.61458333333333vw;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  cursor: pointer;
  outline: none;
}

.product--right {
  display: block;
  width: 100%;
  max-width: 41.8098510882016%;
  /*padding: 0 28.5px;*/
  padding: 0 1.583333333333333em;
}

.product--right__top {
  display: block;
  width: 100%;
}

.product--right__top:not(:last-child) {
  /*margin-bottom: 57px;*/
  margin-bottom: 2em;
}

.price-from {
  margin-bottom: 2em;
}

.price-from h3 {
  float: left;
  margin-right: 8px;
}

.price-from .price-from-value {
  font-size: 17pt;
  line-height: 22px;
}

.product--price {
  display: block;
}

.product--price:not(:last-child) {
  /*margin-bottom: 15px;*/
  margin-bottom: 0.8333333333333333em;
}

.product--price h2 {
  color: #131312;
  /*font-size: 24px;*/
  font-size: 1.333333333333333em;
  /*line-height: 30px;*/
  line-height: 1.25em;
  font-weight: 700;
}

.product--price h2:not(:last-child) {
  /*margin-bottom: 3px;*/
  margin-bottom: 0.125em;
}

.product--price p {
  display: block;
  max-width: 100%;
  color: #272626;
  /*font-size: 24px;*/
  font-size: 1.333333333333333em;
  /*line-height: 36px;*/
  line-height: 1.5em;
}

.product_specifications {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;

  width: 100%;
}

.product_specifications h3 {
  display: inline-block;
  font-weight: 700;
  color: #2d2e2e;
  font-size: 1em;
  line-height: 1.666666666666667em;
  text-transform: uppercase;
  order: 1;
}

.product_specifications h3:not(:last-child) {
  /*margin-bottom: 15px;*/
  margin-bottom: 0.8333333333333333em;
}

.product_specifications--middle {
  display: block;
  width: 100%;
  margin-top: 14px;
  margin-bottom: 36px;
  order: 2;
}

.product_specifications.active .product_specifications--middle {
  order: 3;
}

.product_specifications .btn {
  /*margin-bottom: 18px;*/
  margin-bottom: 1em;
  order: 3;
}

.product_specifications.active .btn {
  order: 2;
}

.product_specifications--table {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product_specifications--table__row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: center;
  -ms-flex-line-pack: start;
  align-content: flex-start;

  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.product_specifications--table__row.non-active {
  display: none;
}

.product_specifications.active .product_specifications--table__row.non-active {
  display: -ms-flexbox;
  display: flex;
}

.product_specifications--table__row:after {
  content: "";
  height: 1px;
  width: 100%;
  /*border-top: 2px dotted #2d2e2e;*/

  position: absolute;
  left: 0;
  /*top: 20px;*/
  top: 1.111111111111111em;
  z-index: 1;
}

.product_specifications--table__td {
  display: block;
  font-size: 1em;
  padding: 0 0.8333333333333333em;
  line-height: 1.666666666666667em;
  color: #2d2e2e;
  background-color: #fff;
  position: relative;
  left: 0;
  top: 0;
  z-index: 2;
  word-break: break-word;
}

.product_specifications--table__td:first-child {
  padding-right: 2px;
}

.product_specifications--table__td:nth-child(2) {
  padding-left: 2px;
  text-align: right;
  font-size: 14px;
}

.typography {
  display: block;
  max-width: 100%;
  color: #2d2e2e;
}

.typography p {
  display: block;
  max-width: 100%;
  line-height: 1.666666666666667em;
  color: #2d2e2e;
}

.typography p:not(:last-child) {
  margin-bottom: 1.666666666666667em;
}

.typography ul {
  font-size: 1em;
}

/*
Каталог ( второй уровень )
*/
.section_list--container {
  display: block;
  width: 100%;
  /*max-width: 1346px;*/
  min-height: calc(76vh - 80px);
  max-width: 74.77777777777778em;
  /*padding: 0 15px 101px;*/
  padding: 0 0.8333333333333333em 5.611111111111111em;
  margin: 0 auto;
}

.section_list--before_top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: start;
  align-items: flex-start;

  /*padding: 16px 0 24px 0;*/
  padding: 0.8888888888888889em 0 1.333333333333333em 0;
}

.section_list--before_top a {
  color: #0b0b0a;
  /*font-size: 24px;*/
  font-size: 1.333333333333333em;
  /*line-height: 30px;*/
  line-height: 1.25em;
  margin-top: -50px;
}

.section_list--top {
  display: flex;
  position: relative;
  padding-bottom: 30px;
  padding-top: 40px;
  align-items: center;
}

.section_list--top .section_list--top_item {
  width: 50%;
}

.section_list--top .section_list--top_item:nth-child(2) {
  padding: 40px;
}

.section_list--top img {
  display: block;
  max-width: 100%;
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
}

.section_list--top__name {
  font-weight: bold;
  font-size: 44px;
  color: #2b2a29;
  padding-left: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  /*hyphens: auto;*/
}

.section_list--top__name span {
  color: #e84e26;
}

.section--items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

.section_list--item {
  display: block;
  width: 20%;
  min-width: 20%;
  max-width: 100%;
  background-color: #fff;
  border: 1px solid #c9c9c9;
  margin-bottom: 40px;
}

.section_list--item__image {
  display: block;
  width: 100%;
  height: 315px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: inherit;
}

.section--item--inner {
  display: block;
  width: 100%;
  position: relative;
}

.section--item--name {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 124%;
  color: #2b2a29;
  flex: none;
  order: 0;
  flex-grow: 0;
  padding: 15px 30px;
  z-index: 2;
}

.section--item .product_specifications--table {
  padding: 10px 0;
}

.section--item .price-from {
  color: #ffb347;
  margin-bottom: 0;
}

/*
Контакты
*/
.contact--container {
  display: block;
  width: 100%;
  max-width: 74.94444444444444em;
  padding: 8.222222222222222em 0.8333333333333333em 5.277777777777778em;

  margin: 0 auto;
}

.contact--item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: stretch;
  align-items: stretch;

  /*margin-bottom: 40px;*/
  margin-bottom: 2.222222222222222em;

  width: 100%;
}

.contact--item__left {
  display: block;
  width: 100%;
  max-width: 51.78165276724792%;
  padding-right: 15px;
}

.contact--item__left p {
  display: block;
  width: 100%;

  /*font-size: 24px;*/
  font-size: 1.333333333333333em;
  /*line-height: 36px;*/
  line-height: 1.5em;
  color: #000000;

  /*max-width: 475px;*/
  max-width: 19.79166666666667em;

  letter-spacing: 0.019em;
}

.contact--item__left a,
.contact--item__left a:visited {
  color: #000000;
}

.contact--item__left a:hover {
  color: #ffb347;
}

.contact--item__right {
  display: block;
  width: 100%;
  max-width: 48.21834723275208%;
  /*border: 10px solid #ffb347;*/
  border: 0.5555555555555556em solid #ffb347;
}

.contact--item__right--map {
  display: block;
  width: 100%;
  /*height: 436px;*/
  height: 24.22222222222222em;
}

.contact--item__right--map > ymaps {
  max-width: 100%;
  /*height: 436px;*/
  height: 24.22222222222222em !important;
}

.search-page form {
  display: flex;
}

.search-page form input[type="text"] {
  border: 1px solid black;
  background-color: white;
  padding: 10px;
  flex-grow: 1;
}

.search-page form input[type="submit"] {
  border: 3px solid #ffb347;
  font-size: 1em;
  text-align: center;
  border-radius: 0.2222222222222222em;
  padding: 10px;
  margin-left: 20px;
}

.search-page form input[type="submit"]:hover {
  background-color: #ffb347;
  cursor: pointer;
}

.search-page .notetext {
  color: black;
}

.search-page a {
  color: black;
  border-bottom: 1px solid black;
  transition: 0.15s;
}

.search-page a:hover {
  border-color: #ffb347;
  transition: 0.15s;
}

p.binding {
  padding-left: 10px;
  padding-bottom: 20px;
}

p.binding a {
  color: black;
  text-decoration: underline;
}

p.binding a:visited {
  color: #2d2e2e;
}

p.binding a:hover {
  color: #ffb347;
}

img.pdf_icon {
  width: 35px;
  margin-left: 30px;
}

p.pdf_inform {
  padding-top: 16px;
  padding-left: 15px;
}

p.pdf_inform a {
  color: black;
  text-decoration: underline;
}

p.pdf_inform a:hover {
  color: #ffb347;
}

.description-sect-tag {
  margin-top: -15px;
  display: block;
  margin-bottom: 30px;
}

.description-sect-tag a {
  text-decoration: underline;
  color: #2d2e2e;
}

.tags-block {
  padding-left: 40px;
}

.tags-block .catalog-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.tags-block .catalog-tags a {
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #f6f6f6;
  border: 1px solid rgba(43, 42, 41, 0.15);
  box-sizing: border-box;
  border-radius: 2px;
  margin: 0 10px 10px 0;
  color: #4f4d4c;
  text-align: center;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  display: inline-block;
  width: 294px;
}

@media (max-width: 425px) {
  .tags-block {
    padding-left: 0;
  }

  .tags-block .catalog-tags {
    flex-direction: column;
    align-content: center;
  }

  .tags-block .catalog-tags a {
    margin: 0 0 10px 0;
    width: auto;
    min-width: 300px;
  }
}

.tags-block .catalog-tags {
  letter-spacing: 1px;
}

.tags-block .catalog-tags a:hover {
  background: #e84e26;
  color: #ffffff;
}

.main_about {
  display: flex;
}

.main_about .main_about--block {
  position: relative;
  float: left;
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}

.main_about .main_about--block.left {
  background: url("images/svg/main_about.svg") scroll no-repeat left bottom transparent;
  padding: 140px 120px;
  border-bottom: 1px solid #c9c9c9;
}

.main_about .main_about--block.right {
  padding-top: 210px;
}

.main_about .main_about--block.right .main_about--item {
  padding: 60px;
  width: 50%;
  float: left;
  border: 1px solid #c9c9c9;
}

.main_about .main_about--block.right .main_about--item:first-child {
  text-align: center;
  color: white;
  background-color: #e84e26;
  width: 100%;
  position: absolute;
  top: -54px;
  padding: 60px 0;
  border: none;
}

.main_about .main_about--block.right .main_about--item > span {
  font-size: 72px;
  line-height: 116%;
  font-weight: bold;
}

.main_about .main_about--block.right .main_about--item:first-child > span {
  font-size: 85px;
  font-weight: bold;
}

.main_about .main_about--block.right .main_about--item > span > span {
  color: #e84e26;
}

.main_block {
  width: 100%;
}

.main_block.servises {
  background-color: #f7f7f7;
}

.main_block .main_block--title {
  width: 100%;
  padding: 60px 40px 60px;
}

.main_block .main_block--block {
  display: flex;
}

.main_block .main_block--block.section-list {
  flex-wrap: wrap;
}

.main_block .main_block--block .main_block--image {
  width: 66.4%;
  height: 440px;
  margin-left: 40px;
  background: url("images/main_services.webp") scroll no-repeat left top transparent;
  background-size: cover;
}

.main_block .main_block--block .main_block--image.tyumen {
  background-image: url("images/main/our_services_1.jpg");
}

.main_block .main_block--block .main_block--image.surgut {
  background-image: url("images/main/our_services_2.jpg");
}

.main_block .main_block--block .main_block--image.noyabrsk {
  background-image: url("images/main/our_services_3.jpg");
}

.main_block .main_block--block .main_block--image.noviy-urenhoy {
  background-image: url("images/main/our_services_4.jpg");
}

.main_block .main_block--block .main_block--image.nizhnevartovsk {
  background-image: url("images/main/our_services_5.jpg");
}

.main_block .main_block--block .main_block--text {
  background-color: #2b2a29;
  height: 440px;
  width: 33%;
  margin-right: 40px;
  padding: 60px 40px;
}

@media (max-width: 1026px) and (min-width: 1001px) {
  .main_block .main_block--block .main_block--text {
    padding: 10px 40px;
  }
}

@media (max-width: 1000px) and (min-width: 769px) {
  .main_block .main_block--block .main_block--text {
    padding: 0 40px;
  }
}

.main_block .main_block--block .main_block--text h3 {
  font-weight: bold;
  font-size: 36px;
  line-height: 116%;
  color: #e84e26;
}

.main_block .main_block--block .main_block--text p {
  color: white;
}

.main_block .main_block--block .main_block--text p.paragraph-text {
  line-height: 145%;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.main_block .main_block--block .main_block--text a {
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0.1em;
}

.main_block .main_block--block .main_block--text a.link-arenda {
  text-transform: uppercase;
  color: #e84e26;
  display: flex;
}

.main_block .main_block--block .main_block--text a.link-arenda i {
  display: flex;
  width: 50px;
  height: 18px;
  margin: 0 15px;
  background: url("images/svg/a_line.svg") scroll no-repeat left center transparent;
  transition: 0.5s all ease;
  transform: translateX(0px);
}

.main_block .main_block--block .main_block--text a.link-arenda span {
  display: inline-block;
  float: right;
  background: url("images/svg/main_services_text_a_arrow.svg") scroll no-repeat left top transparent;
  height: 20px;
  width: 20px;
  transition: 0.5s all ease;
  transform: translateX(0px);
}

.main_block .main_block--block .main_block--text a.link-arenda:hover i {
  transition: 0.5s all ease;
  transform: translateX(10px);
}

.main_block .main_block--block .main_block--text a.link-arenda:hover span {
  transition: 0.5s all ease;
  transform: translateX(20px);
}

.main_block .main_block--buttons {
  padding: 0 40px;
  display: flex;
}

.main_block .main_block--buttons .main_block--btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 33.33%;
}

.main_block--buttons a:nth-child(1) {
  border-right: 0;
}

.main_block--buttons a:nth-child(2) {
  border-right: 0;
}

/* catalog-list */
.main_about--block h2 {
  font-weight: bold;
  font-size: 50px;
  line-height: 116%;
  color: #2b2a29;
}

.main_about--block h2 span {
  display: block;
  font-weight: bold;
  font-size: 50px;
  line-height: 116%;
  color: #e84e26;
  text-transform: uppercase;
}

.main_about--block .subtitle {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;
  color: #2b2a29;
  margin: 40px 0 30px;
}

.main_about--block .company__description {
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  color: #4f4d4c;
}

.main_about--block-info {
  max-width: 490px;
  width: 100%;
  margin: 0 auto;
}

a.button__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #e84e26;
  border-radius: 2px;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 20px;
}

.button__send:hover {
  background-color: #d03710;
  transition: 0.3s;
}

.button__send svg {
  margin-left: 10px;
  transition: 1s;
}

.button__send:hover svg {
  transform: translateX(0);
}
.button__send:hover .hide_button {
  display: none;
}

.main_about .main_about--block.right .main_about--item:nth-child(even) {
  border-right: 0;
}

.main_about .main_about--block.right .main_about--item:nth-child(2) {
  border-bottom: 0;
}

.main_about .main_about--block.right .main_about--item:nth-child(3) {
  border-bottom: 0;
}

.main_about .main_about--block.right .main_about--item:nth-child(1n + 2) {
  border-right: 0;
}

.catalog--item {
  width: 33.33%;
  max-width: inherit;
  position: relative;
  overflow: hidden;
}

.catalog--item span.catalog--item__inner--image {
  transform: translateY(0%);
  color: #afafaf;
  transition: 0.3s all ease-out;
}

/*.catalog--item:hover span.catalog--item__inner--image {
    transform: translateY(100%);
    color: #AFAFAF;
    transition: .5s all ease-out;
}*/

.catalog--item span.catalog--item__inner--text {
  background: #464544;
  opacity: 0;
  transition: 0.3s all ease-out;
  position: absolute;
  top: -8px;
  width: 100%;
  height: 100%;
  padding: 0 40px;
  left: 0;
  border: 0;
}

.catalog--item span.catalog--item__inner--text ul li {
  color: #afafaf;
}

.catalog--item span.catalog--item__inner--text p {
  max-width: 326px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  color: #afafaf;
}

.catalog--item:hover span.catalog--item__inner--text {
  background: #464544;
  opacity: 1;
  display: block;
  color: #afafaf;
  transition: 0.3s all ease-out;
  transform: translateY(25%);
}

.catalog--item__inner--image svg {
  position: absolute;
  top: 50%;
  right: 20px;
}

.catalog--item__inner--text svg {
  position: absolute;
  top: 40%;
  right: 20px;
  color: #ffffff;
}

.catalog--item__inner--text svg circle {
  fill: #e84e26;
}

@media (max-width: 1024px) {
  .detail__info__text {
    padding: 40px 40px 0 40px;
  }

  .main_about {
    flex-wrap: wrap;
  }

  .main_about .main_about--block {
    width: 100%;
  }

  .main_about .main_about--block.left {
    order: 2;
  }

  .main_about .main_about--block.right {
    order: 1;
  }

  .main_about .main_about--block.right .main_about--item:nth-child(even) {
    border-left: 0;
  }
}

@media (max-width: 768px) {
  .main_about {
    width: 100%;
  }

  .main_block--block {
    flex-direction: column;
  }

  .main_block .main_block--block .main_block--image {
    width: 100%;
    margin: 0;
  }

  .main_block .main_block--block .main_block--text {
    width: 100%;
    min-height: 320px;
    height: auto;
  }

  .main_block .main_block--buttons {
    padding: 0;
    flex-direction: column;
  }

  .main_block .main_block--buttons .main_block--btn {
    width: 100%;
  }

  .main_about .main_about--block.right .main_about--item:first-child {
    position: relative;
    top: 0;
  }

  .main_about .main_about--block.right .main_about--item {
    padding: 30px;
    font-size: 16px;
  }

  .main_about .main_about--block.right {
    padding: 0;
  }

  .main_about .main_about--block.left {
    padding: 60px 40px;
  }

  .main_about .main_about--block.right .main_about--item > span {
    font-size: 48px;
  }

  .catalog--item {
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 425px) {
  .main_about--block h2,
  .main_about--block h2 span {
    font-size: 30px;
  }

  .main_about--block .subtitle {
  }

  .main_about--block .company__description {
    font-size: 16px;
  }

  a.button__send {
    display: flex;
  }

  .main_block--title {
  }

  .main_block .main_block--title {
    padding: 60px 40px 30px 40px;
  }

  .main_block .main_block--title h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 116%;
    color: #2b2a29;
  }

  .catalog-container.clients {
    display: none;
  }
}

/* contacts */
.contacts {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.contacts__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*min-width: 240px;*/
  /*max-width: 300px;*/
  width: 100%;
  height: 130px;
  background-color: #464544;
  padding: 0 20px;
  transition: 0.3s all ease;
  border-right: 1px solid #d7d7d7;
}

.contacts__item:last-child {
  border-right: 0;
}

.contacts__item-rus {
  background-color: #e84e26;
  transition: 0.3s all ease;
}

.contacts__item-rus .contacts__item-city {
  color: #ffffff;
}

.contacts__item:hover {
  background-color: #e84e26;
  transition: 0.3s all ease;
}

.contacts__item:hover .contacts__item-city {
  color: #ffffff;
  transition: 0.3s all ease;
}

.contacts__item-city {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 145%;
  text-align: center;
  color: #afafaf;
  transition: 0.3s all ease;
}

a.city__number {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 116%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s all ease;
}

a.city__number:hover {
  color: #e84e26;
  transition: 0.3s all ease;
}

/* contacts */

.contacts__section {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.contacts__section__item {
  flex-direction: column;
  justify-content: center;
  width: 33.33%;
  height: 210px; /*192px;*/
  background-color: #4f4d4c;
  padding: 35px 40px;
  transition: 0.3s all ease;
  border-right: 1px solid #e5e5e5;
}

.contacts__section__item:last-child {
  border-right: 0;
}

.contacts__item-rus {
  background-color: #e84e26;
  transition: 0.3s all ease;
}

.contacts__section__item .phone {
  padding-bottom: 10px;
}

.contacts__section__item .telegram {
  padding: 10px 0;
}

.telegram a.city__number {
  text-transform: none;
}

.contacts__section__item .email a {
  line-height: 1.25em;
  color: #ffffff;
}

.contacts__item-rus .contacts__item-city {
  color: #ffffff;
}

.contacts__section__item:hover {
  background-color: #e84e26;
  transition: 0.3s all ease;
}

.contacts__section .contacts__item-city {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 145%;
  text-align: left;
  color: #ffffff;
  padding: 0 0 20px 0;
}

a.city__number {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 116%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s all ease;
}

.contacts__item-city a.city__number {
  font-size: 25px;
}

.contacts__section__item:nth-child(1n + 4) {
  border-top: 1px solid #d7d7d7;
}

.contacts__section__item:nth-child(3n + 3) {
  border-right: 0;
}

a.city__number:hover,
.email a:hover {
  color: #ffffff;
  transition: 0.3s all ease;
}

.contacts__section__item:hover .address {
  color: #ffffff;
}

.contacts__section__item .address {
  color: #afafaf;
}

/*menu*/

nav.active {
  height: 100%;
  overflow: scroll;
}

.owerflower {
  overflow: hidden;
}

.menu__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 70px;
}

.menu__container__block {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.menu__container__block li {
  list-style: none;
  padding: 0;
  margin-right: 20px;
}

.menu__container__block li:before {
  list-style: none;
  content: " ";
}

.menu__container__block li ul li {
  padding: 8px 0;
}

.menu__container__block li span a {
  font-style: normal;
  font-weight: 600;
  line-height: 116%;
  text-transform: uppercase;
  color: #2b2a29;
  transition: 0.3s all ease;
}

.menu__container__block li span a:hover {
  color: #e84e26;
  transition: 0.3s all ease;
}

.menu__container__block li a {
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  color: #2b2a29;
  transition: 0.3s all ease;
}

.menu__container__block li a:hover {
  color: #e84e26;
  transition: 0.3s all ease;
}

.menu__container__block li span {
  display: none;
}

.menu__container__block li h4.root-item-selected a {
  color: #e84e26;
  transition: 0.3s all ease;
}

.child__menu__section .back__link {
  display: none;
}

.header--menu__btn:hover span:first-child,
.header--menu__btn:hover span:last-child {
  transform: translateX(-5px);
}

/* video */

main {
  position: relative;
  padding-left: 0;
}

.video {
  background-image: url("/local/templates/stratech/images/back_img_video.webp");
  min-height: 884px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}

.fancybox__content {
  width: 100%;
  height: 100%;
}

.video__info {
  width: 100%;
  display: flex;
  height: 100%;
  align-items: center;
  flex-direction: column;
  z-index: 1;
}

.video__info__title {
  font-style: normal;
  font-weight: 700;
  font-size: 90px;
  line-height: 104%;
  text-align: center;
  color: #ffffff;
}

.video__info__title span {
  display: block;
  text-align: center;
  color: #e84e26;
}

.video__info__logo {
  padding: 30px 0;
}

.video__info__text {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  text-align: center;
  color: #ffffff;
}

.video__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/local/templates/stratech/images/back_video.png");
  z-index: 0;
}

.video__info__buttons {
  padding: 80px 0;
}

.hide_button {
  opacity: 0;
  position: absolute;
  left: 4px;
  transition: 0.5s all ease;
}

.button__send.rent {
  position: relative;
  border: 1px solid #e84e26;
  border-radius: 2px;
  transition: 0.5s all ease;
  text-decoration: none;
}

.button__send.rent.mr {
  margin-top: 0;
}

/*.button__send.rent:hover .hide_button {
    opacity: 1;
    transition: .5s all ease;
}*/

.button__send.rent span {
  transform: translateX(0px);
  transition: 0.5s all ease;
}

.button__send.rent:hover span {
  /*transform: translateX(28px);*/
  transition: 0.5s all ease;
  color: #ffffff;
}

.catalog--item__inner--image .button__send.rent:hover span {
  transform: translateX(0px);
}

/*.button__send.rent:hover svg {
    transform: translateX(0px);
    opacity: 0;
    transition: .5s all ease;
}*/

.button__send.about {
  position: relative;
  margin-left: 30px;
  margin-right: 30px;
  background: transparent;
  border: 1px solid #e84e26;
  border-radius: 2px;
  text-decoration: none;
}

.button__send.about:hover .hide_button {
  opacity: 1;
  transition: 0.5s all ease;
}

.button__send.about span {
  transform: translateX(0px);
  transition: 0.5s all ease;
}

.button__send.about:hover span {
  transform: translateX(28px);
  transition: 0.5s all ease;
}

.button__send.about:hover svg {
  transform: translateX(0px);
  opacity: 0;
  transition: 0.5s all ease;
}

/* div.footer__copyright a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 145%;
  text-decoration: none;
  color: #afafaf;
} */

/* .footer__menu {
  background-color: #2b2a29;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
} */

/* .footer__menu__container {
  width: 100%;
  display: block;
} */

/* .footer__menu__container--elements {
  display: flex;
  justify-content: space-between;
  padding: 51px 40px;
} */

/* .footer__menu__container-contacts .contacts__top {
  padding-bottom: 25px;
} */

.contacts__bottom.social__icons a {
  padding-right: 7px;
  display: inline-block;
}

/* .footer__menu__container-menu {
  display: flex;
  justify-content: space-around;
} */

/* .footer__menu__container-logo {
  padding-right: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} */

/* .footer__copyright {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  border-top: 1px solid #c9c9c9;
} */

/* .footer__copyright p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 145%;
  color: #afafaf;
} */

.detail__info__slider .swiper-slide {
  background-color: #f6f6f696;
  background-position: center;
}

.form__direction p {
  display: block;
  width: 100%;
}

.call_hr {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 145%;
  color: #2b2a29;
  text-decoration: none;
  transition: 0.3s all ease;
}

.call_hr span {
  color: #e84e26;
  transition: 0.3s all ease;
}

.call_hr:hover {
  color: #e84e26;
  transition: 0.3s all ease;
}

.call_hr:hover span {
  color: #2b2a29;
  transition: 0.3s all ease;
}

/* @media (max-width: 1420px) {
  .footer__menu__container-logo {
    padding-right: 40px;
  }
} */

/* @media (max-width: 1170px) {
  .footer__menu__container--elements {
    flex-wrap: wrap;
  }

  .footer__menu__container--elements {
    padding: 51px 15px;
  }
} */

/* @media (max-width: 1070px) {
  .footer__menu__container-logo {
    padding-right: 0;
  }

  .footer__menu__container-logo {
    max-width: 180px;
  }
} */

@media (max-width: 900px) {
  /* .footer__menu__container-logo {
    max-width: 100%;
  }

  .footer__menu__container-contacts .contacts__top {
    padding-bottom: 15px;
  }

  .footer__menu__container-menu {
    padding: 20px 0;
  } */

  .left-vertical-column,
  .right-vertical-column {
    width: 20px;
  }

  /* .footer__menu__container--elements {
    flex-direction: column;
  }

  .footer__menu__container--elements {
    padding: 0;
    text-align: center;
  }

  .footer__copyright {
    text-align: center;
  }

  .footer__menu__container--elements ~ div {
    border-bottom: 1px solid #c9c9c9;
  }

  .footer__menu__container-contacts {
    padding: 40px;
    border-bottom: 1px solid #c9c9c9;
    order: 0;
  }

  .footer__menu__container-logo {
    order: 1;
    border-bottom: 1px solid #c9c9c9;
    padding: 20px 0;
  }

  .footer__menu__container-menu {
    order: 2;
    padding: 0;
    flex-direction: column;
  }

  .footer__copyright {
    padding: 25px;
    flex-direction: column;
  }

  .footer__copyright p {
    margin: 0;
  } */
}

.section_list--item {
  /*border-left: 0;*/
}

.section_list--item:nth-child(4n + 4) {
  border-right: 0;
}

.description__section-left ul li {
  padding: 0 20px !important;
}

@media (max-width: 1200px) {
  .section_list--item:nth-child(4n + 4) {
    border-right: 1px solid #c9c9c9;
  }

  .section_list--item:nth-child(3n + 3) {
    border-right: 0;
  }
}

@media (max-width: 1024px) {
  .section_list--item:nth-child(2n + 2) {
    border-right: 0;
  }

  .section_list--item:nth-child(4n + 4) {
    border-right: 0;
  }

  .section_list--item:nth-child(odd) {
    border-right: 1px solid #c9c9c9;
  }
}

@media (max-width: 768px) {
  .section_list--top .section_list--top_item {
    width: 100%;
  }
}

@media (max-width: 660px) {
  .section_list--top {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .other__items .section_list--item {
    width: 100%;
  }

  .contacts__phone-black {
    font-size: 20px;
  }

  .call_hr {
    font-size: 20px;
  }

  .call_hr span {
    font-size: 20px;
  }
}

/* .footer__rating {
  margin-top: 10px;
} */

.section_list--bottom_item {
  padding: 0 30px;
}

.header--link-mail.in-mobile-visible,
.header--link-phone.in-mobile-visible {
  display: none;
}

@media (max-width: 1370px) {
  .header--link-mail.in-desctop-visible,
  .header--link-phone.in-desctop-visible {
    display: none;
  }

  .header--link-mail.in-mobile-visible {
    display: block;
    padding: 15px 10px;
  }

  .header--link-mail.in-mobile-visible img,
  .header--link-phone.in-mobile-visible img {
    width: 25px;
  }

  .header--callback {
    padding: 15px 10px;
  }
}

@media (max-width: 867px) {
  .page_header--right {
    display: none;
  }
}

.root-item-spec {
  font-style: normal;
  font-weight: 600;
  line-height: 116%;
  text-transform: uppercase;
  color: #2b2a29;
  transition: 0.3s all ease;
}

a.contacts__call {
  display: block;
  font-style: normal;
  font-weight: 600;
  line-height: 145%;
  color: #afafaf;
  text-decoration: none;
  margin: 5px 0;
}

div.news-detail {
  word-wrap: break-word;
}

div.news-detail img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

div.news-detail img.detail_picture {
  float: none;
  margin: 0 8px 6px 1px;
}

div.news-detail p a {
  color: black;
  text-decoration: underline;
  transition: 0.7s;
}

div.news-detail p a:hover {
  color: #ffb347;
}

.other__items {
  display: flex;
  flex-wrap: wrap;
}

.other__items .section_list--item {
  width: 25%;
}

.other__items .section_list--item__right--name {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 124%;
  color: #2b2a29;
  hyphens: auto;
}

.other__items .section_list--item__right--name .model {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 124%;
  color: #e84e26;
}

.other__items .series {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 145%;
  color: #2b2a29;
}

.other__items .section_list--item__right--name.section {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  color: #e84e26;
  padding: 10px 0 0 0;
}

.other__items .section_list--item__right--inner {
  padding: 25px 30px;
}

.other__items .product_specifications--table__td {
  padding: 0;
}

.other__items .product_specifications--table {
  padding: 35px 0;
}

.other__items .product_specifications--table .specification__name {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  color: #808080;
}

.default__list {
  padding-bottom: 40px;
}

.default__list li {
  font-style: normal;
  font-weight: normal;
  line-height: 145%;
  color: #4f4d4c;
  padding-bottom: 10px;
}

.default__list li span {
  color: #e84e26;
  font-weight: 700;
}

.description__section {
  margin: 30px 120px;
}

.big__subtitle {
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 116%;
  color: #2b2a29;
  padding: 40px 0;
}

.small__subtitle {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 145%;
  color: #2b2a29;
  padding-bottom: 30px;
}

.news-date-time {
  color: #486daa;
}

@media (max-width: 1200px) {
  .other__items {
    flex-wrap: wrap;
  }

  .other__items .section_list--item__left {
    width: 100%;
    max-width: 100%;
  }

  .other__items .section_list--item {
    width: 33.33%;
    margin: 10px 0;
  }

  .other__items .section_list--item__right {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .other__items .section_list--item {
    width: 50%;
    margin: 10px 0;
  }

  .description__section {
    margin: 0 70px;
  }
}

@media (max-width: 768px) {
  .other__items .section_list--item__left {
    height: auto;
  }

  .description__section {
    margin: 0 70px;
  }
}

@media (max-width: 425px) {
  .other__items .section_list--item {
    width: 100%;
  }

  .description__section {
    margin: 0 30px;
  }
}

div.news-detail {
  word-wrap: break-word;
}

div.news-detail img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

div.news-detail img.detail_picture {
  float: none;
  margin: 0 8px 6px 1px;
}

div.news-detail p a {
  color: black;
  text-decoration: underline;
  transition: 0.7s;
}

div.news-detail p a:hover {
  color: #ffb347;
}

.other__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.other__items .section_list--item {
  width: 33.33%;
  /*width: 445px;*/
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
}

.other__items .section_list--item__right--name {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 124%;
  color: #2b2a29;
  hyphens: auto;
}

.other__items .section_list--item__right--name .model {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 124%;
  color: #e84e26;
}

.other__items .series {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 145%;
  color: #2b2a29;
}

.other__items .section_list--item__right--name.section {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  color: #e84e26;
  padding: 10px 0 0 0;
}

.other__items .section_list--item__right--inner {
  padding: 25px 30px 0 30px;
}

.other__items .product_specifications--table__td {
  padding: 0;
}

.other__items .product_specifications--table {
  padding: 20px 0;
  min-height: 150px;
}

.other__items .product_specifications--table .specification__name {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  color: #808080;
  padding: 0 10px 0 0;
}

.product_specifications--table__td:nth-child(2) {
  padding-left: 5px !important;
  /*max-width: 130px;*/
}

.other__items .product_specifications--table__row:after {
  content: "";
  height: 1px;
  width: 100%;
  border-top: 2px dotted #808080;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
}

.default__list {
  padding-bottom: 40px;
}

.default__list li {
  font-style: normal;
  font-weight: normal;
  line-height: 145%;
  color: #4f4d4c;
  padding-bottom: 10px;
}

.default__list li span {
  color: #e84e26;
  font-weight: 700;
}

.description__section {
  margin: 30px 120px;
}

.big__subtitle {
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 116%;
  color: #2b2a29;
  padding: 40px 0;
}

.small__subtitle {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 145%;
  color: #2b2a29;
  padding-bottom: 30px;
}

.news-date-time {
  color: #486daa;
}

.catalog-blocks__items {
  width: 100%;
}

@media (max-width: 1200px) {
  .other__items {
    flex-wrap: wrap;
  }

  .other__items .section_list--item__left {
    width: 100%;
    max-width: 100%;
  }

  .other__items .section_list--item {
    width: 33.33%;
    margin: 10px 0;
  }

  .other__items .section_list--item__right {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .other__items .section_list--item {
    width: 50%;
    margin: 10px 0;
  }

  .description__section {
    margin: 0 70px;
  }

  .catalog-blocks__filter.section .bx-filter-parameters-box.filter-block {
    display: none;
  }
  .catalog-blocks__filter.section {
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .other__items .section_list--item__left {
    height: auto;
  }

  .description__section {
    margin: 0 70px;
  }
}

@media (max-width: 700px) {
  .catalog-row {
    column-gap: 5px;
  }
  .other__items .section_list--item {
    width: calc((100% - 5px) / 2);
  }
  .section_list--item > .section--item {
    margin-top: auto;
  }
  .section_list--item__image {
    height: auto;
    aspect-ratio: 4/3;
    background-position: center;
  }
  .other__items .section_list--item__right--name {
    font-size: 15px;
    line-height: 1.2;
    margin: 20px 10px;
    min-height: auto;
  }
  .other__items .section_list--item__right--inner {
    padding: 0;
  }
  .product-item-price-current {
    padding-left: 10px;
  }
  .product_specifications--table {
    padding: 10px !important;
    min-height: auto !important;
  }
  .product_specifications--table__td {
    font-size: 12px !important;
  }
  .catalog.card .block__buttons {
    padding: 0;
    font-size: 12px;
    margin-top: 10px;
  }
  .catalog.card .block__buttons a {
    border-radius: 0;
    margin: 0;
  }
  .catalog.card .block__buttons p {
    margin-bottom: 10px;
  }
  .catalog.card .block__buttons > a:last-child {
    background-color: #000;
  }
}

@media (max-width: 425px) {
  .product_specifications--table__td {
    font-size: 10px !important;
  }
  .description__section {
    margin: 0 30px;
  }

  .catalog-blocks__filter.section .bx-filter-parameters-box.bx-active {
    display: block;
  }

  .catalog-blocks__mode {
    padding-top: 15px;
  }
}

.block__buttons {
  padding: 0 30px 25px 30px;
}

.block__buttons p {
  text-align: center;
}

.block__buttons p b span {
  line-height: 28px;
  font-size: 22px;
  color: #e84e26;
}

@media (max-width: 600px) {
  .hide_mobile {
    display: none;
  }
}

a.button__elem__bottom {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #e84e26;
  border-radius: 2px;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

a.button__elem__bottom:hover {
  background-color: #d03710;
  color: #ffffff;
  transition: 0.3s;
}

.section_list--top_item .btn {
  padding: 6px 12px;
}

/* faq block */
div.news-list {
  word-wrap: break-word;
}

div.news-list img.preview_picture {
  float: left;
  margin: 0 4px 6px 0;
}

.news-date-time {
  color: #486daa;
}

/*АКОРДЕОН*/
.accordionWrapper {
  padding: 30px;
  background: #fff;
  width: 100%;
  border-radius: 5px;
  box-sizing: border-box;
}

.accordionItemHeading {
  cursor: pointer;
  margin: 0 0 10px 0;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25em;
  background: #e9e9e9;
  color: #4f4d4c;
  width: 100%;
  border-radius: 3px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordionItemHeading .itemHeading:nth-child(1) {
  width: calc(100% - 42px);
}

.accordionItemHeading .itemHeading:nth-child(2) {
  width: 42px;
}

.itemHeading span {
  color: #e84e26;
}

.accordionItemHeading span.float-right {
  float: right;
  font-size: 25px;
}

.close .accordionItemContent {
  height: 0;
  transition: height 1s ease-out;
  transform: scaleY(0);
  float: left;
  display: block;
}

.open .accordionItemContent {
  padding: 20px;
  background-color: #f0f1f1;
  border: 1px solid #ddd;
  width: 100%;
  margin: 0 0 10px 0;
  display: block;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.4s ease;
  box-sizing: border-box;
}

.open .accordionItemHeading {
  margin: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #464544;
  color: #cdd7d8;
}

.page_header--mini_menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1080px) {
  .page_header--mini_menu a:nth-child(1) {
    display: none;
  }
}

@media (max-width: 1040px) {
  .page_header--mini_menu {
    display: none;
  }
}

/* chess block */
div.news-list {
  word-wrap: break-word;
}

div.news-list img.preview_picture {
  float: left;
  margin: 0 4px 6px 0;
}

.news-date-time {
  color: #486daa;
}

/*ШАХМАТНЫЙ БЛОК*/
.main_block--block.shess-blocks {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.chess-one-block {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.chess-img {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.chess-img img {
  width: 100%;
  max-width: fit-content;
  height: auto;
}

.chess-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.chess-info p {
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  color: #4f4d4c;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .chess-one-block {
    flex-direction: column;
    justify-content: flex-start;
  }

  .chess-one-block.revers {
    flex-direction: column-reverse;
  }

  .chess-img {
    width: 100%;
  }

  .chess-info {
    width: 100%;
  }
}

/* menu footer collaboration_menu */
.arrow__collab {
  display: block;
  width: 100%;
  max-width: 110px;
}

.collaboration .image {
  z-index: 1;
}

.collaboration .block {
  overflow: hidden;
  margin-bottom: 0;
}

.collaboration .block:last-child .arrow__collab {
  display: none;
}

.collaboration .block {
  border-right: 0;
  border-bottom: 0;
}

.collaboration .block:first-child {
  border-left: 0;
}

.collaboration .block:nth-child(3n + 1) {
  border-left: 0;
}

.collaboration .block:nth-child(n + 7) {
  border-bottom: 1px solid #c9c9c9;
}

.collaboration .number {
  right: 0;
}

.collaboration .block .block-inner {
  min-width: 200px;
  width: 100%;
  max-width: 440px;
}

.collaboration .block:last-child .block-inner:after {
  content: none;
}

@media (max-width: 1024px) {
  .collaboration .block {
    width: 50%;
  }

  .collaboration .block:nth-child(2n + 1) {
    border-left: 0;
  }

  .collaboration .block:nth-child(odd) {
    border-left: 0;
  }

  .collaboration .block:nth-child(even) {
    border-left: 1px solid #c9c9c9;
  }

  .collaboration .block:last-child {
    border-left: 1px solid #c9c9c9;
    border-top: 0;
  }
}

.collaboration {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  line-height: normal;
  overflow: hidden;
}

.collaboration .block {
  width: 33.33%;
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #c9c9c9;
  overflow: hidden;
  margin-bottom: 4px;
}

.collaboration .block-inner {
  padding: 30px;
  background-color: #f6f6f6;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 425px;
  border-right: 1px solid #c9c9c9;
  justify-content: center;
}

.collaboration .number {
  font-style: normal;
  font-weight: 700;
  font-size: 288px;
  line-height: 116%;
  text-align: right;
  color: #e1e1e1;

  position: absolute;
  display: block;
  top: -10px;
  right: -2px;
  z-index: 0;
}

.collaboration .image {
  height: 65px;
  width: 65px;
  margin-bottom: 20px;
  background-color: transparent;
  background-attachment: scroll;
  background-position: left top;
  background-repeat: no-repeat;
}

.collaboration .name {
  font-style: normal;
  font-weight: 600;
  line-height: 116%;
  text-transform: uppercase;
  color: #2b2a29;
}

.collaboration .text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #808080;
}

.collaboration .block-inner:after {
  content: "";
  display: block;
  position: absolute;
  height: 16px;
  width: 18px;
  right: -65px;
  background: url("images/icons_collaboration.svg#icon-arrow-right") scroll no-repeat center transparent;
}

.collaboration .block:nth-child(3n):after {
  display: none;
}

@media (max-width: 1250px) {
  .active .collaboration .block {
    width: 46%;
  }

  .active .collaboration .block:nth-child(3n):after {
    display: block;
  }

  .active .collaboration .block:nth-last-child(1):after {
    display: none;
  }

  .active .collaboration .block:nth-child(even):after {
    display: none;
  }
}

@media (max-width: 1000px) {
  .collaboration .block {
    width: 46%;
  }

  .collaboration .block:nth-child(3n):after {
    display: block;
  }

  .collaboration .block:nth-last-child(1):after {
    display: none;
  }

  .collaboration .block:nth-child(even):after {
    display: none;
  }
}

@media (max-width: 600px) {
  .collaboration .block {
    width: 100%;
    margin-bottom: 60px;
  }

  .collaboration .block:nth-child(even):after,
  .collaboration .block:after {
    display: block;
  }

  .collaboration .block:after {
    transform: rotate(90deg);
    bottom: -65px;
    transform-origin: center;
    right: 44%;
  }

  /*.collaboration .block-inner {*/
  /*    flex-direction: row;*/
  /*    min-height: auto;*/
  /*    padding-bottom: 5px;*/
  /*}*/
  /*.collaboration .image {*/
  /*    display: none;*/
  /*}*/
  .collaboration .number {
    top: -50px;
  }

  .collaboration .block-inner:after {
    content: none;
  }

  .collaboration .arrow__collab {
    display: none;
  }
}

@media (max-width: 690px) {
  .collaboration .block {
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .collaboration .block .block-inner {
    width: 100%;
  }

  .collaboration .block:nth-child(7) {
    border-bottom: 0;
  }

  .collaboration .block:nth-child(even) {
    border-left: 0;
  }

  .collaboration .block:last-child {
    border-left: 0;
    border-top: 0;
  }
}

/* catalog.section.list */

.description__section_side {
  display: flex;
}

.description__sect .subtitle {
  max-width: 750px;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;
  color: #2b2a29;
  padding: 30px 0;
}

.description__section-left {
  padding: 40px 40px 0;
  width: 100%;
}

.description__section-right {
  max-width: 561px;
  width: 100%;
  align-self: flex-end;
}

.description__section-right .right__item {
  padding: 60px;
  border: 1px solid #c9c9c9;
  border-right: 0;
  border-bottom: 0;
}

.right__item p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #2b2a29;
}

.right__item p.number {
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 116%;
  text-transform: uppercase;
  color: #2b2a29;
}

.right__item p.number span {
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 116%;
  text-transform: uppercase;
  color: #e84e26;
}

.firms {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #c9c9c9;
  border-right: 0;
  border-left: 0;
}

.firms__logo {
  width: 100%;
}

.firms__logo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.firms__logo-item .logo__item {
  min-width: 164px;
  min-height: 220px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #c9c9c9;
  width: 100%;
}

.firms__desc {
  padding: 70px 60px;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  color: #808080;
  max-width: 560px;
  width: 100%;
}

.description__section-left ul li {
  padding: 10px;
}

@media (max-width: 1440px) {
  .firms__desc {
    padding: 35px 25px;
  }
}

@media (max-width: 1024px) {
  .firms {
    flex-direction: column;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .firms__logo-item .logo__item:nth-child(4) {
    border-right: none;
  }

  .firms__logo-item .logo__item {
    border-bottom: 1px solid #c9c9c9;
  }
}

@media (max-width: 768px) {
  .description__section_side {
    flex-direction: column;
  }

  .description__section-left {
    padding: 40px;
  }

  .description__section-right {
    max-width: 100%;
  }

  .description__section-right .right__item {
    border-left: 0;
    padding: 50px;
  }

  .firms__logo-item {
    flex-wrap: wrap;
  }

  .firms__logo-item .logo__item {
    width: 50%;
    border-bottom: 1px solid #c9c9c9;
  }

  .firms__logo-item .logo__item:nth-child(2n + 2) {
    border-right: 0;
  }
}

@media (max-width: 365px) {
  .firms__logo-item {
    justify-content: center;
  }

  .firms__logo-item .logo__item {
    width: 60%;
    border-left: 1px solid #c9c9c9;
  }

  .firms__logo-item .logo__item:nth-child(2n + 2) {
    border-right: 1px solid #c9c9c9;
    border-left: 1px solid #c9c9c9;
  }
}

.other__items .section_list--item > .section--item,
.other__items .section_list--item > .section--item > .section--item--inner,
.other__items .section_list--item > .section--item > .section--item--inner > .section_list--item__right,
.other__items .section_list--item > .section--item > .section--item--inner > .section_list--item__right > .section_list--item__right--inner {
  height: 100%;
}
.other__items .section_list--item > .section--item > .section--item--inner > .section_list--item__right > .section_list--item__right--inner {
  display: flex;
  flex-direction: column;
}
.other__items .section_list--item > .section--item > .section--item--inner > .section_list--item__right > .section_list--item__right--inner > .section--item {
  margin-top: auto;
}
