@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

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

html {
  width: 100%;
  min-height: 100%;
}

body {
  width: 100%;
  height: auto;
  min-height: 100vh;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

/*---------------------------------------------------------*/

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  background: #ffffff;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.wrapper.inner-page .main {
  padding-top: 99px;
}

.wrapper.inner-page .header {
  background-color: #252525;
}

.wrapper.inner-page .top__inner {
  min-height: 214px;
  padding-top: 42px;
  padding-bottom: 40px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.wrapper.inner-page .top__bg img {
  -o-object-position: center center;
  object-position: center center;
}

.wrapper.inner-page .top__title {
  font-weight: 700;
  font-size: 37px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.container {
  max-width: 1210px;
  padding: 0 15px;
  margin: 0 auto;
}

.section-title {
  font-weight: 500;
  text-transform: uppercase;
}

.hover-element {
  display: inline-block;
  position: relative;
}

.hover-element::after {
  content: '';
  width: 0;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1,
.big-title {
  font-size: 61px;
}

h2,
.medium-title {
  font-size: 40px;
}

h3,
.small-title {
  font-size: 28px;
}

h4,
.micro-title {
  font-size: 22px;
}

ul,
.ul-list {
  list-style: none;
}

ul li,
.ul-list li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

ul li::before,
.ul-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #30A8D9;
  position: absolute;
  left: 0;
  top: 11px;
}

ol,
.ol-list {
  list-style-position: inside;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  padding: 37px 0 26px;
  color: #ffffff;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.header.active {
  background-color: #252525;
}

.header__inner {
  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;
}

.header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 164px;
  margin-right: 15px;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}

.header__menu-item {
  padding-left: 0;
  margin-bottom: 0;
  margin-right: 32px;
  position: relative;
}

.header__menu-item:last-child {
  margin-right: 0;
}

.header__menu-item::before {
  display: none;
}

.header__menu-link {
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: inherit;
  text-transform: uppercase;
}

.header__menu-link.active::after {
  width: 100%;
  right: auto;
  left: 0;
}

.header__menu-link::after {
  bottom: -3px;
}

.header__actions {
  margin: 0 1px 4px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__languages-button {
  margin-right: 11px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: inherit;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.header__languages-button:last-child {
  margin-right: 0;
}

.header__languages-button.active {
  font-weight: 700;
  color: #E79200;
}

.header__burger {
  display: none;
}

.header__burger.active span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.header__burger.active span:first-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}

.header__burger.active span:last-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: calc(50% - 1px);
}

.top {
  position: relative;
  background-color: #1B2127;
}

.top.no-bg {
  background-color: #F9F9F9;
}

.top.no-bg .top__bg {
  display: block;
}

.top.no-bg .breadcrumbs__list-item::after {
  color: #000000;
}

.top.no-bg .breadcrumbs__list-link {
  color: #0A4C54;
}

.top.no-bg .top__title {
  color: #000000;
}

.top.no-bg .top__download-link {
  color: #000000;
}

.top.no-bg .top__page-link {
  border-color: #000000;
  color: #000000;
}

.top.no-bg .top__page-link.active {
  background-color: #4DD0E1;
  border-color: #4DD0E1;
}

.top__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  opacity: 0.4;
}

.top__inner {
  position: relative;
  min-height: 773px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 100px 0 30px;
  color: #ffffff;
}

.top__title {
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
}

.top__title span {
  display: block;
}

.top__text {
  margin-top: 37px;
}

.top__benefits {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: start;
  flex-wrap: wrap;
	margin: 66px -10px 0px 0px;
  padding: 0 27px;
}

.top__benefits-item {
  width: 175px;
  padding: 0 10px;
  margin-bottom: 20px;
}

.top__benefits-icon {
  display: block;
  height: 40px;
  width: auto;
  margin-bottom: 30px;
}

.top__benefits-amount {
  display: none;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.167;
  margin-bottom: 10px;
}

.top__benefits-text {
  font-size: 14px;
}

.top__benefits-text span {
  display: block;
}

.top__pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -10px;
  margin-top: 16px;
  padding-right: 20px;
}

.top__page-link {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid #ffffff;
  border-radius: 90px;
  padding: 7px 11px 7px;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -o-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}

.top__page-link.active {
  background-color: #4DD0E1;
  border-color: #4DD0E1;
}

.top__download-link {
  margin-left: 20px;
  margin-top: 27px;
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  color: #ffffff;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.top__download-link::before {
  content: '';
  width: 15px;
  height: 15px;
  background: url("../images/icons/icon-download.svg") center center/contain no-repeat;
  position: absolute;
  left: -20px;
  top: 0;
}

.top__menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 23px;
  margin-bottom: -20px;
}

.top__menu-item {
  padding-left: 0;
  margin-bottom: 10px;
  margin-right: 35px;
  line-height: 1;
}

.top__menu-item::before {
  display: none;
}

.top__menu-link {
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  color: #ffffff;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.top__menu-link::after {
  height: 2px;
  background-color: #4DD0E1;
  bottom: -3px;
}

