@charset "UTF-8";
@font-face {
  font-family: "montserrat";
    src: url("./fonts/montserrat/Montserrat.ttf") format("truetype");
}
@font-face {
  font-family: "roboto";
    src: url("./fonts/roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "roboto-bold";
    src: url("./fonts/roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --red: #E6332A;
  --gray: #E1E1E5;
  --white: #fff;
  --transition-time: 300ms;
  --logo-width: 200px;
  --width-phone: 390px;
}

body {
  background: var(--gray);
  font-family: roboto, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.18px;
  padding: 0;
  margin: 0 auto;
  background: black;
  overflow-wrap: anywhere;
}

.sandwich-button {
  width: 52px;
  height: 52px;
  display: grid;
  gap: 6px;
  padding: 0;
  border: none;
  background: transparent;
}
.sandwich-button .white-block,
.sandwich-button .red-block {
  height: 13px;
  transition: 0.5s;
}
.sandwich-button .white-block {
  background: white;
}
.sandwich-button .red-block {
  background: var(--red);
  display: flex;
  width: 50%;
  justify-self: flex-end;
}

.sandwich-button:hover .white-block {
  background: var(--red);
}
.sandwich-button:hover .red-block {
  width: 100%;
  background: white;
}

.overflow-menu {
  background: #202930;
  width: 317px;
  height: 100%;
  position: fixed;
  right: -317px;
  top: 0;
  z-index: 999;
  transition: 0.3s;
}

.overflow-menu.visible {
  right: 0;
}

.overflow-menu-header {
  padding: 70px 60px;
  display: flex;
  justify-content: flex-end;
}

.overflow-menu-item {
  text-transform: uppercase;
  color: #E1E1E5;
  font-size: 24px;
  line-height: 30px;
  display: flex;
  padding: 10px 61px;
}

.body-wrapper {
  background: #E1E1E5;
}

@media (max-width: 425px) {
  .h1-small {
    font-size: 30px;
  }
}
a {
  color: var(--red);
  font-family: roboto, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.18px;
  text-decoration: none;
}

ul, ol {
  padding: 0;
  margin: 0;
}

.btn {
  background: #E6332A;
  color: #fff;
  padding: 18px 32px;
  font-family: Montserrat, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover {
  border-radius: 35px;
  color: #202930;
}

.logo-wrapper {
  background: transparent;
  display: flex;
  align-items: center;
  grid-auto-flow: column;
  gap: 16px;
  width: var(--logo-width);
}

.logo-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.not-found-page {
  margin-top: 132px;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: calc(100% - 132px);
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
.not-found-page .page-header {
  position: unset !important;
}
.not-found-page .btn {
  align-self: center;
}

@media (max-width: 992px) {
  .d-none-laptop {
    display: none !important;
  }
  .header-wrapper {
    padding: 20px 30px;
  }
  .header-wrapper .header-first {
    margin-bottom: 24px;
  }

  .overflow-menu-header {
    padding: 55px 30px;
  }
}
@media (max-width: 1440px) {
  .header-second {
    grid-gap: 25px !important;
  }
  :root {
    --logo-width: 160px;
  }
}
@media (max-width: 1200px) {
  .d-none-desktop {
    display: none !important;
  }
  .header-second {
    display: flex !important;
    justify-content: space-between;
  }
  .header-second {
    grid-gap: 20px !important;
  }
}
.button-helper {
  height: 70px;
}

.main-block {
  padding: 65px 126px 60px 126px;
  position: relative;
}

.d-none-sm {
  display: block;
}

.full-width-sm {
  width: 375px;
}

@media (min-width: 768px) {
  .services-and-solutions-wrapper {
    padding: 154px 0 82px 0 !important;
  }
}
@media (max-width: 768px) {
  .main-block,
  .common-padding {
    padding: 0 15px 44px;
  }
  .full-width-sm {
    width: 100%;
  }
  .d-none-sm {
    display: none !important;
  }
  .carousel-content {
    overflow: auto;
  }
}
.secondary-block {
  background: #202930;
}
.secondary-block .secondary-block-wrapper {
  padding-left: 129px;
  padding-bottom: 30px;
  margin-top: 29px;
}

@media (max-width: 768px) {
  .secondary-block .secondary-block-wrapper {
    padding: 30px 30px;
    margin-top: 0;
  }
}
.grid-50-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid-50-50-with-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.grid-70-30-with-img {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
}

.grid-30-70-with-img {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .grid-50-50 {
    grid-template-columns: 1fr;
  }
  .grid-50-50-with-img {
    display: flex;
    flex-direction: column;
  }
  .grid-70-30-with-img {
    display: flex;
    flex-direction: column;
  }
  .grid-70-30-with-img.img {
    height: 100px;
  }
}
@media (max-width: 992px) {
  .grid-70-30-with-img {
    display: flex;
    flex-direction: column;
  }
  .grid-30-70-with-img {
    display: contents;
  }
}
.center {
  display: flex;
  justify-content: center;
}

.img-padding {
  padding: 77px 0;
}

.img-size {
  max-width: 100%;
  max-height: 100%;
}

.padding-left-79 {
  padding-left: 79px;
}

.padding-top-0 {
  padding-top: 0 !important;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-27 {
  padding-top: 27px;
}

.padding-top-53 {
  padding-top: 53px;
}

.padding-bottom-65 {
  padding-bottom: 65px;
}

@media (max-width: 992px) {
  .padding-bottom-65 {
    padding-bottom: 22px !important;
  }
}
.padding-bottom-87 {
  padding-bottom: 87px;
}

.padding-bottom-110 {
  padding-bottom: 110px;
}

@media (max-width: 768px) {
  .padding-left-79 {
    padding-left: 0;
  }
  .padding-top-10 {
    padding-top: 0;
  }
  .padding-top-53 {
    padding-top: 25px;
  }
  .padding-bottom-110 {
    padding-bottom: 20px;
  }
}
.h-header {
  padding: 63px 129px 0;
}

@media (max-width: 768px) {
  .h-header {
    padding: 60px 30px 0;
  }
}
.margin-secondary-h2 {
  margin: 62px 130px 0 130px;
}

@media (max-width: 768px) {
  .margin-secondary-h2 {
    margin: 32px 30px 0 30px;
  }
}
@media (max-width: 768px) {
  .img-padding {
    padding: 39px 0;
  }
}
.text-secondary {
  color: #E1E1E5;
}

.news h1 {
  margin: 0 0 0 25px;
}
.news .news-body {
  display: grid;
  grid-template-columns: 268px 1fr;
  padding-bottom: 43px;
}
.news .news-body h4 {
  color: var(--red);
  margin: 0;
}
.news .news-body .news-img img {
  max-height: 100%;
  max-width: 100%;
}
.news .news-body .news-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 25px;
}
.news .news-body .news-main div:nth-child(2) {
  margin-bottom: auto;
}
.news .news-body .news-footer {
  display: flex;
  justify-content: space-between;
}
.news .news-body .news-footer a {
  color: var(--red);
}
.news .news-body .news-footer span {
  color: #878787;
}
.news .news-body:first-child {
  padding-top: 19px;
}
.news .news-body:last-child {
  padding-bottom: 0;
}
.news .nav-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
}
.news .nav-content .pagination {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.news .nav-content .pagination li {
  border: 1px solid #878787;
  background: #FFF;
  text-decoration: none;
  margin: 0 5px;
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.news .nav-content .pagination li a {
  text-decoration: none;
  color: #878787;
}
.news .nav-content .pagination li:hover {
  border: 1px solid var(--red);
  background: var(--red);
}
.news .nav-content .pagination li:hover a {
  color: #fff;
}
.news .nav-content .news-archive {
  text-align: right;
}

@media (max-width: 768px) {
  .news {
    margin: 0 15px 44px;
  }
  .news h1 {
    margin: 0;
  }
  .news .news-wrapper {
    display: flex;
    flex-direction: column;
  }
  .news .news-wrapper .news-body {
    grid-template-columns: 1fr;
    grid-template-rows: 230px 1fr;
  }
  .news .news-wrapper .news-body .news-main {
    margin-left: 0;
    margin-top: 20px;
  }
  .news .news-wrapper .news-body .news-main div {
    padding-top: 17px;
  }
  .news .news-wrapper .news-body .news-main p:first-child {
    margin-top: 0;
  }
  .news .nav-content {
    display: flex;
    flex-direction: column;
    margin-top: 57px;
  }
}
@media (max-width: 768px) and (max-width: 425px) {
  .news .nav-content .pagination li {
    width: 27px;
    height: 27px;
  }
}
@media (max-width: 768px) {
  .news .nav-content .news-archive {
    margin-top: 44px;
    text-align: left;
  }
}
.publications h1 {
  font-weight: bold;
  color: #E1E1E5;
  margin: 0 0 100px 0;
}
.publications .publications-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.publications .publications-items .publications-item {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 61px;
}
.publications .publications-items .publications-item a {
  font-family: Montserrat, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.publications .publications-archive {
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .publications {
    padding: 40px 30px;
  }
  .publications h1 {
    color: #E1E1E5;
    margin: 0 0 41px 0;
  }
  .publications .publications-items {
    display: flex;
    flex-direction: column;
  }
  .publications .publications-archive {
    flex-direction: row;
  }
}
.ul-custom {
  color: #E1E1E5;
}
.ul-custom li {
  list-style-type: none;
  padding: 20px 0 0 40px;
  position: relative;
}
.ul-custom li:first-child {
  padding: 0 0 0 40px;
}
.ul-custom li::before {
  font-family: Roboto, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.18px;
  content: "→";
  position: absolute;
  color: #E6332A;
  left: 0; /* Позиционируем маркер по горизонтали */
}

@media (max-width: 768px) {
  .ul-custom {
    padding: 0;
  }
  .ul-custom li:first-child {
    padding-left: 30px !important;
  }
  .ul-custom li {
    padding-left: 30px;
  }
}
@media (max-width: 768px) {
  .helper {
    margin: 0 32px;
  }
  .helper h1 {
    margin-left: 30px;
    font-size: 30px;
  }
}
.color-black {
  color: #202930 !important;
}

.color-red {
  color: #E6332A !important;
}

.color-white {
  color: #E1E1E5 !important;
}

.color-gray-dark {
  color: #878787 !important;
}

.color-gray {
  color: #E1E1E5 !important;
}

.m-0 {
  margin: 0 !important;
}

.pims-wrapper {
  margin: 0 130px 0 21px;
}

.pims-h2 {
  padding-bottom: 30px;
  margin-top: 30px;
}

.pims-img {
  height: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  .pims-wrapper {
    margin-right: 0;
  }
  .pims-img {
    height: 100%;
    max-width: 100%;
  }
}
.spisok h2 {
  color: #202930;
  padding-bottom: 28px;
}
.spisok ul.numeric-decimals {
  counter-reset: section;
  list-style-type: none;
}
.spisok ul.numeric-decimals li {
  list-style-type: none;
  padding: 10px 0 0 40px;
  position: relative;
}
.spisok ul.numeric-decimals li ul {
  counter-reset: subsection;
}
.spisok ul.numeric-decimals li ul li {
  padding: 10px 0 0 40px;
  position: relative;
  counter-increment: li-counter;
}
.spisok ul.numeric-decimals li ul li:before {
  counter-increment: subsection;
  content: counter(li-counter, lower-alpha) ". ";
  font-weight: bold;
  position: absolute;
  left: 0; /* Позиционируем маркер по горизонтали */
}
.spisok ul.numeric-decimals li:before {
  counter-increment: section;
  content: counter(section) ". ";
  font-weight: bold;
  position: absolute;
  left: 0; /* Позиционируем маркер по горизонтали */
}

.presentation {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 63px 0;
}
.presentation img {
  height: 56px;
  width: 43px;
  margin-bottom: 23px;
}

@media (max-width: 768px) {
  .spisok h2 {
    padding-bottom: 0;
  }
  .presentation {
    padding: 53px 0;
  }
}
.service-img img {
  max-height: 674px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .service-img img {
    max-height: 100%;
    max-width: 100%;
  }
}
.project-nav {
  padding-bottom: 70px;
}
.project-nav .project-menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.project-nav .project-menu .project-menu-li {
  position: relative;
  display: block;
  width: 100%;
}
.project-nav .project-menu .project-menu-li .project-submenu-container {
  display: none;
  position: absolute;
  padding-top: 14px;
  z-index: 1;
}
.project-nav .project-menu .project-menu-li .project-submenu-container .project-submenu {
  background: #202930;
  padding: 20px 35px;
  border-radius: 35px;
}
.project-nav .project-menu .project-menu-li .project-submenu-container .project-submenu .project-submenu-li {
  white-space: nowrap;
  padding-bottom: 10px;
}
.project-nav .project-menu .project-menu-li .project-submenu-container .project-submenu .project-submenu-li .project-submenu-a {
  background: #202930;
  color: #E1E1E5;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}
.project-nav .project-menu .project-menu-li .project-submenu-container .project-submenu .project-submenu-li:last-child {
  padding-bottom: 0;
}
.project-nav .project-menu .project-menu-li .project-menu-a {
  background: #878787;
  padding: 12px 32px;
  -moz-transition: all 350ms;
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  display: block;
  text-align: center;
  cursor: pointer;
}
.project-nav .project-menu .project-menu-li:hover > .project-menu-a {
  background: #202930;
  border-radius: 35px;
  -moz-transition: all 350ms;
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
}
.project-nav .project-menu .project-menu-li:hover .project-submenu-container {
  display: block;
}
.project-nav li {
  list-style-type: none;
}

.project-menu-li-active {
  background: #202930 !important;
  border-radius: 35px;
}

@media (max-width: 1320px) {
  .project-nav .project-menu .project-menu-li .project-submenu-container .project-submenu .project-submenu-li {
    white-space: normal;
  }
}
@media (max-width: 992px) {
  .project-nav .project-menu {
    flex-direction: column;
  }
  .project-nav .project-menu .project-menu-li .project-submenu-container {
    position: relative;
  }
  .project-nav .project-menu .project-menu-li .project-submenu-container .project-submenu .project-submenu-li {
    white-space: normal;
  }
  .project-nav .project-menu .project-menu-li .project-menu-a {
    display: block;
    text-align: center;
  }
}
.project-details {
  display: flex;
  padding-bottom: 20px;
  gap: 20px;
}
.project-details .project-summary {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .project-details {
    flex-direction: column;
    padding-bottom: 20px;
  }
}
.project-info ol {
  padding-left: 19px;
}
.project-info .project-summary {
  margin-bottom: 100px;
}

.carousel {
  width: 100%;
  display: grid;
  grid-gap: 5rem;
  grid-template-columns: 60px 1fr 60px;
  grid-template-rows: 50px;
}
.carousel ul {
  width: 100%;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(20, 100px);
  list-style: none;
  overflow: hidden;
  scroll-snap-type: x mandatory;
}
.carousel li {
  background-color: #c62828;
  scroll-snap-align: center;
}
.carousel button {
    background-image: url("./images/arrow.svg");
}

.career-search {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.career-search img {
  display: none;
}
@media (max-width: 768px) {
  .career-search {
    gap: 27px;
  }
  .career-search img {
    display: block;
  }
}
.career-search h1:last-child {
  margin-top: auto;
}

.career-img-helper {
  position: absolute;
  right: 0;
  width: auto;
  max-width: calc(100vw - 45%);
}
.career-img-helper img {
  width: 100%;
}

.cover-header-wrapper .page-header {
  bottom: 20%;
}
.cover-header-wrapper .page-subheader {
  font-weight: 600;
  font-size: 24px;
  bottom: 10%;
}
.cover-header-wrapper .image {
  height: 100vh;
}

.page-header-wrapper .page-header {
  bottom: 50px;
}
.page-header-wrapper .page-subheader {
  bottom: 0;
  text-transform: uppercase;
}
.page-header-wrapper .image {
  width: 100%;
  height: 412px;
}

.cover-header-wrapper,
.page-header-wrapper {
  position: relative;
}
.cover-header-wrapper .page-header,
.cover-header-wrapper .page-subheader,
.page-header-wrapper .page-header,
.page-header-wrapper .page-subheader {
  font-family: Montserrat, serif;
  font-style: normal;
  line-height: normal;
  color: #E1E1E5;
  margin: 0 0 13px 30px;
  position: absolute;
}
.cover-header-wrapper .page-header,
.page-header-wrapper .page-header {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 40px;
}
.cover-header-wrapper .page-subheader,
.page-header-wrapper .page-subheader {
  font-weight: 600;
  font-size: 24px;
}
.cover-header-wrapper .image,
.page-header-wrapper .image {
  background-repeat: no-repeat;
  background-size: cover;
}
.cover-header-wrapper .image-cover,
.page-header-wrapper .image-cover {
    background-image: url("./images/cover.png");
}
.cover-header-wrapper .image-services-and-solutions,
.page-header-wrapper .image-services-and-solutions {
  min-height: 100vh;
  height: unset;
    background-image: url("./images/services-and-solutions-cover.png");
}
.cover-header-wrapper .nav-wrapper,
.page-header-wrapper .nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.montserrat-font {
  font-family: Montserrat, serif;
}

.about-us-image {
    background-image: url("./images/header/about-us.jpg");
}

.press-center-image {
  background-image: url("./images/header/press-center.jpg");
}

.jobs-image {
  background-image: url("./images/header/jobs.jpg");
}

.service-other-image {
  background-image: url("./images/header/service_other.jpg");
}

.pims-image {
  background-image: url("./images/header/pims.jpg");
}

.scada-image {
  background-image: url("./images/header/Scada.jpg");
}

.contact-image {
  background-image: url("./images/header/contact.jpg");
}

.project-image {
  background-image: url("./images/header/project.jpg");
}

.not-found-image {
    background-image: url("./images/not-found-bg.svg");
}
.not-found-image .img-center {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.not-found-image .img-center img {
  height: 198px;
}

@media (max-width: 992px) {
  .not-found-image .img-center img {
    height: 100px;
  }
  .cover-header-wrapper .page-header,
  .page-header-wrapper .page-header {
    font-size: 30px;
  }
  .cover-header-wrapper .page-subheader,
  .page-header-wrapper .page-subheader {
    font-size: 24px;
    bottom: 10%;
  }
  .cover-header-wrapper .page-header {
    bottom: 40%;
  }
  .cover-header-wrapper .page-subheader {
    bottom: 10%;
  }
  .page-header-wrapper .page-header {
    bottom: 50px;
  }
  .page-header-wrapper .page-subheader {
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .page-header-wrapper .page-header {
    bottom: 0;
  }
  .page-header-wrapper .image {
    height: 240px;
  }
  .career-img-helper {
    display: none;
  }
  .career-img-helper img {
    width: 100%;
  }
}
.career-scope {
  display: flex;
}
.career-scope h1 {
  color: #E6332A;
  font-family: montserrat, serif;
  font-size: 120px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}
.career-scope .career-scope-main {
  margin-right: 36px;
}
.career-scope .career-scope-main div {
  border-right: #878787 15px solid;
}
.career-scope .career-scope-main div span {
  width: 50px;
  font-weight: bold;
}
.career-scope .career-scope-main:last-child div {
  border-right: none;
}

.career-internship-img-helper {
  max-height: 918px;
  display: flex;
}

@media (max-width: 768px) {
  .career-internship-img-helper {
    max-height: 100%;
  }
}
.text-transform-none {
  text-transform: none;
}

.header,
.subheader {
  font-family: Montserrat, serif;
  font-style: normal;
  line-height: normal;
  margin: 0;
  letter-spacing: -0.02em;
}
.header .header-without-uppercase,
.subheader .header-without-uppercase {
  text-transform: none;
}

.header {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
}

.subheader {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .header {
    font-size: 30px;
  }
  .subheader {
    font-size: 20px;
  }
}
.uppercase {
  text-transform: uppercase;
}

.background-dark {
  background: #202930;
}

.btn.background-dark:hover {
  color: #E1E1E5;
}

.background-default {
  background: #E1E1E5;
}

.background-red {
  background: #E6332A;
}

.page-padding {
  padding: 28px 30px 0;
}

.page-padding-bottom {
  padding-bottom: 22px;
}

@media (max-width: 768px) {
  .page-padding-bottom-helper {
    padding-bottom: 22px;
  }
}
.padding-bottom-28 {
  padding-bottom: 28px;
}

.page-section {
  width: 100%;
}

.main-content {
  display: flex;
  padding-left: max(30px, (100% - 1173px) / 2);
}
.main-content .left {
  width: calc(50% + 55px);
  max-width: 730px;
  margin-right: 30px;
  flex-shrink: 0;
}
.main-content .right {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.main-content .right .right-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.main-content-reverse {
  display: flex;
  padding-right: max(30px, (100% - 1252px - 43px) / 2);
}
.main-content-reverse .right {
  width: calc(50% + 55px);
  max-width: 730px;
  margin-left: 30px;
  flex-shrink: 0;
}
.main-content-reverse .left {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.main-content-reverse .left .left-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .main-content {
    flex-direction: column;
    padding: 0 23px 0 30px;
    gap: 19px;
  }
  .main-content .left {
    width: auto;
    max-width: 100%;
    margin-right: 0;
    flex-shrink: 0;
    min-height: auto;
    margin-left: 0;
  }
  .main-content .right {
    width: auto;
    height: auto;
  }
  .main-content .right .right-img {
    top: 0;
    position: relative;
    height: auto;
    left: 0;
  }
  .main-content-reverse {
    flex-direction: column;
    padding: 0 23px 0 30px;
    gap: 19px;
  }
  .main-content-reverse .right {
    width: auto;
    max-width: 100%;
    margin-right: 0;
    flex-shrink: 0;
    min-height: auto;
    margin-left: 0;
  }
  .main-content-reverse .left {
    width: auto;
    height: auto;
  }
  .main-content-reverse .left .left-img {
    top: 0;
    position: relative;
    height: auto;
    left: 0;
  }
}
.p-default {
  color: #202930;
  font-family: Roboto, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.18px;
  margin: 0;
}

.p-default:not(:first-child) {
  margin-top: 27px;
}

.customers {
  display: flex;
  grid-gap: 5px;
  justify-content: space-between;
  margin-top: 12px;
}
.customers .customer {
  background: #202930;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customers .customer img {
  display: block;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gray);
}
.contact-item span {
  font-family: Montserrat, serif;
  font-size: 12px;
  font-weight: 400;
}

.header-wrapper {
  padding: 27px 60px;
  font-family: Montserrat, serif;
}
.header-wrapper .header-first {
  display: flex;
  justify-content: center;
  gap: 325px;
}

.header-wrapper .header-second {
  display: grid;
  grid-template-columns: var(--logo-width) 1fr var(--logo-width);
  align-items: center;
  grid-gap: 60px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px;
}
.nav-links .nav-link {
  cursor: pointer;
  color: var(--white);
  font-family: montserrat, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition-time);
}
.nav-links .nav-link:hover {
  color: var(--red);
}
.nav-links .nav-link:hover::after {
  opacity: 1;
  top: -8.5px;
}
.nav-links .nav-link::after {
  content: "";
  transform: rotate(45deg);
  display: block;
  width: 6px;
  height: 6px;
  background: var(--red);
  position: absolute;
  top: -20px;
  left: 50%;
  opacity: 0;
  transition: var(--transition-time);
}

@media (max-width: 768px) {
  .nav-links {
    align-items: center;
    flex-direction: column;
  }
  .nav-links .nav-link {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .career-scope {
    flex-direction: column;
  }
  .career-scope .career-scope-main div {
    border-right: 0;
  }
}
@media (max-width: 992px) {
  .d-none-laptop {
    display: none !important;
  }
  .header-wrapper {
    padding: 20px 30px;
  }
  .header-wrapper .header-first {
    margin-bottom: 24px;
  }
}
.list-view {
  gap: 10px;
  display: grid;
}

.job {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #202930;
}
.job header {
  font-family: montserrat, serif;
  font-weight: bold;
}
.job div {
  margin-bottom: 11px;
}
.job button {
  margin-top: 30px;
}

@media (max-width: 1440px) {
  .header-second {
    grid-gap: 25px !important;
  }
  :root {
    --logo-width: 200px;
  }
}
@media (max-width: 1200px) {
  .d-none-desktop {
    display: none !important;
  }
  .header-second {
    display: flex !important;
    justify-content: space-between;
  }
  .header-second {
    grid-gap: 20px !important;
  }
}
.partners {
  display: flex;
  padding-bottom: 52px;
}

.partner-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.partner-image-wrapper {
  margin: 34px 0 45px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .partners {
    flex-direction: column;
  }
}
.team-members {
  display: flex;
  gap: 10px;
}

@media (max-width: 1200px) {
  .team-members {
    flex-direction: column;
    align-items: center;
  }
}
.team-member .job-title {
  color: #E6332A;
  font-family: Montserrat, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
  margin-top: 18px;
  margin-bottom: 28px;
}

.contacts {
  display: grid;
  gap: 20px;
}

/* карусель */
.image-carousel,
.image-carousel-default {
  display: flex;
  align-items: center;
  padding: 42px 20px;
  max-width: 1367px;
  margin: auto;
  position: relative;
}

@media (max-width: 768px) {
  .image-carousel-default {
    padding: 0;
  }
}
.carousel-viewport {
  overflow: hidden;
  position: relative;
}

.carousel-content {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-image {
  width: 220px;
  min-width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 34px;
  box-sizing: border-box;
}
.carousel-image:hover {
  border-radius: 20px;
}
.carousel-image:hover path {
  fill: #E6332A;
}

.carousel-content-default {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-image-default {
  width: 311px;
  padding-right: 30px;
}
.carousel-image-default:last-child {
  padding-right: 0;
}

.tns-item {
  display: flex !important;
}

.slider-button,
.slider-button-right,
.slider-button-left {
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 1;
}
.slider-button .slider-button-background,
.slider-button-right .slider-button-background,
.slider-button-left .slider-button-background {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  min-width: 53px;
  width: 53px;
  height: 53px;
  min-height: 53px;
  background-color: #E6332A;
}
.slider-button img,
.slider-button-right img,
.slider-button-left img {
  transition: 0.2s;
}
.slider-button.slider-button-right, .slider-button.slider-button-left,
.slider-button-right.slider-button-right,
.slider-button-right.slider-button-left,
.slider-button-left.slider-button-right,
.slider-button-left.slider-button-left {
  position: absolute;
}
.slider-button.slider-button-right.slider-button-right, .slider-button.slider-button-left.slider-button-right,
.slider-button-right.slider-button-right.slider-button-right,
.slider-button-right.slider-button-left.slider-button-right,
.slider-button-left.slider-button-right.slider-button-right,
.slider-button-left.slider-button-left.slider-button-right {
  left: 20px;
}
.slider-button.slider-button-right.slider-button-left, .slider-button.slider-button-left.slider-button-left,
.slider-button-right.slider-button-right.slider-button-left,
.slider-button-right.slider-button-left.slider-button-left,
.slider-button-left.slider-button-right.slider-button-left,
.slider-button-left.slider-button-left.slider-button-left {
  right: 20px;
}
.slider-button:hover .slider-button-background,
.slider-button-right:hover .slider-button-background,
.slider-button-left:hover .slider-button-background {
  transform: rotate(135deg);
}
.slider-button:hover img,
.slider-button-right:hover img,
.slider-button-left:hover img {
  transform: rotate(-135deg);
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 27px 60px;
  font-family: Montserrat, serif;
}

.footer-wrapper .footer-copy {
  grid-column-start: 1;
  grid-column-end: 3;
  padding-top: 120px;
  padding-bottom: 20px;
}

.footer-wrapper .footer-copy span {
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    padding: 0 60px;
  }
  .footer-wrapper .footer-copy {
    grid-column-start: 1;
    grid-column-end: 1;
    padding-top: 0;
  }
}
.nav-links {
  display: flex;
}

.page-numbers {
  border: 1px solid #878787;
  background: #FFF;
  text-decoration: none;
  margin: 0 5px;
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #878787;
}

.page-numbers:hover, .current {
  border: 1px solid var(--red);
  background: var(--red);
  color: #FFFFFF;
}

.page-numbers .current {
  background: #FFF;
  color: #878787;
}

.pagination .prev,
.pagination .next {
  display: none;
}

.padding-200 {
  padding: 0 200px;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 24px;
  font-family: Montserrat, serif;
  overflow-wrap: anywhere;
}
.form .form-header {
  padding: 76px 0;
}
.form iframe {
  width: 100%;
  height: 350px;
}
.form form {
  display: flex;
  flex-direction: column;
  width: 767px;
  align-items: center;
}
.form form > * {
  flex: 1;
}
.form .form-input {
  border: 0;
  border-bottom: 1px solid #878787;
  background: transparent;
  margin-bottom: 30px;
  height: 25px;
  color: #E1E1E5;
  outline: none;
  font-size: 24px;
  text-align: center;
  width: 95%;
}
.form .form-input::placeholder {
  text-align: center;
  font-family: Montserrat, serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #E1E1E5;
}
.form .form-input::-webkit-input-placeholder {
  text-align: center;
}
.form .form-input:-moz-placeholder {
  text-align: center;
}
.form .form-input::-moz-placeholder {
  text-align: center;
}
.form .form-input:-ms-input-placeholder {
  text-align: center;
}
.form .form-input-btn {
  min-width: 320px;
  width: 45%;
}

@media (max-width: 768px) {
  .form {
    font-size: 20px;
  }
  .form form {
    width: 100%;
  }
}
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.services-and-solutions-wrapper {
  padding: 144px 0 82px 0;
}
.services-and-solutions-wrapper .service-item-wrapper {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.services-and-solutions-wrapper .service-item {
  padding: 34px 39px;
  border-radius: 12px;
  border: 1px solid #E1E1E5;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0px);
  transition: 0.5s;
  gap: 20px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.services-and-solutions-wrapper .service-item .service-item-header {
  display: grid;
  grid-auto-flow: row;
  justify-items: center;
  gap: 35px;
}
.services-and-solutions-wrapper .service-item .header {
  font-size: 24px;
  line-height: 32px;
}
.services-and-solutions-wrapper .service-item:hover {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

@media (min-width: 992px) {
  .service-item-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }
  .service-item-wrapper .service-item {
    position: relative;
    align-items: flex-start;
    text-align: left;
    justify-content: space-between;
    gap: 10px;
  }
  .service-item-wrapper .service-item .service-item-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .service-item-wrapper .service-item:last-child {
    grid-column: 2;
    grid-row: 1/3;
  }
  .page-padding {
    max-width: 1182px;
    margin: 0 auto;
  }
}
.d-flex-center {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.employee-form-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 600px;
  max-width: 600px;
  padding: 52px 0;
  flex-direction: column;
  border-radius: 20px;
}
.employee-form-wrapper .close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 35px;
  font-weight: bold;
  color: #E1E1E5;
  cursor: pointer;
}
.employee-form-wrapper .header {
  text-align: center;
  margin-bottom: 72px;
}
.employee-form-wrapper .form {
  width: 417px;
}
@media (max-width: 425px) {
  .employee-form-wrapper .form {
    width: 350px;
  }
}
.employee-form-wrapper .form-label {
  font-family: Montserrat, serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration-line: underline;
  align-self: baseline;
  display: flex;
  gap: 23px;
  align-items: center;
}
.employee-form-wrapper .form-input {
  border-bottom: 1px solid #E1E1E5;
}
.employee-form-wrapper .form-input::placeholder {
  font-size: 18px;
  opacity: 1;
}
.employee-form-wrapper .captcha-wrapper {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  background: #E1E1E5;
  width: 100%;
}
.employee-form-wrapper .black-link {
  color: #202930;
  text-align: center;
  font-family: Montserrat, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  margin-top: 27px;
}
.employee-form-wrapper .checkbox-label {
  text-align: left;
  text-decoration: none;
  margin: 42px 0;
}
.employee-form-wrapper .checkbox-label input[type=checkbox] {
  accent-color: #202930;
  color: #202930;
  border: 2px solid #E1E1E5;
  width: 32px;
  height: 32px;
}

.d-none {
  display: none;
}

.breadcrumbs {
  font-family: Montserrat, serif !important;
  color: #E1E1E5 !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  text-transform: uppercase !important;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  justify-content: center;
}

.screen-reader-response {
  display: none;
}

.wpcf7-response-output {
  padding-top: 20px;
  color: #E1E1E5;
}

.submitting .wpcf7-submit {
  animation: barberpole 1s linear infinite;
  background-size: 30px 30px;
  background-color: #E6332A;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
}

@keyframes barberpole {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 30px;
  }
}
.about-us-img-helper {
  height: 100%;
  width: 100%;
}

.about-us img {
  display: none;
  width: 100%;
}

.about-us p:first-child {
  margin-top: 0;
}

.about-us p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .about-us-img-helper {
    display: none;
  }
  .about-us img {
    display: block;
  }
}
.prom-details {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.prom-details summary {
  cursor: pointer;
}
.prom-details details > summary {
  list-style: none;
  font-family: Montserrat, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.prom-details summary:before {
  color: #E6332A;
  content: "→ ";
}
.prom-details details[open] summary:before {
  color: #E6332A;
  content: "↓ ";
}
.prom-details ol, .prom-details ul {
  padding-left: 40px;
}

.tns-visually-hidden {
  display: none;
}

#tns1-iw {
  margin: 0 !important;
}

.career-helper ol, .career-helper ul {
  padding-left: 40px;
}

.not-found-job {
  padding: 20px 0;
  text-align: center;
}

/*# sourceMappingURL=styles.css.map */
.span-normal {
  text-transform: lowercase;
}

.span-normal:first-letter {
  text-transform: uppercase;
}

@media (max-width: 992px) {
    .header-helper {
        margin: 0;
    }
}

.main-news-img {
    float: left;
    width: 380px;
    margin-right: 20px
}

@media (max-width: 992px) {
    .main-news-img {
        width: 100%;
        margin-right: 0;
        padding-bottom: 8px;
    }
}