@font-face {
  font-family: "Inter";
  font-weight: 200;
  font-style: normal;
  src: url("../fonts/Inter-ExtraLight.woff2") format("woff2"), url("../fonts/Inter-ExtraLight.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Inter-Light.woff2") format("woff2"), url("../fonts/Inter-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Georgia";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Georgia.woff2") format("woff2"), url("../fonts/Georgia.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Georgia";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Georgia-Bold.woff2") format("woff2"), url("../fonts/Georgia-Bold.woff") format("woff");
  font-display: swap;
}
*, :before, :after {
  outline: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --app-height: 100vh;
  --section-offset: 150px;
  --dark-color: #00334D;
  --light-color: #F3F8F5;
  --main-color: #00AAFF;
  --border-color: rgba(0, 51, 77, 0.1);
  scroll-behavior: auto;
}

::-webkit-input-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

body, html {
  font-size: 16px;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  background: #fff;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

a {
  text-decoration: underline;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
}

strong, b {
  font-weight: bold;
}

p, blockquote, ul, ol {
  margin: 0 0 10px;
}

ul, ol {
  padding-left: 1.3em;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 10px;
}

h1, h2 {
  font: 400 70px/1 "Georgia", serif;
}

h3 {
  font: 400 50px/1 "Georgia", serif;
}

h4 {
  font: 400 40px/1 "Georgia", serif;
}

h5 {
  font: 400 28px/1.2 "Georgia", serif;
}

h6 {
  font-size: 1rem;
}

img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
}

.wrapper {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: var(--app-height);
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  width: 100%;
}
.wrapper > main > section:last-child {
  margin-bottom: 0;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  width: 1410px;
  margin: 0 auto;
  padding: 0 15px;
}

.img-box {
  position: relative;
}
.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.tt-upper {
  text-transform: uppercase;
}

.tt-none {
  text-transform: none;
}

.c-main {
  color: var(--main-color);
}

.m-sect {
  margin-top: var(--section-offset);
  margin-bottom: var(--section-offset);
}

.mt-sect {
  margin-top: var(--section-offset);
}

.mb-sect {
  margin-bottom: var(--section-offset);
}

.p-sect {
  padding-top: var(--section-offset);
  padding-bottom: var(--section-offset);
}

.pt-sect {
  padding-top: var(--section-offset);
}

.pb-sect {
  padding-bottom: var(--section-offset);
}

[data-animate-item] {
  opacity: 0;
}