.top__menu-link.active::after {
  height: 2px;
  background-color: #4DD0E1;
  bottom: -3px;
  width: 100%;
  right: auto;
  left: 0;
}

.main-information {
  position: relative;
}

.main-information__bg {
  position: absolute;
  left: 0;
  top: 79px;
  width: 100%;
  height: 100%;
}

.main-information__bg img {
  display: block;
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
  height: auto;
  opacity: 0.1;
}

.main-about {
  padding: 86px 0 65px;
  position: relative;
}

.main-about__block {
  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;
  padding: 0 39px 0 26px;
}

.main-about__title {
  width: 360px;
  margin-right: 25px;
  margin-bottom: 9px;
  color: #4DD0E1;
}

.main-about__content {
  width: 669px;
}

.main-about__text {
  margin-bottom: 35px;
}

.main-about__text b {
  font-weight: 600;
}

.main-about__link {
  line-height: 1.3;
  color: #4DD0E1;
  text-transform: uppercase;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}

.main-products {
  margin: 56px 0 110px;
  position: relative;
}

.main-products::before,
.main-products::after {
  content: '';
  width: calc(((100vw - 1190px) / 2));
  height: calc(100% - 90px);
  position: absolute;
  bottom: -5px;
  z-index: 2;
  pointer-events: none;
}

.main-products::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0.5)), color-stop(95%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 95%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 95%, rgba(255, 255, 255, 0) 100%);
}

.main-products::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, color-stop(0, rgba(255, 255, 255, 0.5)), color-stop(95%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(right, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 95%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 95%, rgba(255, 255, 255, 0) 100%);
}

.main-products__title {
  padding-right: 460px;
}

.main-products__slider-wrap {
  margin-top: -57px;
  position: relative;
}

.main-products__slider {
  padding-top: 119px;
}

.main-products .swiper-wrapper {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: auto !important;
}

.main-products__pagination {
  display: none;
}

.main-products__slider-prev,
.main-products__slider-next {
  cursor: pointer;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #000000;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  position: absolute;
}

.main-products__slider-prev::before,
.main-products__slider-next::before {
  content: '';
  width: 11px;
  height: 17px;
  background: transparent url("../images/icons/icon-slider-arrow.svg") center center/contain no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-49%, -50%);
  -ms-transform: translate(-49%, -50%);
  transform: translate(-49%, -50%);
}

.main-products__slider-prev {
  top: 9px;
  right: 274px;
}

.main-products__slider-prev::before {
  -webkit-transform: translate(-55%, -50%) rotateY(180deg);
  transform: translate(-55%, -50%) rotateY(180deg);
}

.main-products__slider-next {
  top: 9px;
  right: 220px;
}

.main-products__button {
  position: absolute;
  right: 4px;
  top: 15px;
  z-index: 4;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #4DD0E1;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 26px 20px 25px;
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.product-card__photo {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.product-card__number {
  display: block;
  font-size: 12px;
  line-height: 14px;
  color: #E79200;
  margin-top: 38px;
  margin-bottom: 12px;
  padding: 0 13px;
}

.product-card__title {
  padding: 0 13px;
  font-size: 17px;
  color: #1B2127;
  -webkit-transition: font-weight 0.2s;
  -o-transition: font-weight 0.2s;
  transition: font-weight 0.2s;
}

.product-card__title span {
  display: block;
}

.main-services {
  position: relative;
  padding: 83px 0 95px;
}

.main-services__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #1B2127;
}

.main-services__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  opacity: 0.3;
}

.main-services__bg::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
}

.main-services__inner {
  position: relative;
  color: #ffffff;
}

.main-services__title {
  padding-right: 180px;
  margin-bottom: 60px;
}

.main-services__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.main-services__column {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.main-services__item {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 37px 63px 41px;
}

.main-services__item-icon {
  display: block;
  width: auto;
  height: 50px;
  margin-bottom: 29px;
}

.main-services__item-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.main-services__item-text {
  font-size: 14px;
  margin-bottom: 10px;
}

.main-services__item-link {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #4DD0E1;
  text-transform: uppercase;
}

.main-services__more-link {
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 22px;
  line-height: 1.2;
  color: #4DD0E1;
  text-transform: uppercase;
}

.clients {
  padding: 96px 0 90px;
}

.clients__title {
  margin-bottom: 56px;
}

.clients__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -33px;
}

.clients__item {
  display: block;
  width: auto;
  max-width: 50%;
  padding: 0 33px;
  margin-bottom: 20px;
}

.clients__item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.footer {
  padding: 79px 0 45px;
  background-color: #252525;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #ffffff;
}

.footer__info {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 177px;
  margin-right: 20px;
}

