@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("/fonts/Manrope-Light.ttf") format("ttf");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/Manrope-Medium.ttf") format("ttf");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Manrope-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/Manrope-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/Manrope-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/Manrope-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/fonts/Manrope-Regular.ttf") format("ttf");
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  font-family: "Manrope", sans-serif;
}

html {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-size: 0.9vw;
  line-height: 1;
  background-color: #F6F8F9;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  font-weight: 400;
  position: relative;
}

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

a {
  text-decoration: none;
  transition: 0.3s all ease;
  color: #282828;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

strong {
  font-weight: bold;
}

.container {
  padding-left: 0;
  padding-right: 0;
}

span.gray {
  color: #84919A;
}

input {
  outline: none;
}

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

img {
  border: 0;
  max-width: 100%;
}

/* Chrome, Opera, Safari */
details summary::-webkit-details-marker {
  display: none;
}

details :focus {
  outline: 0;
}

/* Firefox */
details, summary {
  display: block;
}

details summary:before {
  content: none;
}

details[open] summary:before {
  content: none;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #F96A1B;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 12px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

form button,
a.btn-o {
  background-color: orange;
  background-image: linear-gradient(yellow, 20%, orange);
  padding: 1.5vw 0;
  text-align: center;
  display: inline-block;
  border-radius: 3vw;
  color: #fff;
  font-weight: bold;
  position: relative;
  letter-spacing: 0.1vw;
  font-size: 1vw;
  overflow: hidden;
  box-shadow: 0 43px 101px rgba(120, 136, 255, 0.2), 0 4px 0 #F59211, inset 0 0 15px orange;
  transition: 0.3s all ease;
}
form button:hover,
a.btn-o:hover {
  background-image: linear-gradient(yellow, 0, orange);
}
form button .btn-blick,
a.btn-o .btn-blick {
  position: absolute;
  top: -50%;
  left: -3vw;
  transform: rotate(20deg);
  width: 1.5vw;
  background-color: #fff;
  height: 200%;
  -webkit-animation: moveBlick 4s linear infinite;
          animation: moveBlick 4s linear infinite;
}

h2.section-heading {
  font-size: 2.5vw;
  font-weight: 300;
  max-width: 60%;
  margin: 0 auto;
  line-height: 3vw;
  text-align: center;
}
h2.section-heading span {
  font-weight: 600;
}

@-webkit-keyframes moveBlick {
  0% {
    left: -3vw;
  }
  20% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}

@keyframes moveBlick {
  0% {
    left: -3vw;
  }
  20% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}
header {
  height: 60vw;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  position: relative;
}
header.page {
  height: 10vw;
  background-color: #282828;
}
header .nav-block {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
header .nav-block .container-big {
  padding: 1.5vw 4vw;
}
header .nav-block .container-big .top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .nav-block .container-big .top-header .logo-block {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .nav-block .container-big .top-header .logo-block a.logo-img svg {
  width: 8vw;
  margin-right: 2vw;
}
header .nav-block .container-big .top-header .logo-block p.desc {
  margin-left: 1vw;
  font-size: 0.8vw;
  line-height: 1vw;
}
header .nav-block .container-big .top-header .logo-block p.desc b {
  font-weight: bold;
}
header .nav-block .container-big .top-header .get-callback p {
  font-size: 1vw;
  cursor: pointer;
  text-transform: uppercase;
  color: orange;
  border-bottom: 1px dotted orange;
}
header .nav-block .container-big .top-header .header-phone {
  display: flex;
  align-items: center;
}
header .nav-block .container-big .top-header .header-phone p.phone-icon {
  margin-right: 1vw;
  width: 2.4vw;
  height: 2.4vw;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #464b53;
}
header .nav-block .container-big .top-header .header-phone p.phone-icon img {
  width: 50%;
}
header .nav-block .container-big .top-header .header-phone .phone-block {
  display: flex;
  align-items: center;
  flex-direction: column;
}
header .nav-block .container-big .top-header .header-phone .phone-block p {
  font-size: 0.8vw;
  line-height: 1.2vw;
}
header .nav-block .container-big .top-header .header-phone .phone-block a {
  font-weight: bold;
  color: #fff;
  transition: 0.3s all ease;
}
header .nav-block .container-big .top-header .header-phone .phone-block a:hover {
  color: orange;
}
header .nav-block .container-big .top-header .header-socials p.title {
  font-size: 0.8vw;
}
header .nav-block .container-big .top-header .header-socials .social-items {
  display: flex;
  margin-top: 0.4vw;
  justify-content: space-around;
}
header .nav-block .container-big .top-header .header-socials .social-items a {
  width: 2.4vw;
  height: 2.4vw;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .nav-block .container-big .top-header .header-socials .social-items a.vi {
  background-color: #7e43b1;
}
header .nav-block .container-big .top-header .header-socials .social-items a.tg {
  background-color: #54b9f0;
}
header .nav-block .container-big .top-header .header-socials .social-items a.burger {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  display: none;
}
header .nav-block .container-big .top-header .header-socials .social-items a.burger.active span:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header .nav-block .container-big .top-header .header-socials .social-items a.burger.active span:nth-child(2) {
  left: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
header .nav-block .container-big .top-header .header-socials .social-items a.burger.active span:last-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
header .nav-block .container-big .top-header .header-socials .social-items a.burger span {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 4vw;
  display: inline-block;
  height: 0.5vw;
  background-color: #282828;
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transition: 0.3s all ease;
}
header .nav-block .container-big .top-header .header-socials .social-items a.burger span:first-child {
  top: 35%;
}
header .nav-block .container-big .top-header .header-socials .social-items a.burger span:last-child {
  top: 68%;
}
header .nav-block .container-big .top-header .header-socials .social-items a img {
  width: 50%;
}
header .nav-block .container-big nav {
  display: flex;
  justify-content: center;
  margin-top: 2vw;
  background-color: #fff;
  border-radius: 0.5vw;
}
header .nav-block .container-big nav.fixed {
  position: fixed;
  width: 90%;
  top: -20px;
  left: 5%;
  box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, 0.2);
  z-index: 9999;
}
header .nav-block .container-big nav ul {
  display: flex;
  padding: 1vw 0;
  justify-content: space-between;
  width: 90%;
}
header .nav-block .container-big nav ul li {
  align-items: center;
  display: flex;
}
header .nav-block .container-big nav ul li a {
  font-weight: 600;
  color: #282828;
  font-size: 1vw;
  transition: 0.3s all ease;
}
header .nav-block .container-big nav ul li a:hover {
  color: orange;
}
header .nav-block .container-big nav ul li.lang a {
  display: inline-block;
  margin: 0 0.5vw;
  width: 1.5vw;
}
header .nav-block .container-big nav ul li.lang a img {
  width: 100%;
  border: 1px solid lightgrey;
}
header .slider-block {
  height: 100%;
  position: relative;
}
header .slider-block .slider-item {
  min-height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
header .slider-block .slider-item #video-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
header .slider-block .slider-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
header .slider-block .slider-item .container-big {
  height: 100%;
  position: relative;
}
header .slider-block .slider-item .container-big .inner {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 50%;
  padding-top: 20vw;
}
header .slider-block .slider-item .container-big .inner h2 {
  text-transform: uppercase;
  font-size: 3vw;
  font-weight: 300;
  line-height: 3.5vw;
  position: relative;
  z-index: 1;
}
header .slider-block .slider-item .container-big .inner h2 span {
  font-weight: 700;
}
header .slider-block .slider-item .container-big .inner p.sub-title {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  font-size: 1.2vw;
  margin-top: 2.5vw;
  color: rgba(255, 255, 255, 0.8);
}
header .slider-block .slider-item .container-big .inner p.sub-title span {
  height: 2px;
  width: 5vw;
  background-color: orange;
  margin-right: 1vw;
}
header .slider-block .slider-item .container-big .inner .adv-block {
  display: flex;
  margin-top: 1vw;
  position: relative;
  z-index: 1;
}
header .slider-block .slider-item .container-big .inner .adv-block .adv-item {
  margin-right: 3vw;
}
header .slider-block .slider-item .container-big .inner .adv-block .adv-item:last-child {
  margin-right: 0;
}
header .slider-block .slider-item .container-big .inner .adv-block .adv-item p {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}
header .slider-block .slider-item .container-big .inner .adv-block .adv-item p span {
  width: 1vw;
  height: 1vw;
  background-color: orange;
  display: inline-block;
  border-radius: 0.2vw;
  margin-right: 0.5vw;
}
header .slider-block .slider-item .container-big .inner a {
  margin-top: 6vw;
  width: 40%;
  position: relative;
  z-index: 1;
  background-color: transparent;
}
header .slider-block .slider-item .slide-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  bottom: 0;
  right: 0;
  background-color: rgba(40, 40, 40, 0.9);
  width: 35vw;
  height: 8vw;
  display: flex;
  align-items: center;
  padding-left: 4vw;
}
header .slider-block .slider-item .slide-nav p {
  font-size: 1.5vw;
  color: #5e5e5e;
  display: flex;
  align-items: center;
}
header .slider-block .slider-item .slide-nav p span {
  color: #fff;
  font-size: 2.5vw;
  font-weight: 500;
}
header .slider-block p.slider-arr.next {
  position: absolute;
  z-index: 999;
  right: 0;
  bottom: -0.1vw;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1.2vw;
  height: 8vw;
  width: 8vw;
  display: flex;
  align-items: center;
  padding-right: 3vw;
}

section.about-block {
  margin-top: 6vw;
}
section.about-block .about-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2vw;
}
section.about-block .about-block .text {
  width: 65%;
}
section.about-block .about-block .text p {
  line-height: 1.3vw;
  font-size: 1vw;
  font-weight: 300;
}
section.about-block .about-block .img {
  width: 30%;
  text-align: center;
}

section.activity {
  margin-top: 4vw;
  display: flex;
  justify-content: space-between;
}
section.activity a.item {
  width: 25%;
  height: 25vw;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  transition: 2s all ease;
  align-items: end;
  position: relative;
}
section.activity a.item:hover {
  background-position: right center;
}
section.activity a.item:hover .inner p {
  display: block;
}
section.activity a.item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
section.activity a.item .inner {
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 1vw;
  padding: 2vw;
}
section.activity a.item .inner h3 {
  font-size: 2vw;
  font-weight: bold;
  margin-bottom: 1.5vw;
}
section.activity a.item .inner p {
  display: none;
  line-height: 1.3vw;
}

section.applying {
  margin-top: 6vw;
}
section.applying p.second {
  text-align: center;
  width: 80%;
  line-height: 1.3vw;
  margin: 2vw auto;
  padding: 2vw 8vw;
  font-size: 1vw;
  border-radius: 1vw;
  border: 1px solid lightgray;
}
section.applying .applying-block {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}
section.applying .applying-block .item {
  width: 32%;
  margin-bottom: 1.3vw;
  height: 30vw;
  border-radius: 1vw;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  position: relative;
}
section.applying .applying-block .item.wide {
  width: 66%;
}
section.applying .applying-block .item:before {
  content: "";
  position: absolute;
  border-top-left-radius: 1vw;
  border-bottom-left-radius: 1vw;
  top: 0;
  left: 0;
  height: 100%;
  width: 60%;
  background-image: url("/img/applying/blur.png");
  background-size: cover;
  background-position: right;
}
section.applying .applying-block .item .inner {
  height: 100%;
  box-sizing: border-box;
  display: flex;
  position: relative;
  padding: 3vw 2vw;
  flex-direction: column;
  justify-content: space-between;
}
section.applying .applying-block .item .inner .desc h3 {
  font-size: 1.7vw;
  width: 50%;
  line-height: 1.8vw;
  font-weight: 800;
}
section.applying .applying-block .item .inner .desc .price-block span {
  font-size: 2vw;
  color: green;
  margin: 0 1vw;
  font-weight: bold;
}
section.applying .applying-block .item .inner .desc p {
  margin-top: 2vw;
  width: 60%;
  line-height: 1.2vw;
}
section.applying .applying-block .item .inner a.btn-o {
  width: 15vw;
}

section.adv-product {
  margin-top: 6vw;
  overflow: hidden;
}
section.adv-product .inner {
  padding: 4vw 0;
  border-top-right-radius: 1vw;
  border-bottom-right-radius: 1vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
section.adv-product .inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  display: inline-block;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("/img/layer_3.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.adv-product .inner h2 {
  color: #fff;
}
section.adv-product .inner .adv-product-block {
  margin-top: 3vw;
  display: flex;
  justify-content: space-between;
  padding: 0 4vw;
  flex-flow: wrap;
}
section.adv-product .inner .adv-product-block .slider-item {
  display: flex;
  flex-direction: column;
  max-width: 32%;
  margin-right: 1.5vw;
}
section.adv-product .inner .adv-product-block .slider-item .item {
  background-color: #282828;
  color: #fff;
  margin-bottom: 1.5vw;
  display: flex;
  align-items: center;
  height: 12vw;
  width: 100%;
  padding: 0 2vw;
  box-sizing: border-box;
  border-radius: 1vw;
  border: 1px dashed gray;
}
section.adv-product .inner .adv-product-block .slider-item .item .img {
  width: 10vw;
  margin-right: 2vw;
}
section.adv-product .inner .adv-product-block .slider-item .item .img svg path {
  fill: orange;
}
section.adv-product .inner .adv-product-block .slider-item .item .desc p.title {
  font-weight: bold;
  font-size: 1.5vw;
  margin-bottom: 1vw;
}
section.adv-product .inner .adv-product-block .slider-item .item .desc p.second {
  line-height: 1.2vw;
  color: rgba(255, 255, 255, 0.8);
}
section.adv-product .inner .adv-product-block ul.slick-dots {
  bottom: -1.5vw;
  left: 50%;
  transform: translateX(-50%);
}

section.line {
  margin-top: 4vw;
}
section.line .container-big {
  margin-bottom: 4vw;
}
section.line .production-line-block {
  position: relative;
}
section.line .production-line-block .item {
  position: absolute;
}
section.line .production-line-block .item span {
  width: 2vw;
  height: 2vw;
  cursor: pointer;
  background-color: orange;
  border-radius: 50%;
  display: flex;
  color: #fff;
  font-weight: bold;
  font-size: 1.5vw;
  align-items: center;
  justify-content: center;
}
section.line .production-line-block .item span i {
  position: relative;
}
section.line .production-line-block .item span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  background-color: orange;
  -webkit-animation: 3s animPulse linear infinite;
          animation: 3s animPulse linear infinite;
  transition: 0.3s all ease;
}
section.line .production-line-block .item p.desc {
  background-color: #fff;
  position: absolute;
  top: 3vw;
  padding: 0.5vw;
  font-size: 0.9vw;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.2vw;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  z-index: -1;
  color: rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease;
  width: 14vw;
}
section.line .production-line-block .item:hover p.desc {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
section.line .production-line-block .item.pin1 {
  top: 35%;
  left: 40%;
}
section.line .production-line-block .item.pin2 {
  top: 55%;
  left: 15%;
}
section.line .production-line-block .item.pin3 {
  top: 42%;
  left: 31%;
}
section.line .production-line-block .item.pin4 {
  top: 7%;
  left: 39%;
}
section.line .production-line-block .item.pin5 {
  top: 14%;
  left: 53%;
}
section.line .production-line-block .item.pin6 {
  top: 25%;
  left: 86%;
}
section.line .production-line-block .item.pin6 p.desc {
  left: -9vw;
}
section.line .production-line-block .item.pin7 {
  top: 23%;
  left: 92%;
}
section.line .production-line-block .item.pin7 p.desc {
  left: -12vw;
}
section.line .production-line-block .item.pin8 {
  top: 21%;
  left: 94.5%;
}
section.line .production-line-block .item.pin8 p.desc {
  left: -14vw;
}
section.line .production-line-block .item.pin9 {
  top: 20%;
  left: 96.5%;
}
section.line .production-line-block .item.pin9 p.desc {
  left: -16vw;
}
section.line .adv-line-block {
  margin-top: 4vw;
}
section.line .adv-line-block .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4vw;
}
section.line .adv-line-block .item .left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: 19vw;
  background-size: contain;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: bottom left;
}
section.line .adv-line-block .item .left img {
  height: 90%;
}
section.line .adv-line-block .item .left img.second {
  display: none;
}
section.line .adv-line-block .item .left:hover img.first {
  display: none;
}
section.line .adv-line-block .item .left:hover img.second {
  display: block;
}
section.line .adv-line-block .item .right {
  width: 55%;
  display: flex;
  padding-top: 1.5vw;
  padding-right: 10vw;
  box-sizing: border-box;
}
section.line .adv-line-block .item .right img {
  height: 3vw;
  margin-right: 2vw;
  display: inline-block;
}
section.line .adv-line-block .item .right .inner h4 {
  font-size: 2vw;
  font-weight: bold;
  line-height: 2.2vw;
  margin-bottom: 1vw;
}
section.line .adv-line-block .item .right .inner p {
  line-height: 1.3vw;
  font-size: 1vw;
  margin-bottom: 1vw;
}
section.line .adv-line-block .item .right .inner ul li {
  margin-bottom: 0.5vw;
}
section.line .adv-line-block .item .right.reverse {
  padding-left: 8vw;
  width: 60%;
}

section.adv-line {
  margin-top: 8vw;
  position: relative;
}
section.adv-line:before {
  content: "";
  position: absolute;
  top: 0;
  right: -50%;
  width: 100%;
  background-image: url("/img/layer_3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  z-index: -1;
}
section.adv-line .inner {
  border-top-left-radius: 1vw;
  border-bottom-left-radius: 1vw;
  padding: 4vw;
}
section.adv-line .inner h2 {
  text-align: left;
  color: #fff;
  max-width: 100%;
}
section.adv-line .inner .block {
  margin-top: 4vw;
  display: flex;
  justify-content: space-between;
}
section.adv-line .inner .block .left {
  width: 70%;
  display: flex;
  justify-content: space-between;
}
section.adv-line .inner .block .left .item {
  width: 22%;
}
section.adv-line .inner .block .left .item .img {
  text-align: center;
  position: relative;
}
section.adv-line .inner .block .left .item .img span {
  color: green;
  font-size: 2vw;
  font-weight: 900;
  position: absolute;
  bottom: 0;
  left: 0;
}
section.adv-line .inner .block .left .item .img svg {
  width: 60%;
}
section.adv-line .inner .block .left .item .img svg path {
  fill: orange;
}
section.adv-line .inner .block .left .item .text {
  color: #fff;
  margin-top: 2vw;
}
section.adv-line .inner .block .left .item .text p.title {
  font-size: 1.6vw;
  font-weight: 900;
}
section.adv-line .inner .block .left .item .text p.second {
  margin-top: 1vw;
  font-size: 1vw;
  line-height: 1.2vw;
}
section.adv-line .inner .block .right {
  width: 25%;
}
section.adv-line .inner .block .right a {
  width: 100%;
  border-radius: 1vw;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  display: inline-block;
}

.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

section.callback {
  margin-top: 6vw;
  margin-bottom: 10vw;
}
section.callback .do-go-away {
  display: flex;
  justify-content: center;
}
section.callback .do-go-away .inner {
  display: flex;
  padding: 0.5vw 1vw;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.05);
  font-weight: bold;
  border-radius: 2vw;
}
section.callback .do-go-away .inner img {
  margin-right: 1vw;
}
section.callback p.section-heading {
  width: 80%;
  margin: 2vw auto 0;
  font-size: 3vw;
  font-weight: 300;
  text-align: center;
  line-height: 3.5vw;
}
section.callback p.section-heading span {
  font-weight: bold;
}
section.callback .do-not-lose {
  margin-top: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2vw;
}
section.callback .do-not-lose img {
  margin-right: 1vw;
}
section.callback .do-not-lose span {
  font-weight: bold;
}
section.callback .keys {
  margin-top: 4vw;
  display: flex;
  justify-content: center;
}
section.callback .keys .item {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 2vw;
}
section.callback .keys .item img.phone {
  width: 15vw;
  margin-left: 2vw;
}
section.callback .keys .item img.arrow {
  position: absolute;
  bottom: -50%;
  width: 8vw;
  left: 50%;
  transform: translateX(-50%);
}
section.callback .keys .item p.text {
  font-size: 1.1vw;
  line-height: 1.4vw;
  color: #5e5e5e;
}
section.callback .keys .item p.ctrl {
  font-size: 2.5vw;
  margin-left: 2vw;
  padding: 1vw 2vw;
  border-radius: 1vw;
  background-color: rgba(0, 0, 0, 0.05);
}

footer {
  margin-top: 5vw;
  padding: 3vw 0 2vw;
  background-color: #282828;
  color: #fff;
}
footer .inner {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #c9c9cb;
  padding-bottom: 3vw;
}
footer .inner p.title {
  font-weight: 700;
}
footer .inner .logo-block p {
  margin-top: 1vw;
  line-height: 1vw;
}
footer .inner .logo-block p b {
  font-weight: bold;
}
footer .inner .nav-block ul {
  margin-top: 1vw;
}
footer .inner .nav-block ul li {
  margin-bottom: 0.7vw;
}
footer .inner .nav-block ul li a {
  display: flex;
  color: #fff;
  align-items: center;
}
footer .inner .nav-block ul li a img {
  margin-right: 0.5vw;
  width: 1.1vw;
}
footer .inner .nav-block ul li a:hover {
  color: orange;
}
footer .inner .contacts-block .messengers-block {
  margin: 2vw 0;
}
footer .rights {
  margin-top: 2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .rights a {
  color: orange;
}

.map-block {
  display: flex;
  align-items: center;
}
.map-block p.map-icon {
  width: 2.5vw;
  height: 2.5vw;
}
.map-block .info {
  margin-left: 1vw;
}
.map-block .info p {
  font-size: 0.8vw;
  margin-bottom: 0.5vw;
}
.map-block .info a {
  color: orange;
  position: relative;
}
.map-block .info a:hover:before {
  width: 50%;
  border-top: 0.1vw solid orange;
}
.map-block .info a:before {
  content: "";
  position: absolute;
  bottom: -0.5vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.2vw;
  transition: 0.3s all ease;
  border-top: 0.1vw solid orange;
}

.phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-block p.title {
  background-color: orange;
  color: #fff;
  font-size: 0.6vw;
  padding: 0.3vw 0.7vw 0.3vw 1.2vw;
  border-radius: 1vw;
  position: relative;
}
.phone-block p.title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.7vw;
  width: 0.5vw;
  height: 0.5vw;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
  -webkit-animation: blink 2s ease-in infinite;
          animation: blink 2s ease-in infinite;
}
.phone-block a {
  margin: 0.5vw 0;
  color: #fff;
  font-size: 1.2vw;
  font-weight: 700;
}
.phone-block a:hover {
  color: orange;
}
.phone-block .get-callback {
  font-size: 0.8vw;
  cursor: pointer;
  position: relative;
}
.phone-block .get-callback:hover:before {
  width: 50%;
  border-top: 0.1vw dashed orange;
}
.phone-block .get-callback:before {
  content: "";
  position: absolute;
  bottom: -0.5vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.2vw;
  transition: 0.3s all ease;
  border-top: 0.1vw dashed rgba(0, 0, 0, 0.2);
}

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

@keyframes animPulse {
  0% {
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
@-webkit-keyframes blink {
  0% {
    visibility: visible;
    opacity: 1;
  }
  50% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    visibility: visible;
    opacity: 1;
  }
  50% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.messengers-block p.title {
  font-size: 0.8vw;
  position: relative;
}
.messengers-block p.title b {
  font-weight: bold;
  text-transform: uppercase;
}
.messengers-block p.title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.7vw;
  width: 0.5vw;
  height: 0.5vw;
  background-color: orange;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
  -webkit-animation: blink 2s ease-in infinite;
          animation: blink 2s ease-in infinite;
}
.messengers-block .items-block {
  margin-top: 0.4vw;
  display: flex;
  justify-content: space-around;
}
.messengers-block .items-block a {
  position: relative;
  top: 0;
  width: 1.5vw;
  height: 1.5vw;
  padding: 0.5vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.messengers-block .items-block a:hover {
  transform: scale(1.1);
}
.messengers-block .items-block a.vi {
  background-color: #7e43b1;
}
.messengers-block .items-block a.tg {
  background-color: #54b9f0;
}
.messengers-block .items-block a img {
  width: 80%;
}

.container-big {
  padding: 0 6vw;
}

.right-menu {
  position: fixed;
  right: 1.5vw;
  z-index: 999;
  top: 50%;
  transform: translateY(-50%);
}
.right-menu ul {
  display: flex;
  flex-direction: column;
}
.right-menu ul li a {
  color: #fff;
  height: 3vw;
  width: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #282828;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition: 0.3s all ease;
}
.right-menu ul li a img {
  width: 1.5vw;
  position: relative;
  z-index: 5;
}
.right-menu ul li a span {
  position: absolute;
  text-align: right;
  top: 0;
  border-bottom: 1px solid #353847;
  right: 0;
  background-color: #282828;
  height: 3vw;
  display: flex;
  align-items: center;
  border-top-left-radius: 2vw;
  border-bottom-left-radius: 2vw;
  padding: 0 1vw 0 2vw;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: 0.3s all ease;
}
.right-menu ul li a:hover span {
  opacity: 1;
  right: 100%;
  visibility: visible;
}
.right-menu ul li:last-child a {
  border-bottom: none;
  border-bottom-right-radius: 1.3vw;
  border-bottom-left-radius: 1.3vw;
}
.right-menu ul li:first-child a {
  border-top-right-radius: 1.3vw;
  border-top-left-radius: 1.3vw;
}
.right-menu ul li:hover a {
  border-radius: 0;
}

.modal-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 999;
  background: rgba(40, 40, 40, 0.8);
}
.modal-form.show-form {
  display: block;
}
.modal-form .inner {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 20vw;
  transform: translate(-50%, -50%);
  padding: 4vw;
  color: #fff;
  border-radius: 1vw;
}
.modal-form .inner span.close {
  position: absolute;
  top: 0.5vw;
  right: 1vw;
  font-size: 1.5vw;
  cursor: pointer;
  transition: 0.3s all ease;
}
.modal-form .inner span.close:hover {
  color: orange;
}
.modal-form .inner p.title {
  font-size: 2vw;
  text-align: center;
  font-weight: bold;
}
.modal-form .inner p.sub-title {
  text-align: center;
  margin-top: 2vw;
  font-size: 1.1vw;
  line-height: 1.4vw;
}
.modal-form .inner p.sub-title b {
  font-weight: bold;
}
.modal-form .inner form {
  margin-top: 1.5vw;
}
.modal-form .inner form input {
  width: 100%;
  background: rgba(40, 40, 40, 0.8);
  border: none;
  margin-bottom: 1vw;
  padding: 1.5vw 2vw;
  border-radius: 2vw;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.1vw;
}
.modal-form .inner form button {
  width: 100%;
  border: none;
}

.modal-form-thx {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 999;
  background: rgba(40, 40, 40, 0.8);
}
.modal-form-thx.show-form {
  display: block;
}
.modal-form-thx .inner {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 20vw;
  transform: translate(-50%, -50%);
  padding: 4vw;
  color: #fff;
  border-radius: 1vw;
}
.modal-form-thx .inner span.close-thx {
  position: absolute;
  top: 0.5vw;
  right: 1vw;
  font-size: 1.5vw;
  cursor: pointer;
  transition: 0.3s all ease;
}
.modal-form-thx .inner span.close-thx:hover {
  color: orange;
}
.modal-form-thx .inner p.title {
  font-size: 2vw;
  text-align: center;
  font-weight: bold;
}
.modal-form-thx .inner p.sub-title {
  text-align: center;
  margin-top: 2vw;
  font-size: 1.1vw;
  line-height: 1.4vw;
}
.modal-form-thx .inner p.sub-title b {
  font-weight: bold;
}

@media (max-width: 860px) {
  h2.section-heading {
    max-width: 90%;
    font-size: 5vw;
    margin: 10vw auto 5vw;
    line-height: 6vw;
  }

  .modal-form-thx .inner p.title {
    font-size: 5vw;
    margin-bottom: 5vw;
  }

  .modal-form-thx .inner span.close-thx {
    font-size: 4vw;
  }

  .modal-form-thx .inner p.sub-title {
    font-size: 3vw;
    line-height: 4vw;
  }

  .modal-form-thx .inner {
    width: 50vw;
    padding: 5vw;
  }

  header .nav-block .container-big .top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2vw 4vw 2vw;
    box-sizing: border-box;
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.2);
  }

  form button, a.btn-o {
    font-size: 4vw;
    padding: 2.5vw 0;
  }
  form button .btn-blick, a.btn-o .btn-blick {
    width: 3vw;
  }

  header {
    height: 180vw;
  }

  header .nav-block .container-big .top-header .header-socials .social-items a.burger {
    display: block;
    z-index: 999999;
  }

  header .nav-block .container-big nav {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    margin-top: 0;
    border-radius: 0;
    width: 100% !important;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: 0.3s all ease;
  }
  header .nav-block .container-big nav.show {
    opacity: 1;
    visibility: visible;
    z-index: 99999;
  }
  header .nav-block .container-big nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  header .nav-block .container-big nav ul li {
    margin-bottom: 5vw;
  }
  header .nav-block .container-big nav ul li.lang a {
    width: 5vw;
    margin: 10vw 2vw 0;
  }
  header .nav-block .container-big nav ul li a {
    font-size: 5vw;
  }

  .right-menu,
section.about-block .about-block .img,
header .nav-block .container-big .top-header .header-socials p.title,
header .nav-block .container-big .top-header .get-callback,
header .nav-block .container-big .top-header .logo-block p.desc,
header .nav-block .container-big .top-header .header-phone {
    display: none;
  }

  header .nav-block .container-big .top-header .logo-block a.logo-img svg {
    width: 25vw;
  }

  header .nav-block .container-big .top-header .header-socials .social-items a {
    width: 8vw;
    height: 8vw;
    margin-left: 2vw;
    border-radius: 1vw;
  }

  header .slider-block .slider-item .container-big .inner {
    width: 100%;
    padding-top: 50vw;
  }
  header .slider-block .slider-item .container-big .inner h2 {
    font-size: 10vw;
    line-height: 12vw;
  }
  header .slider-block .slider-item .container-big .inner p.sub-title {
    font-size: 4vw;
    margin-top: 10vw;
  }
  header .slider-block .slider-item .container-big .inner .adv-block {
    flex-direction: column;
    margin-top: 5vw;
  }
  header .slider-block .slider-item .container-big .inner .adv-block .adv-item {
    margin-top: 2vw;
  }
  header .slider-block .slider-item .container-big .inner .adv-block .adv-item p {
    font-size: 3.5vw;
  }
  header .slider-block .slider-item .container-big .inner .adv-block .adv-item p span {
    width: 2vw;
    margin-right: 2vw;
    border-radius: 0.5vw;
    height: 2vw;
  }
  header .slider-block .slider-item .container-big .inner a {
    margin: 20vw auto 0;
    width: 70%;
  }

  section.about-block .about-block .text {
    width: 100%;
  }

  section.about-block .about-block .text p {
    font-size: 3vw;
    line-height: 4vw;
  }

  section.activity {
    margin-top: 10vw;
  }

  section.activity {
    flex-flow: wrap;
  }

  section.activity a.item {
    width: 100%;
    height: 70vw;
  }

  section.activity a.item .inner h3 {
    font-size: 5vw;
    line-height: 6vw;
  }

  section.activity a.item .inner p {
    display: block;
    font-size: 3vw;
    line-height: 4vw;
    color: rgba(255, 255, 255, 0.8);
  }

  section.applying p.second {
    font-size: 2.5vw;
    line-height: 3vw;
    padding: 2vw 4vw;
    width: 100%;
    box-sizing: border-box;
  }

  section.applying .applying-block .item.wide,
section.applying .applying-block .item {
    width: 100%;
    height: 55vw;
    margin-top: 3vw;
    padding: 0.5vw 3vw;
  }

  section.applying .applying-block .item .inner .desc h3 {
    font-size: 4vw;
    line-height: 5vw;
  }

  section.applying .applying-block .item .inner .desc p {
    font-size: 3vw;
    line-height: 4vw;
  }

  section.applying .applying-block .item .inner a.btn-o {
    width: 40vw;
    font-size: 3vw;
  }

  section.adv-product .inner .adv-product-block .slider-item .item .img svg {
    min-width: 10vw;
  }

  section.adv-product .inner .adv-product-block .slider-item .item .img {
    width: 17vw;
    padding: 1vw;
    box-sizing: border-box;
  }

  section.adv-product .inner .adv-product-block .slider-item .item {
    height: 28vw;
    padding: 5vw;
    box-sizing: border-box;
  }

  section.line .production-line-block .item span:before {
    width: 4vw;
    height: 4vw;
  }

  section.line .production-line-block .item span {
    width: 4vw;
    height: 4vw;
    font-size: 5vw;
  }

  section.line .production-line-block .item p.desc {
    font-size: 3vw;
    line-height: 3.5vw;
    width: 40vw;
    padding: 2vw;
    border-radius: 1vw;
  }

  section.adv-product .inner .adv-product-block .slider-item .item .desc p.title {
    font-size: 3.5vw;
  }

  section.adv-product .inner .adv-product-block .slider-item .item .desc p.second {
    font-size: 2.5vw;
    line-height: 3vw;
  }

  section.line .production-line-block .item.pin6 p.desc,
section.line .production-line-block .item.pin7 p.desc,
section.line .production-line-block .item.pin8 p.desc,
section.line .production-line-block .item.pin9 p.desc {
    left: -40vw;
  }

  section.line .adv-line-block .item .right.reverse,
section.line .adv-line-block .item .left,
section.line .adv-line-block .item .right {
    width: 100%;
  }

  section.line .adv-line-block .item .left {
    height: 46vw;
  }

  section.line .adv-line-block .item {
    flex-flow: wrap;
    margin-bottom: 10vw;
  }

  section.line .adv-line-block .item .right.reverse {
    padding-left: 4vw;
  }

  section.line .adv-line-block .item:nth-child(2),
section.line .adv-line-block .item:nth-child(4),
section.line .adv-line-block .item:nth-child(6),
section.line .adv-line-block .item:nth-child(8),
section.line .adv-line-block .item:nth-child(10) {
    flex-flow: wrap-reverse;
  }
  section.line .adv-line-block .item:nth-child(2) .left,
section.line .adv-line-block .item:nth-child(4) .left,
section.line .adv-line-block .item:nth-child(6) .left,
section.line .adv-line-block .item:nth-child(8) .left,
section.line .adv-line-block .item:nth-child(10) .left {
    background-position: bottom right;
  }

  section.line .adv-line-block .item .right {
    padding: 2vw 4vw;
    margin-top: 5vw;
    box-sizing: border-box;
  }

  section.line .adv-line-block .item .right .inner h4 {
    font-size: 4vw;
    line-height: 5vw;
  }

  section.line .adv-line-block .item .right img {
    height: 5vw;
  }

  section.line .production-line-block {
    margin-top: 5vw;
  }

  section.line .adv-line-block {
    margin-top: 14vw;
  }

  section.line .adv-line-block .item .right .inner ul li,
section.line .adv-line-block .item .right .inner p {
    font-size: 3vw;
    line-height: 4vw;
  }

  section.adv-line:before {
    right: 0;
  }

  section.adv-line .inner .block .right,
section.adv-line .inner .block .left {
    width: 100%;
  }

  section.adv-line .inner .block .left,
section.adv-line .inner .block {
    flex-flow: wrap;
  }

  section.adv-line .inner .block .right a {
    height: 100vw;
  }

  section.adv-line .inner .block .left {
    margin-top: 5vw;
  }

  section.adv-line .inner .block .left .item {
    width: 48%;
    margin-bottom: 8vw;
  }

  section.adv-line .inner .block .left .item .img svg {
    width: 35%;
  }

  section.adv-line .inner .block .left .item .text p.title {
    font-size: 3.2vw;
    margin-bottom: 2vw;
    line-height: 4vw;
  }

  section.adv-line .inner .block .left .item .text p.second {
    font-size: 3vw;
    line-height: 4vw;
  }

  section.adv-line .inner .block .left .item .img span {
    font-size: 4vw;
  }

  section.adv-line .inner {
    padding: 10vw 0;
    box-sizing: border-box;
  }

  section.adv-line .inner h2 {
    text-align: center;
    margin-top: 2vw;
  }
  section.adv-line .inner h2 br {
    display: none;
  }

  section.callback .do-go-away .inner {
    font-size: 3vw;
    padding: 2vw 5vw;
    margin-bottom: 5vw;
  }

  section.callback .do-not-lose img,
section.callback .do-go-away .inner img {
    margin-right: 3vw;
  }

  section.callback {
    margin-top: 15vw;
  }

  section.callback .do-not-lose {
    font-size: 3vw;
  }

  section.callback p.section-heading {
    width: 100%;
  }

  section.callback .keys {
    margin-top: 5vw;
    flex-direction: column;
    align-items: center;
  }

  section.callback .keys .item p.text {
    font-size: 3vw;
    line-height: 3.5vw;
  }

  section.callback .keys .item {
    margin-bottom: 10vw;
  }

  section.callback .keys .item p.ctrl {
    font-size: 5vw;
    padding: 3vw;
  }

  section.callback .keys .item img.phone {
    width: 25vw;
  }

  section.callback .keys .item img.arrow {
    width: 15vw;
  }

  footer .inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  footer .inner .logo-block svg {
    width: 30vw;
  }

  footer .inner .logo-block {
    margin-bottom: 5vw;
  }

  footer {
    padding: 10vw 0;
    font-size: 3.5vw;
    line-height: 5vw;
    color: rgba(255, 255, 255, 0.8);
  }

  footer .inner .nav-block {
    margin-bottom: 5vw;
  }

  .map-block {
    justify-content: space-around;
  }

  .map-block p.map-icon {
    width: 8vw;
    height: 8vw;
  }

  .map-block {
    margin: 10vw 0;
  }

  .map-block .info p {
    font-size: 3vw;
  }

  .messengers-block .items-block a {
    width: 8vw;
    height: 8vw;
    padding: 2vw;
  }

  footer .inner p.title {
    font-size: 4vw;
    margin-bottom: 3vw;
    margin-top: 4vw;
    padding: 2vw 2vw 2vw 6vw;
    box-sizing: border-box;
  }

  .phone-block p.title:before {
    width: 2vw;
    left: 4vw;
    height: 2vw;
  }

  footer .inner .logo-block p {
    line-height: 4vw;
  }

  footer .inner .nav-block ul li a {
    justify-content: center;
    text-align: center;
  }

  footer .inner .nav-block ul li {
    text-align: center;
  }

  .phone-block a {
    font-size: 5vw;
    line-height: 7vw;
  }

  .phone-block .get-callback {
    font-size: 3vw;
  }

  .messengers-block p.title:before {
    width: 2vw;
    height: 2vw;
    left: 9vw;
  }

  footer .rights {
    flex-direction: column;
    text-align: center;
  }

  footer .rights .date {
    margin-top: 2vw;
    font-size: 3vw;
  }

  .modal-form .inner p.title {
    font-size: 5vw;
  }

  .modal-form .inner form input {
    font-size: 3vw;
    padding: 3vw;
    margin-bottom: 2vw;
  }

  .modal-form .inner {
    padding: 8vw;
  }

  .modal-form .inner span.close {
    font-size: 5vw;
    right: 2vw;
  }

  .modal-form .inner p.sub-title {
    font-size: 3vw;
    margin-top: 5vw;
    line-height: 4vw;
    margin-bottom: 5vw;
  }

  .modal-form .inner {
    width: 50vw;
  }
}
