@import url("../fonts/stylesheet.css");
@import url("jquery.fancybox.css");

/*
 *  Remodal - v1.0.3
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  /*  overflow: auto;*/
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  background: #fff;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/*
 *  Remodal - v1.0.3
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation: remodal-overlay-opening-keyframes 0.3s;
  animation: remodal-overlay-opening-keyframes 0.3s;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation: remodal-overlay-closing-keyframes 0.3s;
  animation: remodal-overlay-closing-keyframes 0.3s;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation: remodal-opening-keyframes 0.3s;
  animation: remodal-opening-keyframes 0.3s;
}

.remodal.remodal-is-closing {
  -webkit-animation: remodal-closing-keyframes 0.3s;
  animation: remodal-closing-keyframes 0.3s;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  right: -30px;
  background: none;
  top: -30px;
  border: none;
}

@media (max-width: 760px) {
  .remodal-close {
    right: 0px;
    top: -35px;
  }
}

.remodal-close:hover,
.remodal-close:focus {
  color: #fff;
}

.remodal-close:before,
.remodal-close:after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.remodal-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.remodal-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
  float: right;
  top: 0px;
  position: absolute;
  right: 0px;
  min-width: 50px;
}

#modal2Desc {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.title-remodal {
  font-size: 18px;
  color: #79b302;
  font-family: 'montserratmedium';
  margin-top: 50px;
  margin-bottom: 20px;
}

.remodal form p {
  font-size: 10px;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 450px;
    background: #fff;
  }
}

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

.remodal {
  padding: 30px;
  border-radius: 6px;
}

.modal-title {
  font-size: 22px;
  line-height: 130%;
  font-weight: 600;
  margin-bottom: 25px;
}

.modal-title span {
  font-size: 20px;
  display: block;
  font-weight: 500;
}

.remodal input {
  width: 230px;
  margin: 0px auto;
  height: 45px;
  margin-bottom: 10px;
  display: block;
  border-radius: 5px;
  padding: 0px 10px;
  border: 1px solid #4A4A4A;
  border-radius: 6px;
  font-size: 14px;
}