.footer__logo {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__email {
  font-size: 14px;
  line-height: 16px;
  color: inherit;
  margin-bottom: 25px;
}

.footer__address {
  font-size: 13px;
}

.footer__navigation {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.footer__navigation-item {
  width: auto;
  max-width: 236px;
  padding: 0 10px;
}

.footer__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.footer__menu {
  list-style: none;
}

.footer__menu-item {
  padding-left: 0;
  margin-bottom: 19px;
  line-height: 1;
}

.footer__menu-item::before {
  display: none;
}

.footer__menu-link {
  line-height: 1.167;
  color: inherit;
}

.footer__menu-link.active::after {
  width: 100%;
  right: auto;
  left: 0;
}

.footer__contacts {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 173px;
  margin-left: 20px;
}

.footer__phone {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  color: inherit;
  white-space: nowrap;
  margin-bottom: 7px;
}

.footer__recall {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #30A8D9;
  text-transform: uppercase;
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
}

.modal__overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal__content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 428px;
  max-width: 95vw;
  max-height: 95vh;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 35px 45px 40px;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
}

.modal__close img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.modal__title {
  max-width: 240px;
  margin: 0 auto 20px;
  font-size: 22px;
  text-align: center;
}

.contact-form__item {
  position: relative;
  margin-bottom: 20px;
}

.contact-form__item-input {
  display: block;
  width: 100%;
  padding: 15px 15px 14px;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  -webkit-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: #000000;
  transition: border 0.3s;
}

.contact-form__item-input:focus {
  outline: none;
  border-color: #000000;
}

.contact-form__item-input::-webkit-input-placeholder {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: #cccccc;
}

.contact-form__item-input::-moz-placeholder {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: #cccccc;
}

.contact-form__item-input:-ms-input-placeholder {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: #cccccc;
}

.contact-form__item-input::-ms-input-placeholder {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: #cccccc;
}

.contact-form__item-input::placeholder {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: #cccccc;
}

.contact-form__item-error {
  position: absolute;
  top: 100%;
  left: 5px;
  padding-top: 2px;
  font-size: 12px;
  line-height: 1;
  color: red;
}

.contact-form__submit {
  width: 100%;
  padding: 18px 15px 14px;
  border-radius: 50px;
  background-color: #30A8D9;
  margin-top: 8px;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.breadcrumbs {
  margin-bottom: 19px;
}

.breadcrumbs__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumbs__list-item {
  position: relative;
  padding-right: 10px;
  padding-left: 0;
  margin-bottom: 5px;
  margin-right: 5px;
  line-height: 1;
}

.breadcrumbs__list-item:last-child {
  margin-right: 0;
}

.breadcrumbs__list-item::before {
  display: none;
}

.breadcrumbs__list-item::after {
  content: '/';
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  color: #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-37%);
  -ms-transform: translateY(-37%);
  transform: translateY(-37%);
}

.breadcrumbs__list-link {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  color: #4DD0E1;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.about-information {
  padding: 60px 0 42px;
  position: relative;
}

.about-information__banner-wrap {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  padding: 56px 50px;
  margin-bottom: 90px;
}

.about-information__banner-wrap::after {
  content: '';
  width: 620px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(45.9%, black), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(left, black 45.9%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, black 45.9%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.8;
  border-radius: 15px 0 0 15px;
  position: absolute;
  left: 0;
  top: 0;
}

.about-information__banner-image {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-information__banner-title {
  max-width: 600px;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.3;
  color: #ffffff;
  text-transform: uppercase;
}

.about-information__banner-title span {
  display: block;
}

.about-information__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-information__bg {
  position: absolute;
  left: 0;
  top: 42px;
  width: 100%;
  height: 100%;
}

.about-information__bg img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.1;
}

.about-information__numbers {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 330px;
  margin-right: 30px;
  margin-left: 81px;
  padding-top: 37px;
}

.about-information__numbers-item {
  max-width: 358px;
  width: 120%;
  min-height: 123px;
  margin-bottom: 20px;
}

.about-information__numbers-item:nth-child(even) {
  margin-left: auto;
}

.about-information__item-amount {
  display: none;
  font-weight: 700;
  font-size: 53px;
  line-height: 1.17;
  margin-bottom: 20px;
}

.about-information__item-text {
    font-size: 28px;
    /* line-height: 15px; */
    font-weight: 700;
    line-height: 1;
}

.about-information__content {
  width: 661px;
  color: #1B2127;
}

.about-information__title {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 28px;
}

.about-information__text {
  font-size: 15px;
  margin-bottom: 25px;
}

.about-information__text b {
  font-weight: 700;
}

.about-cycle {
  padding: 50px 0 85px;
}

.about-cycle__title {
  font-size: 22px;
  line-height: 1.16;
  margin-bottom: 38px;
}

.about-cycle__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.about-cycle__column {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.about-cycle__item {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 3px solid #E2E2E2;
  border-radius: 20px;
  padding: 13px 50px 14px 35px;
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.about-cycle__item-icon {
  display: block;
  width: 46px;
  height: auto;
  margin-right: 30px;
}

.about-cycle__item-title {
  font-size: 700px;
  font-size: 15px;
  color: #1B2127;
  text-transform: uppercase;
}

.about-gallery {
  padding-bottom: 163px;
  color: #1B2127;
}

.about-gallery__block {
  border-radius: 15px;
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 27px 28px;
  margin-bottom: 26px;
}

.about-gallery__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 295px;
  height: 230px;
  margin-right: 40px;
  border-radius: 15px;
  overflow: hidden;
}

.about-gallery__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-gallery__info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 20px;
}

.about-gallery__info-title {
  font-size: 23px;
  line-height: 1;
  margin-bottom: 23px;
}

.about-gallery__info-text {
  font-size: 16px;
  margin-bottom: 19px;
}

.about-gallery__info-link {
  font-weight: 700;
  font-size: 16px;
  color: #30A8D9;
  text-transform: uppercase;
}

.about-gallery__text {
  font-size: 16px;
  margin-bottom: 15px;
}

.products {
  padding: 47px 0 122px;
}

.products__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.products__column {
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.products__catalog {
  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;
}

.products__catalog-sidebar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 400px;
  margin-right: 40px;
  position: relative;
}

.products__catalog-sidebar > ul {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  background-color: #f9f9f9;
}

.products__catalog-sidebar > ul li {
  padding-left: 0;
  margin-bottom: 0;
}

.products__catalog-sidebar > ul li::before {
  display: none;
}

.products__catalog-sidebar > ul li a {
  position: relative;
  display: block;
  width: 100%;
  min-height: 55px;
  padding: 20px 15px 19px 38px;
  background-color: #f9f9f9;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  line-height: 1;
}

.products__catalog-sidebar > ul li a svg {
  position: absolute;
  left: 38px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: block;
  max-width: 30px;
  height: auto;
  max-height: 16px;
  fill: #c4c4c4;
  -webkit-transition: fill 0.3s, -webkit-transform 0.3s;
  transition: fill 0.3s, -webkit-transform 0.3s;
  -o-transition: fill 0.3s, transform 0.3s;
  transition: fill 0.3s, transform 0.3s;
  transition: fill 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.products__catalog-sidebar > ul li a span {
  display: block;
  padding-left: 55px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  color: #252525;
  text-transform: uppercase;
}

.products__catalog-sidebar > ul li a.active {
  background-color: #e5e5e5;
}

.products__catalog-sidebar > ul li a.active svg {
  fill: #30A8D9;
}

.products__catalog-categories {
  display: none;
}

.products__catalog-tabs {
  width: 740px;
}

.products__catalog-info {
  font-size: 15px;
  color: #252525;
}

.products__catalog-info h4 {
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.3;
}

.products__catalog-info p {
  margin-bottom: 20px;
}

.products__catalog-info ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.tabs__item {
  display: none;
}

.tabs__item.active {
  display: block;
}

.questionnaires__title {
  margin-bottom: 30px;
}

.questionnaires__text {
  margin-bottom: 20px;
  font-size: 16px;
}

.questionnaires__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px -10px 0;
}

.questionnaires__column {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 40px;
}

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

.questionnaires__item-info {
  background-color: #0E91C7;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100px;
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 5px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}

.questionnaires__item-info.light {
  background-color: #7AD9FF;
}

.questionnaires__item-info.green {
  background-color: #0EC793;
}

.questionnaires__item-type {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.questionnaires__item-text {
  padding-bottom: 2px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 8px;
  font-size: 13px;
  -webkit-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
}

.questionnaires__item-size {
  opacity: 0.5;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.questionnaires__item-title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border: 1px solid #E5E5E5;
  border-left: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 18px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  color: #252525;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.services {
  padding: 43px 0 159px;
  color: #1B2127;
}

.services__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.182;
  margin-bottom: 38px;
}

.services__content {
  background-color: #F9F9F9;
  padding: 55px 55px 54px;
  font-size: 16px !important;
  line-height: 1.4 !important;
}

.services__content p {
  margin-bottom: 20px;
}

.services__content ol li {
  font-weight: 700;
}

.services__content ul {
  margin: 20px 0 21px;
}

.services__content ul li {
  font-weight: 400;
  margin-bottom: 20px;
}

.services__content ul li span {
  display: block;
}

.services__content ul li:last-child {
  margin-bottom: 0;
}

.gallery {
  padding: 52px 0 23px;
}

.gallery__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -11px 0 -10px;
}

.gallery__column {
  width: 25%;
  padding: 0 11px 0 10px;
  margin-bottom: 30px;
}

.gallery__item {
  display: block;
  width: 100%;
  height: 110%;
}

.gallery__item-image {
  position: relative;
  padding-bottom: 80.4%;
  overflow: hidden;
  margin-bottom: 14px;
}

.gallery__item-image img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.gallery__item-title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.177;
  color: #1B2127;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.gallery__item-title span {
  display: block;
}

.contacts {
  padding: 42px 0 117px;
}

.contacts__title {
  font-size: 22px;
  line-height: 1.182;
  margin-bottom: 45px;
}

.contacts__block {
  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;
  color: #1B2127;
}

.contacts__info {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 365px;
  padding-top: 21px;
  font-size: 16px;
  line-height: 1.31;
}

.contacts__info > div {
  margin-bottom: 40px;
}

.contacts__info > div h6 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contacts__info > div a {
  color: inherit;
}

.contacts__info > div p {
  line-height: 1.5;
}

.contacts__map-wrap {
  width: 764px;
  height: 344px;
  margin-left: 25px;
  border-radius: 20px;
  overflow: hidden;
}

.contacts__map-wrap > div {
  position: relative;
  width: 100%;
  height: 100%;
}

.contacts__map-wrap [class*="ground-pane"] {
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
}

.projects {
  padding: 33px 0 103px;
}

.projects__item {
  background-color: #F9F9F9;
  border-radius: 15px;
  margin-bottom: 25px;
  padding: 56px 69px 31px 71px;
  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;
  color: #1B2127;
}

.projects__item-pictures {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 335px;
  margin-right: 25px;
}

.projects__big-slider {
  width: 100%;
  padding-bottom: 57.3%;
  background-color: #ffffff;
  border: 1px solid #C4C4C4;
  position: relative;
  margin-bottom: 10px;
}

.projects__big-slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.projects__big-slide img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.projects__big-slide.active {
  opacity: 1;
  visibility: visible;
}

.projects__small-wrap {
  overflow-x: auto;
  margin: 0 -13px 0 -10px;
  padding: 10px 10px;
}

.projects__small-wrap::-webkit-scrollbar {
  width: 20px;
}

.projects__small-wrap::-webkit-scrollbar-track {
  background-color: #ececec;
  width: 10px;
}

.projects__small-wrap::-webkit-scrollbar-thumb {
  background-color: lightgray;
  width: 10px;
}

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

.projects__small-slide {
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 103px;
  height: 75px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #C4C4C4;
  margin-right: 13px;
  padding: 5px 5px;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.projects__small-slide img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.projects__small-slide.active {
  border-color: #000000;
}

.projects__item-info {
  width: 621px;
}

.projects__item-info img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 80px;
  margin-bottom: 22px;
}

.projects__item-info h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 29px;
}

