button {
  border: none;
  outline: none;
}

body {
  overflow-x: hidden;
}

button:focus {
  outline: none;
}

input {
  border-radius: 0;
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

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

input[type=submit] {
  cursor: pointer;
}

input:focus {
  outline: none;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
  width: 100%;
}

.preloader {
  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;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #dcdbdb;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}

.preloader .caption {
  margin-top: -36px;
}

/* .preloader::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 25%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.6;
  -webkit-filter: blur(25px);
  filter: blur(25px);
  background-color: #ffffff;
  -webkit-box-shadow: 130px 130px 135px 200px white;
  box-shadow: 130px 130px 135px 200px white;
  z-index: -1;
} */

/* .preloader::after {
  content: "";
  position: absolute;
  bottom: 25%;
  right: 35%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.6;
  -webkit-filter: blur(25px);
  filter: blur(25px);
  background-color: #ffffff;
  -webkit-box-shadow: 130px 130px 135px 200px white;
  box-shadow: 130px 130px 135px 200px white;
  z-index: -1;
} */

.preloader #cube-loader .cube-loader {
  width: 73px;
  height: 73px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.preloader #cube-loader .cube-loader .cube {
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  width: 50%;
  height: 50%;
  float: left;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.preloader #cube-loader .cube-loader .cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001d3e;
  -webkit-animation: cube-loader 2.76s infinite linear both;
  animation: cube-loader 2.76s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.preloader #cube-loader .cube-loader .loader-2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.preloader #cube-loader .cube-loader .loader-3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.preloader #cube-loader .cube-loader .loader-4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.preloader #cube-loader .cube-loader .loader-1:before {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}

.preloader #cube-loader .cube-loader .loader-2:before {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.preloader #cube-loader .cube-loader .loader-3:before {
  -webkit-animation-delay: 0.69s;
  animation-delay: 0.69s;
}

.preloader #cube-loader .cube-loader .loader-4:before {
  -webkit-animation-delay: 1.04s;
  animation-delay: 1.04s;
}

.bordered a::before {
  width: 100% !important;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 5%;
}

.page-404 h1 {
  margin-top: 20%;
  font-size: 250px;
  color: #cbcbcb;
  background-color: transparent;
}

.page-404 p {
  color: #112c4b;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 19px;
}

.page-404 button {
  width: 225px;
  margin-top: 50px;
  background-color: transparent;
}

.page-404 button a {
  padding: 10px 50px;
  font-size: 20px;
  color: #001d3e;
  border: 1px solid #001d3e;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-404 button a:hover {
  background-color: #001d3e;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.feedback-popup {
  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;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: #001d3ec4;
  z-index: 100;
  -webkit-transform: translateY(-200%);
  transform: translateY(-200%);
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.feedback-popup.open {
  -webkit-transform: translate(0);
  transform: translate(0);
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.feedback-popup h1 {
  color: #ffffff;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
}

.feedback-popup p {
  color: #ffffff;
  font-size: 26px;
  font-family: "Roboto", sans-serif;
}

#show {
  -webkit-transform: translate(0%);
  transform: translate(0%);
}

#showMenu {
  left: 0;
}

#animateLogoMobile {
  margin-top: 15px;
}

#animateMenuMobile {
  bottom: 15px;
}

.page-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  background-color: #dcdbdb;
  position: relative;
  z-index: 0;
}

.page-bg::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 25%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.6;
  -webkit-filter: blur(25px);
  filter: blur(25px);
  background-color: #ffffff;
  -webkit-box-shadow: 130px 130px 135px 200px white;
  box-shadow: 130px 130px 135px 200px white;
  z-index: -1;
}

.page-bg::after {
  content: "";
  position: absolute;
  bottom: 25%;
  right: 35%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.6;
  -webkit-filter: blur(25px);
  filter: blur(25px);
  background-color: #ffffff;
  -webkit-box-shadow: 130px 130px 135px 200px white;
  box-shadow: 130px 130px 135px 200px white;
  z-index: -1;
}

.page-bg .logo {
  position: absolute;
  width: 480px;
  top: 50%;
  left: 50%;
  margin-left: -240px;
  margin-top: -230px;
}

