/*!***************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/styles/non-critical.scss ***!
  \***************************************************************************************************************************************************/
.expand-underline {
  width: 100%;
  height: 1px;
  background-color: var(--blue-3);
  flex: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  position: relative;
  transform: translateX(-12%) rotate(-45deg);
}

.chevron-down {
  width: 12px;
  height: 12px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  position: relative;
  transform: translateX(-12%) rotate(-45deg);
  margin: 0;
}

.chevron-down-sm {
  width: 8px;
  height: 8px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  position: relative;
  transform: translateX(-12%) rotate(-45deg);
  margin: 0;
}

.text-span-danger {
  color: var(--color-danger);
}

.text-span-success {
  color: var(--blue-2);
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}

.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #fff;
  animation: prixClipFix 2s linear infinite;
}

.inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 1em;
  height: 1em;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.footer {
  background-color: var(--footer-bg);
  position: relative;
  padding-bottom: 3rem;
  color: var(--text-white);
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 10px;
  }
}
.footer::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: var(--footer-bg);
  z-index: -1;
}
@media (max-width: 992px) {
  .footer_nav-block {
    flex-direction: column-reverse;
  }
}
.footer_nav-block .col {
  flex-grow: 1;
}
.footer .nav {
  margin-left: -10px;
  margin-right: -10px;
  text-align: left;
}
.footer .nav .nav_link {
  justify-content: flex-start;
}
.footer .nav .nav_link_text span {
  left: 0;
  right: unset;
}
.footer .nav .company-contacts {
  display: none;
}
.footer .logo {
  margin-bottom: 6rem;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer .logo {
    justify-content: flex-start;
  }
}
.footer .logo_link {
  display: flex;
}
.footer .logo_logo {
  width: 250px;
}
@media (max-width: 992px) {
  .footer .logo_logo {
    width: 200px;
  }
}
@media (max-width: 480px) {
  .footer .logo_logo {
    width: 130px;
  }
}
.footer .links {
  padding-top: 20px;
}
@media (max-width: 992px) {
  .footer .links {
    border-top: none;
    padding-top: 0;
  }
}
.footer .links_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.footer .links_left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .footer .links_left {
    width: 100%;
    justify-content: center;
  }
}
.footer .links_right {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .footer .links_right {
    width: 100%;
    justify-content: center;
  }
}
.footer .links .nav_link {
  margin: 0 10px;
}
.footer .links a {
  color: var(--text-white);
  opacity: 0.7;
  text-decoration: none;
}

.article-page_published {
  font-weight: 300;
  opacity: 0.5;
}
.article-page_text-content {
  max-width: 75%;
  margin: 10rem auto 0;
}
.article-page_text-content img {
  height: auto;
}
@media (max-width: 768px) {
  .article-page_text-content {
    max-width: 100%;
  }
}
.article-page_main-image {
  width: 100%;
}
.article-page figure {
  margin: 0;
}
.article-page figure img {
  height: auto;
}

.articles {
  margin-top: 10rem;
}

.article {
  background-color: var(--white);
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 768px) {
  .article {
    display: block;
  }
}
.article_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.article_content, .article_image {
  width: 50%;
}
@media (max-width: 768px) {
  .article_content, .article_image {
    width: 100%;
  }
}
.article_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8rem 5rem 5rem;
}
.article_image {
  display: flex;
}
.article_image .aspect {
  position: relative;
  width: 100%;
  padding-top: 67%;
  overflow: hidden;
}
.article_image .image {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .article .link-btn {
    margin-top: 5rem;
    align-self: self-end;
  }
}

.factsSection .fact-list {
  --fact-list-spacing: 3rem;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--fact-list-spacing) * -1);
  margin-left: calc(var(--fact-list-spacing) * -1);
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .factsSection .fact-list {
    display: block;
  }
}
.factsSection .fact {
  padding: calc(var(--fact-list-spacing) / 2) var(--fact-list-spacing);
  width: 33.333%;
}
@media (max-width: 768px) {
  .factsSection .fact {
    width: 100%;
  }
}
.factsSection .fact_icon {
  max-width: 5.4rem;
}
.factsSection .fact_heading {
  margin-top: 1rem;
}
.factsSection .fact_content {
  color: var(--text-secondary);
}

