@import "http://fonts.fontstorage.com/import/clearsans.css"; /*Clear Sans font*/

/*_MAIN PART_*/
* {
  min-height: 0;
  min-width: 0;
}

*::selection {
  background-color: #ee7900;
  color: #fff;
}

html,
body,
.wrapper {
  margin: 0;
  padding: 0;
}

body {
  min-width: 320px;
}

.wrapper { /*main container*/
  max-width: 100%;
  min-width: 320px;
  font-family: "Clear Sans", sans-serif;  /*Clear Sans font-family*/
  font-size: 16px;                        /*default font-size*/
  background-color: #fff;                 /*default background-color*/
  color: #3a3a3a;                         /*default text-color*/
}

/*.Toggle*/
.toggle__icon { /*mobile menu-icons*/
  display: none;              /*not displayed on desktop*/
  width: 40px;
  height: 40px;
  text-align: center;
  position: fixed;
  right: 6px;
  top: 5px;
  z-index: 100;
  font-size: 42px;
  color: #ee7900;
  cursor: pointer;
  text-shadow: 0 0 6px #111;
}

.menu-open {
  padding-top: 2px;
}

.menu-close {
  padding-bottom: 2px;
}
/*/.Toggle*/

/*.Slick*/
.slick-prev,
.slick-next {
  width: 30px;
  height: 30px;
  z-index: 50;
}

.slick-prev::before,
.slick-next::before {
  font-size: 30px;
  text-shadow: 0 0 3px #111;
  transition: .15s
}

.slick-prev:hover::before,
.slick-next:hover::before {
  color: #ee7900;
  opacity: .75;
}

.slick-prev {
  left: 5px;
}

.slick-next {
  right: 5px;
}

.slick div,
.slick img {
  outline: none;
}

.slick li:before {
  content: none;
}

.slick-dots li button::before {
  font-size: 8px;
}
/*./Slick*/

p { /*paragraph*/
  line-height: 22px;  /*default line-height*/
}

a { /*link*/
  display: inline-block;
  color: #ee7900;         /*default theme color*/
}

a:hover {
  text-decoration: none;
}

[tabindex="-1"] {
  outline: none;
}

.button { /*default button*/
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 18px;
  padding: 12px;
  min-width: 200px;
  background-color: #ee7900;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  transition: .15s;
}

.button:hover {
  background-color: rgba(238, 121, 0, 0.75);
}

h1,
h2,
h3,
h4,
h5,
h6 { /*headings*/
  color: #111;      /*default heading color*/
  cursor: default;
}

ul,
ol { /*list*/
  margin: 0;
  padding: 0 20px;
}

li { /*list-item*/
  margin: 8px 0;
  line-height: 24px;
}

ul {
  list-style-type: none;
}

ul > li:before { /*unordered list-item style*/
  content: " ";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px 1px 0;
  background-color: #ee7900;
  border-radius: 50%;
}

ul > li.styled-item:before {
  background-color: #22CAE3;
}

ol {
  list-style-type: none;
  counter-reset: num;
}

ol > li::before { /*ordered list-item style*/
  content: counter(num) ". ";
  counter-increment: num;
  color: #ee7900;
}

.menu ul {
  padding: 0;
}

.menu li::before {
  content: none;
}

iframe,
embed,
video,
audio {
  box-shadow: 0 0 3px #111;
  display: block;
  border: none;
  transition: .15s;
}

img { /*default image style*/
  display: block;
  max-width: 100%;
  height: auto;
}

section { /*section*/
  background-color: #fff;  /*default section background-color*/
}

section,
.header,
.footer {
  width: 100%;
}

section > div,
.header > div,
.footer > div { /*main section*/
  max-width: 1180px;   /*default section max-width*/
  margin: 0 auto;      /*default section centered position*/
  padding: 20px 10px;  /*default section padding*/
}

.header > div,
.footer > div {
  justify-content: space-between;  /*default horizontal items position (.flex)*/
  align-items: center;             /*default vertical items position (.flex)*/
}

.flex { /*flexbox*/
  display: flex !important;  /*default important value*/
  flex-wrap: wrap;
}
/*_/MAIN PART_*/

/*_HEADER_*/
.header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

/*.Logo*/
.logo {
  flex-grow: 1;
  margin: 5px 0;
}

.logo__link {
  font-family: "Arial", sans-serif;
  padding: 4px 8px 2px;
  border-radius: 6px;
  font-size: 38px;
  line-height: 38px;
  font-weight: 700;
  font-style: italic;
  text-decoration: none;
  color: #111;
  transition: .15s;
  letter-spacing: -1px;
  position: relative;
}