.remodal button[type='submit'] {
  width: 230px;
  height: 45px;
  font-size: 14px;
  background: #16A4D6;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  border: 1px solid #16A4D6;
  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;
  margin: 0 auto;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.remodal button[type='submit']:hover {
  color: #fff;
  background: #1AC2FF;
}

.modal-form {
  font-size: 12px;
  margin-top: 15px;
  max-width: 300px;
  margin: 15px auto;
}

.modal-form a {
  color: #B589AD;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

* {
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

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

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

::placeholder {
  color: #919191;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: 'Muller', sans-serif;
  font-weight: 400;
  color: #4A4A4A;
  font-size: 14px;
}

input,
textarea {
  font-family: 'Muller', sans-serif;
}

.container {
  max-width: 1200px;
  padding: 0px 15px;
  height: 100%;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .wrapper {
    overflow-x: hidden;
  }
}

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

.jst-btw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.jst-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

img {
  max-width: 100%;
}

p {
  font-size: 16px;
  line-height: 150%;
  color: #141A24;
}

p.text-bold {
  font-weight: 600;
}

.main-section {
  /*background: url(../img/bg-main.jpg) no-repeat center;*/
  background: url(../img/mbg.jpg) no-repeat center;
  background-size: cover;
  min-height: 100vh;
  padding-top: 105px;
  padding-bottom: 40px;
  height: auto;
}

.main-section.balt,
.main-section.projectics {
  background: url(../img/bg-balt.jpg) no-repeat center;
  background-size: cover;
}

.main-section.balt h3,
.main-section.projectics h3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  font-family: 'Muller', sans-serif;
  max-width: 310px;
  margin-bottom: 20px;
}

.main-section.balt h1,
.main-section.projectics h1 {
  max-width: 500px;
  margin: 20px 0px;
}

.main-section.balt .btn,
.main-section.projectics .btn {
  margin-top: 40px;
}

@media (max-width: 760px) {

  .main-section.balt,
  .main-section.projectics {
    padding-top: 100px;
  }
}

.main-section.projectics {
  background: url(../img/bg-projectics.jpg) no-repeat center;
  background-size: cover;
}

.main-section.projectics h3 {
  max-width: 550px;
}

.main-section.projectics h1 {
  max-width: 600px;
}

.main-section.projectics .btn {
  margin-top: 70px;
}

.main-section.projectics p {
  max-width: 560px;
}

.main-section.documentation {
  background: url(../img/bg-balt.jpg) no-repeat center;
  background-size: cover;
}

.main-section.guards {
  background: url(../img/guards-bg.jpg) no-repeat center;
  background-size: cover;
}

.main-section.calculate {
  background: url(../img/bg-main.jpg) no-repeat center;
  background-size: cover;
}

.main-section.calculate h1 {
  max-width: 400px;
}

.main-section.projects h1 {
  max-width: 600px;
}

.main-section.single-project {
  background: url(../img/factory-bg.jpg) no-repeat center;
  background-size: cover;
}

.main-section.single-project h3 {
  max-width: 580px;
  margin-bottom: 20px;
  line-height: 140%;
}

.main-section.single-project h3 span {
  text-transform: none;
  display: block;
}

.main-section.single-project h1 {
  max-width: 680px;
}

.main-section.single-project p {
  font-size: 20px;
  line-height: 26px;
  max-width: 650px;
}

.main-section.single-project h4 {
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 50px;
}

.main-section.single-project .btn {
  margin-top: 50px;
}

.main-section.systems h3 {
  max-width: 400px;
  font-family: 'Muller', sans-serif;
  font-size: 20px;
  line-height: 130%;
}

.main-section.systems h1 {
  max-width: 500px;
}

.main-section.systems h4 {
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
  max-width: 560px;
}

.main-section.systems .btn {
  margin-top: 30px;
}

.main-section.containers {
  background: url(../img/bg-container.jpg) no-repeat center;
  background-size: cover;
}

.main-section.containers h1 {
  margin-top: 50px;
}

.main-section.containers h2 {
  font-size: 16px;
  line-height: 162%;
  text-transform: uppercase;
  color: #FFFFFF;
  max-width: 560px;
  margin: 15px 0px 25px 0px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 460px) {
  .main-section.containers h2 {
    font-size: 14px;
  }
}

.main-section.containers .main-section___content ul {
  margin: 0px;
  padding: 0px;
}

.main-section.containers .main-section___content ul li {
  font-size: 16px;
  line-height: 26px;
  display: block;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.main-section.tech {
  background: url(../img/tech-bg.jpg) no-repeat center;
  background-size: cover;
}

.main-section.tech h3 {
  margin-top: 70px;
}

.main-section.tech h1 {
  max-width: 670px;
}

.main-section.tech h2 {
  margin-top: 60px;
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  color: #FFFFFF;
  max-width: 560px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
}

.main-section.parts {
  background: url(../img/bg-parts.jpg) no-repeat center;
  background-size: cover;
}

.main-section.parts h2 {
  max-width: 530px;
  margin-top: 10px;
}

.main-section.parts h3 {
  margin-bottom: 0px;
}

.main-section.product h1 {
  max-width: 670px;
}

.main-section.glush h3 {
  font-size: 20px;
  line-height: 135%;
  font-family: 'Muller', sans-serif;
  max-width: 630px;
}

.main-section.glush p {
  max-width: 560px;
  font-size: 16px;
  line-height: 160%;
  font-weight: 700;
}

.navigation {
  width: 270px;
  position: absolute;
  top: 0px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.48998);
  color: #fff;
  padding: 17px 20px 47px 0px;
  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;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media (min-width: 760px) {
  .navigation.fixed {
    position: fixed;
  }
}

@media (max-width: 960px) and (min-width: 760px) {
  .navigation {
    width: 240px;
  }
}

@media (max-width: 760px) {
  .navigation {
    left: -100%;
    width: 280px;
    background: black;
    padding: 20px 20px 30px 15px;
  }

  .navigation.active {
    left: 0px;
  }
}

.navigation::after {
  content: '';
  background: rgba(0, 0, 0, 0.48998);
  width: 1000%;
  right: 100%;
  top: 0px;
  height: 100%;
  position: absolute;
}

.btn {
  background: #16A4D6;
  border-radius: 6px;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  padding: 18px 50px 16px 50px;
  -webkit-transition: all .2s;
  transition: all .2s;
  text-decoration: none;
  color: #FFFFFF;
  display: table;
}

.btn.btn-small {
  padding: 10px 30px;
  font-size: 10px;
}

.btn:hover {
  background: #1AC2FF;
}

.main-section___content {
  margin-left: 370px;
  color: #fff;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 80vh;
}

@media (max-width: 760px) {
  .main-section___content {
    height: 70vh;
  }
}

.main-section___content p {
  color: #fff;
}

@media (max-width: 960px) and (min-width: 760px) {
  .main-section___content {
    margin-left: 270px;
  }
}

@media (max-width: 760px) {
  .main-section___content {
    margin-left: auto;
  }
}

.main-section___content h2 {
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
}

.main-section___content h3 {
  font-size: 20px;
  line-height: 120%;
  color: #FFFFFF;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
  font-family: 'TT Days Sans';
}

@media (max-width: 760px) {
  .main-section___content h3 {
    font-size: 18px;
  }
}

.main-section___content h1 {
  font-size: 46px;
  line-height: 120%;
  color: #FFFFFF;
  font-family: 'TT Days Sans';
  text-shadow: 0px 2px 33px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}

@media (max-width: 960px) and (min-width: 760px) {
  .main-section___content h1 {
    font-size: 40px;
  }
}

@media (max-width: 760px) {
  .main-section___content h1 {
    font-size: 24px;
  }
}

.main-section___content .btn {
  margin-top: 80px;
}

.dropdown {
  margin-left: 20px;
  opacity: 0;
  visibility: hidden;
  height: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: none;
}

.dropdown a {
  margin: 12px 0px 0px 0px;
}

.nav-item {
  margin: 15px 0px;
}

.has-dropdows.open>a {
  font-weight: 900;
}

.has-dropdows.open>a::after {
  content: '';
  width: 1px;
  height: 12px;
  background-color: #16A4D6;
  position: absolute;
  top: -2px;
  left: -7px;
  opacity: 1;
}

.has-dropdows.open .dropdown {
  opacity: 1;
  visibility: visible;
  height: auto;
  display: block;
}

.nav-phone {
  font-size: 16px;
  display: table;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  background: url(../img/phone.svg) no-repeat left center;
  padding-left: 19px;
}

.call-back {
  display: table;
  border: 1px solid #16A4D6;
  border-radius: 6px;
  padding: 8px 25px;
  color: #fff;
  margin-top: 15px;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.call-back:hover {
  background: #fff;
  color: #16A4D6;
}

.main-nav {
  margin-top: 50px;
}

.main-nav a {
  font-size: 13px;
  color: #FFFFFF;
  display: table;
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: '';
  width: 1px;
  height: 12px;
  background-color: #16A4D6;
  position: absolute;
  top: -2px;
  left: -7px;
  opacity: 0;
}

.main-nav a.active {
  font-weight: 900;
}

.main-nav a.active::after {
  opacity: 1;
}

.main-nav a:hover::after {
  opacity: 1;
}

.nav-adress {
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 15px;
  background: url(../img/geo.svg) no-repeat left top;
  padding-left: 19px;
  z-index: 2;
  position: relative;
}

@media (min-width: 760px) {
  .nav-adress {
    margin-left: -19px;
  }
}

.nav-adress a {
  font-size: 8px;
  line-height: 9px;
  text-transform: uppercase;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  display: table;
  margin-top: 5px;
  border-bottom: 1px solid transparent;
}

.nav-adress a:hover {
  border-bottom: 1px solid;
}

.nav-mail {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  background: url(../img/mail.svg) no-repeat left center;
  padding-left: 19px;
  z-index: 2;
  position: relative;
}

@media (min-width: 760px) {
  .nav-mail {
    margin-left: -19px;
  }
}

.we-doing {
  margin: 100px 0px;
}

@media (max-width: 760px) {
  .we-doing {
    margin: 60px 0px;
  }
}

.title {
  font-size: 34px;
  line-height: 140%;
  color: #141A24;
  text-transform: uppercase;
  font-family: 'TT Days Sans';
}

@media (max-width: 760px) {
  .title {
    font-size: 24px;
  }
}

.alter-text {
  max-width: 850px;
  margin: 30px 0px;
}

@media (max-width: 760px) {
  .alter-text {
    margin: 20px 0px;
  }
}

.we-doing__list {
  margin-top: 80px;
}

@media (max-width: 760px) {
  .we-doing__list {
    margin-top: 35px;
  }
}

.we-doing__item {
  background: #FFFFFF;
  -webkit-box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  width: 48%;
  padding: 35px 45px;
  position: relative;
}

@media (max-width: 960px) and (min-width: 760px) {
  .we-doing__item {
    width: 48%;
  }
}

@media (max-width: 760px) {
  .we-doing__item {
    width: 100%;
    padding: 25px 15px;
    margin-bottom: 20px;
  }
}

.we-doing__item p {
  position: relative;
  z-index: 2;
}

.we-doing__item .btn {
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .we-doing__item .btn {
    margin-top: 30px;
  }
}

.we-doing__title {
  font-size: 22px;
  line-height: 120%;
  font-family: 'TT Days Sans';
  color: #141A24;
  margin-bottom: 25px;
  min-height: 52px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.we-doing__img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 70%;
  z-index: 0;
}

.we-doing__img img {
  width: 100%;
  display: block;
}

.factory {
  background: #141A24;
  padding: 80px 0px;
  color: #fff;
}

@media (max-width: 760px) {
  .factory {
    padding: 50px 0px;
  }
}

.factory .title {
  color: #fff;
  margin-bottom: 38px;
}

@media (max-width: 760px) {
  .factory .title {
    margin-bottom: 20px;
  }
}

.factory h3 {
  font-size: 20px;
  line-height: 135%;
  color: #16A4D6;
  font-family: 'TT Days Sans';
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .factory h3 {
    font-size: 18px;
  }
}

.factory h2 {
  font-size: 20px;
  line-height: 135%;
  color: #fff;
  font-family: 'TT Days Sans';
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .factory h2 {
    font-size: 18px;
  }
}

.factory img {
  margin-bottom: 20px;
}

.factory p {
  color: #fff;
}

.factory__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.factory__col {
  width: 48%;
}

@media (max-width: 760px) {
  .factory__col {
    width: 100%;
    margin-bottom: 20px;
  }

  .factory__col:last-child {
    margin-bottom: 0px;
  }
}

.factory a {
  color: #fff;
}

.factory a:hover {
  text-decoration: none;
}

.stations {
  padding: 120px 0px 80px 0px;
  background: url(../img/bg-2.jpg) no-repeat center;
  background-size: cover;
}

@media (max-width: 760px) {
  .stations {
    padding: 70px 0px 50px 0px;
  }
}

.stations .title {
  font-size: 22px;
  max-width: 430px;
  color: #141A24;
}

.stations .btn {
  margin-top: 30px;
}

.stations__list {
  margin-top: 115px;
}

@media (max-width: 760px) {
  .stations__list {
    margin-top: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .stations__list .stations__item {
    width: 45%;
    margin-bottom: 20px;
  }
}

.stations__nom {
  font-size: 50px;
  font-family: 'TT Days Sans';
  color: #141A24;
}

@media (max-width: 760px) {
  .stations__nom {
    font-size: 30px;
  }
}

.stations__p {
  font-size: 22px;
  font-weight: 700;
  color: #141A24;
  line-height: 135%;
}

@media (max-width: 960px) and (min-width: 760px) {
  .stations__p {
    font-size: 20px;
  }
}

@media (max-width: 760px) {
  .stations__p {
    font-size: 18px;
  }
}

.guards {
  padding: 100px 0px;
}

@media (max-width: 760px) {
  .guards {
    padding: 60px 0px;
  }
}

.guards__list {
  margin-top: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 70px;
}

@media (max-width: 760px) {
  .guards__list {
    margin-top: 40px;
    grid-column-gap: 10px;
    grid-row-gap: 30px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .guards__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 20px;
  }
}

.guards__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}

.guards__item:hover {
  opacity: 0.85;
}

.guards__item p {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  color: #141A24;
}

@media (max-width: 960px) and (min-width: 760px) {
  .guards__item p {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .guards__item p {
    font-size: 16px;
  }
}

@media (max-width: 460px) {
  .guards__item p {
    font-size: 20px;
  }
}

.guards__icon {
  margin-right: 20px;
}

@media (max-width: 760px) {
  .guards__icon {
    min-width: 50px;
    margin-right: 10px;
  }
}

.pror {
  background: url(../img/bg-3.jpg) no-repeat center;
  background-size: cover;
  padding: 40px 50px;
  -webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

@media (max-width: 760px) {
  .pror {
    padding: 20px 15px;
  }
}

.pror .title {
  max-width: 600px;
}

.pror .alter-text {
  max-width: 730px;
}

.pror__desrc {
  font-size: 22px;
  line-height: 130%;
  font-weight: 700;
  color: #16A4D6;
  margin-bottom: 10px;
}

@media (max-width: 760px) {
  .pror__desrc {
    font-size: 18px;
  }
}

.video {
  margin: 100px 0px;
}

@media (max-width: 760px) {
  .video {
    margin: 60px 0px;
  }
}

.after-title {
  font-size: 22px;
  line-height: 130%;
  text-transform: uppercase;
  color: #16A4D6;
  margin-top: 10px;
  font-family: 'TT Days Sans';
}

@media (max-width: 760px) {
  .after-title {
    font-size: 18px;
  }
}

.video__list {
  margin-top: 50px;
}

@media (max-width: 760px) {
  .video__list {
    margin-top: 30px;
  }
}

.video__item {
  cursor: pointer;
  position: relative;
}

.video__item::after {
  content: '';
  background: url(../img/play-button.svg) no-repeat;
  background-size: cover;
  width: 70px;
  height: 70px;
  position: absolute;
  left: 50%;
  margin-left: -35px;
  top: 70px;
}

.video__item:hover {
  opacity: 0.8;
}

.video__item img {
  width: 100%;
}

.video__item p {
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: #141A24;
}

@media (min-width: 760px) {
  .video__item {
    width: 32%;
    margin-right: 2%;
  }

  .video__item:nth-child(3n) {
    margin-right: 0px;
  }
}

@media (max-width: 760px) {
  .video__item {
    width: 48%;
    margin-bottom: 20px;
    margin-right: 3%;
  }

  .video__item:nth-child(2n) {
    margin-right: 0px;
  }
}

@media (max-width: 460px) {
  .video__item {
    width: 100%;
    margin-right: 0px;
  }
}

.footer {
  padding: 45px 0px 70px 0px;
  color: #fff;
  background: #141A24;
}

@media (max-width: 760px) {
  .footer {
    padding: 30px 0px 40px 0px;
  }
}

.footer .title {
  color: #fff;
  margin: 10px 0px 20px 0px;
}

.footer p {
  color: #fff;
  max-width: 350px;
}

.footer__contacts {
  margin-top: 70px;
}

@media (max-width: 760px) {
  .footer__contacts {
    margin-top: 40px;
  }
}

.footer__contacts__item {
  margin-right: 70px;
}

.footer__contacts__item div {
  font-size: 22px;
  line-height: 120%;
  color: #16A4D6;
  font-weight: 700;
}

@media (max-width: 760px) {
  .footer__contacts__item div {
    font-size: 18px;
  }
}

.nav-header {
  display: none;
  position: absolute;
  width: calc(100% - 30px);
  top: 5px;
}

@media (max-width: 760px) {
  .nav-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.toggler__menu:hover {
  opacity: 0.8;
}

@media (max-width: 760px) {
  .toggler__menu {
    margin-right: 0px;
    position: absolute;
    height: 25px;
    width: 30px;
    top: 37px;
    right: 0px;
    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;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    margin-right: 14px;
  }
}

.toggler__menu.active span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  height: 2px;
}

.toggler__menu.active span:after {
  top: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  height: 2px;
}

.toggler__menu.active span:before {
  top: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  height: 2px;
}

.toggler__menu span {
  display: block;
  position: absolute;
  width: 30px;
  height: 4px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
}

@media (max-width: 760px) {
  .toggler__menu span {
    background-color: #27B7E3;
  }
}

.toggler__menu span::after,
.toggler__menu span::before {
  display: block;
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: #fff;
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
  border-radius: 10px;
}

@media (max-width: 760px) {

  .toggler__menu span::after,
  .toggler__menu span::before {
    background-color: #27B7E3;
  }
}

.toggler__menu span::before {
  content: '';
  top: -8px;
}

.toggler__menu span::after {
  content: '';
  top: 8px;
}

.documentation__block {
  margin: 40px 0px 100px 0px;
}

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

.documentation__item {
  width: 31%;
  margin-right: 3%;
  background: #FFFFFF;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-bottom: 40px;
  text-decoration: none;
  padding-bottom: 20px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media (max-width: 860px) {
  .documentation__item {
    width: 48%;
  }
}

@media (max-width: 560px) {
  .documentation__item {
    width: 100%;
    margin-right: 0px;
  }
}

.documentation__item:hover {
  -webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
}

.documentation__item p {
  font-size: 10px;
  line-height: 160%;
  color: #141A24;
  margin: 10px 20px 10px 20px;
}

.documentation__item .date {
  margin: 10px 20px 10px 20px;
  font-size: 12px;
  color: #141A24;
}

.documentation__item:nth-child(3n) {
  margin-right: 0px;
}

.documentation__item__img {
  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;
  height: 200px;
}

.documentation__title {
  margin: 30px 20px 10px 20px;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: #141A24;
}

.type-works {
  margin: 100px 0px;
}

@media (max-width: 760px) {
  .type-works {
    margin: 60px 0px;
  }
}

.type-works .we-doing__img {
  width: 55%;
}

.type-works .we-doing__img.logo-only {
  width: 50px;
  top: 25px;
  right: 30px;
}

.type-works__p {
  max-width: 500px;
  margin-top: 15px;
  font-size: 18px;
  line-height: 145%;
  color: #141A24;
}

.type-works__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 20px;
  margin-top: 55px;
}

@media (max-width: 760px) {
  .type-works__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.type-works__item {
  background: #FFFFFF;
  -webkit-box-shadow: 2px 12px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 12px 20px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  position: relative;
  padding: 12px 30px 12px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 760px) {
  .type-works__item {
    display: block;
  }
}

.type-works__item:hover {
  -webkit-box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.3);
}

.type-works__item p {
  max-width: calc(100% - 60px);
}

@media (max-width: 760px) {
  .type-works__item p {
    max-width: 100%;
  }
}

.type-works__item::after {
  content: '';
  border: 15px solid transparent;
  border-right-color: #FFFFFF;
  border-left: 0;
  position: absolute;
  left: -7px;
  top: 50%;
  margin-top: -15px;
}

.factory ul {
  margin: 0px;
  padding: 0px;
}

.factory ul li {
  font-size: 16px;
  line-height: 150%;
  display: block;
  position: relative;
}

.factory ul li::after {
  content: '';
  position: absolute;
  left: -28px;
  top: 2px;
  background: url(../img/gal.svg) no-repeat;
  background-size: 17px 17px;
  width: 17px;
  height: 17px;
}

.factory ul.clas-list li {
  display: list-item;
  margin-bottom: 15px;
}

.factory ul.clas-list li::after {
  display: none;
}

.white-line {
  width: 100%;
  height: 20px;
  background: #fff;
}

.catalog__filter {
  background: #FFFFFF;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 30px 5px 20px 24px;
  max-width: 260px;
  width: 100%;
}

@media (max-width: 760px) {
  .catalog__filter {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

.catalog__filter__title {
  font-size: 12px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 700;
  margin-bottom: 20px;
}

.filter__row__line {
  margin-bottom: 60px;
}

.filter__row__line label span {
  font-size: 10px;
}

.catalog__container {
  margin: 40px auto 100px auto;
}

@media (max-width: 960px) {
  .catalog__container {
    margin: 60px 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.j-checkbox,
.j-radio {
  position: relative;
  cursor: pointer;
  padding-left: 0px;
  display: block;
  width: auto;
  margin-right: 19px;
  margin-bottom: 16px;
}

@media (max-width: 760px) {

  .j-checkbox,
  .j-radio {
    max-width: 100%;
  }
}

.j-checkbox:before,
.j-radio:before {
  content: '';
  position: absolute;
  top: 1px;
  left: -12px;
  width: 11px;
  height: 11px;
  background: #fff;
  border: 1px solid #D8D8D8;
  border-radius: 50%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.j-checkbox:after,
.j-radio:after {
  content: '';
  position: absolute;
  background: #16A4D6;
  top: 3px;
  left: -10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.j-checkbox input,
.j-radio input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  cursor: pointer;
}

.j-checkbox span,
.j-radio span {
  font-weight: 400;
  font-size: 12px;
  color: #0E2B44;
  padding-top: 2px;
  display: block;
  margin-left: 3px;
}

.j-checkbox span a,
.j-radio span a {
  font-weight: 500;
  color: #48C774;
  border-bottom: 1px solid;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.j-checkbox span a:hover,
.j-radio span a:hover {
  border-bottom: 1px solid transparent;
}

.j-checkbox.active::after,
.j-radio.active::after {
  opacity: 1;
}

.catalog__filter__row {
  margin-bottom: 40px;
}

@media (max-width: 760px) {
  .catalog__filter__row {
    margin-bottom: 20px;
  }
}

.catalog__filter__row:last-child {
  margin-bottom: 0px;
}

.filter__block .j-checkbox {
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 760px) {
  .filter__block .j-checkbox {
    display: inline-block;
  }
}

.filter__btns .btn {
  padding: 12px 25px;
  font-size: 10px;
}

.filter__btns .btn-cancel {
  padding: 12px 25px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
}

.filter__btns .btn-cancel:hover {
  text-decoration: underline;
}

.catalog__list {
  width: calc(100% - 300px);
}

.catalog__list.fullwidth {
  width: 100%;
}

@media (max-width: 760px) {
  .catalog__list {
    width: 100%;
  }
}

.catalog__container {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product__item {
  padding: 20px 0px 10px 15px;
  margin-bottom: 30px;
  text-decoration: none;
  color: #4A4A4A;
}

.product__item:hover {
  background: #FFFFFF;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

@media (max-width: 1000px) {
  .product__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #f2f2f2;
  }
}

.product__item__info {
  width: calc(100% - 275px);
}

@media (max-width: 1000px) {
  .product__item__info {
    width: 100%;
    margin-top: 15px;
  }
}

.product__item__info .btn {
  font-size: 10px;
  padding: 12px 45px;
}

@media (min-width: 760px) and (max-width: 1000px) {
  .product__item__info .btn {
    width: 100%;
    padding: 12px 20px;
  }
}

.product__item__info h4 {
  margin: 0px;
  font-size: 18px;
  line-height: 135%;
  color: #000000;
  margin-bottom: 25px;
}

.product__item__img {
  max-width: 245px;
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product__item__img img {
  max-width: 245px;
  max-height: 190px;
}

@media (min-width: 760px) and (max-width: 1000px) {
  .product__item__i {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 460px) {
  .product__item__i {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.product__item__pt {
  width: 145px;
  margin-right: 55px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 760px) and (max-width: 1000px) {
  .product__item__pt {
    width: 30%;
    margin-right: 0px;
  }
}

@media (max-width: 460px) {
  .product__item__pt {
    width: 45%;
    margin-right: 0px;
  }
}

.product__item__pt .product__item__pt-text .product__item__pt-name {
  font-size: 14px;
  font-weight: 700;
}

.product__item__pt .product__item__pt-text p {
  font-size: 10px;
  line-height: 16px;
  margin: 5px 0px 0px 0px;
}

.product__item__pt>span {
  min-width: 23px;
}

@media (min-width: 760px) {
  .product__item__pt:nth-child(3n) {
    margin-right: 0px;
  }
}

.pagination {
  background: #FFFFFF;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 15px 100px;
  display: table;
}

.pagination a {
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #9B9B9B;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin: 0px 5px;
}

.pagination a:hover {
  text-decoration: underline;
}

.pagination a.active {
  color: #16A4D6;
}

.filter__w-input {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 135%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.filter__w-input input {
  border: none;
  border-bottom: 1px solid #979797;
  width: 45px;
  height: 15px;
  font-size: 12px;
  display: table;
  margin-top: 4px;
}

.filter__line {
  margin-bottom: -16px;
}

.calculate-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #FFFFFF;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 40px 15px;
}

.calculate-list .calculate__img {
  width: 245px;
}

.calculate-list .calculate__img img {
  max-width: 100%;
}

.calculate-list .calculate__info {
  width: calc(100% - 280px);
}

@media (max-width: 960px) {
  .calculate-list .calculate__info {
    width: 100%;
    margin-top: 20px;
  }
}

.calculate-list .calculate__title {
  font-size: 18px;
  line-height: 140%;
  color: #000000;
  margin-bottom: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .calculate-list .calculate__title {
    font-size: 16px;
  }
}

.calculate-list .calculate__row {
  margin-bottom: 40px;
}

.calculate-list .calculate__row__title {
  font-size: 14px;
  line-height: 150%;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 25px;
}

.calculate-list .calculate__table {
  width: 100%;
  max-width: 450px;
}

@media (max-width: 760px) {
  .calculate-list .calculate__table {
    font-size: 12px;
  }
}

.calculate-list .calculate__table tr td:first-child {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  min-height: 30px;
  color: #000000;
  width: 60%;
  padding: 2px 10px 2px 0px;
}

@media (max-width: 760px) {
  .calculate-list .calculate__table tr td:first-child {
    width: 70%;
  }
}

.blue-text {
  color: #16A4D6 !important;
}

.blue-text.big-font {
  font-size: 18px !important;
  line-height: 24px;
  font-weight: 700;
}

.calcutate-summ {
  border: 2px solid #16A4D6;
  border-radius: 4px;
  padding: 15px 30px;
  max-width: 480px;
  width: 100%;
  margin-left: -30px;
}

@media (max-width: 960px) {
  .calcutate-summ {
    margin-left: 0px;
    padding: 15px;
  }
}

.calculate-alert {
  font-style: italic;
  margin-top: 15px;
}

.calculate-summ-itog {
  padding-top: 20px !important;
}

.projects-container {
  margin: 40px 0px 100px 0px;
}

.projects__list {
  margin-top: 40px;
}

.projects__item {
  width: 31%;
  margin-right: 3%;
  background: #FFFFFF;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-bottom: 30px;
}

@media (max-width: 960px) {
  .projects__item {
    width: 48%;
    margin-right: 4%;
  }
}

@media (max-width: 600px) {
  .projects__item {
    width: 100%;
    margin-right: 0px;
  }
}

@media (min-width: 600px) and (max-width: 960px) {
  .projects__item:nth-child(2n) {
    margin-right: 0px;
  }
}

@media (min-width: 960px) {
  .projects__item:nth-child(3n) {
    margin-right: 0px;
  }
}

.projects__item .btn {
  margin: 10px 20px 20px 30px;
}

.projects__img img {
  border-radius: 6px;
  width: 100%;
}

.projects__name {
  font-size: 16px;
  line-height: 150%;
  color: #141A24;
  margin: 20px 20px 10px 30px;
  min-height: 55px;
}

.slider-factory {
  position: relative;
  margin: 30px 0px;
}

.slider-factory img {
  display: block;
  margin: 0px;
}

.slick-prev {
  position: absolute;
  left: 0px;
  bottom: 4px;
  background: url(../img/arr-left.svg) no-repeat center #fff;
  border-radius: 6px;
  width: 40px;
  font-size: 0px;
  height: 40px;
  border: none;
  z-index: 2;
  cursor: pointer;
}

.slick-next {
  position: absolute;
  left: 48px;
  bottom: 4px;
  background: url(../img/arr-right.png) no-repeat center #fff;
  font-size: 0px;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  border: none;
  z-index: 2;
  cursor: pointer;
}

.variants-system {
  background: url(../img/bg-system-2.jpg) no-repeat right;
  background-size: contain;
  -webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 60px 20px 40px 60px;
}

@media (max-width: 760px) {
  .variants-system {
    padding: 30px 15px 20px 15px;
    background: #fff;
  }
}

.variants-system ul {
  margin: 0px;
  padding: 0px;
}

@media (max-width: 760px) {
  .variants-system ul {
    margin-left: 15px;
  }
}

.variants-system ul li {
  font-size: 16px;
  line-height: 150%;
  color: #141A24;
  margin-bottom: 16px;
}

.we-doing__after__title {
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: 35px;
}

.we-doing__systems .we-doing__title {
  min-height: auto;
  margin-bottom: 15px;
  margin-left: 35px;
}

.we-doing__systems ul {
  margin: 0px;
  padding: 0px;
  padding-left: 20px;
  list-style: disc inside armenian;
}

.we-doing__systems ul li {
  font-size: 16px;
  line-height: 150%;
  color: #141A24;
}

.we-doing__systems .we-doing__item {
  padding: 35px 45px 35px 20px;
}

@media (min-width: 760px) {
  .we-doing__head {
    min-height: 110px;
  }
}

.system-out {
  background: url(../img/bg-1-systems.jpg) no-repeat center;
  background-size: cover;
  padding: 60px 0px;
  color: #fff;
}

@media (max-width: 760px) {
  .system-out {
    padding: 40px 0px;
  }
}

.system-out .title {
  color: #fff;
  max-width: 660px;
}

.system-out h3 {
  font-size: 20px;
  line-height: 130%;
  color: #16A4D6;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 760px) {
  .system-out h3 {
    font-size: 16px;
  }
}

.text-2columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.text-colum {
  width: 48%;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
}

@media (max-width: 760px) {
  .text-colum {
    width: 100%;
  }
}

.text-colum ul {
  margin: 0px;
  padding: 0px;
}

@media (max-width: 760px) {
  .text-colum ul {
    margin-left: 15px;
  }
}

.text-colum ul li {
  margin-bottom: 16px;
}

.text-colum p:last-child {
  margin-bottom: 0px;
}

.simple-text {
  margin: 40px 0px 80px 0px;
}

@media (max-width: 760px) {
  .simple-text {
    margin: 50px 0px;
  }
}

.simple-text__row {
  margin-bottom: 50px;
}

@media (max-width: 760px) {
  .simple-text__row {
    margin-bottom: 25px;
  }
}

.simple-text__row h2 {
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
  color: #16A4D6;
  max-width: 760px;
}

@media (max-width: 760px) {
  .simple-text__row h2 {
    font-size: 16px;
  }
}

.simple-text__row:last-child {
  margin-bottom: 0px;
}

.simple-text__row ul {
  margin: 0px;
  padding: 0px;
}

@media (max-width: 760px) {
  .simple-text__row ul {
    margin-left: 15px;
  }
}

.simple-text__row ul li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 150%;
  color: #141A24;
}

.containers__why {
  background: #141A24;
  padding: 20px 0px 40px 0px;
  color: #fff;
}

.containers__why__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 90px;
  grid-row-gap: 100px;
  margin-bottom: 70px;
}

@media (max-width: 960px) {
  .containers__why__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-bottom: 30px;
  }
}

@media (max-width: 460px) {
  .containers__why__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    margin-bottom: 30px;
  }
}

.containers__why__item h5 {
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0px;
}

.containers__why p {
  font-size: 16px;
  line-height: 160%;
  color: #FFFFFF;
}

.containers__why .title {
  color: #fff;
  margin-bottom: 40px;
}

@media (max-width: 960px) {
  .models__table {
    overflow: auto;
  }
}

.models__table table {
  border-collapse: collapse;
}

.models__table table tr th {
  font-size: 18px;
  line-height: 145%;
  text-align: center;
  color: #16A4D6;
  padding: 11px 0px;
  border-bottom: 1px solid #979797;
}

@media (max-width: 760px) {
  .models__table table tr th {
    font-size: 16px;
    padding: 11px 15px;
  }
}

.models__table table tr th:first-child {
  text-align: left;
}

.models__table table tr td {
  border-bottom: 1px solid #979797;
  padding: 11px 0px;
  font-size: 16px;
  text-align: center;
}

.models__table table tr td:first-child {
  text-align: left;
}

.models__table table tr:last-child td {
  border: none;
}

.container__shems {
  margin: 80px 0px;
}

@media (max-width: 960px) {
  .container__shems {
    margin: 60px 0px;
  }
}

.container__shems__item {
  margin-bottom: 80px;
}

@media (max-width: 760px) {
  .container__shems__item {
    margin-bottom: 50px;
  }
}

.container__shems__item:last-child {
  margin-bottom: 0px;
}

.container__shems__item .title {
  margin-bottom: 50px;
  font-size: 22px;
  line-height: 120%;
  color: #141A24;
}

@media (max-width: 760px) {
  .container__shems__item .title {
    margin-bottom: 30px;
    font-size: 18px;
  }
}

.container__shems__item img {
  max-width: 100%;
}

.complactations {
  margin: 100px 0px;
}

@media (max-width: 960px) {
  .complactations {
    margin: 60px 0px;
  }

  .complactations .container {
    padding: 0px;
    margin: 60px 0px;
  }
}

.complactations .title {
  font-size: 22px;
  line-height: 120%;
  color: #141A24;
  margin-bottom: 40px;
}

@media (max-width: 960px) {
  .complactations .title {
    padding: 0px 15px;
    font-size: 18px;
  }
}

@media (max-width: 960px) {
  .complactations__over {
    overflow: auto;
  }
}

.complactations__table {
  min-width: 700px;
}

@media (max-width: 960px) {
  .complactations__table {
    padding: 0px 15px;
  }
}

.complactations__table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.complactations__table table.table-head {
  margin-bottom: 0px;
}

.complactations__table table tr th {
  font-size: 18px;
  line-height: 145%;
  text-align: center;
  color: #16A4D6;
  padding: 11px 0px;
}

@media (max-width: 960px) {
  .complactations__table table tr th {
    font-size: 16px;
  }
}

.complactations__table table tr th:first-child {
  width: 40%;
}

.complactations__table table tr th:nth-child(2) {
  width: 30%;
}

.complactations__table table tr th:nth-child(3) {
  width: 30%;
}

.complactations__table table td {
  font-size: 16px;
  line-height: 160%;
  font-weight: 700;
  padding: 12px 30px;
  color: #4A4A4A;
  text-align: center;
}

.complactations__table table td:first-child {
  text-align: left;
}

.complactations__table table td img {
  display: block;
  margin: 0 auto;
}

.complactations__table__content tr:first-child {
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  color: #4A4A4A;
}

.complactations__table__content tr:first-child td {
  padding: 10px 10px 20px 0px;
}

.complactations__table__content tr:nth-child(2n) td {
  background: #EFEFEF;
}

.complactations__table__content tr td:first-child {
  width: 40%;
}

.complactations__table__content tr td:nth-child(2) {
  width: 30%;
}

.complactations__table__content tr td:nth-child(3) {
  width: 30%;
}

.containers__options {
  margin: 100px 0px;
}

@media (max-width: 960px) {
  .containers__options {
    margin: 60px 0px;
  }

  .containers__options .container {
    padding: 0px;
  }
}

.containers__options .title {
  font-size: 22px;
  line-height: 120%;
  color: #141A24;
  margin-bottom: 40px;
}

@media (max-width: 760px) {
  .containers__options .title {
    padding: 0px 15px;
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.containers__options__table {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

@media (max-width: 960px) {
  .containers__options__table {
    overflow: auto;
    padding: 0px 15px;
  }
}

.containers__options__table div {
  padding: 15px 20px;
  font-size: 16px;
  line-height: 160%;
  color: #4A4A4A;
  border: 1px solid #979797;
  border-top: none;
  border-left: none;
}

.containers__options__table div:nth-child(3n) {
  border-right: none;
}

.containers__options__table div.containers__options__head {
  background: #16A4D6;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  border: none;
  line-height: initial;
  font-weight: 700;
  padding: 15px 20px 12px 20px;
}

.containers__options__table__2n {
  width: 66.66%;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 960px) {
  .containers__options__table__2n {
    width: 100%;
  }
}

.containers__options__table__2n div:nth-child(3n) {
  border-right: 1px solid #979797;
}

.containers__trans {
  margin: 100px 0px;
}

.containers__trans .title {
  font-size: 22px;
  line-height: 120%;
  color: #141A24;
  margin-bottom: 60px;
  margin-top: 60px;
}

@media (max-width: 760px) {
  .containers__trans .title {
    margin: 0px 0px 30px 0px;
    font-size: 18px;
  }
}

.containers__trans p {
  margin-bottom: 60px;
  max-width: 490px;
}

@media (max-width: 760px) {
  .containers__trans p {
    margin-bottom: 20px;
  }
}

.containers__trans p:last-child {
  margin-bottom: 0px;
}

.containers__trans img {
  margin-bottom: 50px;
}

@media (max-width: 760px) {
  .containers__trans img {
    margin-bottom: 0px;
    margin-top: 20px;
  }
}

.containers__trans img:last-child {
  margin-bottom: 0px;
}

.containers__options__over {
  margin-bottom: 100px;
}

@media (max-width: 960px) {
  .containers__options__over {
    margin-bottom: 60px;
    overflow: auto;
  }
}

.containers__options__over:last-child {
  margin-bottom: 0px;
}

.tech-content {
  margin: 40px 0px 100px 0px;
}

@media (max-width: 760px) {
  .tech-content {
    margin: 60px 0px;
  }
}

.tech-content .tech-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tech-content .tech-content__item {
  width: 48%;
}

@media (max-width: 760px) {
  .tech-content .tech-content__item {
    width: 100%;
  }
}

.tech-content .tech-content__item .title {
  color: #4A4A4A;
}

.awg-popup,
.awg-popup-modal {
  display: none;
  opacity: 1;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.awg-popup__content,
.awg-popup-modal__content {
  max-width: 760px;
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 760px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.awg-popup__close,
.awg-popup-modal__close {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  right: -30px;
  top: -30px;
}

.awg-popup__close:before,
.awg-popup__close:after,
.awg-popup-modal__close:before,
.awg-popup-modal__close:after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.awg-popup__close:before,
.awg-popup-modal__close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.awg-popup__close:after,
.awg-popup-modal__close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.awg-popup__video,
.awg-popup-modal__video {
  padding-top: 56.25%;
  position: relative;
}

.awg-popup__video iframe,
.awg-popup-modal__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.awg-popup__close-mob {
  display: none;
}

@media (max-width: 760px) {
  .awg-popup__close-mob {
    background: #76BC21;
    border-radius: 2px;
    max-width: 390px;
    margin: 10px auto;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #FFFFFF;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 45px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    bottom: -90px;
  }
}

.awg-popup-modal .awg-popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 760px) {
  .awg-popup-modal .awg-popup__content {
    width: calc(100% - 30px);
    max-height: calc(100% - 140px);
    margin-top: -30px;
    height: auto;
  }
}

@media (min-width: 760px) {
  .awg-popup-modal .awg-popup__content {
    max-height: 500px;
  }
}

.awg-popup-modal .awg-popup__content .awg-popup__close {
  position: relative;
  top: -5px;
}

.awg-popup-modal .awg-popup__content .awg-popup__text {
  overflow: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  -webkit-overflow-scrolling: touch;
}

.awg-popup-modal .awg-popup__content .awg-popup__text-content {
  padding: 25px 28px;
  background: #fff;
  border-radius: 2px;
  height: 100%;
  position: relative;
  padding-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

.awg-popup-modal .awg-popup__content .awg-popup__text-content>*:last-child {
  padding-bottom: 25px;
}

@media (max-width: 760px) {
  .awg-popup-modal .awg-popup__content .awg-popup__close {
    display: none;
  }
}

.parts-container {
  margin: 40px 0px 100px 0px;
}

.parts-container .title {
  color: #4A4A4A;
}

.parts-container .text-colum {
  color: #4A4A4A;
}

@media (max-width: 760px) {
  .parts-container .text-colum:first-child {
    margin-bottom: 25px;
  }
}

.parts-container .text-colum ul li {
  margin-bottom: 10px;
}

.parts-container h2 {
  font-size: 22px;
  line-height: 120%;
  text-transform: uppercase;
  font-weight: 700;
  color: #4A4A4A;
  font-family: 'TT Days Sans';
}

@media (min-width: 760px) {
  .parts-container h2 {
    min-height: 78px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.parts-container .text-2columns {
  margin-bottom: 80px;
}

@media (max-width: 760px) {
  .parts-container .text-2columns {
    margin-bottom: 40px;
  }
}

.parts-container .text-2columns:last-child {
  margin-bottom: 0px;
}

.product-main__imgs__item {
  margin: 15px 10px;
  max-width: 30%;
}

.product-main__imgs__item img {
  min-width: 70px;
  border-radius: 8px;
}

.product-main {
  margin: 60px 0px 60px 0px;
}

@media (max-width: 760px) {
  .product-main {
    margin: 60px 0px;
  }
}

.product-main__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-main__content img {
  max-width: 100%;
  border-radius: 8px;
}

.product-main__img {
  width: 48%;
}

@media (max-width: 760px) {
  .product-main__img {
    width: 100%;
    margin-bottom: 0px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.product-main__info {
  width: 48%;
}

@media (max-width: 760px) {
  .product-main__info {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px;
  }
}

.product-main__info h2 {
  font-size: 22px;
  line-height: 120%;
  margin: 0px;
  font-family: 'TT Days Sans';
  font-weight: 700;
  color: #4A4A4A;
  text-transform: uppercase;
}

.product-main__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-main__des {
  margin-top: 10px;
  font-size: 16px;
}

.product-main__info__list {
  margin-top: 30px;
}

.product-main__info__list h4 {
  font-size: 12px;
  text-transform: uppercase;
  color: #000000;
  margin-top: 0px;
  margin-bottom: 10px;
}

.product-main__info__list ul {
  margin: 0px;
  padding: 0px;
  margin-left: 25px;
}

.product-main__info__list ul li {
  font-size: 14px;
  line-height: 170%;
  color: #000000;
  display: block;
  position: relative;
}

.product-main__info__list ul li::after {
  content: '';
  background: #D8D8D8;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: 6px;
}

.product-row {
  margin: 70px 0px;
}

@media (max-width: 760px) {
  .product-row {
    margin: 40px 0px;
  }
}

.product-row h2 {
  font-size: 22px;
  line-height: 120%;
  color: #4A4A4A;
  text-transform: uppercase;
  margin: 0px 0px 40px 0px;
  font-family: 'TT Days Sans';
}

@media (max-width: 760px) {
  .product-row h2 {
    font-size: 18px;
    margin: 0px 0px 20px 0px;
  }
}

.custom-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.custom-table table.table-head {
  margin-bottom: 0px;
}

.custom-table table tr:nth-child(2n-1) td {
  background: #EFEFEF;
}

.custom-table table td {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  padding: 12px 30px;
  color: #4A4A4A;
}

@media (max-width: 460px) {
  .custom-table table td {
    font-size: 14px;
    padding: 6px 15px;
  }
}

.custom-table table td:first-child {
  text-align: left;
  font-weight: 700;
}

.custom-table table td img {
  display: block;
  margin: 0 auto;
}

.product-row__2columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-row__colum {
  width: 48%;
}

@media (max-width: 760px) {
  .product-row__colum {
    width: 100%;
    margin-bottom: 25px;
  }

  .product-row__colum:last-child {
    margin-bottom: 0px;
  }
}

.product-row__colum h4 {
  font-size: 22px;
}

.product-row__colum img {
  margin-bottom: 30px;
}

@media (max-width: 760px) {
  .product-row__colum img {
    margin-bottom: 0px;
  }
}

.product-row__colum h5 {
  margin: 40px 0px 15px 0px;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 130%;
}

.product-row__colum ul {
  margin: 0px 0px 0px 20px;
  padding: 0px;
}

.product-row__colum ul li {
  font-size: 16px;
  line-height: 150%;
}

.about-section___content {
  margin-left: 370px;
  color: #fff;
}

@media (max-width: 960px) and (min-width: 760px) {
  .about-section___content {
    margin-left: 270px;
  }
}

@media (max-width: 760px) {
  .about-section___content {
    margin-left: auto;
  }
}

.about-section {
  background: #141A24;
  color: #fff;
  padding-top: 180px;
}

@media (max-width: 760px) {
  .about-section {
    padding-top: 100px;
  }
}

.about-section h1 {
  font-size: 46px;
  font-family: 'TT Days Sans';
  text-transform: uppercase;
  line-height: 55px;
}

@media (max-width: 760px) {
  .about-section h1 {
    font-size: 24px;
  }
}

.about-section .footer {
  padding-left: 360px;
}

@media (max-width: 960px) and (min-width: 760px) {
  .about-section .footer {
    padding-left: 270px;
  }
}

@media (max-width: 760px) {
  .about-section .footer {
    padding-left: 0px;
  }

  .about-section .footer .container {
    padding: 0px;
  }
}

.about-man-dolzh {
  max-width: 420px;
  font-size: 18px;
  line-height: 140%;
  text-transform: uppercase;
  color: #FFFFFF;
}

.about-man__flex {
  margin: 50px 0px 150px 0px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 760px) {
  .about-man__flex {
    margin: 30px 0px 50px 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.about-man__img {
  width: 200px;
}

.about-man__img img {
  border-radius: 50%;
  width: 100%;
}

.about-man__text {
  width: calc(100% - 240px);
  font-size: 12px;
  line-height: 165%;
}

@media (max-width: 760px) {
  .about-man__text {
    width: 100%;
    margin-top: 20px;
  }
}

.rekv {
  margin: 50px 0px 150px 0px;
}

@media (max-width: 760px) {
  .rekv {
    margin: 30px 0px 30px 0px;
  }
}

.rekv-table {
  margin: 20px 0px 30px 0px;
}

.rekv-table table tr td {
  padding: 5px 0px;
}

.rekv-table table tr td:first-child {
  padding-right: 30px;
}

.simple-text__row__col {
  width: 48%;
}

@media (max-width: 760px) {
  .simple-text__row__col {
    width: 100%;
    margin-top: 15px;
  }
}

.close-info {
  margin: 60px 0px;
}

.close-img {
  width: 48%;
  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;
}

.close-img img {
  width: 80%;
}

@media (max-width: 760px) {
  .close-img {
    width: 100%;
  }
}

.close-text {
  width: 48%;
}

@media (max-width: 760px) {
  .close-text {
    width: 100%;
    margin-top: 20px;
  }
}

.product__item.generator__item .product__item__img {
  max-width: 345px;
  max-height: 100%;
}

.product__item.generator__item .product__item__img img {
  max-width: 300px;
  max-height: 250px;
}

.product__item.generator__item .product__item__info {
  width: calc(100% - 375px);
}

@media (max-width: 760px) {
  .product__item.generator__item .product__item__info {
    width: 100%;
    margin-top: 20px;
  }
}

.thx-text {
  font-size: 18px;
}

.range-wrap {
  position: relative;
  margin: 0 auto 3rem;
}

.range {
  width: 100%;
}

.bubble {
  background: #16A4D6;
  color: white;
  padding: 4px 12px;
  position: absolute;
  border-radius: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.bubble::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: #16A4D6;
  top: -1px;
  left: 50%;
}

.podbor-calc {
  margin: 40px 0px 100px 0px;
}

@media (max-width: 760px) {
  .podbor-calc {
    margin: 60px 0px;
  }
}

.podbor-calc .btn {
  cursor: pointer;
}

.kwiz-progress__line {
  max-width: 600px;
  width: 100%;
  height: 8px;
  position: relative;
  background: #f2f2f2;
  border-radius: 8px;
  margin-top: 6px;
  margin-bottom: 30px;
}

.kwiz-progress__line span {
  position: absolute;
  left: 0px;
  height: 8px;
  border-radius: 8px;
  top: 0px;
  background: #16A4D6;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.kwiz>div {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 30px;
}

@media (max-width: 760px) {
  .kwiz>div {
    padding: 15px;
  }
}

.kwiz>div h2 {
  margin-bottom: 25px;
}

.kwiz>div p {
  max-width: 60%;
}

@media (max-width: 760px) {
  .kwiz>div p {
    max-width: 100%;
  }
}

.labels-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.labels-list .j-checkbox {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 760px) {
  .labels-list .j-checkbox {
    width: 100%;
  }
}

.labels-list .j-checkbox img {
  margin-left: 30px;
}

.labels-list .j-checkbox span {
  font-size: 16px;
  padding-left: 30px;
}

.labels-list .j-checkbox:before {
  top: 1px;
  left: 0px;
  width: 14px;
  height: 14px;
}

.labels-list .j-checkbox:after {
  top: 1px;
  left: 0px;
  width: 14px;
  height: 14px;
}

.result-search {
  font-size: 28px;
  margin-top: 100px;
}

.nav-socials {
  margin-top: 15px;
  margin-left: -20px;
  z-index: 2;
  position: relative;
}

.nav-socials a {
  display: inline-block;
  margin-right: 10px;
}

.map {
  width: 100%;
  height: 450px;
  max-width: 700px;
  max-height: 400px;
}

.row .title {
  color: #4A4A4A;
}

.col-6 {
  width: 48%;
}

@media (max-width: 760px) {
  .col-6 {
    width: 100%;
  }

  .col-6:first-child {
    margin-bottom: 15px;
  }
}

.col-4 {
  width: 33%;
}

@media (max-width: 760px) {
  .col-4 {
    width: 100%;
  }
}

.col-8 {
  width: 63%;
}

@media (max-width: 760px) {
  .col-8 {
    width: 100%;
  }
}

.m-80 {
  margin: 80px 0px;
}

@media (max-width: 760px) {
  .m-80 {
    margin: 60px 0px;
  }
}

.m-150 {
  margin: 150px 0px;
}

@media (max-width: 760px) {
  .m-150 {
    margin: 60px 0px;
  }
}

.m-w-80 {
  max-width: 80%;
}

@media (max-width: 760px) {
  .m-w-80 {
    max-width: 100%;
  }
}

.patents__title {
  margin-top: 36px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.patents__text {
  font-size: 16px;
  font-weight: 400;
  margin: 5px 0px 40px 0px;
}

.breadcrumbs {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .breadcrumbs {
    display: none;
  }
}

.breadcrumbs a,
.breadcrumbs span {
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  color: #16A4D6;
  margin-right: 20px;
  border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
  border-bottom: 1px solid;
}

.breadcrumbs span {
  margin-right: 0px;
}

.product-form {
  margin: 65px 0px;
}

@media (max-width: 760px) {
  .product-form {
    margin: 40px 0px;
  }
}

.product-form form {
  max-width: 570px;
}

.product-form .product-form-row {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-form .product-form-col-6 {
  width: 48%;
  margin-bottom: 20px;
}

@media (max-width: 760px) {
  .product-form .product-form-col-6 {
    width: 100%;
    margin-bottom: 15px;
  }
}

.product-form .product-form-col-12 {
  width: 100%;
  margin-bottom: 20px;
}

@media (max-width: 760px) {
  .product-form .product-form-col-12 {
    margin-bottom: 15px;
  }
}

.product-form input {
  height: 40px;
  width: 100%;
  border: 1px solid #979797;
  border-radius: 5px;
  font-style: italic;
  padding: 0px 20px;
}

.product-form textarea {
  padding: 14px 20px;
  height: 80px;
  border: 1px solid #979797;
  border-radius: 5px;
  width: 100%;
  font-style: italic;
}

.product-form .btn {
  border: none;
  width: 100%;
  height: 40px;
  padding: 14px 40px 13px 40px;
}

@media (max-width: 760px) {
  .product-form .btn {
    font-size: 12px;
    height: auto;
  }
}

.product-main__dops {
  margin-left: 12px;
  margin-top: 15px;
}

.product-main__dops span {
  font-size: 14px;
}

.product-main__dops .j-checkbox {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.product-main__dops__text {
  position: relative;
}

.product-main__dops__content {
  position: absolute;
  top: 18px;
  width: 160px;
  z-index: 33;
  background: #4A4A4A;
  padding: 5px;
  display: block;
  color: #fff;
  font-size: 12px;
  border-radius: 5px;
  left: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
}

.product-main__dops__icon {
  width: 14px;
  height: 14px;
  background: #4A4A4A;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-weight: 700;
  line-height: 150%;
  margin-left: 5px;
  margin-right: 5px;
}

.product-main__dops__text:hover .product-main__dops__content {
  opacity: 1;
  visibility: visible;
}

.product-main__dops .j-checkbox:after {
  top: 5px;
}

.product-main__dops .j-checkbox:before {
  top: 3px;
}

.product-main__dops .j-checkbox input {
  left: 22px;
}

.list-links {
  display: flex;
  flex-wrap: wrap;
}

.list-links a {
  margin-right: 15px;
}

.sys {
  margin: 60px 0px;
}

.sys_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.3);
}

.sys__col-6 {
  width: 46%;
}

.sys__col-6 img {
  display: block;
}

.sys-left .sys_row,
.upr .sys_row {
  padding: 25px;
}

.sys-left .sys_row .order-1 {
  padding: 0px;
}

.upr .sys_row .order-1 {
  padding: 0px;
}

.order-1 {
  padding: 25px;
}

@media (max-width:600px) {
  .sys__col-6 {
    width: 100%;
  }

  .sys {
    margin: 40px 0px;
  }

  .sys__col-6.order-1 {
    order: 1;
  }

  .sys__col-6.order-2 {
    order: 2;
  }

  .sys.upr .sys__col-6.order-1 {
    margin-bottom: 15px;
  }
}

.contacts-calc {
  display: none;
  align-items: center;
  justify-content: space-around;
  padding: 15px 20px;
  border-top: 2px solid;
}

.catalog__filter .logo {
  display:none;
}

@media print {

.catalog__filter .logo {
  display:block;
margin-bottom:20px;
}

  .contacts-calc {
    display: flex;
  }

  .catalog__container {
    width: 1200px;
    height: 1000px;
    flex-wrap: nowrap;
  }

  body {
    zoom: 65%;
    /*or whatever percentage you need, play around with this number*/
  }

  .btn {
    display: none;
  }

  .catalog__filter {
    float: left;
  }

  .catalog__list {
    float: right;
  }

  .calcutate-summ {
    page-break-before: always;
    margin-top: 10px;
  }

  .calculate-list .calculate__row__title {
    margin-bottom: 15px;
  }

  .calcutate-summ {
    border: none;
    padding: 0px;

    max-width: none;
    width: auto;
    margin-left: auto
  }
.j-radio input {
    width: 10px;
    height: 10px;
    left: 0px;
    top: 0px;
    opacity: 0;
    cursor: pointer;
}
.j-radio.active, .j-checkbox.active {
    display: flex;
    align-items: center;
    border-bottom:1px solid;
}

.j-checkbox:before, .j-radio:before, .j-checkbox:after, .j-radio:after  {
    display:none;
}
.catalog__filter__title {
   font-size:15px;	
}
.j-checkbox span, .j-radio span {
   font-size:14px;
}
.catalog__filter {
   width:30%;	
}
.catalog__list {
   width:67%;
}
.proizv-d {
   font-size:15px !important;
}
calculate__table td {
   font-size:18px !important;
}
.calculate-list .calculate__table tr td:first-child {
   font-size:17px;
}
.j-radio {
   margin-bottom:5px;
   margin-right:5px;
}
.filter__w-input {
font-size:17px;}
.filter__block__inputs {
margin-top:25px;}
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

/*# sourceMappingURL=style.css.map */