.page-bg .logo .logo-border {
  -webkit-animation: slide-in-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.page-bg .logo .center-part {
  -webkit-animation: slide-in-top 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

.page-bg .logo .side-part {
  -webkit-animation: slide-in-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s;
}

.page-bg .logo .text-anim {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s;
}

.page-bg .menu {
  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;
  height: 100vh;
  padding: 0;
  position: relative;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 10;
  -webkit-transform: translate(-100%);
  transform: translate(-100%);
}

.page-bg .menu .right-border {
  position: absolute;
  height: 0;
  width: 1px;
  height: 100vh;
  background-color: #001d3e;
  right: 0px;
  top: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}

.page-bg .menu .top-logo {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 120px;
  margin-left: -60px;
}

.page-bg .menu .top-logo img {
  width: 100%;
}

.page-bg .menu ul {
  list-style: none;
  padding-left: 0;
  width: 100%;
}

.page-bg .menu ul li {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-bg .menu ul li:hover {
  background-color: #001d3e;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-bg .menu ul li:hover a {
  color: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-bg .menu ul a {
  text-decoration: none;
  color: #001d3e;
  font: 16px/16px "Roboto", sans-serif;
  font-weight: 700;
  padding: 10px 30px 10px 45px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-bg .menu ul .sub-menu {
  position: absolute;
  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;
  top: -1400px;
  left: 100%;
  width: 496px;
  height: 100vh;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  background-color: #001d3e;
  z-index: 10;
}

.page-bg .menu ul .sub-menu .sub-item a {
  color: #ffffff;
  position: relative;
  text-transform: uppercase;
  margin-left: 45px;
  padding: 10px 0;
}

.page-bg .menu ul .sub-menu .sub-item a::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 0%;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-bg .menu ul .sub-menu .sub-item a:hover::before {
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.custom-container {
  height: 100vh;
  padding: 0;
}

.custom-container .about-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.custom-container .about-us .about-us-text {
  padding: 0;
}

.custom-container .about-us .about-us-text h2 {
  font: 70px/70px "Roboto", sans-serif;
  font-weight: 700;
  color: #cbcbcb;
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 0;
  -webkit-transform: translate(-150%);
  transform: translate(-150%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.custom-container .about-us .about-us-text h4 {
  font: 26px/26px "Roboto", sans-serif;
  font-weight: 700;
  color: #001d3e;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 0;
  -webkit-transform: translate(-150%);
  transform: translate(-150%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.custom-container .about-us .about-us-text .history {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 60px 0;
}

.custom-container .about-us .about-us-text .history .history-item {
  border-left: 1px solid #001d3e;
}

.custom-container .about-us .about-us-text .history .history-item span {
  display: inline-block;
  margin-bottom: 30px;
  font: 16px/16px "Roboto", sans-serif;
  font-weight: 700;
  color: #001d3e;
}

.custom-container .about-us .about-us-text .history .history-item p {
  margin-bottom: 10px;
  font: 14px/14px "Roboto", sans-serif;
  font-weight: 700;
  color: #001d3e;
}

.custom-container .about-us .about-us-text p {
  font: 16px/18px "Roboto", sans-serif;
  font-weight: 700;
  color: #001d3e;
}

.custom-container .about-us .about-us-text .timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-bottom: 100px;
  position: relative;
}

.custom-container .about-us .about-us-text .timeline::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 620px;
  background-color: #ffffff;
  border: 1px solid #001d3e;
  top: 50%;
  left: 55px;
  margin-top: -2px;
}

.custom-container .about-us .about-us-text .timeline .time-point {
  position: relative;
  width: 39px;
  height: 39px;
  background-color: #ffffff;
  border: 5px solid #001d3e;
  border-radius: 50%;
  margin-right: 110px;
  z-index: 2;
}

.custom-container .about-us .about-us-text .timeline .time-point:first-child {
  margin-left: 55px;
}

.custom-container .about-us .about-us-text .timeline .time-point:last-child {
  margin-right: 0;
}

.custom-container .about-us .about-us-text .timeline .time-point .time-date {
  display: inline-block;
  position: absolute;
  font: 16px/16px "Roboto", sans-serif;
  font-weight: 700;
  color: #001d3e;
  top: -30px;
  left: -3px;
}

.custom-container .about-us .about-us-text .timeline .time-point .time-descr {
  display: inline-block;
  position: absolute;
  width: 130px;
  text-align: center;
  font: 14px/14px "Roboto", sans-serif;
  font-weight: 700;
  color: #001d3e;
  bottom: -20px;
  left: -10px;
}

.custom-container .about-us .about-us-text .timeline .time-point:nth-child(1) .time-descr {
  bottom: -60px;
  left: -50px;
}

.custom-container .about-us .about-us-text .timeline .time-point:nth-child(2) .time-descr {
  bottom: -73px;
  left: -50px;
}

.custom-container .about-us .about-us-text .timeline .time-point:nth-child(3) .time-descr {
  bottom: -73px;
  left: -50px;
}

.custom-container .about-us .about-us-text .timeline .time-point:nth-child(4) .time-descr {
  bottom: -73px;
  left: -50px;
}

.custom-container .about-us .about-us-text .timeline .time-point:nth-child(5) .time-descr {
  bottom: -73px;
  left: -50px;
  width: 136px;
}

.custom-container .about-us .image-part {
  height: 100vh;
  text-align: center;
}

.custom-container .about-us .image-part img {
  background-color: #001d3e;
  display: inline-block;
  width: 58%;
  height: 100vh;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.button-wrap {
  position: absolute;
  top: 95%;
  margin-top: -5%;
}

.button-wrap .blue-button {
  background-color: #001d3e;
  border: 2px solid #001d3e;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.button-wrap .blue-button a {
  padding: 20px 80px;
  display: block;
  text-align: center;
  text-decoration: none;
  font: 16px/16px "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.button-wrap .blue-button:hover {
  background-color: white;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.button-wrap .blue-button:hover a {
  color: #001d3e;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.button-wrap .grey-button {
  position: absolute;
  right: 3%;
  background: transparent;
}

.button-wrap .grey-button a {
  display: block;
  padding: 20px 80px;
  background-color: #686a67;
  border: 2px solid #686a67;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button-wrap .grey-button a:hover {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  color: #001d3e;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom-container {
  height: 100vh;
}

.custom-container .services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.custom-container .services .services-text {
  padding: 0;
}

.custom-container .services .services-text h2 {
  font: 70px/70px "Roboto", sans-serif;
  font-weight: 700;
  color: #cbcbcb;
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 0;
  -webkit-transform: translate(-100%);
  transform: translate(-100%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.custom-container .services .services-text h4 {
  font: 26px/26px "Roboto", sans-serif;
  font-weight: 700;
  color: #001d3e;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 0;
  -webkit-transform: translate(-100%);
  transform: translate(-100%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.custom-container .services .services-text .services-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.custom-container .services .services-text .services-list li {
  padding-top: 10px;
  padding-bottom: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.custom-container .services .services-text .services-list li a {
  text-decoration: none;
  color: #001d3e;
  font: 18px/18px "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

.custom-container .services .services-text .services-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 1px;
  background-color: #cbcbcb;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.custom-container .services .services-text .description-wrapper {
  position: relative;
  margin-top: 200px;
}

.custom-container .services .services-text .services-description {
  position: absolute;
  left: 0;
  top: 0;
  border-left: 1px solid #001d3e;
  padding-left: 15px;
}

.custom-container .services .services-text .services-description p {
  margin-bottom: 0px;
  font: 18px/20px "Roboto", sans-serif;
  color: #000000;
}

.custom-container .services .services-text .services-description {
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.custom-container .services .services-text #tab1 {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.custom-container .services .image-part {
  height: 100vh;
  text-align: center;
}

.custom-container .services .image-part img {
  background-color: #001d3e;
  display: inline-block;
  width: 58%;
  height: 100vh;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.razdel .left-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.razdel .left-part a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font: 14px/14px "Roboto", sans-serif;
  font-weight: 700;
  color: #686a67;
  text-transform: uppercase;
  padding-left: 25px;
  margin-top: 75px;
}

.razdel .left-part a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0px;
  border-style: solid;
  border-width: 6px 12px 6px 0;
  border-color: transparent #686a67 transparent transparent;
}

.razdel .left-part h2 {
  display: inline-block;
  position: relative;
  font: 25px/25px "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #001d3e;
  margin: 15px 0 45px 0;
  -webkit-transform: translate(-300%);
  transform: translate(-300%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.razdel .left-part h2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #cbcbcb;
  bottom: -10px;
}

.razdel .left-part p {
  font: 16px/16px "Roboto", sans-serif;
  font-weight: 700;
  color: #000000;
}

.razdel .left-part img {
  display: block;
  width: 100%;
  margin: 45px 0 45px 0;
}

.razdel .left-part button {
  width: 320px;
  -ms-flex-item-align: center;
  align-self: center;
  background-color: #001d3e;
  border: 2px solid #001d3e;
  margin-top: 20px;
  padding: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-bottom: 20px;
}

.razdel .left-part button a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  padding: 15px 0;
  margin: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.razdel .left-part button a::before {
  display: none;
}

.razdel .left-part button:hover {
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.razdel .left-part button:hover a {
  color: #001d3e;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.razdel .right-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.razdel .right-part img {
  display: block;
  width: 100%;
}

.razdel .right-part h4 {
  font: 20px/25px "Roboto", sans-serif;
  font-weight: 700;
  color: #000000;
  margin-top: 30px;
  -webkit-transform: translate(200%);
  transform: translate(200%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.razdel .right-part ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 50px 0;
}

.razdel .right-part ul li {
  position: relative;
  font: 15px/18px "Roboto", sans-serif;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  padding-left: 45px;
}

.razdel .right-part ul li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #686a67;
  left: 0;
  top: 2px;
}

.razdel .right-part .second-image {
  height: 303px;
}

.razdel .form-wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #001d3edc;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.razdel .form-wrap .form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  /*height: 100vh;*/
  padding: 0px 40px;
  background-color: #001d3e;
  text-align: center;
  width: 400px;
}

.razdel .form-wrap .form p {
  position: relative;
  margin-bottom: 0px;
}

.razdel .form-wrap .form div {
  position: relative;
  color: #fff;
}

.razdel .form-wrap .form div br {
  display: none;
}

.razdel .form-wrap .form h3 {
  margin-top: 45%;
  margin-bottom: 30px;
  padding: 40px 40px 20px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: bold;
}

.razdel .form-wrap .form input {
  margin-bottom: 10px;
  padding: 5px 5px;
  width: 325px;
  font-size: 16px;
  color: #ffffff;
  border: 0px;
  border-bottom: 1px solid #f5f5f5;
  background-color: transparent;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}

.razdel .form-wrap .form input::-webkit-input-placeholder {
  color: #ffffff;
}

.razdel .form-wrap .form input::-moz-placeholder {
  color: #ffffff;
}

.razdel span.wpcf7-not-valid-tip {
  display: block;
}

.razdel .form-wrap .form span {
  right: 1px;
  top: 5px;
  color: #8d0f10;
  font-size: 12px;
  font-weight: bold;
}

.razdel .wpcf7-not-valid-tip {
  margin-top: -10px;
  /*margin-bottom: -20px;*/
}

.razdel .form-wrap .form input[type=submit] {
  width: 150px;
  margin-top: 50px;
  bottom: -15px;
  padding: 8px 30px;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font: 16px/16px "Roboto", sans-serif;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.razdel .form-wrap .form input[type=submit]:hover {
  border: 2px solid #001d3e;
  background-color: #737473;
  color: #001d3e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.razdel .open-form {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.razdel div.wpcf7 .ajax-loader {
  position: absolute;
  top: unset;
  bottom: 20px;
  right: 60px;
}

#closeFormBtn {
  position: absolute;
  top: 15%;
  right: 7%;
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

#closeFormBtn::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  top: 8px;
  left: 3px;
  background-color: #ffffff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#closeFormBtn::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  top: 8px;
  left: 3px;
  background-color: #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.projects {
  overflow: hidden;
  padding-left: 0px;
}

.projects h2 {
  margin-left: -20px;
  font: 40px/50px "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #cbcbcb;
  margin-top: 50px;
  -webkit-transform: translate(-150%);
  transform: translate(-150%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.projects .left-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -20px;
  padding-left: 0px;
}

.projects .left-part .projects-menu {
  padding-left: 0px;
}

.projects .left-part .projects-menu button {
  padding: 20px 25px;
  background-color: #001d3e;
  color: #ffffff;
  cursor: pointer;
}

.projects .left-part .projects-menu .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.projects .left-part .projects-menu .top div {
  position: relative;
  margin-left: 10px;
  padding: 25px 40px;
  border: 1px solid #686a67;
  color: #9d9c9c;
}

.projects .left-part .projects-menu .top div span:first-child {
  position: absolute;
  top: 5px;
  left: 12px;
  font-size: 18px;
}

.projects .left-part .projects-menu .top div span:last-child {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 32px;
}

.projects .left-part .projects-menu .top .toTop {
  position: relative;
}

.projects .left-part .projects-menu .top .toTop:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 19px;
  top: 24px;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.projects .left-part .projects-menu .middle {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.projects .left-part .projects-menu .middle ul {
  margin-bottom: 0px;
  padding: 10px 0px 10px 15px;
  list-style-type: none;
  border-left: 3px solid #ffffff;
}

.projects .left-part .projects-menu .middle ul li {
  font: 16px/20px "Roboto", sans-serif;
  color: #0a2646;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}

.projects .left-part .projects-menu .middle .check {
  position: absolute;
  top: 10px;
  left: 1px;
  border: 8px solid transparent;
  border-left: 8px solid #001d3e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.projects .left-part .projects-menu .bottom .toBottom {
  padding: 25px 25px;
  position: relative;
}

.projects .left-part .projects-menu .bottom .toBottom:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 19px;
  top: 18px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.projects .left-part .projects-text {
  overflow: hidden;
}

.projects .left-part .projects-text .headline {
  -webkit-transform: translate(150%);
  transform: translate(150%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.projects .left-part .projects-text .headline h3 {
  color: #001d3e;
  font-family: Roboto;
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
}

.projects .left-part .projects-text .text {
  margin-top: 20px;
  border-left: 2px solid #001d3e;
  padding: 0px 0px 15px 15px;
}

.projects .left-part .projects-text .text p {
  margin-bottom: 0px;
  font: 20px/20px "Roboto", sans-serif;
  color: #000000;
  font-weight: bold;
}

.projects .left-part .projects-text .text p:first-of-type {
  margin-bottom: 30px;
}

.projects .right-part .right-img {
  height: 100%;
  background-color: #001d3e;
}

.projects .right-part .right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-img {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex; */
  position: relative;
  width: 100%;
}

.projects-img .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.projects-img .owl-stage-outer {
  overflow: hidden;
}

.projects-img .owl-stage .owl-item {
  padding: 10px;
}

/* .projects-img .owl-stage .owl-item div{
  height: 100%;
} */

.projects-custom {
  padding: 0px;
}

.projects-img .owl-nav .owl-prev {
  position: absolute;
  width: 183px;
  height: 183px;
  top: 10px;
  left: -185px;
  background-color: #001d3e;
  font-size: 40px;
  color: white;
}

.projects-img .owl-nav .owl-next {
  position: absolute;
  width: 183px;
  height: 183px;
  top: 10px;
  right: -185px;
  background-color: #001d3e;
  font-size: 40px;
  color: white;
}

.projects-img .img1 {
  position: relative;
  background-color: #001d3e;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  cursor: pointer;
  display: block;
  height: 100%;
}

.projects-img .img1 img {
  width: 100%;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  object-fit: cover;
}

.projects-img .img1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #001d3e94;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.projects-img .img1 img {
  width: 100%;
  max-height: 100px;
  height: 100%;
  z-index: 1;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.projects-img .img1:hover img, .projects-img .img3:hover img, .projects-img .img5:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease;
  transition: .3s ease;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.projects-img .img1:hover:after, .projects-img .img3:hover:after, .projects-img .img5:hover:after {
  opacity: 0;
  -webkit-transition: .1s ease;
  transition: .1s ease;
}

.projects-img .img2 {
  width: 17%;
  background-color: #cbcbcb;
}

.projects-img .img3 {
  position: relative;
  background-color: #001d3e;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.projects-img .img3 img {
  width: 100%;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.projects-img .img3:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #001d3e94;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.projects-img .img3 img {
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.projects-img .img4 {
  width: 17%;
  background-color: #cbcbcb;
}

.projects-img .img5 {
  position: relative;
  z-index: 1;
  background-color: #001d3e;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.projects-img .img5:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #001d3e94;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.projects-img .img5 img {
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

/* IMAGE POPUP */

.image-popup {
  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;
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #001d3e94;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.image-popup.opened {
  opacity: 1;
  pointer-events: all;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.contacts {
  overflow: hidden;
}

.contacts .left-part {
  padding: 0px;
}

.contacts .left-part h2 {
  font: 40px/50px "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #cbcbcb;
  margin-top: 50px;
  -webkit-transform: translate(-100%);
  transform: translate(-100%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.contacts .left-part .contacts-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contacts .left-part .contacts-wrap .contacts-form {
  text-align: center;
}

.contacts .left-part .contacts-wrap .contacts-form h3 {
  color: #112c4b;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
}

.contacts .left-part .contacts-wrap .contacts-form form {
  position: relative;
}

.contacts .left-part .contacts-wrap .contacts-form form input[type=text], .contacts .left-part .contacts-wrap .contacts-form form input[type=number], .contacts .left-part .contacts-wrap .contacts-form form input[type=tel], .contacts .left-part .contacts-wrap .contacts-form form input[type=email] {
  width: 400px;
  padding: 0px 10px;
  margin-top: 0px;
  margin-bottom: 5px;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #001d3e48;
  color: #112c4b;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.contacts .left-part .contacts-wrap .contacts-form form input[type=text]::-webkit-input-placeholder, .contacts .left-part .contacts-wrap .contacts-form form input[type=number]::-webkit-input-placeholder, .contacts .left-part .contacts-wrap .contacts-form form input[type=tel]::-webkit-input-placeholder, .contacts .left-part .contacts-wrap .contacts-form form input[type=email]::-webkit-input-placeholder {
  color: #001d3e;
}

.contacts .left-part .contacts-wrap .contacts-form form input[type=text]::-moz-placeholder, .contacts .left-part .contacts-wrap .contacts-form form input[type=number]::-moz-placeholder, .contacts .left-part .contacts-wrap .contacts-form form input[type=tel]::-moz-placeholder, .contacts .left-part .contacts-wrap .contacts-form form input[type=email]::-moz-placeholder {
  color: #001d3e;
}

.contacts .left-part .contacts-wrap .contacts-form form input[type=text]:focus, .contacts .left-part .contacts-wrap .contacts-form form input[type=number]:focus {
  border-bottom: 1px solid #001d3e;
}

.contacts .left-part .contacts-wrap .contacts-form form input[type=submit] {
  margin-top: 30px;
  border: 1px solid #001d3e;
  padding: 5px 25px;
  background-color: transparent;
  color: #112c4b;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

span.wpcf7-not-valid-tip {
  font-size: 12px;
}

.contacts .left-part .contacts-wrap .contacts-form form input[type=submit]:hover {
  color: #ffffff;
  background-color: #001d3e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contacts .left-part .contacts-wrap .contacts-form form:before {
  content: "";
  position: absolute;
  height: 200px;
  width: 1px;
  background-color: #cbcbcb;
  left: -90px;
  top: 20px;
}

.contacts .left-part .contacts-wrap .contacts-form form p {
  margin-bottom: 0px;
}

.contacts .left-part .contacts-info {
  width: 1000px;
  padding-left: 20px;
  margin-right: 20px;
  margin-top: -5px;
}

.contacts .left-part .contacts-info h5 {
  margin-bottom: 0px;
  color: #cbcbcb;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
}

.contacts .left-part .contacts-info span {
  margin-right: 10px;
}

.contacts .left-part .contacts-info span i {
  margin-bottom: 15px;
  color: #cbcbcb;
  font-size: 18px;
}

.contacts .left-part .contacts-info span i:hover {
  color: #001d3e;
}

.contacts .left-part .contacts-info p {
  margin: 0px;
  color: #001d3e;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.contacts .left-part .contacts-info .email {
  margin: 15px 0px;
}

.contacts .left-part .contacts-info .email a {
  color: #001d3e;
}

.contacts .left-part .contacts-info .email a:hover {
  color: #001d3e;
  text-decoration: none;
}

.contacts .right-part {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
}

.contacts .right-part .map {
  width: 100%;
  background-color: #001d3e;
}

.contacts .right-part .map iframe {
  width: 100%;
  height: 100vh;
  opacity: 0.8;
}

.contacts div.wpcf7 .ajax-loader {
  position: absolute;
  bottom: 10px;
}

.partners h2 {
  font: 50px/50px "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #cbcbcb;
  margin-top: 75px;
  -webkit-transform: translate(-100%);
  transform: translate(-100%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.partners .partners-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 110px auto 0 auto;
  z-index: 2;
}

.partners .partners-slider .partner-item {
  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;
  padding: 12px 0;
}

.partners .partners-slider .partner-item img {
  margin-bottom: 100px;
}

.partners .partners-slider .partner-item img {
  padding: 0px 10%;
  width: 100%;
}

.partners .partners-slider .partner-item img:last-child {
  margin-bottom: 0;
}

.partners .slick-next, .partners .slick-prev {
  -ms-flex-item-align: center;
  align-self: center;
  background-color: #001d3e;
  color: #ffffff;
  padding: 20px 25px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  outline: none;
}

.partners .slick-next:hover, .partners .slick-prev:hover {
  background-color: #686a67;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.partners .slick-next {
  margin-left: 35px;
}

.partners .slick-prev {
  margin-right: 35px;
}

.partners .slick-slider .slick-track, .partners .slick-slider .slick-list {
  border-left: 2px solid #001d3e;
  border-right: 2px solid #001d3e;
}
.partner-tabs {
  margin: 110px auto 0 auto;
}
.partner-item {
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: space-between;*/
  margin-bottom: 50px;
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 260px 260px 260px;
}
.partner-item:last-child{
  margin-bottom: 0;
}

.partner-item a{
  /*width: 33.3%;*/
  max-width: 300px;
  padding: 0 20px;
}

.partner-nav:hover{
  color: #112c4b;
  background-color: transparent;
}

.partner-item img {
  width: 100%;
}
.partner-tab-panel {
  width: 100%;
  margin: 50px auto 0;
}

.partner-nav{
  color: #112c4b;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #112c4b;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
  background-color: transparent;
  /*border-color: transparent;*/
  color: #112c4b;
}
.partner-nav {
  justify-content: center;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-bottom: transparent;
}

.licenses h2 {
  font: 50px/50px "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #cbcbcb;
  margin: 75px 0 15px 0;
  -webkit-transform: translate(-100%);
  transform: translate(-100%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.licenses h3 {
  font: 35px/35px "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #cbcbcb;
  -webkit-transform: translate(-100%);
  transform: translate(-100%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.licenses .licenses-items {
  margin-top: 100px;
  border-left: 2px solid #001d3e;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.licenses .licenses-items ul {
  width: 600px;
  padding-left: 20px;
  list-style-type: none;
}

.licenses .licenses-items ul li {
  margin: 20px 0px;
}

.licenses .licenses-items ul li a {
  position: relative;
  padding: 10px 0px;
  color: #001d3e;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.licenses .licenses-items ul li a::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 0%;
  height: 1px;
  background-color: #cbcbcb;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.licenses .licenses-items ul li a:hover {
  color: #001d3e;
  text-decoration: none;
}

.licenses .licenses-items ul li a:hover::before {
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.licenses .licenses-image .animated.fadeIn.fast {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.licenses .right-part {
  background-color: #001d3e;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.licenses .right-part .licenses-img-wrap {
  margin-top: 50%;
  text-align: center;
}

.licenses .right-part .licenses-image {
  width: 80%;
}

.slideInTop {
  top: 0 !important;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.fadeIn {
  -webkit-animation: fade-in 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.fadeIn-block {
  -webkit-animation: fade-in-block 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-block 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

@-webkit-keyframes cube-loader {
  0%, 10% {
    -webkit-transform: perspective(136px) rotateX(-180deg);
    transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(136px) rotateX(0deg);
    transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(136px) rotateY(180deg);
    transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes cube-loader {
  0%, 10% {
    -webkit-transform: perspective(136px) rotateX(-180deg);
    transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(136px) rotateX(0deg);
    transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(136px) rotateY(180deg);
    transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}

.slideTop {
  -webkit-animation: slideTop 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slideTop 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slideTop {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideTop {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.animated.fadeInDown {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.animated.fadeIn {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

#logoUnitDesctop {
  position: absolute;
  right: 30px;
  bottom: 0px;
  text-align: center;
}

#logoUnitDesctop span {
  display: block;
}

#logoUnitDesctop p {
  margin-top: 12px;
}

#logoUnitDesctop img {
  width: 70px;
  margin-bottom: -10px;
}

#logoUnitDesctop a {
  font-family: "Roboto", sans-serif;
  font-size: 8px;
  color: #001d3e;
}

#logoUnitDesctop a:hover {
  color: #001d3e;
  text-decoration: none;
}

.logo-Unit-mobile {
  width: 50px;
}

@media screen and (max-width: 1920px) {
  .button-wrap .grey-button {
    right: 5.5%;
  }
  .partners .partners-slider .partner-item a {
    margin: 20px 0px 20px 0px;
  }
}

@media screen and (max-width: 1620px) {
  .page-bg .menu .top-logo {
    top: 35px;
  }
  .page-bg .menu ul a {
    padding: 10px 30px 10px 30px;
  }
  .button-wrap .grey-button {
    right: 4%;
  }
  .custom-container .about-us .about-us-text h2 {
    font: 60px/60px "Roboto", sans-serif;
  }
  .custom-container .about-us .about-us-text p {
    font-size: 14px;
  }
  .custom-container .about-us .about-us-text h4 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 10px;
  }
  .custom-container .about-us .about-us-text .history .history-item p {
    font-size: 12px;
  }
  .custom-container .about-us .about-us-text .history .history-item span {
    margin-bottom: 10px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point:first-child {
    margin-left: 10px;
  }
  .button-wrap {
    top: 100%;
  }
  .button-wrap .grey-button a {
    padding: 15px 65px;
  }
  .button-wrap .blue-button a {
    padding: 15px 60px;
  }
  .custom-container .about-us .about-us-text .history {
    margin: 20px 0px;
  }
  .custom-container .about-us .about-us-text .timeline::before {
    left: 20px;
  }
  .projects .left-part {
    margin-top: 50px;
  }
  .projects-img {
    margin-top: 2%;
  }
  .projects-img .owl-nav .owl-prev{
    width: 148px;
    height: 148px;
    left: -153px;
  }
  .projects-img .owl-nav .owl-next{
    width: 148px;
    height: 148px;
    right: -153px;
  }
  .custom-container .services .services-text .description-wrapper {
    margin-top: 70px;
  }
  .licenses .licenses-items {
    margin-top: 50px;
  }
  .razdel {
    overflow: hidden;
  }
  .razdel .left-part a {
    margin-top: 20px;
  }
  .razdel .left-part h2 {
    margin: 15px 0 25px 0;
  }
  .razdel .left-part p {
    font-size: 15px;
  }
  .razdel .left-part img {
    margin: 15px 0 15px 0;
  }
  .razdel .right-part h4 {
    font-size: 20px;
  }
  .razdel .right-part ul {
    margin: 0px;
  }
  .razdel .form-wrap .form h3 {
    margin-top: 30%;
  }
  .contacts .left-part .contacts-wrap .contacts-form form:before {
    left: -25px;
  }
}

@media screen and (max-width: 1440px) {
  .page-bg .menu .top-logo {
    width: 100px;
    margin-left: -50px;
  }
  .page-bg .menu ul a {
    padding: 10px 30px 10px 25px;
  }
  .page-bg .menu ul .sub-menu {
    width: 400px;
  }
  .page-bg .menu ul .sub-menu .sub-item a {
    margin-left: 30px;
  }
  .page-bg .menu .top-logo {
    top: 20px;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  .custom-container .about-us .about-us-text h2 {
    font: 50px/20px "Roboto", sans-serif;
    margin-top: 60px;
  }
  .custom-container .about-us .about-us-text h4 {
    font-size: 24px;
    line-height: 10px;
  }
  .custom-container .about-us .about-us-text .history {
    margin: 30px 0px;
  }
  .custom-container .about-us .about-us-text .history .history-item span {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .custom-container .about-us .about-us-text .history .history-item p {
    font-size: 11px;
  }
  .custom-container .about-us .about-us-text p {
    font-size: 12px;
  }
  .custom-container .about-us .about-us-text .timeline {
    margin-top: 50px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point {
    margin-right: 100px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point:first-child {
    margin-left: 0px;
  }
  .custom-container .about-us .about-us-text .timeline::before {
    width: 570px;
    left: 0px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point .time-descr {
    font-size: 12px;
  }
  .button-wrap {
    top: 100%;
    margin-top: -7%;
  }
  .button-wrap .blue-button a {
    padding: 13px 50px;
    font-size: 14px;
  }
  .button-wrap .grey-button {
    bottom: 0px;
    height: 50px;
    right: 5%;
    margin-left: -15px;
  }
  .button-wrap .grey-button a {
    padding: 13px 50px;
    font-size: 14px;
  }
  .custom-container .services .services-text h2 {
    font: 50px/20px "Roboto", sans-serif;
    margin-top: 60px;
  }
  .custom-container .services .services-text h4 {
    font-size: 24px;
    line-height: 10px;
  }
  .custom-container .services .services-text .services-list li {
    padding-bottom: 20px;
  }
  .custom-container .services .services-text .services-list li a {
    font-size: 16px;
    line-height: 10px;
  }
  .custom-container .services .services-text .description-wrapper {
    margin-top: 150px;
  }
  .custom-container .services .services-text .services-description p {
    font-size: 14px;
  }
  .razdel .left-part p {
    font-size: 14px;
  }
  .razdel .left-part a {
    margin-top: 50px;
  }
  .razdel .left-part h2 {
    margin: 15px 0 35px 0;
  }
  .razdel .left-part img {
    margin: 15px 0px;
  }
  .razdel .right-part h4 {
    margin-top: 33px;
    font-size: 18px;
  }
  .razdel .right-part ul {
    margin: 10px 0 20px;
  }
  .razdel .right-part ul li {
    margin-bottom: 15px;
    font-size: 12px;
  }
  .razdel .right-part ul li::before {
    width: 10px;
    height: 10px;
    top: 5px;
  }
  .razdel .form-wrap .form h3 {
    margin-top: 35%;
  }
  .projects h2 {
    margin-left: -16px;
  }
  .projects .left-part {
    margin-top: 40px;
    margin-left: -16px;
  }
  .projects-img {
    margin-top: 10%;
  }
  .projects-img .owl-nav .owl-prev {
    width: 130px;
    height: 130px;
    left: -135px;
  }
  .projects-img .owl-nav .owl-next {
    width: 130px;
    height: 130px;
    right: -135px;
  }
  .projects .left-part .projects-menu .middle ul li {
    font-size: 14px;
  }
  .projects .left-part .projects-text .text p {
    font-size: 16px;
  }
  .partners h2 {
    margin-top: 60px;
    font-size: 40px;
  }
  .partners .partners-slider {
    margin-top: 80px;
  }
  .partners .partners-slider .partner-item a {
    margin: 20px 0px 20px 0px;
  }
  .licenses h2 {
    font-size: 40px;
    margin: 50px 0 0px 0;
  }
  .licenses h3 {
    font-size: 25px;
  }
  .licenses .licenses-items {
    margin-top: 60px;
  }
  .licenses .licenses-items ul li a {
    font-size: 16px;
  }
  .licenses .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24%;
    flex: 0 0 24%;
  }
  .contacts .left-part .contacts-wrap .contacts-form form input[type=text], .contacts .left-part .contacts-wrap .contacts-form form input[type=number], .contacts .left-part .contacts-wrap .contacts-form form input[type=tel], .contacts .left-part .contacts-wrap .contacts-form form input[type=email] {
    width: 300px !important;
  }
  .contacts .left-part .contacts-wrap .contacts-form form:before {
    content: none;
    left: -40px;
  }
  .change_custom {
    font-size: 14px;
  }
  #logoUnitDesctop {
    right: 10px;
  }
  .contacts .right-part {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}

@media screen and (max-width: 1024px) and (max-width: 1200px) {
  .page-bg .logo {
    width: 350px;
  }
  .page-bg .menu .top-logo {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  .page-bg .menu ul a {
    padding: 10px 30px 10px 10px;
    font-size: 14px;
  }
  .custom-container .services .services-text .services-list li a {
    font-size: 14px;
  }
  .custom-container .services .services-text .description-wrapper {
    margin-top: 120px;
  }
  .custom-container .services .image-part img {
    width: 80%;
  }
  .razdel .left-part h2 {
    font-size: 18px;
  }
  .razdel .left-part p {
    font-size: 12px;
  }
  .razdel .left-part h2 {
    margin-bottom: 20px;
  }
  .razdel .left-part button {
    margin-top: 10px;
  }
  .projects .left-part {
    margin-top: 30px;
  }
  .projects .left-part .projects-text .text p {
    font-size: 14px;
  }
  .projects .left-part .projects-menu {
    padding-right: 0px;
  }
  .projects .left-part .projects-menu .middle ul li {
    font-size: 11px;
  }
  .licenses .licenses-items ul li a {
    font-size: 12px;
  }
  .licenses .right-part .licenses-img-wrap {
    margin-top: 80%;
  }
  .partners .slick-slider .slick-track, .partners .slick-slider .slick-list {
    padding-left: 10px;
  }
  .partners .partners-slider .partner-item img {
    width: 80%;
  }
}

@media screen and (min-width: 768px) and (max-width:769px) {
  .contacts .left-part {
    margin-bottom: 38%;
  }
}

@media screen and (max-width: 1366px) {
  .page-bg .logo {
    width: 400px;
    left: 53%;
  }
  .page-bg .menu ul li {
    margin: 3px 0px;
    padding-top: 0px;
    padding-bottom: 5px;
  }
  .page-bg .menu ul a {
    font-size: 12px;
  }
  .page-bg .menu ul .sub-menu {
    width: 330px;
  }
  .custom-container .about-us .about-us-text h2 {
    margin-top: 40px;
    font-size: 40px;
  }
  .custom-container .about-us .about-us-text h4 {
    margin-top: 25px;
    font-size: 20px;
  }
  .custom-container .about-us .about-us-text p {
    line-height: 16px;
  }
  .custom-container .about-us .about-us-text .history {
    margin: 15px 0px;
  }
  .custom-container .about-us .about-us-text .history .history-item span {
    margin-bottom: 10px;
  }
  .custom-container .about-us .about-us-text .history .history-item p {
    margin-bottom: 0px;
  }
  .custom-container .about-us .about-us-text .timeline {
    margin-top: 30px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point {
    margin-right: 100px;
  }
  .custom-container .about-us .about-us-text .timeline::before {
    width: 540px;
    left: 10px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point {
    width: 30px;
    height: 30px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point .time-date {
    left: -7px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point:first-child {
    margin-left: 5px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point .time-descr {
    font-size: 11px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point:nth-child(1) .time-descr {
    bottom: -50px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point:nth-child(2) .time-descr {
    bottom: -64px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point:nth-child(3) .time-descr {
    bottom: -64px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point:nth-child(4) .time-descr {
    bottom: -64px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point:nth-child(5) .time-descr {
    bottom: -64px;
  }
  .button-wrap {
    margin-top: -6%;
  }
  .button-wrap .blue-button {
    padding: 0px;
  }
  .button-wrap .grey-button {
    bottom: 0px;
    height: auto;
    right: 8.5%;
  }
  .button-wrap .blue-button a {
    padding: 9px 31px;
    font-size: 10px;
  }
  .button-wrap .grey-button a {
    padding: 8px 30px;
    font-size: 10px;
  }
  .custom-container .services .services-text h2 {
    font-size: 40px;
  }
  .custom-container .services .services-text h4 {
    font-size: 20px;
  }
  .custom-container .services .services-text .services-list li {
    padding-bottom: 10px;
  }
  .custom-container .services .services-text .description-wrapper {
    margin-top: 90px;
  }
  .custom-container .services .services-text .services-list li a {
    font-size: 14px;
  }
  .razdel {
    overflow: hidden;
  }
  .razdel .left-part {
    padding: 0px;
  }
  .razdel .right-part {
    padding: 0px;
  }
  .razdel .left-part a {
    margin-top: 25px;
    font-size: 10px;
  }
  .razdel .left-part h2 {
    margin: 10px 0 15px 0;
  }
  .razdel .left-part p {
    font-size: 12px;
  }
  .razdel .left-part img {
    margin: 0px 0px 10px;
  }
  .razdel .left-part button {
    width: 190px;
    margin-top: 0px;
  }
  .razdel .left-part button a {
    padding: 7px 0;
  }
  .razdel .right-part h4 {
    margin-top: 20px;
  }
  .razdel .right-part ul {
    margin: 10px 0 15px;
  }
  .razdel .right-part ul li {
    margin-bottom: 10px;
  }
  .razdel .form-wrap .form h3 {
    margin-top: 30%;
    font-size: 20px;
  }
  .razdel .form-wrap .form input, .razdel .form-wrap .form textarea {
    width: 325px;
    font-size: 14px;
  }
  .razdel .col-4.right-part {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
  }
  .projects h2 {
    margin-top: 40px;
    line-height: 30px;
  }
  .projects .left-part {
    margin-top: 20px;
  }
  .projects .left-part .projects-menu .middle ul li {
    font-size: 12px;
  }
  .projects .left-part .projects-text .text p {
    font-size: 12px;
  }
  .projects-img {
    bottom: 20px;
  }
  .partners h2 {
    margin-top: 40px;
    line-height: 40px;
  }
  .partners .partners-slider {
    margin-top: 60px;
  }
  .partner-item a {
    max-width: 200px;
  }
  .partner-nav{
    font-size: 12px;
  }
  .licenses h2 {
    margin-top: 40px;
    line-height: 30px;
  }
  .licenses .licenses-items ul li a {
    font-size: 14px;
  }
  .contacts .left-part .contacts-info p {
    font-size: 14px;
  }
  .contacts .left-part h2 {
    margin-top: 40px;
    line-height: 30px;
  }
  .contacts .left-part .map img {
    height: 250px;
  }
  /* CUSTOM */
  .change_custom {
    font-size: 12px;
  }
  .custom-container .services .services-text .description-wrapper {
    margin-top: 60px;
  }
  .custom-container .services .services-text .services-description p {
    font-size: 12px;
  }
  #logoUnitDesctop {
    right: 7px;
    bottom: -5px;
  }
  .contacts .right-part {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .projects-img .owl-nav .owl-prev{
    width: 122px;
    height: 122px;
  }
  .projects-img .owl-nav .owl-next{
    width: 122px;
    height: 122px;
  }
  #fullImage{
    height: 80vh;
  }
}

@media screen and (max-width: 1400px) and (min-height: 1000px) {
  .custom-container .about-us .about-us-text h4, .custom-container .about-us .about-us-text .timeline {
    margin-top: 15%;
  }
  .custom-container .about-us .about-us-text .history {
    margin-top: 10%;
  }
  .change_custom {
    margin-top: 10%;
    font-size: 14px;
  }
  .projects .left-part {
    margin-top: 30%;
  }
  .custom-container .services .services-text .services-list {
    margin-top: 30%;
  }
  .razdel .left-part h2 {
    margin-bottom: 30%;
  }
  .razdel .right-part .first-image {
    margin-top: 30%;
  }
  .partners .partners-slider {
    margin-top: 30%;
  }
  .contacts .left-part .contacts-wrap {
    margin-top: 75%;
  }
  .licenses .licenses-items {
    margin-top: 20%;
  }
  .licenses .right-part .licenses-img-wrap {
    margin-top: 75%;
  }
}

@media screen and (max-width: 1025px) and (min-height: 1360px) {
  .contacts .left-part .contacts-wrap {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .contacts .left-part .contacts-info {
    /* width: 70% !important; */
    margin-left: 50% !important;
    -webkit-transform: translate(-50%) !important;
    transform: translate(-50%) !important;
    padding-left: 0px !important;
  }
}

@media screen and (max-width: 992px) {
  .contacts .left-part {
    height: auto;
  }
  .feedback-popup {
    position: fixed;
    width: 100vw;
    height: 100vh;
    text-align: center;
  }
  .feedback-popup h1 {
    color: #ffffff;
    font-size: 36px;
    font-family: "Roboto", sans-serif;
  }
  .feedback-popup p {
    font-size: 20px;
  }
  .page-bg.mobile-index {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0px;
    height: 100vh;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .page-bg .logo {
    position: relative;
    top: 0;
    left: 0;
    margin: 0px;
    width: 250px;
    margin-top: 25vh;
    margin-bottom: 60vh;
    margin-left: 50%;
    -webkit-transform: translate(-47%);
    transform: translate(-47%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .index-pg-menu {
    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;
    position: absolute;
    bottom: -400px;
    margin-left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .index-pg-menu ul {
    padding-left: 0px;
    list-style-type: none;
    text-align: center;
    -webkit-transform: translateY(-3vh);
    transform: translateY(-3vh);
  }
  .index-pg-menu ul li {
    margin-top: 10px;
    width: 100px;
    border-bottom: 1px solid #001d3e;
  }
  .index-pg-menu ul li a {
    color: #001d3e;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: bold;
  }
  .index-pg-menu ul li a:hover {
    text-decoration: none;
  }
  .index-pg-menu div {
    text-align: center;
  }
  .index-pg-menu div img {
    width: 60px;
  }
  .index-pg-menu div p {
    margin-bottom: -10px;
    font-family: "Roboto", sans-serif;
    font-size: 7px;
    font-weight: bold;
  }
  .index-pg-menu div p a {
    color: #001d3e;
  }
  .menu-mobile {
    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;
    position: relative;
    padding: 5px 15px;
    -webkit-overflow-scrolling: touch;
    z-index: 5;
  }
  .menu-mobile div {
    width: 80px;
    height: 30px;
    margin-left: -5px;
  }
  .menu-mobile .menu-toggler {
    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;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #001d3e;
    z-index: 5;
    -webkit-transition: .3s ease;
    transition: .3s ease;
  }
  .menu-mobile .menu-toggler.opened {
    background-color: transparent;
    -webkit-transition: .3s ease;
    transition: .3s ease;
  }
  .menu-mobile .menu-toggler span {
    position: absolute;
    display: block;
    left: 16px;
    margin: 2px;
    width: 25px;
    border-radius: 25px;
    height: 4px;
    background-color: #ffffff;
    -webkit-transition: .3s ease;
    transition: .3s ease;
  }
  .menu-mobile .menu-toggler span:nth-child(1) {
    top: 19px;
  }
  .menu-mobile .menu-toggler span:nth-child(2) {
    top: 27px;
  }
  .menu-mobile .menu-toggler span:nth-child(3) {
    top: 35px;
  }
  .menu-mobile .menu-toggler span:nth-child(1).opened {
    top: 19px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: .3s ease;
    transition: .3s ease;
  }
  .menu-mobile .menu-toggler span:nth-child(2).opened {
    opacity: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
  }
  .menu-mobile .menu-toggler span:nth-child(3).opened {
    top: 34px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: .3s ease;
    transition: .3s ease;
  }
  .menu-mobile .menu-toggle {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    right: -1500px;
    background-color: #001d3ede;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .menu-mobile .menu-toggle ul {
    /*margin-top: 28%;*/
    margin-top: 5%;
    padding-left: 0px;
    padding-right: 15px;
    list-style-type: none;
    text-align: center;
  }
  .menu-mobile .menu-toggle ul li {
    margin-top: 20px;
  }
  .menu-mobile .menu-toggle ul li a {
    padding: 5px 5px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
  }
  .menu-mobile .menu-toggle ul li a:hover {
    color: #ffffff;
    text-decoration: none;
  }
  .menu-mobile .menu-toggle .close-menu-btn {
    display: none;
  }
  .menu-mobile .show {
    right: 0;
  }
  .phone-icon {
    position: fixed;
    right: 5px;
    bottom: 5px;
    z-index: 3;
  }
  .custom-container {
    height: auto;
  }
  .page-bg {
    height: 100vh !important;
    margin-top: -40px;
    padding-top: 40px;
    padding-bottom: 90px;
  }
  .page-bg.contacts {
    height: unset !important;
  }
  .page-bg::before {
    content: none;
  }
  .page-bg::after {
    content: none;
  }
  .custom-container .about-us .about-us-text h2 {
    margin-top: 40px;
    margin-left: -10px;
    font-size: 34px;
  }
  .custom-container .about-us .about-us-text h4 {
    margin-top: 20px;
    margin-left: -10px;
    font-size: 14px;
  }
  .custom-container .about-us .about-us-text .history {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 15px;
  }
  .custom-container .about-us .about-us-text .history .history-item {
    margin-top: 30px;
    padding: 0px 20px 0px 10px;
  }
  .custom-container .about-us .about-us-text .history .history-item span {
    margin-bottom: 5px;
    font-size: 13px;
  }
  .custom-container .about-us .about-us-text .history .history-item p {
    margin-bottom: 0px;
    font-size: 12px;
    line-height: 12px;
  }
  .custom-container .about-us .about-us-text .history p {
    margin-top: 0px;
  }
  .custom-container .about-us .about-us-text p {
    margin-top: 35px;
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 16px;
  }
  .custom-container .about-us .about-us-text .blue-button a {
    padding: 8px 15px;
    font-size: 10px;
    line-height: 10px;
    font-weight: 400;
  }
  .button-wrap {
    position: unset;
    margin-top: 30px;
    text-align: center;
    z-index: 2;
  }
  .timeline-mobile {
    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;
    position: relative;
    margin-top: 20px;
    margin-left: 15px;
  }
  .timeline-mobile .line {
    position: relative;
  }
  .timeline-mobile .line::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 24px;
    width: 2px;
    height: 210px;
    background-color: #001d3e;
  }
  .timeline-mobile .time-point-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
  }
  .timeline-mobile .time-point-mobile div:first-child {
    position: relative;
    width: 16px;
    height: 16px;
    margin-top: 13px;
    background-color: #ffffff;
    border: 2px solid #001d3e;
    border-radius: 50%;
    z-index: 2;
  }
  .timeline-mobile .time-point-mobile div:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 200px;
    margin-left: 20px;
    text-align: left;
  }
  .timeline-mobile .time-point-mobile div:last-child span:first-child {
    color: #001d3e;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    line-height: 14px;
  }
  .timeline-mobile .time-point-mobile div:last-child span:last-child {
    color: #001d3e;
    font-size: 12px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    line-height: 14px;
  }
  .button-wrap .grey-button {
    position: relative;
    height: auto;
    right: 0;
    margin-left: 0px;
    background: transparent;
    padding: 0px;
  }
  .about-us .button-wrap .blue-button {
    padding: 0px;
  }
  .about-us .button-wrap .blue-button a {
    width: 165px;
    padding: 0px;
    line-height: 14px;
  }
  .about-us .button-wrap .grey-button {
    margin-top: 15px;
    border: 2px solid #686a67;
  }
  .button-wrap .grey-button a {
    width: 165px;
    display: block;
    padding: 7px 10px;
    background-color: #686a67;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    line-height: 8px;
    font-weight: 400;
    text-transform: uppercase;
  }
  .button-wrap .grey-button a:hover {
    border: 2px solid #686a67;
    background-color: #686a67;
    color: #ffffff;
  }
  .footer-menu {
    position: absolute;
    margin-top: -55px;
    margin-left: 50%;
    padding-top: 10px;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    z-index: 1;
  }
  .page-bg.projects .footer-menu {
    bottom: 15px;
  }
  .footer-menu ul {
    padding-left: 0px;
    text-align: center;
    list-style-type: none;
  }
  .footer-menu ul li {
    padding-top: 5px;
  }
  .footer-menu ul li a {
    border-bottom: 1px solid #ffffff;
    padding: 5px 25px;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
  }
  .footer-menu ul li a:hover {
    text-decoration: none;
  }
  .footer-menu div {
    width: 170px;
    text-align: center;
  }
  .footer-menu div img {
    width: 60px;
  }
  .footer-menu div p {
    margin-bottom: 0px;
    line-height: 6px;
  }
  .footer-menu div p a {
    color: #001d3e;
    font-size: 7px;
    font-weight: 700;
  }
  .footer-menu div p a:hover {
    color: #ffffff;
    text-decoration: none;
  }
  .custom-container .services .services-text h2 {
    margin-top: 40px;
    margin-left: -10px;
    font-size: 34px;
  }
  .custom-container .services .services-text .services-list {
    margin-top: 40px;
    text-align: center;
  }
  .custom-container .services .services-text .services-list li {
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .custom-container .services .services-text .services-list li a {
    font-size: 14px;
  }
  .razdel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: unset !important;
  }
  .razdel .left-part {
    padding: 0;
  }
  .razdel .left-part a {
    margin-top: 35px;
    font-size: 10px;
  }
  .razdel .left-part a::before {
    left: 15px;
    top: 3px;
    border-style: solid;
    border-width: 4px 7px 4px 0;
  }
  .razdel .left-part h2 {
    padding: 0px 15px;
    margin: 5px 0 15px 0;
    font-size: 16px;
  }
  .razdel .left-part h2::before {
    content: none;
  }
  .razdel .left-part p {
    padding: 0px 15px;
    font-size: 15px;
  }
  .razdel .left-part img {
    margin: 20px 0px 30px 0px;
  }
  .razdel .right-part {
    padding: 0;
  }
  .razdel .right-part .first-image {
    margin-top: 20px;
  }
  .razdel .right-part h4 {
    padding: 0px 15px;
    margin-top: 30px;
    font-size: 16px;
  }
  .razdel .right-part ul {
    padding: 0px 15px;
  }
  .razdel .right-part ul li {
    padding-left: 25px;
    padding-right: 20px;
  }
  .razdel .right-part .second-image {
    height: auto;
  }
  .razdel .wpcf7-not-valid-tip {
    margin-top: -15px;
    margin-bottom: 0px;
  }
  .razdel .wpcf7-form-control-wrap {
    margin-top: 5px;
  }
  .button-wrap .blue-button {
    background-color: #0b2746;
    border: 2px solid #0b2746;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .button-wrap .blue-button a {
    padding: 5px 30px;
    display: block;
    text-align: center;
    text-decoration: none;
    font: 10px/16px "Roboto", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .button-wrap .blue-button a:hover {
    color: #ffffff;
  }
  .button-wrap .blue-button a:not([href]):not([tabindex]) {
    color: #ffffff;
  }
  .razdel .button-wrap .blue-button {
    background-color: #2f2f2f;
    border: 2px solid #2f2f2f;
  }
  .razdel .button-wrap .blue-button.opened {
    background-color: #001d3e;
    border: 2px solid #001d3e;
    ;
  }
  .razdel .button-wrap .blue-button:hover {
    border: 2px solid #2f2f2f;
  }
  .button-wrap .blue-button:hover {
    background-color: #2f2f2f;
    color: #ffffff;
  }
  .razdel .form-wrap {
    -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;
    position: relative;
    padding-bottom: 20px;
    margin-top: -20px;
    top: 0px;
    background-color: transparent;
    overflow: hidden;
    -webkit-transform: none;
    transform: none;
  }
  .razdel .form-wrap .form {
    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;
    position: relative;
    height: 0px;
    margin-top: 3px;
    background-color: #d0cfcf;
    background-image: url('../img/smallLogoBg.svg');
    background-position: left 50% top 40%;
    background-size: 42%;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .razdel .form-wrap .form div {
    position: relative;
    margin-top: 5px;
    color: #212529;
  }
  .razdel .form-wrap .form h3 {
    margin: 0px;
    padding: 40px 30px 0px;
    font-size: 19px;
    color: #0a2646;
  }
  .razdel .form-wrap .form input {
    width: 234px;
    margin-bottom: 15px;
    font-size: 10px;
    border-bottom: 1px solid #0b2746;
    color: #2f2f2f;
  }
  .razdel .form-wrap .form input::-webkit-input-placeholder {
    color: #2f2f2f;
  }
  .razdel .form-wrap .form input::-moz-placeholder {
    color: #2f2f2f;
  }
  .razdel .form-wrap .form span {
    right: 1px;
    top: 0px;
    color: #8d0f10;
    font-size: 10px;
    font-weight: bold;

  }

  /* .razdel span.wpcf7-not-valid-tip{
    display: none !important;
  } */
  .razdel div.wpcf7 .ajax-loader{
    right: 50px;
    bottom: 25px;
  }
  .razdel .form-wrap .form input[type=submit] {
    position: relative;
    display: none;
    margin-left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    width: 165px;
    bottom: 0px;
    padding: 8px 30px;
    background-color: #001d3e;
    border: 2px solid #001d3e;
    color: #ffffff;
    font: 10px/16px "Roboto", sans-serif;
    font-weight: 700;
    line-height: 12px;
    text-transform: uppercase;
    z-index: 10;
  }
  .razdel .form-wrap .form input[type=submit].show {
    display: block;
  }
  .razdel .form-wrap .open {
    /*height: 335px;*/
    height: 100%;
  }
  .razdel .form-wrap .form input[type=submit]:hover {
    background-color: #001d3e;
    color: #fff;
  }
  .contacts .left-part {
    padding: 0px;
  }
  .contacts .left-part h2 {
    padding-left: 25px;
    margin-top: 30px;
    margin-left: -10px;
    font-size: 34px;
    font-weight: 400;
  }
  .contacts .left-part .contacts-info {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: 50%;
    margin-top: 20px;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .contacts .left-part .contacts-info p {
    font-size: 16px;
  }
  .contacts .left-part .map {
    margin-top: 40px;
  }
  .contacts .left-part .contacts-wrap {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .partners {
    height: 100vh;
  }
  .partners h2 {
    margin-top: 25px;
    font-size: 34px;
    line-height: 34px;
    font-weight: 400;
  }
  .partners-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0px 25px 25px;
  }
  .partners-wrap .partner-item {
    margin-top: 50px;
    -ms-flex-item-align: center;
    align-self: center;
    text-align: center;
  }
  .partner-tabs {
    margin: 20px auto 0 auto;
  }
  .partner-tab-panel__wrapper  {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .partner-item {
    display: block;
    margin-bottom: 20px;
    /*width: 40%;*/
  }

  .partner-tab-panel.tab-pane.fade.active.show {
    display: grid;
    grid-template-columns: 300px 300px;
    grid-gap: 10px;
    justify-content: space-between;
  }
  .partner-item a {
    max-width: 25px;
    width: 40%;
    padding: 0;
  }
  .projects {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
  }
  .projects .projects-top {
    position: relative;
    margin-top: -40px;
    background-color: #001d3e;
  }
  .projects .projects-top h2 {
    position: absolute;
    margin-top: 70px;
    margin-left: 15px;
    font-size: 34px;
    color: #cbcbcb;
    z-index: 5;
  }
  .projects .projects-top .projects-top-img .right-img {
    background-color: #001d3e;
    height: 95vh;
    width: 100%;
  }
  .projects .projects-top .projects-top-img .right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .projects .projects-top .projects-top-img .toTop {
    position: absolute;
    padding: 35px 25px;
    top: 40%;
    left: -5px;
    background-color: transparent;
    color: #ffffff;
  }
  .projects .projects-top .projects-top-img .toTop::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .projects .projects-top .projects-top-img .toBottom {
    position: absolute;
    padding: 35px 25px;
    top: 40%;
    right: 15px;
    background-color: transparent;
    color: #ffffff;
  }
  .projects .projects-top .projects-top-img .toBottom::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    right: 5px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .projects .projects-top-content {
    position: absolute;
    bottom: 0;
    margin-left: 50%;
    margin-bottom: 40px;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    text-align: center;
  }
  .projects .projects-top-content .headline {
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .projects .projects-top-content .counter {
    display: none;
    position: relative;
    width: 80px;
    margin-left: 50%;
    margin-bottom: 20px;
    padding: 25px 40px;
    border: 1px solid #ffffff;
    color: #ffffff;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .projects .projects-top-content .counter span:first-child {
    position: absolute;
    top: 5px;
    left: 12px;
    font-size: 18px;
  }
  .projects .projects-top-content .counter span:last-child {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 32px;
  }
  .projects .projects-text-mobile .headline {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .projects .projects-text-mobile .headline h3 {
    margin-left: 15px;
    color: #001d3e;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
  }
  .projects .projects-text-mobile .text {
    margin-bottom: 40px;
  }
  .projects .projects-text-mobile .text p {
    border-left: 2px solid #001d3e;
    margin-left: 16px;
    padding: 0px 30px 0px 15px;
    color: #000000;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: bold;
  }
  .projects .project-mobile-slider {
    position: relative;
    height: 220px;
    margin: 30px 0px;
    overflow: hidden;
  }
  .projects .project-mobile-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .projects .left-part {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    margin-top: -40px;
    margin-left: 0;
    background-color: #001d3ede;
    width: 100vw;
    height: 120vh;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 10;

  }
  .projects .left-part .projects-menu .middle {
    position: relative;
  }
  .projects .left-part .projects-menu .middle ul {
    /*width: 200px;*/
    border-left: 0px;

    width: 350px;
    border-left: 0px;
    padding-top: 65px;
    padding-left: 0;
  }
  .projects .left-part .projects-menu .middle ul li {
    margin: 10px 0px;
    color: #ffffff;
  }
  .projects .left-part .close-project-btn {
    position: absolute;
    top: 6%;
    right: 5%;
    width: 20px;
    height: 20px;
    border: 1px solid #ffffff;
  }
  .menu-mobile {
    display: flex;
  }
  .menu-mobile.hidden {
display: none;
  }
  .projects .left-part.show .close-project-btn::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 1px;
    top: 8px;
    left: 3px;
    background-color: #ffffff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .projects .left-part .close-project-btn::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 1px;
    top: 8px;
    left: 3px;
    background-color: #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .lock-position {
    height: 100%;
    overflow: hidden;
    width: 100%;
    position: fixed;
  }
  .projects .show {
    -webkit-transform: translate(0);
    transform: translate(0);
    padding: 0;
  }
  .checkProjectButton {
    text-align: center;
  }
  /* .projects .checkProjectButton button{
    display: none;
  } */
  .checkProjectButton button {
    margin-bottom: 20px;
    padding: 7px 25px;
    background-color: #686a67;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: bold;
  }
  .owl-nav span {
    display: none;
  }
  .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .licenses .licenses-items {
    margin-top: 10px;
  }
  .page-bg.licenses {
    padding-bottom: 60px;
  }
  .licenses {
    background-color: #0b2746;
  }
  .licenses .left-part {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .licenses .left-part h2 {
    margin-left: 15px;
    font-size: 34px;
  }
  .licenses .left-part h3 {
    margin-left: 15px;
    font-size: 24px;
    font-weight: 500;
  }
  .licenses .left-part .checkLicensesItemBtn-left {
    position: absolute;
    top: 40%;
    left: 5px;
    padding: 35px 25px;
    background-color: transparent;
    color: #ffffff;
    z-index: 3;
  }
  .licenses .left-part .checkLicensesItemBtn-left::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    left: 20px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .licenses .left-part .checkLicensesItemBtn-right {
    position: absolute;
    top: 40%;
    right: 5px;
    padding: 35px 25px;
    background-color: transparent;
    color: #ffffff;
  }
  .licenses .left-part .checkLicensesItemBtn-right::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    right: 15px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .licenses .left-part .counter {
    display: none;
    position: relative;
    width: 80px;
    margin-left: 50%;
    margin-bottom: 20px;
    padding: 25px 40px;
    border: 1px solid #ffffff;
    color: #ffffff;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .licenses .left-part .counter span:first-child {
    position: absolute;
    top: 5px;
    left: 12px;
    font-size: 18px;
  }
  .licenses .left-part .counter span:last-child {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 32px;
  }
  .licenses .left-part .licenses-headline {
    margin-top: -15px;
    margin-left: 50%;
    margin-bottom: 30px;
    width: 170px;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .licenses .left-part .checkProjectButton-btn {
    width: 200px;
    text-transform: uppercase;
  }
  .licenses-img-wrap {
    position: relative;
  }
  .licenses-img-wrap .licenses-items ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-left: 0px;
  }
  .licenses-img-wrap .licenses-items ul li:focus {
    outline: none;
  }
  .licenses-img-wrap .licenses-items ul li img {
    width: 60%;
    margin-left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    /*opacity: 0.5;*/
  }
  .footer-menu div .textUnitSpaceWhite {
    color: #fff;
  }
  .page-404 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 87vh;
    width: 100%;
    margin-left: 5%;
    margin-top: 20%;
  }
  .page-404 h1 {
    margin-top: 20%;
    font-size: 100px;
    color: #cbcbcb;
    background-color: transparent;
  }
  .page-404 p {
    color: #112c4b;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 19px;
  }
  .page-404 button {
    width: 225px;
    margin-top: 50px;
    background-color: transparent;
  }
  .page-404 button a {
    padding: 10px 30px;
    font-size: 16px;
    color: #001d3e;
    border: 1px solid #001d3e;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .page-404 button a:hover {
    background-color: #001d3e;
    color: #ffffff;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .menu.page404 {
    display: none;
  }
  .custom-container .services .services-text .services-list li a::before{
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .contacts .left-part .contacts-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0px;
  }
  .contacts .left-part .contacts-wrap .contacts-form {
    margin-top: 30px;
  }
  .contacts .left-part .contacts-wrap .contacts-form h3 {
    padding: 10px 30px;
    margin-bottom: 0px;
    font-size: 14px;
    -webkit-transform: translateX(-250%);
    transform: translateX(-250%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .contacts .left-part .contacts-wrap .contacts-form form input[type=text], .contacts .left-part .contacts-wrap .contacts-form form input[type=number] {
    width: 290px;
    font-size: 12px;
  }
  .contacts .left-part .contacts-wrap .contacts-form form input[type=text], .contacts .left-part .contacts-wrap .contacts-form form input[type=number], .contacts .left-part .contacts-wrap .contacts-form form input[type=tel], .contacts .left-part .contacts-wrap .contacts-form form input[type=email] {
    font-size: 12px;
  }
  .contacts .left-part .contacts-wrap .contacts-form form input[type=submit] {
    padding: 5px 40px;
    background-color: #001d3e;
    color: #fff;
    font-size: 14px;
  }
  .contacts .left-part .contacts-wrap .contacts-form form:before {
    content: none;
  }
  .page-bg.projects {
    height: unset !important;
  }
  .custom-container.services {
    height: 85vh;
    background-image: url('../img/smallLogoBgWhite.svg');
    background-image: url(../img/smallLogoBgWhite.svg);
    background-position: left 50% top 40%;
    background-size: 75%;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 992px) and (min-height: 780px){
  .page-bg.licenses{
    height: 100vh !important;
  }
}
/*@media screen and (max-width: 992px) and (max-height: 1200px){*/
/*  .page-bg.licenses{*/
/*    height: 100vh;*/
/*  }*/
/*}*/
@media screen and (min-width: 768px) and (max-width: 992px) {
  .page-bg .logo {
    width: 350px;
  }
  .services {
    height: 62vh;
  }
  .custom-container .services .services-text .services-list li a {
    font-size: 18px;
  }
  .menu-mobile .menu-toggle ul li a {
    font-size: 14px;
  }
  .projects .projects-text-mobile .text p {
    font-size: 16px;
  }
  .razdel .left-part p {
    font-size: 16px;
  }
  .footer-menu ul li {
    padding-top: 10px;
  }
  .footer-menu ul li a {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .custom-container .about-us .about-us-text .history {
    margin: 20px 0px;
  }
  .custom-container .about-us .about-us-text .history .history-item {
    padding: 5px;
  }
  .custom-container .about-us .about-us-text .history .history-item span {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .custom-container .about-us .about-us-text .history .history-item p {
    margin-bottom: 0px;
    font-size: 12px;
  }
  .custom-container .about-us .about-us-text p {
    font-size: 14px;
  }
  .button-wrap .blue-button {
    padding: 0px;
  }
  .button-wrap .blue-button a {
    width: 160px;
    font-size: 10px;
    padding: 6px 10px
  }
  .button-wrap .grey-button a {
    display: block;
    width: 160px;
    font-size: 10px;
    padding: 6px 10px;
  }
  .custom-container .about-us .about-us-text .timeline::before {
    width: 400px;
  }
  .button-wrap .grey-button {
    height: auto;
    padding: 0px;
    border: 2px solid #686a67;
    bottom: 0px;
    right: 10%;
  }
  .custom-container .about-us .about-us-text .timeline .time-point {
    margin-right: 68px;
  }
  .custom-container .about-us .about-us-text .timeline .time-point .time-descr {
    font-size: 10px;
    padding: 5px 20px;
  }
  .projects .left-part .projects-text .text p {
    font-size: 12px;
  }
  .contacts .left-part .contacts-wrap .contacts-form {
    margin-top: 20px;
  }
  .contacts .left-part .contacts-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .contacts .left-part .contacts-wrap .contacts-form form input[type=text], .contacts .left-part .contacts-wrap .contacts-form form input[type=tel], .contacts .left-part .contacts-wrap .contacts-form form input[type=email] {
    width: 300px !important;
  }
  .contacts .left-part .contacts-wrap .contacts-form form:before {
    height: 200px;
    width: 1px;
    left: -50px;
    top: 0;
  }
  .contacts .left-part .contacts-info {
    width: 35%;
    margin-top: 15px;
    margin-left: 10px;
    -webkit-transform: none;
    transform: none;
  }
  .licenses-img-wrap .licenses-items ul li img {
    width: 45%;
  }
  .custom-container .services .services-text .services-description p {
    font-size: 10px;
  }
  .col-6.image-part {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
  }
  .contacts .left-part .contacts-wrap .contacts-form form:before {
    left: -25px;
  }
  #logoUnitDesctop {
    right: 5px;
  }
  #logoUnitDesctop a {
    font-size: 6px;
  }
  .projects-img .owl-nav .owl-prev{
    width: 84px;
    height: 84px;
    left: -102px;
  }
  .projects-img .owl-nav .owl-next{
    width: 84px;
    height: 84px;
    right: -102px;
  }
  #fullImage {
    height: 70vh;
}
}

@media screen and (min-width: 768px) and (max-width: 850px) {
  .button-wrap .grey-button {
    right: 0;
  }
}

@media (max-width: 992px) and (orientation: landscape) {
  #animateLogoMobile {
    margin-left: 70%;
    margin-top: 7vh;
  }
  #animateMenuMobile {
    margin-top: 20px;
    bottom: 50px;
  }
  .page-bg .logo {
    width: 220px;
    margin-top: 20vh;
  }
  .index-pg-menu {
    margin-left: 25%;
    bottom: -100vh;
  }
  .index-pg-menu .index-pg-menu-unit {
    position: absolute;
    width: 110px;
    bottom: -10vh;
    left: 26vw;
  }
  .page-bg.mobile-index {
    height: 100vh;
  }
  .menu-mobile .menu-toggle ul {
    margin-top: 10%;
  }
  .projects .left-part .projects-menu {
    margin-top: 10%;
  }
  .projects .left-part .projects-menu .middle ul li {
    margin: 0px 0px;
  }
  .index-pg-menu ul {
    margin-bottom: 20px;
  }
  .licenses-img-wrap .licenses-items ul li img {
    width: 35%;
  }
  .services {
    height: auto;
  }
  .partners {
    height: auto;
  }
  .contacts .left-part .contacts-wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contacts .left-part .contacts-wrap .contacts-form form:before {
    height: 150px;
    width: 1px;
    left: -10px;
    top: 20px;
  }
  .contacts .left-part .contacts-wrap .contacts-form {
    margin-top: 30px;
  }
  .contacts .left-part .map {
    margin-top: 20px;
    margin-left: 35px;
    width: 65%;
  }
  .contacts .left-part .map img {
    width: 90%;
    height: auto;
  }
  .contacts .left-part .map {
    margin-top: 50px;
    margin-left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .razdel .form-wrap .form input[type=submit] {
    bottom: 18px;
  }
  .menu-mobile .menu-toggle ul li {
    margin-top: 5px;
  }
  .menu-mobile .menu-toggle ul li a {
    font-size: 18px;
  }
  .contacts .left-part .contacts-info {
    margin-left: 0px;
    -webkit-transform: none;
    transform: none;
  }
  .custom-container.services {
    height: auto;
    background-position: left 50% top 85%;
    background-size: 40%;
  }
  .projects .left-part .close-project-btn {
    top: 15%;
  }
}

@media (min-width: 320px) and (max-width: 350px) {
  .page-bg .logo {
    width: 200px;
  }
  .contacts .left-part .contacts-wrap .contacts-form form:before {
    top: -45%;
  }
  .index-pg-menu ul {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media only screen and (device-width: 736px) and (device-height: 414px) {
  #animateLogoMobile {
    margin-top: 15vh;
  }
}

@media only screen and (device-width: 375px) and (device-height: 812px) {
  .index-pg-menu ul {
    -webkit-transform: translateY(-7vh);
    transform: translateY(-7vh);
  }
  .contacts .left-part {
    height: auto;
  }
  .page-bg.licenses {
    height: 100vh;
  }
  .custom-container .services .services-text .services-list {
    margin-top: 30%;
  }
}

@media only screen and (device-width: 812px) and (device-height: 375px) {
  .contacts .left-part {
    height: auto;
  }
}

@media (min-width: 320px) and (max-width: 568px) and (orientation: landscape) {
  #animateLogoMobile {
    margin-top: -5vh;
  }
  .partner-item a img {
    width: 75%;
  }
  #animateMenuMobile {
    bottom: 45px;
  }
  .page-bg .logo {
    margin-top: 5vh;
  }
}

@supports (-webkit-marquee-repetition: infinite) and ((-o-object-fit: fill) or (object-fit: fill)) {
  .button-wrap .grey-button {
    bottom: 0px !important;
  }
  .razdel .wpcf7-not-valid-tip {
    margin-bottom: 5px !important;
  }
  .preloader #cube-loader .cube-loader .cube:before {
    -webkit-animation: cube-loader 2.2s infinite linear both;
    animation: cube-loader 2.2s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }

   .preloader #cube-loader .cube-loader .loader-1:before {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }
  .preloader #cube-loader .cube-loader .loader-2:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  .preloader #cube-loader .cube-loader .loader-3:before {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
  }
  .preloader #cube-loader .cube-loader .loader-4:before {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
  }
  .razdel span.wpcf7-not-valid-tip{
    margin-top: -17px;
  }
}

@-moz-document url-prefix() {
  .razdel .wpcf7-not-valid-tip {
    margin-bottom: 3px !important;
  }
}

.projects-img .owl-nav .owl-prev,
.projects-img .owl-nav .owl-next {
  max-height: 100px;
  height: 100px;
}

#fullImage {
  max-width: 100%;
}

.image-popup.opened div {
  max-width: 90%;
}

.insta_icon {
  margin-top: 10px;
  display: block;
}

.insta_icon i {
  font-size: 2rem;
  color: #001d3e;
}

.projects .left-part .projects-menu .middle ul li {
  display: flex;
}

.project_abs {
  width: 15%;
}

.project_abs_p {
  width: 85%;
}

.top_tabs .nav-tabs {
  border: none;
}

.top_tabs .nav-link.active,
.top_tabs .nav-link {
  border: 1px solid #112c4b;
}

.top_tabs .nav-link {
  border-radius: 0;
}

.top_tabs .nav-tabs .nav-item {
  margin: 0 auto;
}

.top_tabs .nav-tabs .nav-item:first-child {
  margin-left: 0;
}

.left-part .tab-pane {
  display: none;
}

.left-part .tab-pane.active {
  display: flex;
}

.tab-pane .tab-pane-status {
  display: none;
}

.tab-pane.active .tab-pane-status {
  display: flex;
  flex-direction: column;
}

.video {
  margin-top: 40px;
}

.video iframe {
  width: 100%;
  height: 400px;
}

.languages_menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.languages_menu .lang-item {
  text-align: center;
  width: 25%!important;
}

.languages_menu .lang-item a {
  padding: 0!important;
}

@media screen and (max-width: 768px) {
  .languages_menu {
    width: 100%;
  }
  .partner-tab-panel.tab-pane.fade.active.show {
    display: grid;
    grid-template-columns: 150px 150px;
    grid-gap: 10px;
    justify-content: space-between;
  }
}


.check-arrow {
  position: absolute;
  top: 10px;
  left: 1px;
  border: 8px solid transparent;
  border-left: 8px solid #001d3e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