.projects__item-info p {
  font-size: 16px;
  margin-bottom: 24px;
}

.page-404 {
  padding: 50px 0;
}

.page-404__inner {
  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: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-404__image {
  margin-bottom: 30px;
}

.page-404__image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 400px;
}

.page-404__title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.page-404__link {
  font-size: 22px;
  line-height: 1;
  color: #4DD0E1;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .hover-element:hover::after,
  .hover-element:focus::after {
    width: 100%;
    right: auto;
    left: 0;
  }

  .header__languages-button:hover,
  .header__languages-button:focus {
    color: #E79200;
  }

  .top.no-bg .top__page-link:hover,
  .top.no-bg .top__page-link:focus {
    background-color: #4DD0E1;
    border-color: #4DD0E1;
  }

  .top__page-link:hover {
    background-color: #4DD0E1;
    border-color: #4DD0E1;
  }

  .main-products__slider-prev:hover,
  .main-products__slider-next:hover {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
  }

  .product-card:hover,
  .product-card:focus {
    border-color: #000000;
  }

  .product-card:hover .product-card__photo,
  .product-card:focus .product-card__photo {
    opacity: 1;
  }

  .product-card:hover .product-card__title,
  .product-card:focus .product-card__title {
    font-weight: 500;
  }

  .modal__close:hover img,
  .modal__close:focus img {
    opacity: 0.5;
  }

  .contact-form__submit:hover,
  .contact-form__submit:focus {
    background-color: #218ab5;
  }

  .about-cycle__item:hover,
  .about-cycle__item:focus {
    border-color: #000000;
  }

  .products__catalog-sidebar > ul li a.active:hover svg {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  .products__catalog-sidebar > ul li a:hover svg {
    fill: #30A8D9;
    -webkit-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    transform: translate(10px, -50%);
  }

  .questionnaires__item:hover .questionnaires__item-text {
    border-bottom-color: transparent;
  }

  .questionnaires__item:hover .questionnaires__item-title {
    color: #E79200;
  }

  .gallery__item:hover .gallery__item-image img,
  .gallery__item:focus .gallery__item-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .gallery__item:hover .gallery__item-title,
  .gallery__item:focus .gallery__item-title {
    color: #E79200;
  }

  .projects__small-slide:hover,
  .projects__small-slide:focus {
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  }

  .projects__small-slide:hover.active,
  .projects__small-slide:focus.active {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

@media (min-width: 993px) {
  .header__navigation-wrap {
    display: block !important;
    height: auto !important;
  }
}

@media (max-width: 1200px) {
  .wrapper.inner-page .main {
    padding-top: 86px;
  }

  h1,
  .big-title {
    font-size: 54px;
  }

  h2,
  .medium-title {
    font-size: 36px;
  }

  .header {
    padding: 25px 0;
  }

  .header__menu-item {
    margin-right: 15px;
  }

  .header__languages-button {
    margin-right: 10px;
  }

  .top__inner {
    min-height: 650px;
  }

  .top__text {
    margin-top: 15px;
  }

  .top__benefits {
    margin-top: 50px;
  }

  .top__benefits-icon {
    margin-bottom: 15px;
  }

  .main-about__block {
    padding: 0;
  }

  .main-products::before,
  .main-products::after {
    display: none;
  }

  .main-services__item {
    padding: 25px 30px;
  }

  .footer__title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer__menu-link {
    font-size: 16px;
  }

  .about-cycle__item {
    padding: 13px 25px 14px;
  }

  .about-cycle__item-icon {
    margin-right: 15px;
  }
}

@media (max-width: 1100px) {
  .wrapper.inner-page .main {
    padding-top: 81px;
  }

  h1,
  .big-title {
    font-size: 46px;
  }

  .header__logo {
    width: 140px;
  }

  .top__pages {
    padding-right: 0;
  }

  .product-card__number {
    margin-top: 20px;
    padding: 0;
  }

  .product-card__title {
    padding: 0;
  }

  .about-information__numbers {
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .wrapper.inner-page .top__inner {
    min-height: 170px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .wrapper.inner-page .top__title {
    font-size: 30px;
  }

  h1,
  .big-title {
    font-size: 38px;
  }

  h2,
  .medium-title {
    font-size: 30px;
  }

  h3,
  .small-title {
    font-size: 26px;
  }

  h4,
  .micro-title {
    font-size: 20px;
  }

  .header__logo {
    margin-right: auto;
  }

  .header__navigation-wrap {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 5;
    width: 100vw;
    max-width: 100vw;
    height: calc(100vh - 81px);
    background-color: rgba(0, 0, 0, 0.6);
  }

  .header__navigation-wrap.open .header__navigation {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .header__navigation {
    height: 100%;
    overflow-y: auto;
    max-width: 360px;
    margin-left: auto;
    background-color: #ffffff;
    padding: 30px 10px 20px 30px;
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }

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

  .header__menu-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .header__menu-link {
    font-size: 22px;
    color: #000000;
  }

  .header__actions {
    margin: 0;
	  
    margin-left: 20px;
  }

  .header__languages-button {
    font-size: 16px;
    line-height: 18px;
  }

  .header__burger {
    display: block;
    width: 32px;
    height: 20px;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 10;
    margin-left: 30px;
    margin-top: -4px;
  }

  .header__burger span {
    display: block;
    width: 32px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 2px;
    top: calc(50% - 1px);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }

  .header__burger span:first-child {
    top: 0;
  }

  .header__burger span:last-child {
    top: auto;
    bottom: 0;
  }

  .top__inner {
    min-height: 600px;
  }

  .top__benefits-icon {
    height: 35px;
  }

  .top__benefits-amount {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .top__download-link {
    margin-top: 15px;
  }

  .top__menu-item {
    margin-right: 20px;
  }

  .main-information__bg {
    top: 90px;
  }

  .main-about {
    padding: 60px 0 40px;
  }

  .main-about__block {
    display: block;
  }

  .main-about__title {
    width: 100%;
    margin-bottom: 20px;
  }

  .main-about__content {
    width: 100%;
  }

  .main-about__text {
    margin-bottom: 15px;
  }

  .main-about__link {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .main-products {
    margin: 40px 0 80px;
  }

  .main-products__title {
    padding-right: 240px;
  }

  .main-products__slider {
    padding-top: 100px;
  }

  .main-products__slider-prev {
    top: 50px;
    right: 50px;
  }

  .main-products__slider-next {
    top: 50px;
    right: 0;
  }

  .main-products__button {
    font-size: 20px;
  }

  .product-card {
    border-color: #000000;
  }

  .product-card__photo {
    opacity: 1;
  }

  .main-services {
    padding: 75px 0;
  }

  .main-services__title {
    margin-bottom: 30px;
  }

  .main-services__column {
    width: 50%;
  }

  .main-services__item-icon {
    height: 45px;
  }

  .main-services__more-link {
    font-size: 20px;
  }

  .clients {
    padding: 75px 0 55px;
  }

  .clients__title {
    margin-bottom: 30px;
  }

  .clients__block {
    margin: 0 -15px;
  }

  .clients__item {
    padding: 0 15px;
  }

  .footer__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer__info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .footer__navigation {
    width: 100%;
    margin: 0 -10px 25px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer__contacts {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .breadcrumbs {
    margin-bottom: 5px;
  }

  .about-information__banner-wrap {
    margin-bottom: 50px;
    padding: 30px 20px;
  }

  .about-information__banner-title {
    font-size: 26px;
  }

  .about-information__numbers {
    width: 260px;
  }

  .about-information__item-amount {
    margin-bottom: 10px;
    font-size: 40px;
  }

  .about-cycle {
    padding: 30px 0 50px;
  }

  .about-cycle__column {
    width: 50%;
  }

  .about-cycle__item {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .about-cycle__item-icon {
    width: 40px;
  }

  .about-gallery {
    padding-bottom: 75px;
  }

  .about-gallery__block {
    padding: 20px 15px;
  }

  .about-gallery__image {
    margin-right: 20px;
  }

  .about-gallery__info {
    padding-top: 0;
  }

  .products {
    padding-bottom: 60px;
  }

  .products__column {
    width: 33.333%;
  }

  .products__catalog-sidebar {
    width: 300px;
    margin-right: 20px;
  }

  .products__catalog-sidebar > ul li a {
    padding: 15px 10px;
    min-height: 40px;
  }

  .products__catalog-sidebar > ul li a svg {
    max-width: 25px;
    left: 15px;
  }

  .products__catalog-sidebar > ul li a span {
    padding-left: 35px;
  }

  .questionnaires__column {
    width: 50%;
  }

  .services {
    padding-bottom: 75px;
  }

  .services__title {
    margin-bottom: 25px;
  }

  .services__content {
    padding: 25px 30px;
  }

  .services__content p {
    margin-bottom: 15px;
  }

  .services__content ul {
    margin: 10px 0;
  }

  .services__content ul li {
    margin-bottom: 10px;
  }

  .gallery__column {
    width: 33.333%;
  }

  .contacts {
    padding-bottom: 75px;
  }

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

  .contacts__info {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    width: 100%;
    padding-top: 0;
  }

  .contacts__info > div {
    margin-bottom: 20px;
  }

  .contacts__info > div h6 {
    margin-bottom: 10px;
  }

  .contacts__map-wrap {
    width: 100%;
    height: 400px;
    margin-left: 0;
  }

  .projects {
    padding-bottom: 55px;
  }

  .projects__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 25px;
  }

  .projects__item-pictures {
    width: 100%;
    margin-bottom: 25px;
    margin-right: 0;
  }

  .projects__big-slider {
    max-width: 650px;
    height: 380px;
    padding-bottom: 0;
  }

  .projects__item-info {
    width: 100%;
  }

  .projects__item-info img {
    max-height: 65px;
    margin-bottom: 15px;
  }

  .projects__item-info h6,
  .projects__item-info p {
    margin-bottom: 15px;
  }

  .page-404__image img {
    max-height: 300px;
  }

  .page-404__title {
    font-size: 34px;
  }

  .page-404__link {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .wrapper.inner-page .top__title {
    font-size: 26px;
  }

  h1,
  .big-title {
    font-size: 30px;
  }

  h2,
  .medium-title {
    font-size: 26px;
  }

  h3,
  .small-title {
    font-size: 24px;
  }

  .top__inner {
    min-height: 650px;
  }

  .top__title {
    font-weight: 500;
  }

  .top__benefits {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .top__benefits-item {
    width: 50%;
  }

  .top__benefits-text span {
    display: inline;
  }

  .top__menu {
    margin-top: 10px;
  }

  .main-products__title {
    padding-right: 130px;
  }

  .main-products__button {
    position: static;
    margin-top: 30px;
    font-size: 18px;
  }

  .product-card {
    padding: 15px 15px;
  }

  .product-card__title {
    font-size: 14px;
  }

  .footer {
    padding: 50px 0 30px;
  }

  .footer__logo {
    margin-bottom: 5px;
  }

  .footer__email {
    margin-bottom: 15px;
  }

  .footer__title {
    font-size: 17px;
    margin-bottom: 15px;
  }

  .footer__menu-item {
    margin-bottom: 10px;
  }

  .about-information__banner-title {
    font-size: 22px;
  }

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

  .about-information__bg {
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .about-information__numbers {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    width: 330px;
    padding-top: 0;
    margin: 0 auto;
  }

  .about-information__numbers-item {
    min-height: auto;
    margin-bottom: 10px;
  }

  .about-information__item-amount {
    font-size: 32px;
    margin-bottom: 5px;
  }

  .about-information__content {
    width: 100%;
  }

  .about-cycle__block {
    margin: 0 -5px;
  }

  .about-cycle__column {
    padding: 0 5px;
    margin-bottom: 10px;
  }

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

  .about-gallery__image {
    margin-right: 0;
    margin-bottom: 20px;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }

  .about-gallery__info {
    width: 100%;
  }

  .about-gallery__info-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .about-gallery__info-text {
    margin-bottom: 15px;
  }

  .products__block {
    margin: 0 -5px;
  }

  .products__column {
    padding: 0 5px;
    margin-bottom: 10px;
  }

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

  .products__catalog-sidebar {
    margin-right: 0;
    width: 100%;
  }

  .products__catalog-sidebar > ul {
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 2;
    width: 100%;
    border: 1px solid #aaaaaa;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
  }

  .products__catalog-sidebar > ul.open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .products__catalog-categories {
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 700;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }

  .products__catalog-tabs {
    width: 100%;
  }

  .questionnaires__title {
    margin-bottom: 20px;
  }

  .questionnaires__block {
    margin: 30px -5px 0;
  }

  .questionnaires__column {
    padding: 0 5px;
    margin-bottom: 10px;
  }

  .gallery__block {
    margin: 0 -5px;
  }

  .gallery__column {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 25px;
  }

  .projects__big-slider {
    max-width: 100%;
    height: auto;
    padding-bottom: 57%;
  }

  .page-404__title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 16px;
  }

  .wrapper.inner-page .top__inner {
    min-height: 150px;
  }

  .wrapper.inner-page .top__title {
    font-size: 24px;
  }

  h1,
  .big-title {
    font-size: 24px;
  }

  h2,
  .medium-title {
    font-size: 22px;
  }

  h3,
  .small-title {
    font-size: 20px;
  }

  h4,
  .micro-title {
    font-size: 18px;
  }

  .top__benefits {
    padding: 0;
    margin: 40px -10px 0;
  }

  .top__benefits-item {
    padding: 0 5px;
  }

  .top__benefits-icon {
    height: 30px;
    margin-bottom: 10px;
  }

  .top__benefits-amount {
    font-size: 24px;
  }

  .top__benefits-text {
    font-size: 13px;
  }

  .top__pages {
    margin-right: -5px;
  }

  .top__page-link {
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 14px;
  }

  .top__menu {
    margin: 10px -10px -20px;
  }

  .top__menu-item {
    width: 50%;
    padding: 0 10px;
    margin-right: 0;
  }

  .main-products {
    margin: 20px 0 50px;
  }

  .main-products__title {
    padding-right: 0;
  }

  .main-products__slider-wrap {
    margin-top: 25px;
  }

  .main-products__slider {
    padding-top: 0;
  }

  .main-products__pagination {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .main-products__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #E79200;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .main-products__slider-prev,
  .main-products__slider-next {
    display: none;
  }

  .main-services {
    padding: 50px 0;
  }

  .main-services__title {
    padding-right: 0;
  }

  .main-services__column {
    width: 100%;
  }

  .main-services__item {
    padding: 15px 20px;
  }

  .main-services__item-icon {
    height: 40px;
    margin-bottom: 15px;
  }

  .main-services__item-title {
    margin-bottom: 10px;
  }

  .main-services__more-link {
    position: static;
    margin-top: 15px;
    font-size: 18px;
  }

  .clients {
    padding: 50px 0 30px;
  }

  .clients__item {
    max-width: 100%;
  }

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

  .footer__navigation-item {
    width: 50%;
    max-width: 50%;
    margin-bottom: 25px;
  }

  .footer__navigation-item:last-child {
    margin-bottom: 0;
  }

  .footer__phone {
    font-size: 18px;
  }

  .breadcrumbs__list-item::after {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .about-information {
    padding: 50px 0 20px;
  }

  .about-information__banner-wrap {
    margin-bottom: 30px;
  }

  .about-information__banner-title {
    font-size: 20px;
  }

  .about-information__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .about-information__text {
    margin-bottom: 15px;
  }

  .about-cycle__column {
    width: 100%;
  }

  .about-cycle__item {
    padding: 10px 15px 9px;
  }

  .about-cycle__item-icon {
    width: 35px;
  }

  .about-gallery {
    padding-bottom: 50px;
  }

  .products {
    padding-bottom: 40px;
  }

  .products__column {
    width: 50%;
  }

  .questionnaires__column {
    width: 100%;
  }

  .questionnaires__item-type {
    font-size: 20px;
  }

  .services {
    padding-bottom: 50px;
  }

  .services__content {
    padding: 20px 15px;
    margin: 0 -15px;
  }

  .gallery__item-title {
    font-size: 15px;
  }

  .contacts {
    padding-bottom: 50px;
  }

  .contacts__title {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .contacts__block {
    margin: 0 -15px;
  }

  .contacts__info {
    padding: 0 15px;
  }

  .contacts__map-wrap {
    border-radius: 0;
  }

  .projects {
    padding-bottom: 30px;
  }

  .projects__item {
    padding: 20px 15px;
  }

  .projects__item-pictures {
    margin-bottom: 15px;
  }

  .projects__big-slide {
    padding: 2px 2px;
  }

  .projects__small-slide {
    width: 80px;
    height: 60px;
  }

  .projects__item-info img {
    max-height: 55px;
  }

  .page-404__title {
    font-size: 24px;
  }

  .page-404__link {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .wrapper.inner-page .main {
    padding-top: 69px;
  }

  .header {
    padding: 20px 0;
  }

  .header__logo {
    width: 100px;
  }

  .header__navigation-wrap {
    height: calc(100vh - 70px);
  }

  .header__menu-item {
    margin-bottom: 10px;
  }

  .header__menu-link {
    font-size: 18px;
  }

  .header__languages-button {
    font-size: 15px;
  }

  .header__burger {
    margin-left: 20px;
    margin-bottom: 0;
    width: 26px;
  }

  .header__burger span {
    width: 26px;
  }

  .top__inner {
    min-height: 570px;
    padding-top: 90px;
  }

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

  .footer__info {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
    margin-right: 0;
    text-align: center;
  }

  .footer__logo {
    width: 170px;
    margin: 0 auto 10px;
  }

  .footer__navigation-item {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .footer__contacts {
    width: 100%;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 0;
  }

  .modal__content {
    padding: 25px 35px 30px;
  }

  .modal__close {
    width: 24px;
    right: 10px;
  }

  .modal__title {
    font-size: 20px;
  }

  .contact-form__item-input {
    font-size: 16px;
  }

  .contact-form__item-input::-webkit-input-placeholder {
    font-size: 16px;
  }

  .contact-form__item-input::-moz-placeholder {
    font-size: 16px;
  }

  .contact-form__item-input:-ms-input-placeholder {
    font-size: 16px;
  }

  .contact-form__item-input::-ms-input-placeholder {
    font-size: 16px;
  }

  .contact-form__item-input::placeholder {
    font-size: 16px;
  }

  .gallery__column {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .products__column {
    width: 100%;
  }
}

@media (max-width: 768px) and (min-width: 992px) {
  .products__catalog-categories:hover {
    color: #E79200;
  }
}