.logo__link::before,
.logo__link::after {
  content: '';
  display: block;
  position: absolute;
  top: 9px;
  height: 4px;
  transform: skewX(-12deg);
}

.logo__link::before {
  left: 70px;
  width: 78px;
  background-color: #0057b7;
}

.logo__link::after {
  left: 178px;
  width: 115px;
  background-color: #ffd700;
}

.logo__icon {
  background: url(../img/logo-icon.svg) center no-repeat;
  width: 28px;
  height: 28px;
  display: inline-block;
  background-size: contain;
  margin-right: 4px;
  transition: .25s;
}

.logo__link:hover {
  background-color: rgba(238, 121, 0, 0.2);
}

.logo__link:hover .logo__icon {
  transform: rotate(90deg);
}

.logo__description {
  font-size: 0;
}

.logo__description p {
  display: inline-block;
  margin: 0;
  white-space: nowrap;
  padding-bottom: 4px;
  font-weight: 700;
  cursor: default;
  position: relative;
  overflow: hidden;

  /*font-style: italic;
  font-size: 24px;
  line-height: 24px;
  width: 142px;
  margin-left: 149px;*/

  font-style: normal;
  font-size: 34px;
  line-height: 34px;
  width: 191px;
  margin-left: 105px;
}

.logo__description p::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background-color: #ee7900;
  left: -50px;
  bottom: 0;
  animation: slide 10s ease-in-out 3s infinite normal;
}

.logo__description p span {
  color: #ee7900;
}