.quoteSection .quote {
  max-width: 75%;
}
@media (max-width: 768px) {
  .quoteSection .quote {
    max-width: 90%;
  }
}
.quoteSection .link-btn {
  margin-top: 6.8rem;
}

.entryLinkTilesSection .entries-links {
  --entries-spacing: 2rem;
  margin-top: 6rem;
  margin-left: calc(var(--entries-spacing) * -1);
  margin-right: calc(var(--entries-spacing) * -1);
  display: flex;
  color: var(--text-white);
}
@media (max-width: 640px) {
  .entryLinkTilesSection .entries-links {
    display: block;
  }
}
.entryLinkTilesSection .entry-block {
  margin: var(--entries-spacing);
  margin-bottom: 0;
  position: relative;
  width: calc(40% - var(--entries-spacing) * 2);
}
@media (max-width: 992px) {
  .entryLinkTilesSection .entry-block {
    width: calc(45% - var(--entries-spacing) * 2);
  }
}
@media (max-width: 768px) {
  .entryLinkTilesSection .entry-block {
    width: calc(50% - var(--entries-spacing) * 2);
  }
}
@media (max-width: 640px) {
  .entryLinkTilesSection .entry-block {
    width: calc(75% - var(--entries-spacing) * 2);
  }
}
@media (max-width: 480px) {
  .entryLinkTilesSection .entry-block {
    width: calc(100% - var(--entries-spacing) * 2);
  }
}
.entryLinkTilesSection .entry-img-aspect {
  position: relative;
  width: 100%;
  padding-top: 125%;
  overflow: hidden;
}
.entryLinkTilesSection .entry-image {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--section-bg-dark);
}
.entryLinkTilesSection .link-block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(25deg, rgba(var(--default-gradient), 1) 5%, rgba(var(--default-gradient), 0.9) 40%, rgba(var(--default-gradient), 0.1) 80%);
  padding: 6rem 4rem;
}
@media (max-width: 992px) {
  .entryLinkTilesSection .link-block {
    padding: 4rem;
  }
}
.entryLinkTilesSection .link-label {
  position: absolute;
  top: 4rem;
  left: 4rem;
  padding: 1rem 2rem;
  background-color: var(--text-primary);
  border-radius: 4px;
  text-transform: uppercase;
}
.entryLinkTilesSection .link-label.secondary {
  background-color: var(--orange-1);
  color: var(--text-primary);
}
.entryLinkTilesSection .link-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.entryLinkTilesSection .link-text {
  pointer-events: none;
}
.entryLinkTilesSection .link-content {
  opacity: 0.8;
  font-weight: 300;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.mapSection .map-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  margin-top: 7rem;
}
@media (max-width: 992px) {
  .mapSection .map-container {
    padding-top: 80%;
  }
}
@media (max-width: 768px) {
  .mapSection .map-container {
    padding-top: 120%;
  }
}
.mapSection .map {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.mapSection .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: radial-gradient(rgba(var(--default-gradient), 0) 0%, rgba(var(--default-gradient), 0.07) 55%, rgba(var(--default-gradient), 0.7) 100%);
  pointer-events: none;
}
.mapSection .start-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1;
}
.mapSection .start-overlay .text {
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.textAndImageSection {
  position: relative;
}
.textAndImageSection .link-btn {
  margin-top: 4rem;
}
.textAndImageSection.twoColumn, .textAndImageSection.twoColumnContain {
  min-height: calc(100vh - var(--header-height));
}
@media (max-width: 992px) {
  .textAndImageSection.twoColumn, .textAndImageSection.twoColumnContain {
    min-height: auto;
  }
}
.textAndImageSection.twoColumn .link-btn, .textAndImageSection.twoColumnContain .link-btn {
  width: 100%;
  max-width: 380px;
}
.textAndImageSection.twoColumn .link-btn_text, .textAndImageSection.twoColumnContain .link-btn_text {
  margin-right: 0;
}
.textAndImageSection.twoColumn .section-content, .textAndImageSection.twoColumnContain .section-content {
  width: 50%;
  padding-right: 12%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
}
@media (max-width: 992px) {
  .textAndImageSection.twoColumn .section-content, .textAndImageSection.twoColumnContain .section-content {
    width: 100%;
    margin-bottom: 7rem;
  }
}
.textAndImageSection.twoColumn .section-image-block, .textAndImageSection.twoColumnContain .section-image-block {
  width: 50%;
  left: unset;
  right: 0;
}
@media (max-width: 992px) {
  .textAndImageSection.twoColumn .section-image-block, .textAndImageSection.twoColumnContain .section-image-block {
    width: 100%;
  }
}
.textAndImageSection .video-popup-trigger {
  cursor: pointer;
  z-index: 0;
}
@media (max-width: 992px) {
  .textAndImageSection.twoColumn .section-image-block {
    position: relative;
    width: 100%;
    padding-top: 115%;
    overflow: hidden;
  }
}
@media (max-width: 992px) {
  .textAndImageSection.twoColumnContain .section-image-block {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
  }
}
.textAndImageSection.twoColumnContain .section-image-block .section-bg-image {
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.textAndImageSection.textOverImage {
  color: var(--text-white);
  min-height: calc(80vh - var(--header-height));
  max-height: 80vh;
}
@media (max-width: 992px) {
  .textAndImageSection.textOverImage {
    max-height: 100%;
    min-height: 50vh;
  }
}
.textAndImageSection.textOverImage .section-content {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .textAndImageSection.textOverImage .section-content {
    max-width: 100%;
  }
}
.textAndImageSection.textOverImage .section-heading,
.textAndImageSection.textOverImage .section-subheading {
  text-shadow: 1px 1px 40px rgba(var(--default-gradient), 1);
}
.textAndImageSection.textOverImage .section-subheading {
  color: var(--text-white);
}
.textAndImageSection.textOverImage .section-bg-image {
  left: 0;
}

.specsSection .specs-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 10rem;
  min-height: 50vh;
}
@media (max-width: 992px) {
  .specsSection .specs-block {
    margin-top: 4rem;
  }
}
.specsSection .specs-image {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 992px) {
  .specsSection .specs-image {
    position: static;
    transform: unset;
  }
}
@media (max-width: 768px) {
  .specsSection .specs-image {
    width: 100%;
  }
}
.specsSection .specs-img-aspect {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.specsSection .specs-img-aspect img {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specsSection .specs-tables {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .specsSection .specs-tables {
    display: block;
    margin-top: 2rem;
  }
}
.specsSection .specs-tables .table {
  width: 30%;
}
@media (max-width: 992px) {
  .specsSection .specs-tables .table {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .specsSection .specs-tables .table {
    width: 100%;
  }
}
.specsSection .specs-tables .table--right {
  text-align: right;
}
@media (max-width: 768px) {
  .specsSection .specs-tables .table--right {
    text-align: left;
  }
}
.specsSection .specs-tables .table .spec-item {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .specsSection .specs-tables .table .spec-item {
    margin-bottom: 2rem;
  }
}
.specsSection .specs-tables .table tr:last-of-type .spec-item {
  margin-bottom: 0;
}
.specsSection .specs-tables .table .spec-title {
  font-weight: 500;
}
.specsSection .specs-tables .table .spec-content {
  color: var(--text-secondary);
}

.sliderSection .swiper-no-padding.slider {
  margin-top: 7rem;
}

.vacanciesSection .text-white {
  color: var(--text-white);
}
.vacanciesSection .text-white .section-heading,
.vacanciesSection .text-white .section-subheading {
  color: var(--text-white);
}

.machineDesignSection .link-btn {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: unset;
}
.machineDesignSection .machine-design-block {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.machineDesignSection .machine-design-block_bg {
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.machineDesignSection .machine-design-block_bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.machineDesignSection .machine-design {
  width: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  .machineDesignSection .machine-design {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .machineDesignSection .machine-design {
    width: 100%;
  }
}
.machineDesignSection .machine-design_aspect {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.machineDesignSection .machine-design_root {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.machineDesignSection .machine-design_mobile-model-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.machineDesignSection .machine-design_mobile-model-placeholder img {
  flex-grow: 1;
  user-select: none;
  pointer-events: none;
}
.machineDesignSection .machine-design_save-btn {
  max-width: 500px;
  margin: 4rem auto 0;
}
@media (max-width: 768px) {
  .machineDesignSection .machine-design_save-btn {
    margin-top: 2rem;
    max-width: 100%;
  }
}
.machineDesignSection .machine-design .machine-hint {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-size: 1.8rem;
}
.machineDesignSection .machine-design .machine-hint_icon {
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.machineDesignSection .machine-design .machine-hint_text {
  padding: 0.5rem 1rem;
  text-align: center;
}
.machineDesignSection .machine-design_loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
}
.machineDesignSection .machine-design_loader .loader {
  width: 50%;
  height: 50%;
}
.machineDesignSection .machine-design_loader .loader:before {
  border: 1rem solid var(--text-secondary);
  opacity: 0.5;
}
.machineDesignSection .machine-design_loader .loader-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.machineDesignSection .machine-design_controls {
  --controls-spacing: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: calc(var(--controls-spacing) * -1);
  margin-left: calc(var(--controls-spacing) * -1);
  color: var(--text-secondary);
}
@media (max-width: 480px) {
  .machineDesignSection .machine-design_controls {
    display: block;
  }
}
.machineDesignSection .machine-design_controls .control-block {
  flex-grow: 1;
  flex-shrink: 1;
  max-width: calc(50% - var(--controls-spacing) * 2);
  flex-basis: calc(50% - var(--controls-spacing) * 2);
  margin: calc(var(--controls-spacing) / 2) var(--controls-spacing);
  border-color: var(--text-secondary);
}
@media (max-width: 992px) {
  .machineDesignSection .machine-design_controls .control-block {
    max-width: calc(100% - var(--controls-spacing) * 2);
    flex-basis: calc(50% - var(--controls-spacing) * 2);
  }
}
@media (max-width: 640px) {
  .machineDesignSection .machine-design_controls .control-block {
    flex-basis: calc(100% - var(--controls-spacing) * 2);
  }
}
@media (max-width: 768px) {
  .machineDesignSection .machine-design_controls .control-block {
    max-width: calc(100% - var(--controls-spacing) * 2);
  }
}
.machineDesignSection .machine-design_controls .control-block_label {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 2.6rem;
}
.machineDesignSection .machine-design_controls .control-block_label-sm {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 2rem;
  height: 3rem;
  white-space: nowrap;
  display: block;
}
@media (max-width: 992px) {
  .machineDesignSection .machine-design_controls .control-block_label-sm {
    font-size: 2.2rem;
    height: 3.3rem;
  }
}
@media (max-width: 480px) {
  .machineDesignSection .machine-design_controls .control-block_label-sm {
    height: auto;
    margin-bottom: 0.5rem;
  }
}
.machineDesignSection .machine-design_controls .control-block .control-row {
  display: flex;
  margin-left: calc(var(--controls-spacing) * -1);
  margin-right: calc(var(--controls-spacing) * -1);
  flex-wrap: wrap;
}
.machineDesignSection .machine-design_controls .control-block .control {
  padding: 0 var(--controls-spacing);
  flex: 1;
}
@media (max-width: 768px) {
  .machineDesignSection .machine-design_controls .control-block .control {
    width: 100%;
    flex: unset;
  }
}
.machineDesignSection .machine-design_controls .control-block .text-input {
  border-width: 1px;
  border-style: solid;
  border-color: lightgray;
  border-radius: 100px;
  background-color: transparent;
  padding: 1.6rem 3.2rem;
  outline: none;
  color: inherit;
  font-size: 2.2rem;
  line-height: 1.28;
  width: 100%;
}
.machineDesignSection .machine-design_controls .control-block .btn {
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
}
.machineDesignSection .machine-design_controls .control-block .selected-color-text {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  min-width: 12rem;
  padding-right: 1rem;
  cursor: pointer;
}
@media (max-width: 992px) {
  .machineDesignSection .machine-design_controls .control-block .selected-color-text {
    font-size: 2rem;
  }
}
.machineDesignSection .select-sidepanel-modal {
  margin-left: -2rem;
  margin-right: -2rem;
}
.machineDesignSection .select-sidepanel-modal input[type=file] {
  display: none;
}
.machineDesignSection .select-sidepanel-modal .sidepanel-images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.machineDesignSection .select-sidepanel-modal .sidepanel-images .sidepanel-image {
  margin: 2rem;
  width: 5rem;
  transition: transform 0.2s;
}
.machineDesignSection .select-sidepanel-modal .sidepanel-images .sidepanel-image img {
  width: 100%;
}
.machineDesignSection .select-sidepanel-modal .sidepanel-images .sidepanel-image:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.logo-wall {
  --wall-h-spacing: 7rem;
  --wall-v-spacing: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 5rem;
  margin-left: calc(var(--wall-h-spacing) * -1);
  margin-right: calc(var(--wall-h-spacing) * -1);
}
@media (max-width: 992px) {
  .logo-wall {
    margin-left: calc(var(--wall-h-spacing) * -0.5);
    margin-right: calc(var(--wall-h-spacing) * -0.5);
  }
}
.logo-wall_item {
  padding: var(--wall-v-spacing) var(--wall-h-spacing);
  width: 25%;
}
@media (max-width: 992px) {
  .logo-wall_item {
    padding: calc(var(--wall-v-spacing) * 0.5) calc(var(--wall-h-spacing) * 0.5);
  }
}
@media (max-width: 768px) {
  .logo-wall_item {
    width: 33.333%;
  }
}
.logo-wall_link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.logo-wall_img {
  filter: grayscale(1) brightness(0.9) contrast(1.6);
  opacity: 0.5;
  transition: filter 0.1s ease-in-out, opacity 0.1s ease-in-out;
  max-height: 14rem;
}
@media (max-width: 768px) {
  .logo-wall_img {
    max-height: 9rem;
  }
}
.logo-wall_img:hover {
  filter: grayscale(0) brightness(1) contrast(1);
  opacity: 1;
}

.infoBarSection {
  background-color: var(--text-blue-1);
  color: var(--text-white);
}
.infoBarSection .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
.infoBarSection .info-bar_content {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
}
.infoBarSection .info-bar_link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.infoBarSection .info-bar_link-overlay:hover + .info-bar_content {
  opacity: 1;
}
.infoBarSection .info-bar_link-overlay:hover + .info-bar_content .link-btn {
  background-color: rgba(255, 255, 255, 0.2);
}
.infoBarSection p {
  margin: 0;
}

.entriesSliderSection,
.sliderSection {
  overflow: hidden;
}

.entriesSliderSection .aspect-landscape {
  position: relative;
  width: 100%;
  padding-top: 53.5%;
  overflow: hidden;
}

.sliderSection .aspect-landscape {
  position: relative;
  width: 100%;
  padding-top: 67%;
  overflow: hidden;
}

.slider {
  --swiper-navigation-size: 40px;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 3%;
  --swiper-navigation-color: var(--text-secondary);
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 3%;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
}
@media (max-width: 768px) {
  .slider {
    --swiper-navigation-size: 20px;
  }
}
.slider img {
  width: 100%;
  height: auto;
}
.slider .slider-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.slider .swiper-button-prev,
.slider .swiper-button-next {
  position: static;
  width: calc(var(--swiper-navigation-size) * 1.5);
  height: calc(var(--swiper-navigation-size) * 1.5);
  padding: 10px;
  margin-top: 0;
}
.slider .swiper {
  --swiper-navigation-sides-offset: 0%;
  --swiper-navigation-top-offset: calc(100% - 40px);
  overflow: visible;
}
.slider .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}
.slider .slide {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  overflow: hidden;
  user-select: none;
}
.slider .slide_content-bar {
  background-color: var(--white);
  display: flex;
  flex-grow: 1;
  padding: 5rem 4rem 2rem;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
.slider .slide_content-bar p {
  color: var(--text-secondary);
}
.slider .slide_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.slider .slide .link-btn {
  color: var(--text-white);
  border-color: var(--white);
  position: absolute;
  right: 5rem;
  bottom: 5rem;
}

.landscape-slide {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--section-bg-dark);
}

.lightbox-link {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  background-color: var(--section-bg-dark);
}
.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.lightbox-play-button {
  width: 100px;
  height: 100px;
  background-color: rgba(0, 92, 102, 0.85);
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 10px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
@media (max-width: 480px) {
  .lightbox-play-button {
    width: 60px;
    height: 60px;
  }
}

.lg-container .lg-sub-html {
  position: relative;
}
.lg-container .lg-sub-html .caption {
  background: var(--bg-dark);
  font-size: 16px;
  color: #fff;
  width: calc(100% - 32px);
  max-width: 600px;
  padding: 16px 20px;
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
}
.lg-container .lg-sub-html .caption p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}
.lg-container .lg-logo {
  vertical-align: middle;
  margin-left: 12px;
  padding: 5px;
  width: 120px;
}
@media (max-width: 768px) {
  .lg-container .lg-logo {
    width: 100px;
  }
}

.js-lightbox-link {
  cursor: pointer;
}

.lg-video-play-button {
  display: flex;
}

.lg-video-play-icon {
  left: 52%;
}

.hidden-caption-content {
  display: none;
}

.icon-link {
  --icon-size: 3rem;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.icon-link_icon {
  min-width: var(--icon-size);
  width: var(--icon-size);
  height: var(--icon-size);
  margin-right: 1rem;
}
.icon-link a {
  color: inherit;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5rem 3rem;
  backdrop-filter: blur(5px);
  color: var(--text-primary);
}
@media (max-width: 992px) {
  .form-container {
    margin-top: 10rem;
    max-width: 600px;
  }
}

.form_container {
  position: relative;
}
.form_container.loading .form_loader {
  display: flex;
}
.form_loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 10px);
  background-color: rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  z-index: 1;
}
.form_loader .loader {
  width: 60px;
  height: 60px;
}
.form_loader .loader::before {
  border: 5px solid var(--blue-2);
}
.form_input {
  border: none;
  border-bottom: 1px solid var(--blue-2);
  background: none;
  border-radius: 0;
  display: block;
  padding: 10px 0;
  width: 100%;
  margin-bottom: 2.5rem;
  outline: none;
  font-size: 2.2rem;
  color: var(--text-secondary);
}
.form_input::placeholder {
  color: var(--text-secondary);
  opacity: 0.5;
}
.form_checkbox {
  margin: 0;
  width: 20px;
  height: 20px;
}
.form_checkbox-box {
  display: flex;
  align-items: center;
}
.form_checkbox-text {
  margin-left: 10px;
  font-size: 1.8rem;
  color: var(--text-primary);
}
.form_checkbox-text .privacy-link {
  text-decoration: underline;
}
.form_textarea {
  border: none;
  border-bottom: 1px solid var(--blue-2);
  background: none;
  border-radius: 0;
  display: block;
  padding: 10px 0;
  width: 100%;
  margin-bottom: 2.5rem;
  outline: none;
  font-size: 2.2rem;
  color: var(--text-secondary);
  min-height: 100px;
  resize: none;
  font-family: var(--font-primary);
}
.form_textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.5;
}
.form_btn {
  font-size: 1.8rem;
}
.form_hidden {
  display: none;
}
.form_errors {
  padding: 20px 0;
}
.form_special {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: block;
}
.form input#required-info {
  display: none;
}

.persons {
  --person-spacing: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--person-spacing) * -1);
  margin-left: calc(var(--person-spacing) * -1);
}

.person {
  margin: var(--person-spacing);
  background-color: var(--white);
  width: calc(33.3% - var(--person-spacing) * 2);
}
@media (max-width: 992px) {
  .person {
    width: calc(50% - var(--person-spacing) * 2);
  }
}
@media (max-width: 768px) {
  .person {
    width: calc(100% - var(--person-spacing) * 2);
  }
}
.person .icon-link {
  --icon-size: 2.2rem;
}
.person .icon-link_text {
  overflow: auto;
}
.person_name {
  margin-bottom: 1rem;
}
.person_title {
  opacity: 0.7;
}
.person_photo-block {
  background-color: rgb(175, 175, 175);
  display: flex;
  justify-content: center;
}
.person_photo-block .photo {
  width: 50%;
}
@media (max-width: 768px) {
  .person_photo-block .photo {
    width: 40%;
  }
}
@media (max-width: 480px) {
  .person_photo-block .photo {
    width: 50%;
  }
}
.person_photo-block .photo-aspect {
  position: relative;
  width: 100%;
  padding-top: 110%;
  overflow: hidden;
}
.person_photo-block img {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person_photo-block img.empty {
  display: none;
}
.person_info {
  padding: 5rem;
}
.person_contacts {
  margin-top: 3rem;
}

.vacancies-table tr td {
  padding: 1rem;
  color: inherit;
}
.vacancies-table tr:nth-child(even) {
  background-color: rgba(155, 211, 221, 0.3);
}
.vacancies-table tr td:nth-child(odd),
.vacancies-table tr th:nth-child(odd) {
  width: 70%;
  flex-grow: 1;
}
.vacancies-table.sm {
  font-size: 1.8rem;
}
.vacancies-table.sm a {
  font-size: 1.8rem;
}

.popup {
  position: fixed;
  z-index: 1000;
  display: none;
}
.popup.is-active {
  display: block;
}
.popup_popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  max-width: 800px;
  padding: 3rem 3rem 4rem;
  background-color: var(--white);
  z-index: 2;
}
.popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.popup_close {
  position: relative;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
}
.popup_close::before, .popup_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--blue-2);
  transform-origin: center;
}
.popup_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup_close {
  margin-bottom: 2rem;
}

.flx_row {
  --base-col-pad: 4rem;
  display: flex;
  flex-direction: row;
  margin-left: calc(var(--base-col-pad) * -1);
  margin-right: calc(var(--base-col-pad) * -1);
  flex-wrap: wrap;
}
.flx_row--lg {
  --base-col-pad: 8rem;
}
.flx_row--sm {
  --base-col-pad: 2rem;
}
.flx_row--xs {
  --base-col-pad: 1rem;
}
@media (max-width: 1200px) {
  .flx_row.reverse-lg {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .flx_row.reverse-sm {
    flex-direction: column-reverse;
  }
}
.flx_row--right {
  justify-content: flex-end;
}

.col {
  padding-left: var(--base-col-pad);
  padding-right: var(--base-col-pad);
}
@media (max-width: 1200px) {
  .col.full-lg {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .col.full-md {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .col.full-sm {
    width: 100%;
  }
}
.col--pad-sm {
  padding: 1rem;
}
.col--pad {
  padding-top: var(--base-col-pad);
  padding-bottom: var(--base-col-pad);
}
.col-2, .col--50 {
  width: 50%;
}
.col-3, .col--33 {
  width: 33.3%;
}
.col--66 {
  width: 66.6%;
}
.col-4, .col--25 {
  width: 25%;
}
.col--75 {
  width: 75%;
}
.col--20 {
  width: 20%;
}
.col--80 {
  width: 80%;
}
.col--10 {
  width: 10%;
}
.col--90 {
  width: 90%;
}

.pad_nav {
  padding-bottom: 10rem;
}
.pad_md {
  padding-bottom: 6rem;
}
.pad_1 {
  padding-bottom: 1rem;
}
.pad_2 {
  padding-bottom: 2rem;
}
.pad_3 {
  padding-bottom: 3rem;
}
.pad_4 {
  padding-bottom: 4rem;
}
.pad_5 {
  padding-bottom: 5rem;
}
.pad_6 {
  padding-bottom: 6rem;
}
.pad_7 {
  padding-bottom: 7rem;
}
.pad_8 {
  padding-bottom: 8rem;
}
.pad_9 {
  padding-bottom: 9rem;
}
.pad_10 {
  padding-bottom: 10rem;
}

.text-primary {
  color: var(--text-primary);
}
.text--2-col p {
  column-count: 2;
}
@media (max-width: 768px) {
  .text--2-col p {
    column-count: 1;
  }
}

.d-flex {
  display: flex;
}

.f-dir-col {
  flex-direction: column;
}

.ai-c {
  align-items: center;
}

.ai-fs {
  align-items: flex-start;
}

.ai-fe {
  align-items: flex-end;
}

.jc-c {
  justify-content: center;
}

.jc-fs {
  justify-content: flex-start;
}

.jc-fe {
  justify-content: flex-end;
}

.jc-sb {
  justify-content: space-between;
}

.tac {
  text-align: center;
}

.ttu {
  text-transform: uppercase;
}

.ttc {
  text-transform: capitalize;
}

.ttcf::first-letter {
  text-transform: capitalize;
}

.ttl {
  text-transform: lowercase;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  display: none;
}

@media (max-width: 992px) {
  .hidden--md {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hidden--sm {
    display: none !important;
  }
}

.vacancy-content {
  margin-bottom: 4rem;
}
.vacancy-content ul {
  font-size: 1.8rem;
  line-height: 1.8;
}

/*# sourceMappingURL=non-critical.7d0e102904e663fa2a02.css.map*/