body {
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-family: 'OpenSans-Bold',Arial, sans-serif;
  overflow: hidden; }

a {
  outline: none;
  text-decoration: none;
  color: white; }

p, h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0; }

main,
header,
section,
footer {
  max-width: 1920px;
  width: 100%; }

ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

input, button {
  outline: none;
  padding: 0;
  margin: 0;
  border: none;
  background: none; }

@font-face {
  font-family: 'OpenSans-Bold';
  src: url("../fonts/Open_Sans/OpenSans-Bold.ttf");
  font-weight: bold; }

@font-face {
  font-family: 'OpenSans-Regular';
  src: url("../fonts/Open_Sans/OpenSans-Regular.ttf"); }

@font-face {
  font-family: 'Opensanscondensedbold';
  src: url("../fonts/Open_Sans/opensanscondensedbold.ttf"); }

section,
footer {
  padding-top: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative; }

@-webkit-keyframes opacityAnim {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes opacityAnim {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

.about__left-block, .industry__left_block, .adv__textBlock, .footer__right {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 60px 60px 60px 60px; }

.disc-text, .bottom-text {
  font-family: "OpenSans-Regular";
  font-size: 14px;
  line-height: 20px;
  color: white; }

.primary-text {
  font-family: "OpenSans-Regular";
  font-size: 16px;
  line-height: 24px;
  color: white;
  margin-top: 30px; }
  .primary-text a {
    text-decoration: underline;
    color: #6699CC; }

.primary-text a:hover,
.footer__textBlock a:hover,
.label a:hover,
.footer__bottom a:hover {
  text-decoration: none; }

nav {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  background: #335c85;
  z-index: 50; }
  nav .logo {
    padding-left: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.333%;
    height: 100%;
    background: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    nav .logo img {
      width: 150px;
      height: 40px; }
  nav .head__go {
    cursor: pointer; }
  nav .nav__panel {
    padding: 0 60px 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    nav .nav__panel a {
      font-family: "OpenSans-Bold";
      font-size: 16px;
      line-height: 24px;
      color: #ffffff;
      margin-left: 35px;
      position: relative;
      white-space: nowrap; }
      nav .nav__panel a:hover::before {
        width: 100%;
        opacity: 1; }
      nav .nav__panel a::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 0;
        width: 0%;
        height: 2px;
        background: #ffffff;
        opacity: 0;
        -webkit-transition: 0.2s;
        transition: 0.2s; }
      nav .nav__panel a:last-child {
        white-space: nowrap; }
        nav .nav__panel a:last-child:hover::before {
          width: 0%;
          opacity: 0; }
      nav .nav__panel a:first-child {
        margin-left: 0px; }

.active_link {
  position: absolute;
  top: 28px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s; }

.active_screen {
  width: 100%;
  opacity: 1; }

.about__content {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.about__left-block {
  width: 33.333%;
  background: #003366;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-negative: 0;
  flex-shrink: 0; }
  .about__left-block button {
    display: none;
    width: 250px;
    height: 50px;
    cursor: pointer;
    border: 1px solid white;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: relative;
    z-index: 2;
    font-family: "OpenSans-Bold";
    font-size: 16px;
    line-height: 18px;
    color: white; }
    .about__left-block button span {
      z-index: 3;
      position: relative; }
    .about__left-block button::before {
      content: "";
      position: absolute;
      display: block;
      top: 0;
      left: 50%;
      width: 0%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      -webkit-transition: 0.4s;
      transition: 0.4s;
      z-index: 1; }
    .about__left-block button::after {
      content: "";
      position: absolute;
      top: 0;
      right: 50%;
      width: 0%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      -webkit-transition: 0.4s;
      transition: 0.4s;
      z-index: 1; }
    .about__left-block button:hover::before {
      width: 50%;
      background: rgba(0, 0, 0, 0.8); }
    .about__left-block button:hover::after {
      width: 50%;
      background: rgba(0, 0, 0, 0.8); }

.head-text {
  font-family: "Opensanscondensedbold";
  font-size: 60px;
  line-height: 70px;
  color: white;
  width: 100%; }

h3 {
  font-family: "Opensanscondensedbold";
  font-size: 30px;
  line-height: 40px;
  color: white; }

.disc-text {
  width: 100%;
  height: 430px; }

.right__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.point {
  position: absolute;
  top: 55%;
  right: 20%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s; }
  .point:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }

.inside-point {
  opacity: .5;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #6d6d6d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: white; }

.bottom-logo {
  position: absolute;
  bottom: 60px;
  right: 60px;
  width: 280px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .bottom-logo p {
    font-family: "Opensanscondensedbold";
    font-size: 18px;
    line-height: 0.5;
    color: #093682; }

.img__model {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 70%; }

.model {
  position: absolute;
  top: 30px;
  left: 60px;
  width: calc(100% - 120px);
  height: calc(100% - 60px);
  background: url("../img/model.png") no-repeat center;
  background-size: 100% 100%; }

.bottom__block {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #335c85; }

.bottom__block_text {
  width: 100%;
  height: 100%;
  padding: 30px 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative; }

.point__block {
  width: 20%;
  height: 100%;
  position: relative; }

.beforePoint {
  position: absolute;
  width: 100%;
  height: 0px;
  background: url("../img/pointselect.png") no-repeat center;
  background-size: 100% 100%;
  bottom: 0%;
  -webkit-animation: beforeGrow .5s forwards;
  animation: beforeGrow .5s forwards;
  display: none; }

@-webkit-keyframes beforeGrow {
  0% {
    height: 0; }
  100% {
    height: 60px; } }

@keyframes beforeGrow {
  0% {
    height: 0; }
  100% {
    height: 60px; } }

.img__pointBlock {
  width: 20%;
  height: 100%;
  cursor: pointer;
  position: relative; }
  .img__pointBlock::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0px;
    background: url("../img/pointselect_hover.png") no-repeat center;
    background-size: 100% 100%;
    bottom: 0%;
    -webkit-animation: beforeGrow .4s forwards;
    animation: beforeGrow .4s forwards;
    display: none;
    -webkit-transition: .5s;
    transition: .5s; }
  .img__pointBlock:hover::before {
    display: block; }

.points__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 1px; }

.activePoint {
  -webkit-transition: .4s;
  transition: .4s;
  background: white !important;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 1 !important;
  position: relative;
  z-index: 55; }
  .activePoint::before {
    content: '';
    position: absolute;
    top: 2%;
    left: 2%;
    background: white;
    width: 96%;
    height: 96%;
    border-radius: 50%;
    background: #093682 !important; }

.slider__cont {
  -webkit-box-flex: 56;
  -ms-flex: 56;
  flex: 56;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.bottom__buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.butt {
  width: 15px;
  height: 15px;
  background: #bfccd9;
  margin-right: 20px;
  cursor: pointer; }

.butt_active {
  background: white; }

.industry__content {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative; }

.industry__left_block {
  width: 33.333%;
  background: #335c85;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative; }

.arrows__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 60px;
  bottom: 110px; }
  .arrows__block img {
    width: 50px;
    height: 50px; }

.non_active {
  opacity: .3; }

.number__block {
  position: absolute;
  left: 60px;
  bottom: 60px; }

.active_number {
  color: white; }

.oth_count {
  color: white;
  opacity: .5; }

.arr:not(.non_active) {
  cursor: pointer;
  width: 50px;
  height: 50px; }

.industry__container-for-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .4s;
  transition: .4s; }

.one-slide {
  background: url("../img/energy.jpg") no-repeat;
  background-size: 100% 100%; }

.two-slide {
  background: url("../img/industrial-automation.jpg") no-repeat;
  background-size: 100% 100%; }

.three-slide {
  background: url("../img/food-machine.png") no-repeat;
  background-size: 100% 100%; }

.four-slide {
  background: url("../img/transport.jpg") no-repeat;
  background-size: 100% 100%; }

.active-slide {
  -webkit-box-flex: 11;
  -ms-flex-positive: 11;
  flex-grow: 11; }

.hide-slide {
  background: #6699cc;
  width: 30px;
  padding: 0;
  position: relative;
  cursor: pointer;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome and Opera */ }

.one-hide {
  background: #4070a1; }

.two-hide {
  background: #194775; }

.three-hide {
  background: #003366; }

.hide-text {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  bottom: 60px;
  height: 0px;
  -webkit-transform-origin: 0px 0px;
  transform-origin: 0px 0px;
  font-family: "OpenSans-Regular";
  color: white;
  font-size: 14px;
  display: none;
  white-space: nowrap; }

.industry-text {
  width: 100%;
  height: auto;
  display: none;
  -webkit-animation: opacityAnim 1s forwards;
  animation: opacityAnim 1s forwards; }
  .industry-text h2 {
    font-family: "Opensanscondensedbold";
    font-size: 30px;
    line-height: 40px;
    height: 120px;
    color: white; }
  .industry-text p {
    color: white;
    font-family: "OpenSans-Regular";
    font-size: 16px;
    line-height: 24px;
    margin-top: 30px; }
  .industry-text h2 {
    height: auto; }

.visibl {
  display: block; }

.industry__right-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.left__info {
  width: 100%;
  height: 300px;
  display: block;
  -webkit-animation: opacityAnim 1s forwards;
  animation: opacityAnim 1s forwards; }
  .left__info h2 {
    font-family: "Opensanscondensedbold";
    font-size: 50px;
    line-height: 60px;
    height: 120px;
    color: white; }
  .left__info p {
    color: white;
    font-family: "OpenSans-Regular";
    font-size: 16px;
    line-height: 24px;
    margin-top: 30px; }

.products__content {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative; }

.products__header {
  width: 100%;
  height: 180px;
  background: #003366;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.header__content {
  width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .header__content h3 {
    font-family: "Opensanscondensedbold";
    font-size: 80px;
    line-height: 90px;
    color: white;
    text-align: center; }
  .header__content p {
    font-family: "OpenSans-Regular";
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    text-align: center; }

button {
  margin-top: 30px;
  width: 170px;
  height: 50px;
  cursor: pointer;
  border: 1px solid white;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  z-index: 2;
  font-family: "OpenSans-Bold";
  font-size: 16px;
  line-height: 18px;
  color: white; }
  button span {
    z-index: 3;
    position: relative; }
  button a {
    z-index: 3;
    position: relative; }
  button::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    width: 0%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 1; }
  button::after {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    width: 0%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 1; }
  button:hover::before {
    width: 50%;
    background: rgba(0, 0, 0, 0.8); }
  button:hover::after {
    width: 50%;
    background: rgba(0, 0, 0, 0.8); }

.product__block {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.product__block:nth-child(1) {
  background: rgba(0, 51, 102, 0.9); }
  .product__block:nth-child(1) .product__img-block {
    cursor: pointer;
    width: 280px;
    height: 280px;
    background: url("../img/prod1.png") no-repeat center;
    background-size: contain;
    margin: 30px 0;
    -webkit-transition: .4s;
    transition: .4s; }
    .product__block:nth-child(1) .product__img-block:hover {
      background: url("../img/prod11.png") no-repeat center;
      background-size: contain; }

.product__block:nth-child(2) {
  background: rgba(0, 51, 102, 0.8); }
  .product__block:nth-child(2) .product__img-block {
    cursor: pointer;
    width: 224px;
    height: 280px;
    background: url("../img/prod2.png") no-repeat center;
    background-size: contain;
    margin: 30px 0;
    -webkit-transition: .4s;
    transition: .4s; }
    .product__block:nth-child(2) .product__img-block:hover {
      background: url("../img/prod22.png") no-repeat center;
      background-size: contain; }

.product__block:nth-child(3) {
  background: #6699cc; }
  .product__block:nth-child(3) .product__img-block {
    cursor: pointer;
    width: 224px;
    height: 280px;
    background: url("../img/prod3.png") no-repeat center;
    background-size: contain;
    margin: 30px 0;
    -webkit-transition: .4s;
    transition: .4s; }
    .product__block:nth-child(3) .product__img-block:hover {
      background: url("../img/prod33.png") no-repeat center;
      background-size: contain; }
  .product__block:nth-child(3) .bottom-logo {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 280px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 70px;
    bottom: 30px;
    right: 60px; }
    .product__block:nth-child(3) .bottom-logo p {
      font-family: "Opensanscondensedbold";
      font-size: 18px;
      line-height: 0.5;
      color: white; }
    .product__block:nth-child(3) .bottom-logo::before {
      width: 100%;
      height: 100%;
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      background: #6699cc;
      opacity: 0.5; }

.product__textblock {
  z-index: 11;
  width: 100%;
  height: auto;
  display: block;
  -webkit-animation: opacityAnim 1s forwards;
  animation: opacityAnim 1s forwards; }
  .product__textblock h2 {
    font-family: "Opensanscondensedbold";
    font-size: 30px;
    line-height: 40px;
    height: auto;
    color: white; }
  .product__textblock p {
    color: white;
    font-family: "OpenSans-Regular";
    font-size: 16px;
    line-height: 24px;
    margin-top: 30px; }
  .product__textblock h2 {
    margin-bottom: 30px;
    text-align: center;
    cursor: pointer; }
  .product__textblock p {
    margin-bottom: 30px; }

.hideBlock {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none; }
  .hideBlock .bottom-logo p {
    color: white; }

.hideBlock__content {
  width: 960px;
  background-color: #fff;
  -webkit-box-shadow: 0 18px 60px rgba(0, 0, 0, 0.44);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.44);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .hideBlock__content .close {
    position: absolute;
    width: 15px;
    height: 15px;
    background: url("../img/close.png") no-repeat center;
    top: -30px;
    right: -30px;
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s; }
    .hideBlock__content .close:hover {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg); }

.hideBlock__header {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.header__tab {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s;
  transition: .5s; }
  .header__tab p {
    font-family: "Opensanscondensedbold";
    font-size: 18px;
    line-height: 1;
    color: white;
    opacity: .5; }

.hideBlock__header .header__tab:nth-child(1) {
  background: rgba(0, 51, 102, 0.9); }
  .hideBlock__header .header__tab:nth-child(1):hover {
    background: #000000; }

.hideBlock__header .header__tab:nth-child(2) {
  background: rgba(0, 51, 102, 0.8); }
  .hideBlock__header .header__tab:nth-child(2):hover {
    background: #000000; }

.hideBlock__header .header__tab:nth-child(3) {
  background: #6699cc; }
  .hideBlock__header .header__tab:nth-child(3):hover {
    background: #202020; }

.hideBlock__tab_content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.hideBlock__tab_content.one {
  background: rgba(0, 51, 102, 0.9); }

.hideBlock__tab_content.two {
  background: rgba(0, 51, 102, 0.8); }

.hideBlock__tab_content.three {
  background: #6699cc; }

.tab__image {
  width: 330px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .tab__image img {
    width: 244px;
    height: 279px;
    -webkit-animation: opacityAnim 0.4s;
    animation: opacityAnim 0.4s; }
  .tab__image .oneitem {
    width: 280px;
    height: 165px; }

.tab__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .tab__text ul {
    width: 458px; }
  .tab__text li {
    font-family: "OpenSans-Regular";
    font-size: 16px;
    line-height: 24px;
    color: white;
    list-style-image: url("../img/kvadr.jpg");
    padding: 0 0 10px 22px; }
    .tab__text li:last-child {
      margin-bottom: 30px; }
  .tab__text button {
    width: 360px;
    height: 50px;
    cursor: pointer;
    border: 1px solid white;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "OpenSans-Bold";
    font-size: 16px;
    line-height: 50px;
    color: white;
    -ms-flex-item-align: end;
    align-self: flex-end; }
  .tab__text a {
    width: 100%;
    height: 100%;
    display: block; }

.advantages, footer {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

.advantages__content {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #194775; }

.adv__textBlock {
  width: 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #003366; }

.adv__text_head {
  width: 100%;
  height: auto;
  display: block;
  -webkit-animation: opacityAnim 1s forwards;
  animation: opacityAnim 1s forwards;
  margin-bottom: 120px; }
  .adv__text_head h2 {
    font-family: "Opensanscondensedbold";
    font-size: 30px;
    line-height: 36px;
    height: auto;
    color: white; }
  .adv__text_head p {
    color: white;
    font-family: "OpenSans-Regular";
    font-size: 16px;
    line-height: 24px;
    margin-top: 30px; }
  .adv__text_head p {
    font-family: "OpenSans-Regular";
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin-top: 30px; }

.sertificates {
  font-family: "Opensanscondensedbold";
  font-size: 20px;
  line-height: 30px;
  color: white;
  margin-bottom: 30px;
  border-bottom: 1px solid white;
  width: 125px; }

.sertif__more {
  width: 250px;
  height: 50px;
  cursor: pointer;
  border: 1px solid white;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  z-index: 2;
  position: absolute;
  bottom: 60px;
  font-family: "OpenSans-Bold";
  font-size: 16px;
  line-height: 50px;
  color: white; }
  .sertif__more a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

.adv__iconBlock {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 120px 60px 60px 60px; }

.flex-tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }

.iconBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 67px;
  width: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .iconBlock .icon {
    width: 67px;
    height: 67px;
    margin-right: 30px;
    -webkit-transition: 0.4s;
    transition: 0.4s; }
    .iconBlock .icon img {
      width: 100%;
      height: 100%; }
  .iconBlock:hover .icon {
    -webkit-animation: scale360 .5s;
    animation: scale360 .5s; }

@-webkit-keyframes scale360 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0); }
  50% {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1); }
  100% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0); } }

@keyframes scale360 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0); }
  50% {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1); }
  100% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0); } }

.icon__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.icon__text p:nth-child(1) {
  font-family: "OpenSans-Bold";
  font-size: 16px;
  line-height: 24px;
  color: white;
  width: 300px; }

.iconBottom__text {
  font-family: "OpenSans-Regular";
  font-size: 14px;
  line-height: 18px;
  color: white;
  opacity: 0.5; }

.footer__content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: flex; }

.footer__left,
.footer__right,
.footer__center {
  width: 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.footer__left {
  background: #003366; }

.footer__center {
  background: #194775;
  padding: 0; }

.footer__header {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  display: block;
  -webkit-animation: opacityAnim 1s forwards;
  animation: opacityAnim 1s forwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .footer__header h2 {
    font-family: "Opensanscondensedbold";
    font-size: 24px;
    line-height: 36px;
    height: 60px;
    color: white; }
  .footer__header p {
    color: white;
    font-family: "OpenSans-Regular";
    font-size: 16px;
    line-height: 24px;
    margin-top: 30px; }
  .footer__header p {
    margin-top: 0; }

.footer__textBlock {
  width: 100%; }
  .footer__textBlock p {
    font-family: "Opensans-Regular";
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 120px; }
  .footer__textBlock .not__wr {
    margin-bottom: 0px; }
  .footer__textBlock a {
    font-family: "Opensans-Regular";
    font-size: 16px;
    line-height: 20px;
    color: #6699cc;
    display: table;
    margin-bottom: 30px;
    text-decoration: underline; }
  .footer__textBlock h3 {
    font-family: "Opensanscondensedbold";
    font-size: 30px;
    line-height: 40px;
    color: #ffffff; }

.footer__prev {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #194775; }

.footer__contact_block,
.footer__map_block {
  height: 50%; }

.footer__contact_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 60px 60px 60px 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .footer__contact_block img, .footer__contact_block a {
    width: 250px;
    height: 67px; }
  .footer__contact_block a {
    margin-bottom: 30px; }
  .footer__contact_block p {
    font-family: "Opensans-Regular";
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    max-width: 490px; }

.footer__map_block {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative; }
  .footer__map_block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: .4s;
    transition: .4s; }
  .footer__map_block:hover::before {
    display: none; }

.footer__right {
  background: #336699;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .footer__right h3 {
    font-family: "Opensanscondensedbold";
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    margin-bottom: 20px;
    -ms-flex-item-align: center;
    align-self: center; }
  .footer__right p {
    font-family: "Opensans-Bold";
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 30px;
    -ms-flex-item-align: center;
    align-self: center; }
  .footer__right input {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    background: #5c85ad;
    padding-left: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Opensans-Regular";
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 15px; }
    .footer__right input:focus {
      background: #3f8dd6; }
  .footer__right .text__message {
    height: 150px;
    padding-bottom: 75px;
    margin-bottom: 15px; }

.form_butt {
  width: 170px;
  height: 50px;
  cursor: pointer;
  border: 1px solid white;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  z-index: 2;
  font-family: "Opensans-Bold";
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  -webkit-transition: .4s;
  transition: .4s; }
  .form_butt:hover {
    background: black; }

::-webkit-input-placeholder {
  color: #fff; }

::-moz-placeholder {
  color: #fff; }

:-moz-placeholder {
  color: #fff; }

:-ms-input-placeholder {
  color: #fff; }

.footer__bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 110px;
  background: #003366;
  padding: 0px 120px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .footer__bottom img {
    width: 122px;
    height: 31px; }
  .footer__bottom p {
    font-family: "Opensans-Regular";
    font-size: 13px;
    line-height: 18px;
    color: #fff;
    opacity: .5;
    width: 740px;
    text-align: left; }
  .footer__bottom a {
    font-family: "Opensans-Regular";
    font-size: 13px;
    line-height: 18px;
    color: #5190dc;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 25px;
    text-decoration: underline; }
  .footer__bottom .a__agree {
    color: #5190dc;
    margin-right: 2px; }

.arrow__up {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 60px;
  width: 38px;
  height: 38px;
  background: url("../img/arrow-up.png") no-repeat center #1e4e8d;
  cursor: pointer; }

.mobMenu {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 60px;
  padding: 0 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  background: white;
  z-index: 13;
  display: none; }

.menuGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative; }
  .menuGroup .mobMenu__button {
    width: 25px;
    height: 20px;
    background: url("../img/mobmenu.png") no-repeat center;
    cursor: pointer; }
  .menuGroup a {
    color: #333366;
    margin-right: 20px; }

.hideMenu {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: #003366;
  top: 60px;
  left: 0;
  padding: 60px 30px 60px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-animation: animMobMenu .5s;
  animation: animMobMenu .5s;
  overflow: hidden;
  display: none; }
  .hideMenu a {
    font-family: "Opensanscondensedbold";
    font-size: 30px;
    line-height: 30px;
    color: white;
    margin-top: 15px; }

@-webkit-keyframes animMobMenu {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px); }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); } }

@keyframes animMobMenu {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px); }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); } }

.visiblMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.hide__text {
  -webkit-animation: primaryTextAnim .5s;
  animation: primaryTextAnim .5s;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%; }
  .hide__text h3 {
    font-family: "Opensanscondensedbold";
    font-size: 30px;
    line-height: 40px;
    color: #fff; }
  .hide__text p {
    font-family: "Opensans-Regular";
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-top: 30px; }
    .hide__text p span {
      width: 100%;
      display: block;
      margin-top: 12px;
      line-height: 1; }

@-webkit-keyframes primaryTextAnim {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes primaryTextAnim {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

.nextSlideArrow {
  width: 60px;
  height: 60px;
  background: white;
  -ms-flex-item-align: end;
  align-self: flex-end; }

.checkbox {
  display: none; }

.checkbox-custom {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 15px;
  height: 15px;
  background: #d6d6d6;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .4s;
  transition: .4s; }

.label {
  margin-left: 15px;
  font-family: "OpenSans-Regular";
  font-size: 16px;
  line-height: 24px;
  color: white; }
  .label a {
    text-decoration: underline; }

label {
  width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'OpenSans-Regular';
  margin-bottom: 15px;
  color: #222222; }

.checkbox:checked + .checkbox-custom::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background: #003366;
  background-size: cover; }

.non__active {
  cursor: default;
  opacity: .2; }
  .non__active:hover {
    background: none; }

.other {
  font-family: "Opensans-Regular";
  font-size: 13px;
  line-height: 18px;
  width: auto;
  color: white;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: 25px; }

.header__top_position {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0; }

@media screen and (max-width: 1680px) {
  .adv__iconBlock, .footer__left, .footer__contact_block, .footer__right, .about__left-block, .industry__left_block, .adv__textBlock {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 60px 30px 30px 30px; }
  nav .logo {
    padding-left: 30px; }
  nav .nav__panel {
    padding: 0 30px 0 0; }
  .bottom__block_text {
    padding: 30px 30px; }
  .arrows__block, .number__block {
    left: 30px; }
  .footer__bottom {
    padding: 0 30px; }
  .hide__text p {
    margin-top: 15px; } }

@media screen and (max-width: 1600px) {
  .head-text {
    font-size: 50px;
    line-height: 60px; }
  h3, .hide__text h3, .industry-text h2,
  .product__textblock h2, .adv__text_head h2,
  .footer__textBlock h3,
  .footer__right h3 {
    font-size: 26px;
    line-height: 36px; }
  .primary-text, .industry-text p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 24px; }
  nav .nav__panel a,
  .hide__text p,
  .header__content p,
  .tab__text li,
  .bottom-logo p,
  .adv__text_head p,
  .icon__text p:nth-child(1),
  .footer__textBlock p,
  .footer__contact_block p,
  .footer__textBlock a,
  .footer__right p,
  .footer__right input, .label {
    font-size: 16px;
    line-height: 24px; }
  .header__content h3 {
    font-size: 60px;
    line-height: 70px; }
  button span {
    font-size: 16px;
    line-height: 24px; }
  .tab__text button {
    font-size: 16px; }
  .adv__text_head {
    margin-bottom: 60px; } }

@media screen and (max-width: 1520px) {
  .primary-text, .industry-text p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 22px; }
  nav .nav__panel a,
  .hide__text p,
  .header__content p,
  .tab__text li,
  .bottom-logo p,
  .adv__text_head p,
  .icon__text p:nth-child(1),
  .footer__textBlock p,
  .footer__contact_block p,
  .footer__textBlock a,
  .footer__right p,
  .footer__right input, .label {
    font-size: 14px;
    line-height: 22px; }
  button span {
    font-size: 14px;
    line-height: 22px; }
  .tab__text button {
    font-size: 14px; } }

@media screen and (max-width: 1366px) {
  .arrows__block {
    bottom: 100px; }
  .number__block {
    bottom: 60px; }
  .mobMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .logo img {
    width: 150px;
    height: 40px; }
  section,
  footer {
    padding-top: 60px; }
  nav {
    display: none; }
  .adv__iconBlock, .footer__left, .footer__contact_block, .footer__right, .about__left-block, .industry__left_block, .adv__textBlock {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px 30px 30px 30px; }
  nav .logo {
    padding-left: 30px; }
  nav .nav__panel {
    padding: 0 30px 0 0; }
  .bottom__block_text {
    padding: 30px; }
  .arrows__block {
    left: 30px; }
  .footer__bottom {
    padding: 0 30px; }
  .head-text {
    font-size: 40px;
    line-height: 50px; }
  h3, .hide__text h3, .industry-text h2,
  .product__textblock h2, .adv__text_head h2,
  .footer__textBlock h3,
  .footer__right h3 {
    font-size: 22px;
    line-height: 32px; }
  .header__content h3 {
    font-size: 50px;
    line-height: 60px; }
  .primary-text, .industry-text p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 20px; }
  nav .nav__panel a,
  .hide__text p,
  .header__content p,
  .tab__text li,
  .bottom-logo p,
  .adv__text_head p,
  .icon__text p:nth-child(1),
  .footer__textBlock p,
  .footer__contact_block p,
  .footer__textBlock a,
  .footer__right p,
  .footer__right input, .label {
    font-size: 14px;
    line-height: 20px; }
  .primary-text, .industry-text p,
  .hide__text p {
    margin-top: 7.5px; }
  .arrows__block, .number__block {
    left: 30px; }
  .product__block:nth-child(3) .product__img-block,
  .product__block:nth-child(2) .product__img-block,
  .product__block:nth-child(1) .product__img-block {
    height: 200px; }
  .products__header {
    height: 140px; }
  .about__left-block,
  nav .logo,
  .industry__left_block,
  .adv__textBlock {
    width: 40%; }
  nav .nav__panel a {
    margin-left: 30px; }
  .adv__iconBlock,
  .adv__textBlock {
    padding: 30px 0px 30px 30px; }
  .img__model {
    height: 60%; }
  .bottom-logo {
    bottom: 30px; } }

@media screen and (max-width: 1280px) {
  .adv__iconBlock, .footer__left, .footer__contact_block, .footer__right, .about__left-block, .industry__left_block, .adv__textBlock {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px; }
  .about__left-block,
  nav .logo,
  .industry__left_block,
  .adv__textBlock {
    width: 45%; }
  nav .nav__panel a:last-child {
    display: none; }
  .icon__text p:nth-child(1) {
    width: 200px; }
  .footer__textBlock p {
    margin-bottom: 60px; }
  .footer__right input {
    margin-bottom: 7.5px; } }

@media screen and (max-width: 1200px) {
  .about__left-block,
  nav .logo,
  .industry__left_block,
  .adv__textBlock {
    width: 50%; }
  nav .nav__panel a:nth-child(6) {
    display: none; }
  .img__model {
    height: 55%; }
  .icon__text p:nth-child(1) {
    width: 175px; }
  .header__top_position {
    height: 90px; }
  label {
    width: auto; } }

@media screen and (max-width: 1024px) {
  .sertif__more {
    position: static; }
  section,
  footer {
    padding-top: 0px;
    height: auto; }
  body {
    overflow: auto; }
  .logo img {
    width: 150px;
    height: 40px; }
  .mobMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  nav {
    display: none; }
  section,
  footer {
    height: auto; }
  .about__left-block {
    width: 100%;
    padding: 80px 60px 60px 60px; }
  .mobMenu {
    padding: 0 60px; }
  .disc-text {
    height: auto; }
  .model {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
  .img__model {
    height: 400px;
    padding: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .model {
    position: static; }
  .bottom__block {
    height: auto;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto; }
  .bottom__block_text {
    padding: 0; }
  .hide__text {
    padding: 60px; }
  .industry__left_block {
    padding: 60px 60px 90px 60px; }
  .arrows__block {
    left: 60px;
    bottom: 20px; }
  .number__block {
    left: 180px;
    bottom: 30px; }
  .industry__left_block {
    width: 50%; }
  .header__content {
    width: 100%; }
  .products__header {
    padding: 0 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .product__block:nth-child(3) .product__img-block,
  .product__block:nth-child(2) .product__img-block,
  .product__block:nth-child(1) .product__img-block {
    width: 80%;
    height: 150px; }
  .product-ind {
    margin-top: 0px;
    margin-bottom: 30px; }
  .product__textblock h2 {
    margin-top: 30px; }
  .hideBlock__content .close {
    top: -20px;
    right: 0px; }
  .hideBlock__content {
    width: 100%; }
  .hideBlock {
    padding: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: auto; }
  .bottom-logo {
    display: none; }
  .adv__textBlock {
    padding: 60px;
    width: 50%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .adv__iconBlock, .footer__contact_block, .footer__right {
    padding: 60px; }
  .icon__text p:nth-child(1) {
    width: auto; }
  .iconBlock .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px; }
  .flex-tr {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .iconBlock {
    width: 100%;
    height: auto;
    margin-top: 15px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .img__pointBlock {
    display: none; }
  .footer__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .footer__left {
    width: 100%;
    padding: 60px; }
  .header__top_position {
    height: auto;
    margin-bottom: 30px; }
  .footer__textBlock p {
    margin-bottom: 30px; }
  .footer__center, .footer__right {
    width: 50%; }
  .footer__bottom {
    padding: 0 60px; }
  .hideMenu a {
    font-family: "Opensanscondensedbold";
    font-size: 18px;
    line-height: 24px;
    color: white;
    height: 60px; } }

@media screen and (max-width: 900px) {
  .hideBlock {
    padding: 60px 30px; }
  .bottom__buttons {
    position: static; }
  .mobMenu {
    padding: 0 30px; }
  .about__left-block {
    padding: 80px 30px 30px 30px; }
  .img__model,
  .hide__text {
    padding: 30px; }
  .industry__left_block {
    padding: 30px 30px 90px 30px; }
  .arrows__block {
    left: 30px; }
  .product__block:nth-child(3) .product__img-block,
  .product__block:nth-child(2) .product__img-block,
  .product__block:nth-child(1) .product__img-block {
    width: 80%;
    height: 130px; }
  .hideBlock__tab_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .tab__image .oneitem {
    width: 220px;
    height: 130px;
    margin-bottom: 10px; }
  .tab__image img {
    width: 220px;
    height: 190px;
    margin-bottom: 10px; }
  .tab__text li:last-child {
    margin-bottom: 0; }
  .adv__textBlock, .adv__iconBlock, .footer__left, .footer__contact_block,
  .footer__right {
    padding: 30px; }
  .footer__bottom {
    padding: 0 30px; } }

@media screen and (max-width: 800px) {
  label {
    width: auto; } }

@media screen and (max-width: 768px) {
  .hideBlock {
    padding: 60px 15px; }
  .hide-slide {
    display: none; }
  .product__textblock h2 {
    font-size: 18px;
    line-height: 26px; }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto; }
    .footer__bottom p {
      width: auto; } }

@media screen and (max-width: 680px) {
  .tab__text ul {
    width: auto; }
  .tab__image {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .industry__left_block {
    width: 100%; }
  .slider__cont {
    width: 100%;
    height: 350px; }
  .products__content,
  .industry__content,
  .advantages__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .hideBlock__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 150px; }
  .adv__textBlock, .adv__iconBlock {
    width: 100%; }
  .adv__text_head {
    margin-bottom: 15px; }
  .tab__text li {
    padding: 0 0 10px 0px;
    text-align: left; } }

@media screen and (max-width: 600px) {
  .footer__center, .footer__right {
    width: 100%; }
  .footer__left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .footer__center {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .footer__contact_block {
    height: 260px; }
  .footer__map_block {
    height: 300px; }
  @-webkit-keyframes beforeGrow {
    0% {
      height: 0; }
    100% {
      height: 30px; } }
  @keyframes beforeGrow {
    0% {
      height: 0; }
    100% {
      height: 30px; } } }

@media screen and (max-width: 500px) {
  .tab__text li {
    margin-left: 30px; }
  .about__left-block {
    padding: 80px 15px 15px 15px; }
  .img__model,
  .hide__text {
    padding: 15px; }
  .industry__left_block {
    padding: 15px 15px 90px 15px; }
  .arrows__block {
    left: 15px; }
  .products__header,
  .mobMenu {
    padding: 0 15px; }
  button, .form_butt {
    width: 135px;
    height: 35px; }
  .tab__text ul {
    width: auto; }
  .tab__text button {
    width: auto;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-item-align: center;
    align-self: center; }
  .tab__text a {
    line-height: 35px; }
  .tab__image {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .adv__textBlock, .adv__iconBlock, .footer__right,
  .footer__left, .footer__contact_block {
    padding: 15px; }
  .sertif__more {
    height: 35px; }
    .sertif__more a {
      line-height: 35px; }
  .footer__bottom {
    padding: 0 15px; }
  button a {
    font-size: 14px;
    line-height: 22px; }
  .arrows__block img,
  .arr:not(.non_active) {
    width: 40px;
    height: 40px; }
  .number__block {
    left: 142px;
    bottom: 25px; }
  .header__content h3 {
    font-size: 40px;
    line-height: 50px; }
  .header__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; } }

@media screen and (max-width: 500px) {
  .menuGroup a {
    display: none; }
  .img__model {
    height: 300px; } }

@media screen and (max-width: 450px) {
  .hideBlock {
    padding: 30px; }
  .hideBlock__tab_content {
    padding: 15px 0; }
  .products__header {
    height: auto; }
  button a {
    font-size: 13px; } }

@media screen and (max-width: 360px) {
  .tab__image .oneitem {
    width: 200px;
    height: 110px; }
  .tab__image {
    width: 100%; }
  .tab__image img {
    width: 210px;
    height: 150px; }
  .hideMenu {
    padding: 30px; }
    .hideMenu a {
      height: 30px; } }