[data-animate] {
  opacity: 0;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
[data-animate].animated {
  -webkit-animation-name: fade;
          animation-name: fade;
}

[data-animate=fadeIn].animated {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

[data-animate=fadeLeft].animated {
  -webkit-animation-name: fadeLeft;
          animation-name: fadeLeft;
}

[data-animate=fadeRight].animated {
  -webkit-animation-name: fadeRight;
          animation-name: fadeRight;
}

[data-animate=fadeDown].animated {
  -webkit-animation-name: fadeDown;
          animation-name: fadeDown;
}

[data-animate=zoomIn].animated {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
            transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
            transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
            transform: translate3d(30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
            transform: translate3d(30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
            transform: translate3d(-30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
            transform: translate3d(-30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.bg-light {
  background: var(--light-color);
}

.title {
  margin-bottom: 100px;
  font-weight: 300;
  font-size: 18px;
}
.title > :first-child {
  margin-top: 0;
}
.title > :last-child {
  margin-bottom: 0;
}
.title._form {
  margin-bottom: 40px;
}

.title-line {
  display: block;
  margin: 20px 0;
  width: 100%;
  max-width: 240px;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#00AAFF), to(rgba(0, 170, 255, 0)));
  background: linear-gradient(to right, #00AAFF, rgba(0, 170, 255, 0));
}

.content img {
  display: block;
  margin: 25px 0;
}
.content > :first-child {
  margin-top: 0;
}
.content > :last-child {
  margin-bottom: 0;
}

.btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 39px 0 0;
  min-height: 70px;
  border: 1px solid var(--main-color);
  border-radius: 20px;
  background: var(--main-color);
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  font-size: 16px;
  color: var(--dark-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 39px;
  bottom: 0;
  border-radius: 19px;
  background: #fff;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}
.btn > span {
  width: 100%;
  padding: 0 20px;
}
.btn .ic {
  position: absolute;
  top: 50%;
  right: 13px;
  margin-top: -0.5em;
  width: 1em;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.btn:hover {
  color: #fff;
}
.btn:hover:before {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.btn._full {
  width: 100%;
}
.btn[disabled], .btn.disabled {
  pointer-events: none;
}

.close-btn {
  overflow: hidden;
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  padding: 0;
  border: none;
  border-radius: 0 20px;
  background: var(--main-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.close-btn:before {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}
.close-btn:hover:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main-form {
  padding: 60px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 30px 30px 100px rgba(0, 52, 77, 0.05);
          box-shadow: 30px 30px 100px rgba(0, 52, 77, 0.05);
}

.form-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0;
  margin: 0 -10px;
}
.form-grid__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 40%;
  padding: 0 10px;
}
.form-grid__col._100p {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
}

.form-field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  padding: 23px 29px;
  background: #F7F9FA;
  border: 1px solid transparent;
  border-radius: 20px;
  line-height: 22px;
  font-weight: 300;
  font-size: 16px;
  color: #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.form-field:focus {
  border-color: var(--main-color);
}
.form-field[readonly] {
  cursor: default;
}

textarea.form-field {
  resize: none;
}
textarea.form-field:not([rows]) {
  height: 140px;
}

select.form-field {
  cursor: pointer;
  padding-right: 55px;
  background-image: url("../img/select.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 29px) 50%;
  text-overflow: ellipsis;
}

.form-option {
  cursor: pointer;
  position: relative;
  display: inline-block;
  min-height: 24px;
  line-height: 20px;
  font-size: 14px;
}
.form-option input,
.form-option span:before,
.form-option span:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}
.form-option input {
  opacity: 0;
}
.form-option input:checked ~ span:before {
  background-color: var(--main-color);
}
.form-option input:checked ~ span:after {
  opacity: 1;
}
.form-option span {
  display: block;
  position: relative;
  padding: 2px 0 0 39px;
}
.form-option span:before, .form-option span:after {
  border-radius: 7px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.form-option span:before {
  content: "";
  background: #F7F9FA;
}
.form-option span:after {
  padding-left: 0.1em;
  text-align: center;
  content: "\e904";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 24px;
  font-size: 12px;
  opacity: 0;
  color: #fff;
}
.form-option a {
  color: var(--main-color);
}

.form-action {
  margin-top: 20px;
}
.form-action .form-option {
  margin-bottom: 20px;
}

.form-social {
  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-top: 20px;
}
.form-social__head {
  margin: 0 20px 0 0;
  font-size: 14px;
}
.form-social__sep {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin-right: 20px;
  border-bottom: 1px solid var(--border-color);
}
.form-social .social-grid {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.form-file {
  cursor: pointer;
  display: block;
  background: #F7F9FA;
  border-radius: 20px;
}
.form-file__input {
  display: none;
}
.form-file__files {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  padding: 0 15px 0 30px;
}
.form-file__files-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin-right: 10px;
  display: block;
  position: relative;
  height: 18px;
  line-height: 18px;
  font-weight: 300;
  font-size: 16px;
}
.form-file__files-title span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-file__files-btn {
  position: relative;
  display: inline-block;
  padding: 10px 15px 10px 44px;
  border-radius: 10px;
  background: rgba(0, 170, 255, 0.1);
  font-weight: bold;
  line-height: 18px;
  font-size: 14px;
  color: var(--main-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.form-file__files-btn:before {
  position: absolute;
  top: 50%;
  left: 15px;
  margin-top: -0.5em;
  content: "\e907";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 18px;
}
.form-file:hover .form-file__files-btn {
  background: var(--main-color);
  color: #fff;
}

.social-grid {
  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;
  gap: 10px;
}

.social-item {
  display: inline-block;
  border-radius: 14px;
  background: rgba(0, 170, 255, 0.1);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  color: var(--main-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.social-item:hover {
  background-color: var(--main-color);
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  color: #fff;
}
.social-item._big {
  border-radius: 20px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 24px;
}

.top-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
}
.top-line__grid {
  position: relative;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 0;
  padding: 11px 40px;
  background: var(--light-color);
  border-radius: 0 0 20px 20px;
}
.top-line__grid:before, .top-line__grid:after {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: url("../img/top-corner.svg") no-repeat center;
}
.top-line__grid:before {
  left: -20px;
}
.top-line__grid:after {
  right: -20px;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.top-line__col {
  position: relative;
  margin-right: 42px;
  padding-right: 42px;
}
.top-line__col:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 51, 77, 0.3);
}
.top-line__col:last-child {
  margin-right: 0;
  padding-right: 0;
}
.top-line__col:last-child:after {
  display: none;
}

.top-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 18px;
  font-size: 14px;
}
.top-contact .ic {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 10px;
}
.top-contact__descr a {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.top-contact__descr a:hover {
  color: var(--main-color);
}

.sandwich {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 14px;
  background: rgba(0, 170, 255, 0.1);
}
.sandwich span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 -10px;
  border-radius: 2px;
  background: #00AAFF;
  -webkit-transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, transform 0.4s;
  transition: width 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.sandwich span:nth-child(1) {
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
}
.sandwich span:nth-child(3) {
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}
.sandwich.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sandwich.active span:nth-child(2) {
  -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
}
.sandwich.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.mob-menu {
  display: none;
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--app-height);
  background: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-menu__wrapper {
  overflow: hidden;
  padding: 100px 0 20px;
  min-height: var(--app-height);
}
.mob-menu__list {
  margin-bottom: 20px;
  line-height: 1.25;
  font-weight: 600;
  font-size: 16px;
}
.mob-menu__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mob-menu__list a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.mob-menu__list a:hover {
  opacity: 0.8;
}
.mob-menu__list a.mPS2id-highlight {
  opacity: 1;
  color: var(--main-color);
}
.mob-menu__list > ul ul {
  display: none;
}
.mob-menu__list > ul > li {
  position: relative;
  margin-bottom: 12px;
}
.mob-menu__list > ul > li:last-child {
  margin-bottom: 0;
}
.mob-menu__row {
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}
.mob-menu .top-contact {
  margin-bottom: 12px;
}
.mob-menu .top-contact:last-child {
  margin-bottom: 0;
}

.header,
.header__grid {
  height: 100px;
}

.header {
  position: relative;
}
.header__scroll {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header__scroll:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}
.header__scroll._fixed {
  position: fixed;
}
.header__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.header__logo {
  display: inline-block;
  margin-right: auto;
  max-width: 200px;
}
.header__logo img {
  display: block;
  max-height: 60px;
}
.header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  line-height: 1.25;
  font-size: 16px;
}
.header__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__menu a {
  display: block;
  position: relative;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header__menu a:hover, .header__menu a.mPS2id-highlight {
  color: var(--main-color);
}
.header__menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 100%;
}
.header__menu > ul ul {
  display: none;
}
.header__menu > ul > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__menu > ul > li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.header__menu > ul > li > a:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 170, 255, 0)), color-stop(#00AAFF), to(rgba(0, 170, 255, 0)));
  background: linear-gradient(to right, rgba(0, 170, 255, 0), #00AAFF, rgba(0, 170, 255, 0));
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header__menu > ul > li > a.mPS2id-highlight {
  border-color: var(--main-color);
}
.header__menu > ul > li > a.mPS2id-highlight:before {
  width: 100%;
}
.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__social-head {
  margin: 0 20px 0 0;
  max-width: 120px;
  font-weight: 600;
  font-size: 14px;
}
.header__social .social-grid {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.header__toggle {
  display: none;
}

.advant-img {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(0, 170, 255, 0.1);
}
.advant-img img {
  max-width: 34px;
  max-height: 34px;
}

.bann {
  position: relative;
  padding-top: 120px;
  margin-bottom: 60px;
}
.bann:before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 150px;
  background: var(--light-color);
}
.bann__main {
  margin-bottom: 100px;
}
.bann__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bann__title .title {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin-bottom: 60px;
  font-size: 20px;
}
.bann__title .title h1 {
  max-width: 12em;
}
.bann__img {
  margin-left: 50px;
  width: 34%;
}
.bann__img-wrap {
  margin: -95px -140px -20px 0;
}
.bann__advants {
  margin-bottom: 60px;
}
.bann__advants-head {
  margin-bottom: 24px;
}
.bann__advants-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px -20px;
}
.bann__advant {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 10px 20px;
}
.bann__advant .advant-img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 20px;
}
.bann__advant-main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.bann__advant-main > * {
  margin-bottom: 2px;
}
.bann__advant-main > *:last-child {
  margin-bottom: 0;
}
.bann__descr {
  font-size: 18px;
}
.bann__descr._part {
  max-width: 50em;
}
.bann__form {
  position: relative;
  padding-right: 50%;
}
.bann__form .main-form {
  margin-right: 10px;
}
.bann__form-img {
  position: absolute;
  z-index: -1;
  right: -190px;
  bottom: -75px;
  max-width: 1100px;
}

.about {
  position: relative;
}
.about .container {
  position: relative;
  z-index: 2;
}
.about__img {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  bottom: -286px;
  right: 50%;
  margin-right: -60px;
  max-height: 750px;
}

.about-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 40px;
  margin-bottom: 100px;
}
.about-top__logo {
  max-height: 80px;
}
.about-top__descr {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin: 0;
  font-weight: 300;
  font-size: 18px;
}
.about-top__descr._right {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 41.5%;
}

.about-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.about-info__head {
  margin-bottom: 40px;
}
.about-info__spec {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  padding-bottom: 180px;
}
.about-info__spec > :last-child {
  margin-bottom: 0;
}
.about-info__spec-list {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}
.about-info__spec-list li {
  position: relative;
  padding-left: 2.3em;
}
.about-info__spec-list li:nth-child(n+2) {
  margin-top: 20px;
}
.about-info__spec-list li:before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "\e908";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 20px;
  color: var(--main-color);
}
.about-info__spec-descr {
  max-width: 580px;
}
.about-info__facts {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 41.5%;
}
.about-info__fact {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
}
.about-info__fact:last-child {
  margin-bottom: 0;
}
.about-info__fact:before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--main-color);
}
.about-info__fact > * {
  margin-bottom: 4px;
}
.about-info__fact > *:last-child {
  margin-bottom: 0;
}
.about-info__fact ._head {
  font-weight: bold;
  color: var(--main-color);
}

.number-el {
  line-height: 1;
  font-weight: 200;
  font-size: 50px;
  color: var(--main-color);
}

.manufs-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 20px;
}
.manufs-info__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.manufs-info__head {
  margin-bottom: 40px;
}
.manufs-info__item {
  position: relative;
  padding-left: 2.3em;
  margin-bottom: 20px;
}
.manufs-info__item:last-child {
  margin-bottom: 0;
}
.manufs-info__item:before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "\e908";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 20px;
  color: var(--main-color);
}
.manufs-info__item > * {
  margin-bottom: 4px;
}
.manufs-info__item > *:last-child {
  margin-bottom: 0;
}
.manufs-info__item ._head {
  font-weight: bold;
}
.manufs-info__numb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.manufs-info__numb .number-el {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 15px;
  min-width: 1.25em;
  text-align: center;
}
.manufs-info__numb-descr {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.manufs-scheme {
  margin-top: 100px;
}

.scheme-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.scheme-item {
  position: relative;
}
.scheme-item:before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  left: -20px;
  height: 21px;
  background: url("../img/sch-arrow.svg") no-repeat 100% 50%;
}
.scheme-item .advant-img {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  background: #DAF0F6;
}
.scheme-item .number-el {
  margin-bottom: 10px;
}
.scheme-item__descr {
  margin-bottom: 0;
  font-weight: bold;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}
.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.faq-item__title {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 13px;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.faq-item__title .ic {
  margin-left: 20px;
  font-size: 14px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.faq-item__title:hover {
  color: var(--main-color);
}
.faq-item__number {
  min-width: 60px;
  margin-right: 10px;
  line-height: 1;
  font-weight: 200;
  font-size: 40px;
  color: var(--main-color);
}
.faq-item__head {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  font-weight: bold;
  font-size: 18px;
}
.faq-item__content {
  display: none;
  padding: 3px 70px 0;
}
.faq-item._show .faq-item__title {
  color: var(--main-color);
}
.faq-item._show .faq-item__title .ic {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.contacts {
  position: relative;
}
.contacts__img {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  top: -80px;
  left: 50%;
  margin-left: 80px;
  max-height: 600px;
  -webkit-animation: floating 5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
          animation: floating 5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}
.contacts .title {
  max-width: 900px;
}
.contacts__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts__grid .main-form {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.contacts__boxes {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-left: 10px;
  padding-left: 10px;
}
.contacts__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 30px 30px 100px rgba(0, 52, 77, 0.05);
          box-shadow: 30px 30px 100px rgba(0, 52, 77, 0.05);
}
.contacts__box-contacts {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.contacts__box-img {
  margin-left: 40px;
  width: 44%;
  border-radius: 14px;
  background: url("../img/tmp/office.jpg") center/cover;
}
.contacts__map {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  overflow: hidden;
  position: relative;
  border: 1px solid #fff;
  border-radius: 20px;
  min-height: 300px;
}
.contacts__map-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes floating {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(2%);
            transform: translateY(2%);
  }
}

@keyframes floating {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(2%);
            transform: translateY(2%);
  }
}
.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-item__icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 14px;
  background: rgba(0, 170, 255, 0.1);
  text-align: center;
  font-size: 22px;
  color: var(--main-color);
}
.contact-item__descr {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.contact-item__descr a {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.contact-item__descr a:hover {
  color: var(--main-color);
}

.footer {
  margin-top: var(--section-offset);
  border-bottom: 10px solid var(--main-color);
}
.footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 60px;
  margin-bottom: 40px;
}
.footer__head {
  margin-bottom: 18px;
}
.footer__first {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 22.5%;
}
.footer__logo {
  display: inline-block;
  max-width: 200px;
}
.footer__logo img {
  display: block;
  max-height: 60px;
}
.footer__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.footer__menu._main {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 23.5%;
}
.footer__menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__menu-list li {
  margin-bottom: 10px;
}
.footer__menu-list li:last-child {
  margin-bottom: 0;
}
.footer__menu-list a {
  text-decoration: none;
  font-weight: 300;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer__menu-list a:hover {
  color: var(--main-color);
}
.footer__social {
  max-width: 220px;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
}
.footer__copy {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  font-weight: 300;
}
.footer__dev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-left: 20px;
  font-weight: 300;
  text-decoration: none;
}
.footer__dev .ic {
  margin-top: -0.15em;
  font-size: 24px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer__dev:hover .ic {
  color: var(--main-color);
}

/* Popups */
.popup {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1380px;
  background: #fff;
  border-radius: 20px;
  margin: 40px auto;
  padding: 60px;
  -webkit-box-shadow: 30px 30px 100px rgba(0, 52, 77, 0.15);
          box-shadow: 30px 30px 100px rgba(0, 52, 77, 0.15);
}

.post-popup .content h2,
.post-popup .content h3 {
  word-wrap: break-word;
}

.tx-popup.popup {
  padding: 40px;
  max-width: 460px;
}

/* Customize plugins */
.mfp-bg {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-figure:after {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #fff;
}

.mfp-title {
  color: #fff;
}

.mfp-container {
  padding-left: 6px;
  padding-right: 6px;
}

.mfp-iframe-scaler iframe {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mfp-iframe-holder .mfp-content {
  max-width: 120vh;
}

.mfp-image-holder .close-btn,
.mfp-iframe-holder .close-btn {
  overflow: visible;
  right: 0;
  height: 40px;
  border-radius: 0;
  background: none;
  text-align: right;
  line-height: 40px;
}

.mfp-image-holder .close-btn {
  top: 0;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  width: 100%;
}

.mfp-iframe-holder .close-btn {
  width: auto;
  top: -40px;
}

[class*=ymaps-2-1][class*=-ground-pane] {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}