@keyframes slide {
  0% {
    left: -50px;
  }
  15% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/*/.Logo*/

/*.Menu*/
.menu {
  flex-grow: 8;
  margin: 5px 7px;
  z-index: 100;
}

.menu ul {
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: 2px;
}

.menu li {
  margin: 0 3px;
}

.menu li a {
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: .15s;
  padding: 4px;
  box-sizing: border-box;
}

.menu li a:hover {
  color: #ee7900;
}

.menu .current-menu-item > a {
  border-bottom: 2px solid #ee7900;
}

.header .menu > .menu-inner > ul > li:last-child a {
  border: 2px solid #ee7900;
  color: #ee7900;
}

.header .menu > .menu-inner > ul > li:last-child.current-menu-item a {
  background-color: rgba(238, 121, 0, 0.2);
}

.header .menu > .menu-inner > ul > li:last-child a:hover {
  background-color: #ee7900;
  color: #fff;
}

.menu .sub-menu .styled-menu-item a {
  color: #fff;
  background-color: rgba(34, 202, 227, 0.75);
}

.menu .sub-menu .styled-menu-item a:hover {
  color: #fff;
  background-color: #129DAF;
  background-color: rgba(18, 157, 175, 0.75);
}

.menu .menu-item-has-children {
  position: relative;
}

.menu .menu-item-has-children i {
  margin-left: 2px;
  transition: .25s;
  color: #111;
  font-weight: bold;
}

.menu > .menu-inner > ul > .menu-item-has-children > .sub-menu {
  position: absolute;
  background-color: #fff;
  z-index: 1;
  top: -9999px;
  border-radius: 2px;
  border: 1px solid #111;
  box-shadow: 0 0 2px #ddd;
  opacity: 0;
  transition: .25s opacity;
  width: 120%;
  left: -10%;
}

.menu .sub-menu li {
  width: 100%;
  margin: 0;
  line-height: 10px;
}

.menu .sub-menu li a {
  font-size: 11px;
  padding: 4px 8px 4px 4px;
  line-height: 13px;
  border: none;
  border-bottom: 1px solid #ddd;
  display: block;
  width: 100%;
}

.menu .sub-menu li.current-menu-item > a {
  background-color: rgba(238, 121, 0, 0.4);
}

.menu .sub-menu li.current-menu-item > a:hover {
  background-color: rgba(238, 121, 0, 0.4);
}

.menu .sub-menu li a:hover {
  padding: 4px 4px 4px 8px;
  background-color: rgba(238, 121, 0, 0.2);
}

.menu .sub-menu li:first-child > a {
  border-radius: 2px 2px 0 0;
}

.menu .sub-menu li:last-child > a {
  border-bottom: none;
  border-radius: 0 0 2px 2px;
}

.menu > .menu-inner > ul > .menu-item-has-children:hover > .sub-menu {
  top: 25px;
  opacity: 1;
}

.menu .menu-item-has-children:hover i {
  transform: rotate(-180deg);
}

.menu .sub-menu .sub-menu {
  position: absolute;
  background-color: #fff;
  z-index: 1;
  top: -9999px;
  left: 100%;
  border-radius: 2px;
  border: 1px solid #111;
  box-shadow: 0 0 2px #ddd;
  opacity: 0;
  transition: .25s opacity;
  width: 100%;
}

.menu .sub-menu > .menu-item-has-children:hover > .sub-menu {
  top: -1px;
  opacity: 1;
}
/*/.Menu*/

/*.Contacts*/
.contacts {
  flex-grow: 1;
  cursor: default;
  text-align: right;
  margin: 5px 8px;
}

.contacts__text {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.contacts__link {
  font-size: 15px;
  font-weight: bold;
  color: #111;
  text-decoration: none;
  border-radius: 4px;
  padding: 0 2px;
  transition: .15s;
}

.contacts__link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
/*/.Contacts*/
/*_/HEADER_*/

/*_FOOTER_*/
.footer {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

/*.Contacts*/
.contacts__link-main {
  font-size: 16px;
  text-decoration: none;
}

.contacts__adress {
  font-size: 11px;
  line-height: 13px;
  margin: 0;
}
/*/.Contacts*/

/*.Copyright*/
.copyright {
  flex-basis: 50%;
  flex-grow: 12;
  cursor: default;
  margin: 0 8px;
}

.copyright__text {
  font-size: 12px;
  line-height: 18px;
  color: #878787;
  display: inline-block;
}

.copyright__text_hidden {
  font-size: 0;
  transition: .25s;
  line-height: 1;
  margin: 0;
  background-color: #d1d1d1;
  padding: 2px;
  border-radius: 4px;
}

.copyright__text:hover .copyright__text_hidden {
  font-size: 13px;
  background-color: #f0f0f0;
}

.copyright__icon:hover {
  color: rgba(238, 121, 0, 0.6);
}
/*/.Copyright*/
/*_/FOOTER_*/

/*_CONTENT_*/
/*.Heading*/
.heading {
  border-bottom: 1px solid #ddd;
  position: relative;
}

.heading > div {
  max-width: none;
}

.heading .slick-prev,
.heading .slick-next {
  width: 40px;
  height: 40px;
}

.heading .slick-prev::before,
.heading .slick-next::before {
  font-size: 40px;
  text-shadow: 0 0 10px #111;
}

.heading .slick-prev {
  left: 25px;
}

.heading .slick-next {
  right: 25px;
}

.heading .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.heading .slick-dots {
  bottom: 0;
  padding-bottom: 10px;
  font-size: 0;
}

.heading .slick-dots li {
  margin: 0 4px;
}

.heading .slick-dots li button {
  padding: 0;
}

.heading .slick-dots li button::before {
  font-size: 16px;
  line-height: 20px;
  width: 20px;
  height: 20px;
  color: #fff;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.heading .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: .5;
}

.heading .slick-dots li.slick-active button::before {
  opacity: 1;
  color: #fff;
}

.heading-inner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 20px 80px;
  min-height: 519px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: default;
}

.heading-inner-1 {
  background-image: url(../img/heading-bg-1.jpg);
}

.heading-inner-2 {
  background-image: url(../img/heading-bg-2.jpg);
}

.heading-inner-3 {
  background-image: url(../img/heading-bg-3.jpg);
}

.heading-inner::before {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: .25s;
}

.heading__h2 {
  color: #fff;
  margin: 4px 0;
  letter-spacing: 3px;
  text-shadow: 0 0 7px #111;
  font-size: 32px;
}

.heading__h3 {
  font-weight: normal;
  font-size: 23px;
  text-shadow: 0 0 7px #111;
  color: #fff;
  margin: 4px 0;
  letter-spacing: 1px;
}

.heading__button {
  margin-top: 15px;
  outline: none;
  box-shadow: 0 0 7px #111;
  text-shadow: 0 0 7px #111;
}

.heading__button_styled {
  background-color: #22CAE3;
  min-width: 160px;
}

.heading__button_styled:hover {
  background-color: rgba(34, 202, 227, 0.75);
}

.heading__button_styled span {
  display: block;
  font-size: 10px;
}
/*/.Heading*/

/*.Abilities*/
.abilities-inner {
  padding: 50px 10px;
  justify-content: space-around;
}

.abilities__box {
  flex: 1 1 200px;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  transition: .15s;
  cursor: default;
}

.abilities__icon {
  display: block;
  margin: auto;
  width: 48px;
  height: 48px;
  font-size: 48px;
  line-height: 48px;
  transition: .25s;
  color: #ee7900;
}

@keyframes abil_1 {
  0% {
    transform: scaleX(1);
  }
  1% {
    transform: scaleX(-1);
  }
  2% {
    transform: scaleX(1);
  }
}

@keyframes abil_2 {
  25% {
    transform: scaleX(1);
  }
  26% {
    transform: scaleX(-1);
  }
  27% {
    transform: scaleX(1);
  }
}

@keyframes abil_3 {
  50% {
    transform: scaleX(1);
  }
  51% {
    transform: scaleX(-1);
  }
  52% {
    transform: scaleX(1);
  }
}

@keyframes abil_4 {
  75% {
    transform: scaleX(1);
  }
  76% {
    transform: scaleX(-1);
  }
  77% {
    transform: scaleX(1);
  }
}

.abilities__box-anim:nth-child(1) .abilities__icon {
  animation: abil_1 25s infinite;
}

.abilities__box-anim:nth-child(2) .abilities__icon {
  animation: abil_3 25s infinite;
}

.abilities__box-anim:nth-child(3) .abilities__icon {
  animation: abil_2 25s infinite;
}

.abilities__box-anim:nth-child(4) .abilities__icon {
  animation: abil_4 25s infinite;
}

.abilities__heading {
  font-size: 14px;
  margin: 16px 0;
  line-height: 16px;
  color: #505050;
  transition: .15s;
  text-decoration: none;
}

.abilities__text {
  font-size: 14px;
  line-height: 18px;
  color: #878787;
  transition: .15s;
  margin: 0;
}
/*/.Abilities*/

/*.Recommendations*/
.recommendations {
  background-color: #f8f8f8;
}

.recommendations img {
  float: right;
  width: 50%;
  margin: 20px;
}

.recommendations-inner {
  display: block;
  align-items: center;
  padding: 50px 10px;
}

.recommendations__article {
  padding: 10px;
  box-sizing: border-box;
}

.recommendations__heading {
  width: 100%;
}
/*/.Recommendations*/

/*.Videos*/
.videos hr {
  opacity: .25;
  margin: 0;
}

.videos__box {
  flex: 1 1 280px;
  padding: 10px;
  box-sizing: border-box;
}

.videos__box-inner {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videos__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*/.Videos*/

/*.Path*/
.path { /*way to page*/
  background-color: #fafafa;      /*default path background-color*/
  border-bottom: 1px solid #ddd;
}

.path > div {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 10px;
}

.path__way {
  display: block;
  margin: 4px 0;
  cursor: default;
  font-size: 15px;
}

.path__heading {
  font-size: 24px;
  margin: 4px 0;
}
/*/.Path*/

/*.Production*/
.production-inner {
  justify-content: space-between;
}

.production__box {
  flex: 1 1 300px;
  margin: 10px;
  padding: 10px 10px 30px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 15px;
  box-shadow: 0 0 3px rgba(17, 17, 17, 0.2);
  position: relative;
}

.production__box_fw {
  flex-basis: 100%;
}

.production__img {
  height: 140px;
  margin: 0 auto;
}

.production__heading {
  text-align: center;
  margin: 8px 0;
}

.production__name {
  color: #111;
  text-decoration: none;
  font-size: 19px;
  letter-spacing: 0.5px;
  padding: 4px;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  transition: .15s;
}

.production__name:hover {
  background-color: rgba(0, 0, 0, 0.12);
  color: #ee7900;
}

.production__name_styled:hover {
  color: #22CAE3;
}

.production__text {
  line-height: 20px;
}

.production__list-item {
  line-height: 20px;
}

.production__more {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.production__more_styled {
  color: #22CAE3;
}
/*/.Production*/

/*.Products*/
.products-inner {
  justify-content: space-around;
}

.products__box {
  flex: 1 1 220px;
  margin: 10px;
  padding: 5px 5px 25px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  box-shadow: 0 0 3px rgba(17, 17, 17, 0.2);
  position: relative;
}

.products__img {
  height: 130px;
  margin: 0 auto;
}

.products__heading {
  font-weight: bold;
  text-align: center;
  margin: 6px 0;
}

.products__name {
  color: #111;
  text-decoration: none;
  font-size: 18px;
  padding: 3px;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  transition: .15s;
}

.products__name:hover {
  background-color: rgba(0, 0, 0, 0.12);
  color: #ee7900;
}

.products__text {
  line-height: 19px;
}

.products__list-item {
  line-height: 19px;
}

.products__more {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.products__table-wrap {
  width: 100%;
  overflow: auto;
  border: 1px solid #555;
}

.products__table {
  border-collapse: collapse;
  font-size: 16px;
  width: 100%;
}

.products__table td, .products__table th {
  border: 1px solid #555;
  background-color: #f0f0f0;
  padding: 10px;
  text-align: left;
}

.products__table th {
  background-color: #fff;
}

.products__table-th {
  width: 33%;
}

.products__table-th h3 {
  margin-bottom: 0;
}
/*/.Products*/

/*.Product*/
.product-inner {
  justify-content: space-around;
}

.product__box {
  width: 100%;
  margin: 10px;
  padding: 10px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  box-shadow: 0 0 3px rgba(17, 17, 17, 0.2);
  position: relative;
}

.product__name {
  margin-bottom: 10px;
  padding: 5px;
  background-color: #f0f0f0;
  border-radius: 4px;
}

.product__heading {
  text-align: center;
  margin: 8px 0;
  font-size: 28px;
}

.product__description {
  text-align: center;
  margin: 8px 0;
  font-size: 18px;
}

.product__text {
  line-height: 20px;
}

.product__list-item {
  line-height: 20px;
}

.slick-track {
  margin: 0 auto;
}

.product__img-wrap {
  height: 300px;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.product__img {
  max-height: 100%;
  margin: 0 auto;
}

.product__heading-name {
  margin: 16px 0 8px;
  font-size: 18px;
  text-align: center;
}

.product__passport {
  justify-content: space-around;
  padding: 5px 5px 10px;
  background-color: #f0f0f0;
  border-radius: 4px;
}

.product__passport-heading {
  width: 100%;
  font-size: 18px;
  text-align: center;
  margin: 8px 0 10px;
}

.product__passport-text {
  margin: 2px 4px;
  cursor: default;
  text-align: left;
}

.product__passport-icon {
  transition: .15s;
  margin-right: 3px;
  color: #111;
}

.product__passport-link:hover .product__passport-icon {
  transform: scale(1.15);
}

.product .videos__box {
  width: 50%;
  margin: 10px auto 0;
}
/*/.Product*/

/*.Price*/
.price__box {
  text-align: center;
  margin: 15px 0;
  padding: 10px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  box-shadow: 0 0 3px rgba(17, 17, 17, 0.2);
  font-size: 14px;
}

.price__box-inner {
  background-color: #f0f0f0;
  border-radius: 4px;
  padding: 5px;
}

.price__link {
  margin: 15px 0;
}

.price__heading {
  font-size: 24px;
  margin-top: 15px;
}

.price__icon {
  transition: .15s;
  margin-right: 3px;
  color: #111;
}

.price__link:hover .price__icon{
  transform: scale(1.15);
}

.price__description {
  margin: 40px 0;
}

.price__text {
  line-height: 20px;
  margin: 5px;
}

.price__form-heading {
  width: 100%;
  text-align: center;
  font-size: 24px;
}

.price__mail {
  margin: 15px 0;
  padding: 10px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  box-shadow: 0 0 3px rgba(17, 17, 17, 0.2);
}

.price__input,
.price__submit {
  display: block;
  margin: 8px 0;
  padding: 10px;
  outline: none;
  border: 1px solid #ddd;
  transition: .15s;
  font-size: 15px;
  font-family: "Arial", sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.price__input {
  color: #111;
  background-color: #fff;
}

.price__input:focus {
  background-color: #f5f5f5;
}

.price__textarea {
  resize: none;
  min-height: 80px;
}

.price__submit {
  background-color: #ee7900;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1px;
}

.price__submit:hover {
  background-color: rgba(238, 121, 0, 0.75);
}

.price__form-text {
  text-align: center;
  margin: 5px 0;
  font-size: 15px;
  line-height: 20px;
}

.price .pdfobject-container {
  width: 90%;
  height: 450px;
  margin: 0 auto;
}
/*/.Price*/

/*.Contact*/
.contact__info {
  width: 100%;
  margin: 10px;
  padding: 10px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  box-shadow: 0 0 3px rgba(17, 17, 17, 0.2);
  box-sizing: border-box;
}

.contact__heading {
  text-align: center;
  font-size: 22px;
}

.contact__phones {
  padding: 10px;
  border-radius: 4px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  box-shadow: 0 0 3px rgba(17, 17, 17, 0.2);
  cursor: default;
}

.contact__map-box {
  width: 100%;
  min-height: 500px;
  margin: 10px;
}

.contact__box {
  flex: 1 1 190px;
  text-align: center;
  z-index: 1;
  padding: 25px 15px 35px;
  margin-bottom: 20px;
  cursor: default;
  position: relative;
}

.contact__box-mail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.contact__box-mail a {
  margin-top: 4px;
}

.contact__box-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 8px #888;
}

.contact__box-name {
  margin: 20px 0 5px;
}

.contact__box-description {
  margin: 5px 0 15px;
}

.contact__box-text {
  margin: 5px 0 0;
}

.contact__map {
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  border: 1px solid #ddd;
  box-shadow: 0 0 3px rgba(17, 17, 17, 0.2);
  box-sizing: border-box;
}

.contact__info-bottom {
  width: 100%;
  margin: 10px;
}

.contact__box-bottom {
  padding: 10px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  box-shadow: 0 0 3px rgba(17, 17, 17, 0.2);
  border-radius: 4px;
}

.contact__info-heading {
  margin: 10px 0 5px;
}

.contact__info-text {
  margin: 5px 0 20px;
}
/*/.Contact*/

/*.Description*/
.description {
  background-color: #f0f0f0;
  color: #111;
}

.description-inner {
  padding: 5px 10px;
}

.description__heading {
  text-align: center;
}
/*/.Description*/

/* .Doc */
.passport-h2 {
  text-align: center;
  font-size: 24px;
}

.passport-div {
  flex: 1 1 230px;
  text-align: center;
  margin: 3px;
  padding: 2px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  font-size: 14px;
  box-shadow: 0 0 3px rgba(17, 17, 17, 0.2);
}

.passport-div a {
  margin-bottom: 4px;
}

.passport-div span a {
  margin: 2px 0;
}
/* /.Doc */

.certificates__heading {
  text-align: center;
  width: 100%;
}

.certificates-images {
  align-items: flex-start;
  justify-content: space-around;
  margin-top: 25px;
  width: 100%;
}

.certificates-images a {
  margin: 10px;
}

.certificates-images img {
  width: 185px;
  box-shadow: 0 0 3px rgba(238, 121, 0, 0.8);
}
/*_/CONTENT_*/

/*_MOBILE RESPONSIVE_*/
@media screen and (max-width: 970px) {
  /*_MAIN PART_*/
  body {
    position: relative;  /*for mobile menu (jquery)*/
  }

  .wrapper { /*main container*/
    font-size: 15px;      /*mobile font-size*/
    text-align: justify;  /*mobile text-align*/
  }

  /*.Toggle*/
  .menu-close {
    display: none;
  }

  .menu-open {
    display: block;
  }

  .menu-open_hide {
    display: none;
  }

  .menu-close_show {
    display: block;
  }
  /*/.Toggle*/

  /*.Slick*/
  .slick-prev,
  .slick-next {
    width: 20px;
    height: 20px;
  }

  .slick-prev::before,
  .slick-next::before {
    font-size: 20px;
  }

  .slick-dots li button::before {
    font-size: 8px;
  }
  /*./Slick*/

  p { /*paragraph*/
    line-height: 18px;  /*mobile line-height*/
  }

  .button { /*mobile button*/
    font-size: 13px;
    line-height: 17px;
    padding: 10px;
    min-width: 180px;
  }

  ul,
  ol { /*list*/
    text-align: left;
    padding: 0 15px;
  }

  li { /*list-item*/
    margin: 6px 0;
    line-height: 23px;
  }

  section > div,
  .header > div,
  .footer > div { /*main section*/
    padding: 10px;  /*mobile section padding*/
  }
  /*_/MAIN PART_*/

  /*_HEADER_*/
  /*.Logo*/
  .logo {
    text-align: center;
    margin: 1px 0;
  }

  .logo__link {
    font-size: 28px;
    line-height: 28px;
  }

  .logo__link::before,
  .logo__link::after {
    top: 7px;
    height: 3px;
  }

  .logo__link::before {
    left: 54px;
    width: 55px;
  }

  .logo__link::after {
    left: 132px;
    width: 82px;
  }

  .logo__icon {
    width: 21px;
    height: 21px;
    margin-right: 2px;
  }

  .logo__description p {
    margin: 0;

    /*font-size: 18px;
    line-height: 18px;
    width: 110px;*/

    font-size: 24px;
    line-height: 24px;
    width: 143px;
  }
  /*/.Logo*/

  /*.Menu*/
  .menu {
    position: fixed;
    width: 80%;
    height: 200%;
    margin: 0;
    right: -80%;
    top: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    box-sizing: border-box;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAR0lEQVQoU2NkwASSUKHnyFKMaOpAimAKkNkMyApRJKAGwMVgCrEpglkGlgMpxKcIrpgkhSBdRFmN4hZcoUBW8CCbDGKjBDgAzmAQPRGC79cAAAAASUVORK5CYII=) repeat;
  }

  .menu-inner {
    height: 50%;
    padding: 56px 0 60px;
    box-sizing: border-box;
  }

  .menu ul {
    align-content: flex-start;
    height: 100%;
    align-items: flex-start;
    text-align: center;
    position: static;
    overflow: auto;
    box-sizing: border-box;
    padding: 0 17px;
  }

  .menu li {
    width: 100%;
    margin: 0;
  }

  .menu li a {
    padding: 12px 8px;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }

  .menu > .menu-inner > ul > li:first-child a {
    border-top: 1px solid #ddd;
  }

  .menu li a:hover {
    color: #fff;
    background-color: rgba(238, 121, 0, 0.9);
  }

  .menu .current-menu-item > a {
    color: #fff;
    background: rgba(238, 121, 0, 0.7);
    border-bottom: 1px solid #ee7900;
  }

  .menu .menu-item-has-children {
    position: static;
  }

  .menu .menu-item-has-children a {
    border: none;
  }

  .menu .menu-item-has-children i {
    margin-left: 4px;
  }

  .menu > .menu-inner > ul > .menu-item-has-children > .sub-menu {
    display: block;
    position: static;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border-bottom: none;
    border-top: 1px solid #ddd;
    box-shadow: none;
    opacity: 1;
    width: 100%;
  }

  .menu .sub-menu li a {
    padding: 8px;
    line-height: 14px;
  }

  .menu .sub-menu li.current-menu-item a {
    background-color: rgba(238, 121, 0, 0.6);
  }

  .menu .sub-menu li.current-menu-item a:hover {
    background-color: rgba(238, 121, 0, 0.8);
  }

  .menu .sub-menu li a:hover {
    padding: 8px;
    background-color: rgba(238, 121, 0, 0.8);
  }

  .menu .sub-menu li:first-child a {
    border-radius: 0;
  }

  .menu .sub-menu li:last-child a {
    border-bottom: 1px solid #ddd;
    border-radius: 0;
  }

  .menu > .menu-inner > ul > .menu-item-has-children:hover > .sub-menu {
    top: 0;
  }

  .menu .menu-item-has-children:hover i {
    transform: rotate(0);
  }

  .menu .sub-menu .sub-menu {
    display: none;
  }
  /*/.Menu*/

  /*.Contacts*/
  .header .contacts {
    z-index: 100;
    position: fixed;
    right: -80%;
    width: 80%;
    bottom: 0;
    margin: 0;
    text-align: center;
    background-color: rgba(221, 221, 221, 0.5);
    height: 60px;
  }

  .header .contacts__link {
    font-size: 14px;
  }
  /*/.Contacts*/
  /*_/HEADER_*/

  /*_FOOTER_*/
  /*.Logo*/
  .footer .logo {
    display: none;
  }
  /*/.Logo*/

  /*.Menu*/
  .footer .menu {
    display: none;
  }
  /*/.Menu*/

  /*.Contacts*/
  .footer .contacts {
    flex-basis: 100%;
    text-align: center;
  }

  .contacts__link-main {
    margin-bottom: 4px;
  }
  /*/.Contacts*/

  /*.Copyright*/
  .copyright {
    width: 100%;
    order: 5;
    text-align: center;
    margin: 5px 8px;
  }

  .copyright__text {
    font-size: 11px;
    line-height: 16px;
    margin: 0;
  }

  .copyright__text_hidden {
    font-size: 12px;
    background-color: #f0f0f0;
  }

  .copyright__text:hover .copyright__text_hidden {
    font-size: 12px;
  }
  /*/.Copyright*/
  /*_/FOOTER_*/

  /*_CONTENT_*/
  /*.Heading*/
  .heading .slick-prev,
  .heading .slick-next {
    width: 20px;
    height: 20px;
  }

  .heading .slick-prev::before,
  .heading .slick-next::before {
    font-size: 20px;
  }

  .heading .slick-prev {
    left: 5px;
  }

  .heading .slick-next {
    right: 5px;
  }

  .heading-inner {
    padding: 10px 30px;
    min-height: 340px;
  }

  .heading__h2 {
    font-size: 26px;
    margin: 2px 0;
    letter-spacing: 2px;
    text-shadow: 0 0 5px #111;
  }

  .heading__h3 {
    font-size: 17px;
    text-shadow: 0 0 5px #111;
    margin: 2px 0;
    letter-spacing: 0.5px;
  }

  .heading__button {
    margin-top: 10px;
    box-shadow: 0 0 5px #111;
    text-shadow: 0 0 5px #111;
  }
  /*/.Heading*/

  /*.Abilities*/
  .abilities-inner {
    padding: 10px;
  }

  .abilities__heading {
    font-size: 13px;
    margin: 8px 0;
    line-height: 15px;
  }

  .abilities__text {
    font-size: 13px;
    line-height: 17px;
  }
  /*/.Abilities*/

  /*.Recommendations*/
  .recommendations-inner {
    padding: 10px;
  }

  .recommendations img {
    float: none;
    width: 100%;
    margin: 0;
  }
  /*/.Recommendations*/

  /*.Path*/
  .path {
    text-align: center;
  }

  .path__way {
    margin: 2px 0;
    font-size: 14px;
  }

  .path__heading {
    margin: 2px 0;
    font-size: 18px;
  }
  /*/.Path*/

  /*.Production*/
  .production__box {
    font-size: 14px;
  }

  .production__img {
    height: 120px;
  }

  .production__name {
    font-size: 18px;
  }

  .production__text {
    line-height: 18px;
  }

  .production__list-item {
    line-height: 18px;
  }
  /*/.Production*/

  /*.Products*/
  .products__box {
    font-size: 13px;
  }

  .products__img {
    height: 110px;
  }

  .products__name {
    font-size: 17px;
  }

  .products__text {
    line-height: 16px;
  }

  .products__list-item {
    line-height: 16px;
  }

  .products__table {
    font-size: 14px;
  }

  .products__table td, .products__table th {
    padding: 2px;
  }
  /*/.Products*/

  /*.Product*/
  .product__box {
    font-size: 13px;
  }

  .product__heading {
    font-size: 24px;
  }

  .product__description {
    font-size: 16px;
  }

  .product__text {
    line-height: 19px;
  }

  .product__list-item {
    line-height: 19px;
  }

  .product__img-wrap {
    height: 200px;
  }

  .product__heading-name {
    font-size: 17px;
  }

  .product__passport-heading {
    width: 100%;
    font-size: 17px;
  }

  .product .videos__box {
    width: 100%;
  }
  /*/.Product*/

  /*.Price*/
  .price__box {
    margin: 10px 0;
    font-size: 13px;
  }

  .price__link {
    margin: 10px 0;
  }

  .price__heading {
    margin-top: 10px;
    font-size: 20px;
  }

  .price__icon {
    transition: .15s;
    margin-right: 3px;
    color: #111;
  }

  .price__description {
    margin: 40px 0;
  }

  .price__form-heading {
    font-size: 20px;
  }

  .price__mail {
    margin: 10px 0;
  }

  .price__form-text {
    font-size: 14px;
    line-height: 18px;
  }

  .price .pdfobject-container {
    width: 90%;
    height: 280px;
  }
  /*/.Price*/

  /*.Contact*/
  .contact__info {
    font-size: 14px;
  }

  .contact__heading {
    font-size: 20px;
  }

  .contact__phones {
    font-size: 13px;
    letter-spacing: -0.8px;
    text-align: center;
  }

  .contact__map-box {
    min-height: 320px;
  }

  .contact__box {
    padding: 10px 5px 30px;
    margin-bottom: 10px;
  }

  .contact__box-img {
    width: 125px;
    height: 125px;
    box-shadow: 0 0 5px #111;
  }

  .contact__info-heading {
    margin: 5px 0;
  }

  .contact__info-text {
    margin: 5px 0 15px;
  }

  .contact__info-text-bottom {
    font-size: 13px;
    text-align: left;
  }
  /*/.Contact*/

  /* .Doc */
  .passport-other {
    font-size: 14px;
  }
  /* /.Doc */

  .dev-heading {
    text-align: center;
  }
  /*_/CONTENT_*/
}
/*_/MOBILE RESPONSIVE_*/
