/*!
Theme Name: Craft
Theme URI: https://mfxart.ru
Author: Roman
Author URI: https://mfxart.ru
Description: absIT
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: craft
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

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

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */
/* Base styles */
:root {
  --primary-color: #b62323;
  --secondary-color: #d92d20;
  --text-dark: #182230;
  --text-medium: #0c111d;
  --text-light: #667085;
  --text-lighter: #98a2b3;
  --border-color: #d0d5dd;
  --bg-light: #f2f4f7;
  --bg-white: #ffffff;
  --bg-form: #eaecf0;
  --bg-advantage: #ecfdf3;
  --advantage-color: #17b26a;
  --footer-bg: #182230;
  --max-width: 1384px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Montserrat",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 991px) {
  .container {
    padding: 0 20px;
  }
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* Header styles */
.header {

}

.header-content {
  display: flex;
  align-items: flex-start;
  gap: 39px;
  flex-wrap: wrap;
  border-right: 0.5px solid var(--border-color);
  border-left: 0.5px solid var(--border-color);
  padding-top: 23px;
  padding-bottom: 19px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 27px; /* FIX */
}

.logo-image {
  width: 32px;
  aspect-ratio: 0.89;
  object-fit: contain;
}

.company-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.header-info {
  display: flex;
  align-items: flex-start;
  gap: 620px;
  flex-wrap: wrap;
  flex-grow: 1;
}

@media (max-width: 1120px) {
  .header-info {
    gap: 30px; /* Новое значение для экранов меньше 1120px */
  }
}

.company-description {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.contact-container {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
  position: relative;
}

.phone-container {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 18px;
  color: rgba(0, 20, 39, 1);
  line-height: 2;
  position: relative;
  display: inline-block;
}

.phone-number {
  margin: auto 0;
}

.phone-icon {
  width: 7px;
  aspect-ratio: 1.25;
  object-fit: contain;
  margin: auto 0;
}

.callback-button {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 0px;
} 

.callback-button:hover {
  color: #d92d20;
}

/* Navigation styles */
.main-navigation {
  border: 0.5px solid var(--border-color); 
}

.nav-content {
  background-color: var(--bg-white);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  font-size: 18px;
  font-weight: 500;
  min-height: 54px;
  flex-wrap: nowrap;
  border-left: 0.5px solid var(--border-color);
}

.nav-links {
  display: flex;
  min-width: 240px;
  color: var(--primary-color);
  flex-wrap: nowrap;
  position: relative;
}

.nav-link {
  font-size: 18px;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 32px;
  border-right: 0.5px solid var(--border-color);
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active {
  cursor: pointer;
  background-color: #eaecf0;
  color: #475467;
}

.nav-links li:last-child .nav-link {
  border-right: none;
}

.consultation-link {
  display: flex;
  align-items: center;
  min-height: 54px;
  min-width: 240px;
  padding: 0 32px;
  color: white;
  background: linear-gradient(94.07deg, #c3002f -2.7%, #db4f00 104.86%);
}

.consultation-link:hover {
  background: linear-gradient(94.07deg, #970024 -2.7%, #c94800 104.86%);
}

/* Dropdown menu styles */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #f5f7fa;
  z-index: 9999;
  padding: 40px 20px;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}


.modal-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: transparent;
  max-width: 860px;
  width: 100%;
  padding: 40px;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  background: #f2f4f7;
  color: #555;
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  opacity: 0.8;
}

.modal-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #121212;
}

.modal-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  color: #333;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.modal-row input {
  flex: 1 1 48%;
  padding: 16px;
  font-size: 16px;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  background: #fff;
}

.modal-form textarea {
  padding: 16px;
  font-size: 16px;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  resize: vertical;
  min-height: 140px;
  background: #fff;
  width: 100%;
}

.modal-policy {
  font-size: 13px;
  color: #667085;
  max-width: 60%;
  line-height: 1.4;
}

.modal-policy a {
  color: #667085;
  text-decoration: underline;
}

.modal-submit {
  align-self: flex-start;
  background: linear-gradient(90deg, #C3002F, #FF6B00);
  color: white;
  font-size: 16px;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 27%;
}

.large-form fieldset {
  border: none;
  padding: 0;
  margin-bottom: 30px;
}

.large-form legend {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #121212;
}

.large-form label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  color: #333;
}

.large-form input[type="checkbox"],
.large-form input[type="radio"] {
  margin-right: 8px;
}

.large-form input[type="text"],
.large-form input[type="tel"],
.large-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 16px;
}

.large-form textarea {
  min-height: 120px;
  resize: vertical;
}


@media (max-width: 768px) {
	
.modal-container {
    padding: 24px 16px;
  }

  .modal-title {
    font-size: 26px;
  }

  .modal-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .large-form fieldset {
    margin-bottom: 24px;
  }

  .large-form legend {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .large-form label {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .large-form input[type="text"],
  .large-form input[type="tel"],
  .large-form textarea {
    font-size: 15px;
    padding: 12px;
  }

  .modal-submit {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .modal-policy {
    max-width: 100%;
    font-size: 12px;
  }

  .modal-close {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }	
  .modal-container {
    padding: 24px 20px;
  }

  .modal-title {
    font-size: 28px;
  }

  .modal-subtitle {
    font-size: 16px;
  }

  .modal-row {
    flex-direction: column;
    gap: 16px;
  }

  .modal-row input {
    flex: 1 1 100%;
  }

  .modal-policy {
    max-width: 100%;
  }

  .modal-submit {
    width: 100%;
    text-align: center;
  }

  .modal-close {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
}


/* Затемнение для main */
.main-content {
    position: relative;
    z-index: 1;
}

.main-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 17, 29, 0.5); /* Цвет затемнения #0C111D с прозрачностью */
    z-index: 999; /* Затемнение будет поверх контента main */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Убедимся, что шапка и меню находятся выше затемнения */
.header,
.main-navigation {
    position: relative;
    z-index: 998; /* Шапка и меню будут выше затемнения */
}

/* Dropdown menu styles */
.dropdown {
    position: relative;
}

/* Dropdown menu styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 318px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 998; /* Меню будет выше затемнения */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 0; /* Убираем внутренние отступы */
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 16px 32px; /* Отступы как в основном меню */
    color: #000;
    text-decoration: none;
    font-size: 18px; /* Размер шрифта 18px */
    background-color: #fff;
    transition: background-color 0.3s ease;
    text-align: left; /* Выравнивание текста по левому краю */
}

.dropdown-menu a:hover {
    background-color: #eaecf0;
    color: #d92d20;
}

/* Задержка и появление меню */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transition-delay: 0.2s; /* Задержка 0.2 секунды */
}


/* Активация затемнения */
.main-content.overlay-active::before {
    opacity: 1;
    visibility: visible;
}



@media (max-width: 991px) {
  .nav-link,
  .consultation-link {
    padding: 0 20px;
    white-space: nowrap;
  }
}

/* Hero section styles */
.hero-section {
 
}

.hero-content {
  padding-top: 97px;
  display: flex;
  gap: 20px;
  background: url('images/mainbg.png') bottom right no-repeat;
  height: 1130px;
}

.hero-text-column {
  width: 50%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  height: 100%; /* или нужная высота */
}

.hero-text-content {
  margin-left: 32px;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-dark);
  margin-right: 31px;
}

.hero-subtitle {
  font-size: 36px;
  font-weight: 600;
  line-height: 54px;
  color: var(--text-dark);
  margin-top: 24px;
  padding-right: 4px;
}

.hero-stats {
  margin-top: 64px;
  max-width: 430px;
}

.stats-container {
  display: flex;
  gap: 84px;
}

.stat-item:first-child {
  width: 20%;
}

.stat-item:last-child {
  width: 80%;
}

.stat-number {
  color: var(--secondary-color);
  font-size: 64px;
  font-weight: 700;
}

.stat-description {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin-top: -10px;
  z-index: 10;
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 333px 0 333px 0;
  margin-top: 96px;
  aspect-ratio: 1.79;
  object-fit: contain;
}

.hero-area-column {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.area-container {
  display: flex;
  flex-direction: column;
  margin-top: 0px;
  align-items: flex-end;
  align-self: flex-end;
}

.area-container {
  display: flex;
  flex-direction: column;
  margin-top: 0px;
  align-items: flex-end;
  align-self: flex-end;
}

.area-image-wrapper {
  position: relative;
  min-height: 627px;
  max-width: 680px;
  padding: 243px 61px 383px;
}

.area-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.area-divider {
  position: relative;
  background-color: var(--border-color);
  width: 189px;
  height: 1px;
  margin-bottom: -77px;
}

.area-size {
  color: var(--secondary-color);
  font-size: 104px;
  font-weight: 700;
  margin-top: 25px;
}

@media (max-width: 991px) {
  .hero-section {
    margin-top: 40px;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text-column,
  .hero-area-column {
    width: 100%;
  }

  .hero-title {
    font-size: 40px;
    margin-right: 10px;
  }

  .hero-stats {
    margin-top: 40px;
  }

  .stat-number {
    font-size: 40px;
  }

  .hero-image {
    margin-top: 40px;
  }

  .area-container {
    margin-top: 40px;
  }

  .area-image-wrapper {
    padding: 100px 20px;
  }

  .area-divider {
    margin-bottom: 10px;
  }

  .area-size {
    font-size: 40px;
  }
}

/* Services section styles */




.services-section_home_section {
  margin-bottom: 96px;
    margin-top: 144px;
}

@media (max-width: 640px) {
  .services-section_home_section {
    margin-bottom: 48px;
  }
}

.section-heading_home_section {
  font-size: 36px;
  font-weight: 700;
  color: #182230;
  margin-bottom: 48px;
  margin-left: 30px;
}

@media (max-width: 640px) {
  .section-heading_home_section {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

.services-grid_home_section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 991px) {
  .services-grid_home_section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid_home_section {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.service-card_home_section {
  background-color: #fff;
  padding: 32px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 253px;
}

.service-card_home_section:hover {
box-shadow: 4px 5px 12px #18274b2b;
  transition: .3s;
}

.service-info_home_section {
  margin-bottom: auto;
}

.service-title_home_section {
  color: #0c111d;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 500;
}

.service-capacity_home_section {
  padding: 2px 6px;
  background-color: #f2f4f7;
  border-radius: 4px;
  font-size: 13px;
  color: #0c111d;
  display: inline-block;
      font-weight: 500;
}

.service-link_home_section {
  color: #b62323;
  font-size: 18px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
    font-weight: 500;
}

.contact-card_home_section {
  background: #fff;
  padding: 32px;
  border-radius: 6px;
  align-content: flex-end;
  flex-direction: column;
  justify-content: space-between;
  min-height: 253px;
}
.contact-card_home_section:hover {
box-shadow: 4px 5px 12px #18274b2b;
  transition: .3s;
}

.contact-title_home_section {
  color: #182230;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  margin-bottom: auto;
}

.contact-email_home_section {
  color: #b62323;
  font-size: 18px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
        font-weight: 500;
}



/* Clients section styles */
.clients-section {
  margin-top: 144px;
}

.clients-logos-wrapper {
  width: 100%;
  margin-top: 64px;
  overflow: hidden;
  background-color: #f2f4f7; /* Новый цвет фона */
  padding: 40px 0;
  position: relative;
  margin-bottom: 64px;
}

.clients-logos {
  display: flex;
  width: max-content; /* Ширина контейнера равна сумме ширины всех логотипов */
  animation: scroll 14s linear infinite; /* Уменьшили время анимации для более быстрого движения */
  gap: 24px; /* Добавляем расстояние между изображениями */
}

.clients-logos:hover {
  animation-play-state: paused; /* Останавливаем анимацию при наведении */
}

.client-logo {
  flex: 0 0 328px; /* Фиксированная ширина для каждого логотипа */
  height: 168px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  border: 0.5px solid var(--border-color);
}

.client-logo:hover {
  transform: scale(1.05);
}

.client-logo .logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-logo:hover .logo-image {
  filter: grayscale(100%);
  opacity: 0.7;
}

/* Анимация для карусели */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Сдвигаем на половину ширины контейнера */
  }
}

.clients-feedback {
  margin-top: 64px;
  width: 100%;
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.feedback-title {
  color: var(--text-lighter);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.reviews-link {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
}

.advantages-list {
  display: flex;
  margin-top: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.advantage-item {
  border-radius: 6px;
  background-color: var(--bg-advantage);
  padding: 32px;
  color: var(--advantage-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 43px;
  min-width: 240px;
  flex: 1;
}

@media (max-width: 991px) {
  .clients-section {
    margin-top: 40px;
  }

  .clients-logos-wrapper {
    margin-top: 40px;
    padding: 20px 0;
  }

  .client-logo {
    flex: 0 0 200px; /* Уменьшенная ширина для мобильных устройств */
    height: 100px;
  }

  .clients-feedback {
    margin-top: 40px;
  }

  .advantage-item {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .client-logo {
    flex: 0 0 150px; /* Еще меньше для очень маленьких экранов */
    height: 75px;
  }
}




/* Advantages section */

#hm {
	padding-left:0px;
}


.container_home_pr {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.content_home_pr {
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* padding-left: 31px; */
  /* padding-right: 31px; */
}

.heading_home_pr {
  color: #98a2b3;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  margin-left: 31px;
}

.benefits_list_home_pr {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
    min-width: 1368px;
}

.benefit_item_home_pr {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 24px 6px 12px;
  border-radius: 6px;
  background-color: #fcfcfd;
}

.icon_wrapper_home_pr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 9px 7px 8px 7px;
}

.benefit_text_home_pr {
  color: #0c111d;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}

.navigation_item_home_pr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 138px;
  padding: 6px 24px;
  gap: 6px;
  border-radius: 6px;
  background-color: #fcfcfd;
}

.arrow_wrapper_home_pr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 7px 8px 6px 8px;
}

.checkmark_icon_home_pr {
  width: auto;
  height: 11px;
}

.arrow_icon_home_pr {
  width: 8px;
  height: 11px;
}

@media (max-width: 991px) {
  .benefits_list_home_pr {
    gap: 10px;
	min-width: auto;
  }
}

@media (max-width: 640px) {
  .benefits_list_home_pr {
    gap: 8px;
	min-width: auto;
  }
}




/* Work stages section styles */
/* Workflow container */
.workflow-container {
  width: 100%;
  max-width: 1385px;
  margin: 0 auto;
  /* padding: 0 67px; */
  position: relative;
  padding-top: 144px;
}

/* Workflow title */
.workflow-title {
  color: #182230;
  font-size: 36px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 68px;
  margin-left: 33px;
}

/* Workflow diagram */
.workflow-diagram {
  position: relative;
  min-height: 516px;
}

/* Start and end labels */
.workflow-start,
.workflow-end {
  position: absolute;
  color: #98a2b3;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
}

.workflow-start {
  left: 33px;
  top: 28px;
}

.workflow-end {
  right: 33px;
}

/* Workflow stages container */
.workflow-stages {
  position: relative;
  width: 100%;
  height: 393px;
}

/* Individual stage styling */
.workflow-stage {
  position: absolute;
  width: 256px;
}

.stage-tech-center {
  left: 353px;
  top: 1px;

}

.stage-metalwork {
  left: 940px;
  top: 28px;
}

.stage-finishing {
  left: 353px;
  top: 180px;
}

.stage-assembly {
  left: 353px;
  top: 305px;
}

.stage-quality {
  left: 940px;
  top: 332px;
}

/* Stage title */
.stage-title {
  color: #182230;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

/* Stage indicator (red square) */
.stage-indicator {
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 16px;
  background-color: #b62323;
}

/* SVG path */
.workflow-path {
  position: relative;
  width: 100%;
  height: 100%;
  z-index:-1;
}

.path-svg {
  width: 100%;
  height: 307px;
  position: absolute;
  left: 0;
  top: 78px;
}

/* Responsive styles */
@media (max-width: 991px) {
	#hm {
	padding-left: 20px;
	}
  .workflow-container {
    padding: 0 20px;
	margin-top:40px;
  }

.heading_home_pr {
  font-size: 20px;
  line-height: 28px;
    margin-left:0px;
}

  .workflow-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .workflow-start,
  .workflow-end {
    font-size: 24px;
  }

  .workflow-stage {
    width: 200px;
  }

  .stage-title {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .navigation_item_home_pr {
    width: 100%; /* Занимает всю доступную ширину */
    box-sizing: border-box; /* Учитывает padding в общей ширине */
width: 355px;
  }
}

@media (max-width: 640px) {
	#hm {
	padding-left: 20px;
	}
  .workflow-container {
    padding: 0 16px;
	margin-top:40px;
  }
  .heading_home_pr {
  font-size: 20px;
  line-height: 28px;
  margin-left:0px;
}

  .workflow-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .workflow-diagram {
    min-height: auto;
    border-left: 1px solid rgb(208,213,221);
    margin-left: 24px;
  }

  .workflow-start,
  .workflow-end {
    font-size: 20px;
    position: relative;
    left: 0;
    right: 0;
top: -10px;
    bottom: 0;
    margin-bottom: 20px;
  }
  .workflow-end {
    text-align: right;
    margin-top: 20px;
  }

  .workflow-stages {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
	margin-left: -8px;
  }

  .workflow-stage {
    position: relative;
    left: 0 !important;
    top: 0 !important;
    margin-bottom: 20px;
    width: 100%;
  }

  .workflow-path {
    display: none;
  }
}

/* Contact information section styles */
.contact-info-section {
  background-color: var(--bg-white);
  margin-top: 74px;
  padding: 79px 0;
}

.contact-info-content {
  display: flex;
  gap: 20px;
}

.contact-details-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-title {
  color: var(--border-color);
  font-size: 36px;
  font-weight: 700;
}

.address-container {
  margin-top: 64px;
  align-self: stretch;
}

.contact-subtitle {
  color: var(--text-lighter);
  font-size: 18px;
  font-weight: 500;
}

.contact-text {
  color: var(--text-dark);
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  margin-top: 12px;
}


.map-link {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  margin-top: 6px;
}

.map-link:hover {
color: #d92d20;
}

.working-hours-container {
  margin-top: 32px;
}

.contact-info-column {
  width: 50%;
  margin-top: 118px;
}

.email-container {
  margin-top: 128px;
  padding-left: 120px;
}

.sales-container {
  padding-left: 120px;	
}

@media (max-width: 991px) {
  .contact-info-section {
    margin-top: 40px;
    padding: 40px 0;
  }
  
.email-container {
  padding-left: 10px;
}

.sales-container {
  padding-left: 10px;	
}

  .contact-info-content {
    flex-direction: column;
  }

  .contact-details-column,
  .contact-info-column {
    width: 100%;
    margin-top: 40px;
  }

  .address-container {
    margin-top: 40px;
  }

  .email-container {
    margin-top: 40px;
  }
}

/* Useful links section styles */

.useful-links-section {
  background-color: var(--bg-form);
  padding: 64px 0;
}

.useful-links-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1288px;
}

.useful-links-title {
  color: var(--text-lighter);
  font-size: 36px;
  font-weight: 700;
}

.hide-button {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  text-align: right;
  background: none;
  border: none;
  cursor: pointer;
}

.show-button {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  text-align: right;
  background: none;
  border: none;
  cursor: pointer;
}

.show-button:hover {
  color: #d92d20;
}

.useful-links-content {
  display: none; /* Изначально скрыт */
  margin-top: 32px;
  gap: 20px;
}

.useful-links-content.visible {
  display: flex; /* Показываем блок */
}

.useful-links-content.hidden {
  opacity: 0;
  visibility: hidden;
  display: none; /* Для полного скрытия */
}


.links-column {
  display: flex;
  flex-direction: column;
}

.links-column:first-child {
  width: 25%;
}

.links-column:nth-child(2) {
  width: 33%;
}

.links-column:last-child {
  width: 42%;
}

.links-list {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 36px;
}

.useful-link {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  display: block;
}

.useful-link-category {
  margin-top: 32px;
}

.useful-link-group {
  margin-top: 36px;
}

@media (max-width: 991px) {
  .useful-links-content {
    flex-direction: column;
  }

  .links-column {
    width: 100% !important;
    margin-top: 40px;
  }

  .useful-link-group {
    margin-top: 40px;
  }
}

/* Footer styles */
.footer {
  position: relative;
  width: 100%;
  background-color: #182230;
  color: #fcfcfd;
  font-family: Montserrat, sans-serif;
  min-height:526px;
}

.footer_p {
  margin-top: 183px;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #182230;
  z-index: -1; /* Фон находится за содержимым */
}

.footer-wd {
  width: 1384px;
  margin: 0 auto; /* Центрируем контейнер */
  position: relative;
  z-index: 1; /* Содержимое над фоном */
}

/* Company Info Section */
.company-logo {
  position: absolute;
  left: 5px; /* Относительно .footer-wd */
  top: 94px;
  width: 208px;
  height: 56px;
}

.company-description_v2 {
  position: absolute;
  left: 70px; /* Относительно .footer-wd */
  top: 157px;
  width: 224px;
  color: #667085;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

.company-details {
  position: absolute;
  left: 70px; /* Относительно .footer-wd */
  top: 229px;
}

.detail-row {
  display: flex;
  margin-bottom: 6px;
}

.detail-label {
  color: #344054;
  font-size: 18px;
  font-weight: 500;
  width: 54px;
  margin-right: 24px;
}

.detail-value {
  color: #667085;
  font-size: 18px;
  font-weight: 500;
}

/* Tagline Section */
.tagline-section {
  position: absolute;
  left: 0; /* Относительно .footer-wd */
  top: 308px;
  width: 976px;
  height: 235px;
  left: -107px;
}

.microscope-img {
  width: 266px;
  height: 215px;
}

.tagline-text {
  position: absolute;
  left: 185px; /* Относительно .tagline-section */
  top: 144px;
  width: 246px;
  color: #667085;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

/* Services Section */
.services-section_v2 {
  position: absolute;
  left: 38.4%; /* Относительно .footer-wd */
  top: 112px;
  width: 328px;
}

.section-title_v2 {
  color: #344054;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 6px;
}

.section-title_v3 {
  color: #344054;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 6px;
  margin-left: 78px;
}


.services-list_v2 {
  color: #fcfcfd;
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  margin-top: 6px;
}

/* Companies Section */
.companies-section {
  position: absolute;
  right: 0; /* Относительно .footer-wd */
  top: 112px;
  width: 320px;
}

.companies-list {
  margin-top: 17px;
}

.company-item {
  display: flex;
  padding: 6px 12px;
  align-items: center;
  gap: 24px;
  border-radius: 12px;
  margin-bottom: 6px;
}

.company-icon-wrapper {
  width: 42px;
  height: 44px;
  position: relative;
}

.company-icon {
  width: 36px;
  height: 38px;
  position: absolute;
  left: 3px;
  top: 3px;
  background-color: #475467;
}

.company-icon-img {
  width: 44px;
  height: 44px;
}

.company-name_v2 {
  color: #fcfcfd;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

.self-logo {
  width: 44px;
  height: 18px;
}

.self-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

/* Legal Section */
.legal-section {
  position: absolute;
  left: 0; /* Относительно .footer-wd */
  top: 452px;
  width: 100%;
}

.legal-links {
  position: absolute;
  left: 38.3%; /* Относительно .footer-wd */
  display: flex;
  flex-direction: column; /* Располагаем элементы вертикально */

}

.legal-link {
  color: #667085;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap; /* Запрещаем перенос текста внутри ссылок */
}

.legal-link:hover {
  text-decoration: underline;
}

/* Группа для второй строки */
.legal-link-group {
  display: flex;
  gap: 12px; /* Отступ между "Настройки файлов cookie" и "Карта сайта" */
}

.copyright {
  position: absolute;
  right: 0; /* Относительно .footer-wd */
  color: #667085;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {

	
.tagline-section{
	display:none !important;
}	
	
  .footer-wd {
    width: 100%;
    padding: 0 20px;
  }
  
  .company-logo {
    position: relative;
	left: 0;
    top: 0;
  }


  .company-description_v2,
  .company-details,
  .tagline-section,
  .services-section_v2,
  .companies-section,
  .legal-section {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    margin-bottom: 20px;
  }

  .microscope-img {
    width: 100%;
    height: auto;
    max-width: 236px;
    margin: 0 auto;
  }

  .tagline-text {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .services-list {
    margin-top: 20px;
  }

  .companies-list {
    margin-top: 20px;
  }

  .legal-links {
    position: relative;
    left: 0;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .legal-link-group {
    justify-content: center; /* Центрируем группу ссылок */
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 20px;
    padding-left: 10px;
  }

  .detail-row {
    /* flex-direction: column; */
    margin-bottom: 15px;
  }

  .detail-label {
    margin-bottom: 5px;
  }

  .company-details {
    margin-top: 20px;
  }

  .legal-links {
    flex-direction: column;
    gap: 15px;
  }

  .legal-link-group {
    flex-direction: column; /* В мобильной версии ссылки в группе вертикально */
    gap: 15px;
  }

  .legal-link {
    text-align: center;
  }

  .company-item {
    flex-direction: column;
    text-align: center;
  }

  .company-icon-wrapper,
  .company-icon-img,
  .self-logo-wrapper {
    margin: 0 auto;
  }
}


/* ############# */

#menu.container {
max-width: 1410px;
padding: 0 13px;
}

#hero.container {
padding: 0px;
}

#hero.container {
  position: relative;
}

/* Левая линия — 300px */
#hero.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 50px;
  background-color: #d0d5dd /* или нужный цвет */
}

/* Правая линия — 100px */
#hero.container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 300px;
  background-color: #d0d5dd /* или нужный цвет */
}

#vacancy {
  position: relative;
}

/* Левая линия — 300px */
#vacancy.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 30px;
  background-color: #d0d5dd /* или нужный цвет */
}

/* Правая линия — 100px */
#vacancy.container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 80px;
  background-color: #d0d5dd /* или нужный цвет */
}

@media (min-width: 1360px){
  .nav-content {
    font-size: 17px;
  }
}


/* ######PAGE####### */

/* Container styles */
.entry-content {
  max-width: 1384px;
  margin: 0 auto;
  padding: 0 32px;
  font-family: Montserrat, sans-serif;
  color: #182230;
  line-height: 150%;
}

/* Responsive container */
@media (max-width: 991px) {
  .entry-content {
    padding: 0 16px;
  }
}

@media (max-width: 640px) {
  .entry-content {
    padding: 0 8px;
  }
}

/* Breadcrumb navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.breadcrumb-link,
.breadcrumb-current {
  color: #98a2b3;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.breadcrumb-arrow {
  width: 11px;
  height: 13px;
}

@media (max-width: 640px) {
  .breadcrumb-link,
  .breadcrumb-current {
    font-size: 14px;
  }
}

/* Page title */
.page-title {
  color: #182230;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 32px;
}

.page-title-certificate {
  color: #182230;
  font-size: 64px;
  font-weight: 700;
  margin: 0px 32px;
  margin-bottom: 32px;
  padding-top: 32px;
}

.page-description-certificate {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	font-size: 36px;
	line-height: 150%;
	margin: 0px 32px;
	display: flex;
	align-items: center;
	color: #182230;
}

.page-title-certificate-border {
  padding-bottom: 54px;
}

@media (max-width: 991px) {
  .page-title-certificate-border {
  padding-bottom: 14px;
}
}



#certificate {
  position: relative;
  padding-top: 60px;
}

/* Левая линия — 300px */
#certificate.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 30px;
  background-color: #d0d5dd /* или нужный цвет */
}

/* Правая линия — 100px */
#certificate.container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 80px;
  background-color: #d0d5dd /* или нужный цвет */
}

#equipment {
  position: relative;
  padding-top: 95px;
}

/* Левая линия — 300px */
#equipment.main-content_v5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 30px;
  background-color: #d0d5dd /* или нужный цвет */
}

/* Правая линия — 100px */
#equipment.main-content_v5::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 180px;
  background-color: #d0d5dd /* или нужный цвет */
}


@media (max-width: 991px) {
  .page-title {
    font-size: 48px;
  }
}

@media (max-width: 640px) {
  .page-title {
    font-size: 36px;
  }
}

/* Policy sections */
.policy-section {
  margin-bottom: 32px;
}

.section-title {
  color: #182230;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 24px;
  }
}

.section-content {
  color: #182230;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 991px) {
  .section-content {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .section-content {
    font-size: 14px;
  }
}

/* WordPress editor compatibility */
.wp-block-heading {
  margin-top: 0;
}

/* Accessibility enhancements */
a:focus,
button:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}


.entry-content > h1:nth-child(1) {
  color: #182230;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 64px;
  font-weight: 700;
  line-height: 96px;
  margin-top: 24px;
  text-align: left;
}





/* Contact info section */
.contact-info-section_v2 {
  max-width: 1352px;
  margin-left: auto;
}

.contact-info-grid {
  display: flex;
  gap: 20px;
}

.contact-info-item {
  width: 50%;
}

.contact-info-title {
  color: #98a2b3;
  font-size: 18px;
  font-weight: 500;
}

.contact-info-value {
  color: #182230;
  font-size: 36px;
  font-weight: 700;
  margin-top: 12px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .contact-info-grid {
    flex-direction: column;
  }

  .contact-info-item {
    width: 100%;
    margin-top: 40px;
  }

  .contact-info-value {
    max-width: 100%;
  }
}

/* Additional info section */

.additional-info-section {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5%;
  max-width: 1352px;
  margin: 65px 0px;
}

.additional-info-item {
  width: 53%;
}

.additional-info-item-fix1 {
  padding-left: 0px;
}

.additional-info-item-fix2 {
  padding-left: 10px;
}

.сontact-item {
  margin-left: 32px;
  margin-top: 27px;
}



@media (max-width: 991px) {
  .additional-info-section {
    margin-top: 40px;
  }
}

/* Map section */
.map-image {
  width: 100%;
  border-radius: 20px;
  margin-top: 64px;
  aspect-ratio: 2.77;
  object-fit: contain;
}

@media (max-width: 991px) {
  .map-image {
    margin-top: 40px;
  }
}

/* Directions section */
.directions-section {
  max-width: 1352px;
  margin-left: auto;
  margin-top: 96px;
}

.directions-grid {
  display: flex;
  gap: 20px;
}

.directions-content {
  width: 32%;
}

.directions-title {
  font-size: 32px;
  font-weight: 700;
  color: #182230;
}

.directions-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-top: 24px;
  color: #182230;
}

.directions-image-container {
  width: 25%;
}

.directions-image {
  width: 328px;
  max-width: 100%;
  border-radius: 20px;
  aspect-ratio: 0.82;
  object-fit: contain;
  height: 100%;
}

.directions-map-container {
  width: 43%;
}

.directions-map {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 1.4;
  object-fit: contain;
  height: 100%;
}

@media (max-width: 991px) {
  .directions-section {
    margin-top: 40px;
  }

  .directions-grid {
    flex-direction: column;
  }

  .directions-content,
  .directions-image-container,
  .directions-map-container {
    width: 100%;
  }

  .directions-content {
    margin-top: 24px;
  }

  .directions-image,
  .directions-map {
    margin-top: 24px;
  }
}

/* Contact form section */
.contact-form-section {
  max-width: 1352px;
  margin-left: auto;
  margin-top: 96px;
}

.contact-form-grid {
  display: flex;
  gap: 20px;
}

.contact-form-intro {
width: 43%;
  padding-right: 84px;
}

.contact-form-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  color: #182230;
}

.contact-form-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-top: 24px;
  color: #182230;
}

.contact-form-container {
  width: 76%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}

.form-input {
  flex: 1;
  min-width: 240px;
  padding: 16px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  background-color: #fcfcfd;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #182230;
}

.form-input::placeholder {
  color: #d0d5dd;
}

.form-textarea {
  width: 100%;
  min-height: 208px;
  margin-top: 24px;
  padding: 16px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  background-color: #fcfcfd;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #182230;
  resize: vertical;
}

.form-textarea::placeholder {
  color: #d0d5dd;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 20px;
}

.form-disclaimer {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  max-width: 436px;
}

.disclaimer-light {
  color: #98a2b3;
}

.disclaimer-dark {
  color: #475467;
}

.submit-button_v2 {
  min-width: 240px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(94deg, #c3002f -2.7%, #db4f00 104.86%);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  max-width: 459px;
  width: 459px;
}

@media (max-width: 991px) {
  .contact-form-section {
    margin-top: 40px;
  }

  .contact-form-grid {
    flex-direction: column;
  }

  .contact-form-intro,
  .contact-form-container {
    width: 100%;
  }

  .contact-form-intro {
    margin-top: 40px;
  }

  .contact-form-container {
    margin-top: 40px;
  }

  .form-disclaimer,
  .submit-button {
    max-width: 100%;
  }

  .submit-button {
    padding: 12px 20px;
  }

  .form-textarea {
    padding-bottom: 100px;
  }
}






/* ######PC####### */

/* Privacy policy content styles - WordPress WYSIWYG compatible */
.privacy-policy-content {
  margin: 0 auto;
  max-width: 1320px;
}

.section-title {
  color: #182230;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 36px;
  font-weight: 700;
  margin-top: 32px;
  margin-left: 32px;
}

.policy-text {
  color: #182230;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-top: 32px;
}

.policy-subsection {
  color: #182230;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-top: 24px;
}

.policy-table {
  margin-top: 21px;
  margin-left: 32px;
  width: 915px;
  max-width: 100%;
  font-size: 16px;
  color: #0c111d;
  font-weight: 500;
  border-collapse: collapse;
  border-radius: 6px;
  overflow: hidden;
}

.table-row {
  background-color: #fff;
}

.table-header {
  text-align: left;
  padding: 14px 24px;
  min-width: 240px;
  font-weight: 500;
  border-bottom: 1px solid #eaecf0;
}

.table-cell {
  padding: 14px 12px;
  line-height: 24px;
  border-bottom: 1px solid #eaecf0;
}

.table-row:last-child .table-header,
.table-row:last-child .table-cell {
  border-bottom: none;
}


























/* ######ABOUT####### */
/* Company info section */

@media (max-width: 991px) {
  .company-info {
    margin-top: 22px;
  }
}

.info-label {
  color: #98a2b3;
  font-size: 18px;
  font-weight: 500;
}

.info-value {
  color: #182230;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 36px;
  font-weight: 700;
  margin-top: 12px;
}

@media (max-width: 991px) {
  .info-value {
    max-width: 100%;
  }
}

/* Details section */

.details-block {
  margin-left: 32px;
  margin-top: 26px;
}

.details-section {
  align-self: stretch;
  margin-top: 64px;
}

@media (max-width: 991px) {
  .details-section {
    max-width: 100%;
    margin-top: 40px;
  }
}

.details-container {
  gap: 20px;
  display: flex;
  width: 100%;
  align-items: flex-start; /* Выравнивание по верхнему краю */
}

@media (max-width: 991px) {
  .details-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }
}

.details-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 67%;
  margin-left: 0px;
  min-width: 0; /* Предотвращает переполнение */
}

@media (max-width: 991px) {
  .details-column {
    width: 100%;
  }
}

.details-table {
  width: 100%;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: #0c111d;
  font-weight: 500;
  white-space: nowrap;
  max-height: 500px; /* Ограничение высоты таблицы */
  overflow-y: auto; /* Вертикальный скролл только для таблицы */
}

@media (max-width: 991px) {
  .details-table {
    max-width: 100%;
    margin-top: 25px;
    white-space: initial;
  }
}

.table-header {
  align-items: center;
  border-radius: 6px 6px 0 0;
  background-color: #98a2b3;
  display: flex;
  min-height: 52px;
  width: 100%;
  font-size: 15px;
  color: #fcfcfd;
  font-weight: 600;
  line-height: 1;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .table-header {
    max-width: 100%;
    white-space: initial;
  }
}

.header-cell {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: stretch;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 52px;
  padding: 16px 24px;
  gap: 10px;
  overflow: hidden;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

@media (max-width: 991px) {
  .header-cell {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    white-space: initial;
  }
}

.header-spacer {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  width: 457px;
  flex-shrink: 1;
  height: 52px;
  gap: 10px;
  flex: 1;
  flex-basis: 48px;
}

.table-row {
  align-items: center;
  border-bottom: 1px solid #eaecf0;
  background-color: #fff;
  display: flex;
  min-height: 52px;
  width: 100%;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .table-row {
    max-width: 100%;
    white-space: initial;
  }
}

.row-label {
  align-self: stretch;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 52px;
  padding: 14px 24px;
  gap: 10px;
  overflow: hidden;
  font-size: 16px;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

@media (max-width: 991px) {
  .row-label {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    white-space: initial;
  }
}

.row-value {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 52px;
  padding: 14px 12px;
  align-items: center;
  gap: 40px 100px;
  overflow: hidden;
  justify-content: space-between;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 24px;
}

@media (max-width: 991px) {
  .row-value {
    max-width: 100%;
    white-space: initial;
  }
}

.value-text {
  font-size: 16px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.copy-button {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: stretch;
  border-radius: 4px;
  background-color: #f2f4f7;
  margin-top: auto;
  margin-bottom: auto;
  padding: 2px 6px;
  gap: 2px;
  font-size: 13px;
  line-height: 2;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  color: #0c111d;
}

@media (max-width: 991px) {
  .copy-button {
    white-space: initial;
  }
}

.table-row:last-child {
  border-radius: 0 0 6px 6px;
}



@media (max-width: 991px) {
  .cta-column {
    width: 100%;
    position: static; /* Убираем sticky на мобильных */
  }
}

.cta-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 33%;
  margin-left: 20px;
  min-width: 0;
  height: fit-content;
  
}

.cta-card {
  position: sticky;
  top: 20px;
  z-index: 10;
  transition: all 0.2s ease;
  border-radius: 6px;
  border: 1px solid #d0d5dd;
  min-height: 253px;
  padding: 33px 32px;
  overflow: hidden;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: none;
}


@media (max-width: 991px) {
  .cta-card {
    max-width: 100%;
    margin-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.cta-title {
  font-feature-settings:
    "liga" off,
    "clig" off;
  width: 100%;
  font-size: 30px;
  color: #182230;
  font-weight: 600;
  line-height: 38px;
}

.cta-link {
  color: #b62323;
  text-align: right;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  margin-top: 75px;
  text-decoration: none;
  align-self: flex-end;
}

@media (max-width: 991px) {
  .cta-link {
    margin-top: 40px;
  }
}

/* Activities section */
.activities-section {
  margin-top: 24px;
  width: 65%;
  max-width: 100%;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  color: #0c111d;
  font-weight: 500;
}

.activities-header {
  align-items: center;
  border-radius: 6px 6px 0 0;
  background-color: #98a2b3;
  display: flex;
  min-height: 52px;
  width: 100%;
  font-size: 15px;
  color: #fcfcfd;
  font-weight: 600;
  line-height: 1;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .activities-header {
    max-width: 100%;
  }
}

.activities-title {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: stretch;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 52px;
  padding: 16px 24px;
  gap: 10px;
  overflow: hidden;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .activities-title {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.activity-row {
  align-items: center;
  border-bottom: 1px solid #eaecf0;
  background-color: #fff;
  display: flex;
  min-height: 52px;
  width: 100%;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .activity-row {
    max-width: 100%;
  }
}

.activity-code {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 52px;
  padding: 14px 24px;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
  width: 117px;
}

@media (max-width: 991px) {
  .activity-code {
    padding-left: 20px;
    padding-right: 20px;
    white-space: initial;
  }
}

.activity-description {
  align-self: stretch;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 52px;
  padding: 14px 12px;
  gap: 10px;
  overflow: hidden;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 24px;
}

@media (max-width: 991px) {
  .activity-description {
    max-width: 100%;
  }
}

.activity-row:last-child {
  border-radius: 0 0 6px 6px;
}














/* ######Certificates####### */

/* Certificate items */
.certificate-item {
  background-color: rgba(255, 255, 255, 1);
  margin-top: 96px;
  padding: 0 56px;
}

@media (max-width: 991px) {
  .certificate-item {
    max-width: 100%;
    padding: 0 20px;
    margin-top: 40px;
  }
}

.certificate-container {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .certificate-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }
}

.certificate-image-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
  margin-left: 0px;
}

@media (max-width: 991px) {
  .certificate-image-column {
    width: 100%;
  }
}

.certificate-image {
  aspect-ratio: 1.81;
  object-position: center;
  width: 100%;
  flex-grow: 1;
  margin-top: -50px;
}

@media (max-width: 991px) {
  .certificate-image {
    max-width: 100%;
    margin-top: 40px;
  }
}

.certificate-content-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .certificate-content-column {
    width: 100%;
  }
}

.certificate-content {
  display: flex;
  margin-top: 42px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 500;
}

@media (max-width: 991px) {
  .certificate-content {
    max-width: 100%;
    margin-top: 40px;
  }
}

.certificate-title {
  color: #0c111d;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 24px;
  line-height: 43px;
  font-weight: 500;
}

.certificate-description {
  color: #98a2b3;
  font-size: 18px;
  line-height: 27px;
  margin-top: 27px;
}

@media (max-width: 991px) {
  .certificate-description {
    max-width: 100%;
  }
}

.view-link {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: start;
  margin-top: 39px;
  gap: 40px 48px;
  font-size: 24px;
  color: #b62323;
  white-space: nowrap;
  line-height: 43px;
  text-decoration: none;
}

@media (max-width: 991px) {
  .view-link {
    white-space: initial;
  }
}


/* Contact section */
.contact-section_v4 {
  align-self: center;
  margin-top: 103px;
  width: 1290px;
  max-width: 100%;
}

@media (max-width: 991px) {
  .contact-section_v4 {
    margin-top: 40px;
  }
}

.contact-container_v4 {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .contact-container_v4 {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }
}

.contact-text-column_v4 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
  margin-left: 32px;
  
}

@media (max-width: 991px) {
  .contact-text-column_v4 {
    width: 100%;
  }
}

.contact-text-content_v4 {
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: #182230;
  
}

@media (max-width: 991px) {
  .contact-text-content_v4 {
    max-width: 100%;
    margin-top: 40px;
  }
}

.contact-title_v4 {
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  width: 413px;
}

.contact-description_v4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-top: 33px;
}

@media (max-width: 991px) {
  .contact-description_v4 {
    max-width: 100%;
  }
}

.contact-form-column_v4 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .contact-form-column_v4 {
    width: 100%;
  }
}

.contact-form-wrapper_v4 {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: stretch;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 500;
}

@media (max-width: 991px) {
  .contact-form-wrapper_v4 {
    max-width: 100%;
    margin-top: 40px;
  }
}

.contact-form_v4 {
  width: 100%;
  font-size: 15px;
  color: #d0d5dd;
  line-height: 1;
}

@media (max-width: 991px) {
  .contact-form_v4 {
    max-width: 100%;
  }
}

.form-input_v4 {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid var(--gray-light-mode-300, #d0d5dd);
  background-color: #fcfcfd;
  max-width: 100%;
  width: 576px;
  padding: 16px 12px;
  gap: 8px;
  font-family: inherit;
  font-size: inherit;
}

.form-input_v4:nth-child(2) {
  margin-top: 24px;
}

.form-textarea_v4 {
  font-feature-settings:
    "liga" off,
    "clig" off;
  border-radius: 6px;
  border: 1px solid var(--gray-light-mode-300, #d0d5dd);
  background-color: #fcfcfd;
  margin-top: 24px;
  min-height: 208px;
  max-width: 100%;
  width: 576px;
  padding: 16px 12px;
  gap: 8px;
  font-family: inherit;
  font-size: inherit;
  resize: vertical;
}

@media (max-width: 991px) {
  .form-textarea_v4 {
    min-height: 120px;
  }
}

.submit-button_v4 {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: stretch;
  border-radius: 6px;
  background: linear-gradient(94deg, #c3002f -2.7%, #db4f00 104.86%);
  margin-top: 24px;
  max-width: 100%;
  width: 576px;
  padding: 12px 24px;
  gap: 12px;
  overflow: hidden;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
}

@media (max-width: 991px) {
  .submit-button_v4 {
    padding: 12px 20px;
    white-space: initial;
  }
}



.privacy-policy_v4 {
  color: #98a2b3;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 13px;
  line-height: 20px;
  align-self: start;
  margin-top: 16px;
}

@media (max-width: 991px) {
  .privacy-policy_v4 {
    max-width: 100%;
  }
}

.privacy-text_v4 {
  color: rgba(152, 162, 179, 1);
}

.privacy-link_v4 {
  color: rgba(71, 84, 103, 1);
  text-decoration: none;
}

/* ######Equipment####### */

.main-content_v5 {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.equipment-section {
  margin-left: 32px;
}

.section-title_v5 {
  color: #182230;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
}

.section-description_v5 {
  color: #182230;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 64px;
}

.highlight {
  color: #b62323;
}

.equipment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: -32px;
  margin-top: 96px;
}

.equipment-card {
  display: flex;
  padding: 28px 64px;
  gap: 36px;
  background-color: #fff;
}

.equipment-image {
  width: 411px;
  height: 231px;
  object-fit: cover;
}

.equipment-details {
    display: flex;
    flex-direction: column;
    gap: 27px;
    justify-content: space-between;
}

.equipment-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.equipment-title {
  color: #0c111d;
  font-size: 24px;
  font-weight: normal;
}

.equipment-category {
  padding: 2px 6px;
  border-radius: 4px;
  color: #0c111d;
  font-size: 13px;
  background-color: #f2f4f7;
}

.equipment-description {
  color: #98a2b3;
  font-size: 18px;
}

.details-link {
  color: #b62323;
  font-size: 24px;
  text-decoration: none;
  cursor: pointer;
}

.show-more-button {
  padding: 24px;
  color: #0c111d;
  font-size: 24px;
  margin-top: 48px;
  cursor: pointer;
  background-color: #eaecf0;
  border: none;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  text-align: center;
}

/* ######Services####### */


      /* Main container */
      .services-page_v6 {
        background-color: #f2f4f7;
        display: flex;
        padding: 23px 80px 0px;
        flex-direction: column;
        overflow: hidden;
        align-items: center;
      }

      @media (max-width: 991px) {
        .services-page_v6 {
          padding: 23px 20px 100px;
        }
      }

      .page-container_v6 {
        display: flex;
        width: 100%;
        max-width: 1384px;
        flex-direction: column;
        align-items: stretch;
      }

      @media (max-width: 991px) {
        .page-container_v6 {
          max-width: 100%;
        }
      }
	  
	  
      .services-title_v6 {
        color: #182230;
        font-feature-settings:
          "liga" off,
          "clig" off;
        font-size: 36px;
        font-weight: 700;
        margin-top: 64px;
      }

      @media (max-width: 991px) {
        .services-title_v6 {
          max-width: 100%;
          margin-top: 40px;
        }
      }

      /* Services grid */
      .services-grid_v6 {
        display: flex;
        margin-top: 64px;
        align-items: start;
        gap: 24px;
        justify-content: start;
        flex-wrap: wrap;
		margin-left: -32px;
      }

      @media (max-width: 991px) {
        .services-grid_v6 {
          margin-top: 40px;
		  margin-left: 0px;
        }
      }

      .service-card_v6 {
        border-radius: 6px;
        background-color: rgba(255, 255, 255, 1);
        padding: 32px;
        overflow: hidden;
        font-weight: 500;
		flex: 1 1 calc(25% - 64px); /* 4 в ряд, можно адаптировать */
        flex-grow: 1;
        flex-shrink: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
		aspect-ratio: 1 / 1;
      }
	  
	  .contact-card_v6 {
        border-radius: 6px;
        border: 1px solid #d0d5dd;
		padding: 32px;
        overflow: hidden;
        font-weight: 500;
        flex-shrink: 1;
		flex: 1 1 calc(25% - 64px); /* 4 в ряд, можно адаптировать */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
		aspect-ratio: 1 / 1;
      }

      @media (max-width: 991px) {
        .service-card_v6 {
          padding: 20px;
        }
      }

      .service-info_v6 {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        color: #0c111d;
        justify-content: start;
      }

      .service-name_v6 {
        font-feature-settings:
          "liga" off,
          "clig" off;
        font-size: 24px;
        line-height: 43px;
      }

      .equipment-count_v6 {
        font-feature-settings:
          "liga" off,
          "clig" off;
        align-self: start;
        border-radius: 4px;
        background-color: #f2f4f7;
        margin-top: 12px;
        padding: 2px 6px;
        gap: 2px;
        font-size: 13px;
        line-height: 2;
      }

      .service-details_v6 {
        color: #b62323;
        text-align: left;
        font-size: 18px;
        line-height: 36px;
        margin-top: 74px;
      }

      @media (max-width: 991px) {
        .service-details_v6 {
          margin-top: 40px;
        }
      }

      .service-card:nth-child(n + 5) .service-details_v6 {
        margin-top: 31px;
      }

      

      @media (max-width: 991px) {
        .contact-card_v6 {
          padding: 33px 20px;
        }
      }
	  
	  
	        /* Breadcrumbs */
      .breadcrumbs-section_v6 {
        display: flex;
        margin-top: 32px;
        width: 100%;
        padding-left: 32px;
        flex-direction: column;
        align-items: start;
      }

      @media (max-width: 991px) {
        .breadcrumbs-section_v6 {
          max-width: 100%;
          padding-left: 20px;
        }
      }

      .breadcrumbs_v6 {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 18px;
        color: #98a2b3;
        font-weight: 500;
        white-space: nowrap;
        justify-content: start;
      }

      @media (max-width: 991px) {
        .breadcrumbs_v6 {
          white-space: initial;
        }
      }

      .breadcrumb-item_v6 {
        align-self: stretch;
        margin-top: auto;
        margin-bottom: auto;
      }

      .breadcrumb-separator_v6 {
        aspect-ratio: 0.85;
        object-fit: contain;
        object-position: center;
        width: 11px;
        align-self: stretch;
        margin-top: auto;
        margin-bottom: auto;
        flex-shrink: 0;
      }



/* Скрыть оригинальный hero-блок на мобильных */
@media (max-width: 768px) {
  .hero-content {
    display: none !important;
  }
  .hero-mobile {
    display: block;
  }
}

/* Скрыть мобильный блок на десктопе */
.hero-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-mobile {
    display: block;
  }

  .hero-content {
    display: none;
  }
  .hero-section {
    display: none;
  }
  
  .services-section_home_section {
    margin-bottom: 96px;
    margin-top: 0px; 
}
  
}

.hero-mobile {
  background: #f5f7fa;
  padding: 24px 16px;
  font-family: 'Montserrat', sans-serif;
  color: #121212;
}

.hero-mobile__text h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-mobile__text p {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.4;
}

.hero-mobile__stat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-mobile__stat-mid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-flow: column wrap;
}



.hero-mobile__number {
  font-size: 28px;
  font-weight: 700;
  color: #d32027;
  line-height: 1.1;
}

.hero-mobile__label {
  font-size: 14px;
  line-height: 1.3;
  color: #333;
}

.hero-mobile__mini-gallery {
  width: 100%;
  display: flex;
  gap: 8px;
}

.hero-mobile__mini-gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.hero-mobile__main-image {
  width: 100%;
  border-radius: 16px;
  margin: 16px 0;
}






      /* Hero section */
      .hero-section_v6 {
        align-self: stretch;
        margin-top: 24px;
        width: 100%;
      }

      @media (max-width: 991px) {
        .hero-section_v6 {
          max-width: 100%;
        }
      }

      .hero-content_v6 {
        width: 100%;
      }

      @media (max-width: 991px) {
        .hero-content_v6 {
          max-width: 100%;
        }
      }

      .hero-title_v6 {
        color: #182230;
        font-feature-settings:
          "liga" off,
          "clig" off;
        font-size: 64px;
        font-weight: 700;
      }

      @media (max-width: 991px) {
        .hero-title_v6 {
          max-width: 100%;
          font-size: 40px;
        }
      }

      .hero-description-container_v6 {
        display: flex;
        margin-top: 32px;
        width: 100%;
        align-items: start;
        gap: 24px;
        font-size: 24px;
        color: #667085;
        font-weight: 500;
        line-height: 36px;
        justify-content: start;
        flex-wrap: wrap;
      }

      @media (max-width: 991px) {
        .hero-description-container_v6 {
          max-width: 100%;
        }
      }

      .hero-description_v6 {
        flex-grow: 1;
        flex-shrink: 1;
        width: 794px;
      }

      @media (max-width: 991px) {
        .hero-description_v6 {
          max-width: 100%;
        }
      }

      .hero-image_v6 {
        aspect-ratio: 1.79;
        object-fit: contain;
        object-position: center;
        width: 356px;
        border-radius: 12px;
        min-width: 240px;
        flex-grow: 1;
        flex-shrink: 1;
      }

      @media (max-width: 991px) {
        .hero-image_v6 {
          max-width: 100%;
        }
      }

      .cta-button_v6 {
        font-feature-settings:
          "liga" off,
          "clig" off;
        align-self: stretch;
        border-radius: 6px;
        background: linear-gradient(94deg, #c3002f -2.7%, #db4f00 104.86%);
        margin-top: 24px;
        width: 296px;
        max-width: 100%;
        padding: 12px 24px;
        gap: 12px;
        overflow: hidden;
        font-size: 16px;
        color: #fff;
        font-weight: 500;
        text-align: center;
        line-height: 1;
        border: none;
        cursor: pointer;
      }

      @media (max-width: 991px) {
        .cta-button_v6 {
          padding: 12px 20px;
        }
      }

/* #######Vacancies###### */

/* Navigation */
.main_nav_v_cont {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  margin-top: 19px;
  min-height: 54px;
  width: 100%;
  align-items: start;
  gap: 40px 100px;
  font-size: 18px;
  font-weight: 500;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .main_nav_v_cont {
    max-width: 100%;
  }
}

.nav_list_v_cont {
  display: flex;
  min-width: 240px;
  align-items: start;
  color: #b62323;
  justify-content: start;
  flex-wrap: wrap;
  list-style-type: none;
}

@media (max-width: 991px) {
  .nav_list_v_cont {
    max-width: 100%;
  }
}

.nav_item_v_cont {
  display: flex;
}

.nav_link_v_cont {
  align-self: stretch;
  border-right: 0.5px solid var(--gray-light-mode-300, #d0d5dd);
  min-height: 54px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.nav_item_v_cont:last-child .nav_link_v_cont {
  border-right: none;
}

@media (max-width: 991px) {
  .nav_link_v_cont {
    padding: 0 20px;
    white-space: initial;
  }
}

.consultation_link_v_cont {
  align-self: stretch;
  min-width: 240px;
  min-height: 54px;
  padding: 0 32px;
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  background-color: #b62323;
}

@media (max-width: 991px) {
  .consultation_link_v_cont {
    padding: 0 20px;
  }
}

/* Breadcrumbs */
.breadcrumbs_v_cont {
  align-self: start;
  display: flex;
  margin-top: 30px;
  /* margin-left: 32px; */
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #98a2b3;
  font-weight: 500;
  justify-content: start;
  margin-left: 32px;
}

.breadcrumbs_v_cont_vacancies {
  align-self: start;
  display: flex;
  margin-top: 30px;
  /* margin-left: 32px; */
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #98a2b3;
  font-weight: 500;
  justify-content: start;
  margin-left: 32px;
}

@media (max-width: 991px) {
  .breadcrumbs_v_cont {
    margin-left: 10px;
  }
}

.breadcrumb_link_v_cont {
  align-self: stretch;
  margin: auto 0;
  color: inherit;
  text-decoration: none;
}

.breadcrumb_separator_v_cont {
  aspect-ratio: 0.85;
  object-fit: contain;
  object-position: center;
  width: 11px;
  align-self: stretch;
  margin: auto 0;
  flex-shrink: 0;
}

.breadcrumb_current_v_cont {
  align-self: stretch;
  margin: auto 0;
  color: inherit;
}

/* Page title */
.page_title_v_cont {
  color: #182230;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 64px;
  font-weight: 700;
  align-self: start;
  margin-top: 24px;
  margin-left: 32px;
}

@media (max-width: 991px) {
  .page_title_v_cont {
    margin-left: 10px;
    font-size: 40px;
  }
}

/* Main content */
.main_content_v_cont {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Intro section */
.intro_section_v_cont {
  align-self: end;
  margin-top: 32px;
  padding-left: 32px;
  width: 100%;
  max-width: 1352px;
}

@media (max-width: 991px) {
  .intro_section_v_cont {
    max-width: 100%;
  }
}

.intro_columns_v_cont {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .intro_columns_v_cont {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }
}

.intro_column_v_cont {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
  margin-left: 0px;
}

@media (max-width: 991px) {
  .intro_column_v_cont {
    width: 100%;
  }
}

.intro_text_v_cont {
  color: rgba(0, 0, 0, 1);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

@media (max-width: 991px) {
  .intro_text_v_cont {
    max-width: 100%;
    margin-top: 30px;
  }
}

.contact_column_v_cont {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .contact_column_v_cont {
    width: 100%;
  }
}

.contact_info_v_cont {
  display: flex;
  width: 100%;
  align-items: end;
  gap: 48px 0px;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .contact_info_v_cont {
    max-width: 100%;
    margin-top: 30px;
  }
}

.contact_group_v_cont {
  min-width: 240px;
}

.contact_label_v_cont {
  color: #98a2b3;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact_value_v_cont {
  color: #182230;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 24px;
  font-weight: 700;
}

.resume_button_v_cont {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: flex-end;
  border-radius: 6px;
  background: linear-gradient(94deg, #c3002f -2.7%, #db4f00 104.86%);
  padding: 12px 24px;
  height: 44px;
  margin-top: 2px;
  gap: 12px;
  overflow: hidden;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.resume_button_v_cont:hover {
background: linear-gradient(94.07deg, #970024 -2.7%, #c94800 104.86%);
}

@media (max-width: 991px) {
  .resume_button_v_cont {
    padding: 12px 20px;
	height: auto;
  }
}

/* Vacancies section */
.section_title_v_cont {
  color: #182230;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 36px;
  font-weight: 700;
  align-self: start;
  margin-top: 64px;
  margin-left: 34px;
  margin-bottom: 47px;
}

@media (max-width: 991px) {
  .section_title_v_cont {
    margin-left: 10px;
    margin-top: 40px;
  }
}

.section_divider_v_cont {
  background-color: #d0d5dd;
  align-self: center;
  display: flex;
  margin-top: 4px;
  margin-left: 168px;
  width: 189px;
  flex-shrink: 0;
  height: 1px;
}

/* Vacancy cards */
.vacancy_card_v_cont {
  margin-top: 12px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  padding: 32px;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  justify-content: center;
}
.vacancy_card_v_cont:hover {
box-shadow: 4px 5px 12px rgba(24, 39, 75, 0.17);
}

.vacancy_card_highlighted_v_cont {
  box-shadow: 4px 5px 12px rgba(24, 39, 75, 0.17);
}


@media (max-width: 991px) {
  .vacancy_card_v_cont {
    max-width: 100%;
    padding: 20px;
    margin-top: 40px;
  }
}

.vacancy_content_v_cont {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}

@media (max-width: 991px) {
  .vacancy_content_v_cont {
    max-width: 100%;
  }
}

.vacancy_header_v_cont {
  display: flex;
  width: 100%;
  align-items: start;
  gap: 40px 100px;
  color: #0c111d;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .vacancy_header_v_cont {
    max-width: 100%;
  }
}

.vacancy_title_v_cont {
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 24px;
  font-weight: 500;
  line-height: 43px;
  margin: 0;
}

.vacancy_actions_v_cont {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 24px;
  justify-content: start;
  flex-wrap: wrap;
}

.vacancy_salary_v_cont {
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 24px;
  font-weight: 700;
  align-self: stretch;
  margin: auto 0;
}

.details_button_v_cont {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: stretch;
  border-radius: 4px;
  background-color: #f2f4f7;
  margin: auto 0;
  padding: 2px 6px;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 2;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.details_button_v_cont:hover {
  background-color: #d92d20;
  color: #fcfcfd;
}


.details_button_accent_v_cont {
  background-color: #d92d20;
  color: #fcfcfd;
}

@media (max-width: 991px) {
  .details_button_v_cont {
    white-space: initial;
  }
}

.vacancy_meta_v_cont {
  align-self: start;
  display: flex;
  margin-top: 12px;
  align-items: start;
  gap: 16px;
  font-size: 18px;
  color: #98a2b3;
  font-weight: 500;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .vacancy_meta_v_cont {
    max-width: 100%;
  }
}

.vacancy_location_v_cont {
  align-self: stretch;
  border-radius: 4px;
  padding: 2px 0;
  gap: 2px;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .vacancy_location_v_cont {
    white-space: initial;
  }
}

.vacancy_experience_v_cont {
  align-self: stretch;
  border-radius: 4px;
  padding: 2px 0;
  gap: 2px;
}

.vacancy_remote_v_cont,
.vacancy_office_v_cont {
  align-self: stretch;
  border-radius: 4px;
  min-width: 240px;
  padding: 2px 0;
  gap: 2px;
}

/* Expanded vacancy card */
.vacancy_card_expanded_v_cont {
  box-shadow: 4px 5px 12px rgba(24, 39, 75, 0.17);
}

.vacancy_main_v_cont {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}

@media (max-width: 991px) {
  .vacancy_main_v_cont {
    max-width: 100%;
  }
}

.vacancy_details_v_cont {
  margin-top: 32px;
  width: 100%;
  color: #000;
  display:none;
}

@media (max-width: 991px) {
  .vacancy_details_v_cont {
    max-width: 100%;
  }
}

.vacancy_details_title_v_cont {
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 991px) {
  .vacancy_details_title_v_cont {
    max-width: 100%;
  }
}

.vacancy_details_text_v_cont {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-top: 24px;
}

@media (max-width: 991px) {
  .vacancy_details_text_v_cont {
    max-width: 100%;
  }
}

.vacancy_requirements_v_cont {
  margin-top: 32px;
  width: 100%;
  color: #000;
}

@media (max-width: 991px) {
  .vacancy_requirements_v_cont {
    max-width: 100%;
  }
}

.vacancy_resume_button_v_cont {
  align-self: start;
  margin-top: 32px;
}



/* Page wrapper */
.page_wrapper_v_cont {

  display: flex;
  flex-direction: column;
  justify-content: center; /* Выравнивание по вертикали */
  align-items: center; /* Выравнивание по горизонтали */
  overflow: hidden;
  padding-top: 23px;
  padding-bottom: 486px;
  background-color: #f2f4f7;

}

@media (max-width: 991px) {
  .page_wrapper_v_cont {
    padding-bottom: 100px;
  }
}

/* Container */
.container_v_cont {
  align-self: center;
  display: flex;
  width: 100%;
  max-width: 1384px;
  flex-direction: column;
  align-items: stretch;
}

@media (max-width: 991px) {
  .container_v_cont {
    max-width: 100%;
  }
}


/* #######Service###### */

/* Page title */
.page-title_service {
  color: #182230;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 96px;
  margin-top: 24px;
  margin-left: 32px;
}

@media (max-width: 991px) {
  .page-title_service {
    max-width: 100%;
    font-size: 40px;
    line-height: 66px;
  }
}

/* Service description section */
.service-description_service {
  align-self: end;
  margin-top: 32px;
  width: 100%;
  max-width: 1352px;
}

@media (max-width: 991px) {
  .service-description_service {
    max-width: 100%;
  }
}

.service-columns_service {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .service-columns_service {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }
}

.service-text-column_service {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 66%;
  margin-left: 32px;

}

@media (max-width: 991px) {
  .service-text-column_service {
    width: 100%;
  }
}

.service-text_service {
  color: #667085;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

@media (max-width: 991px) {
  .service-text_service {
    max-width: 100%;
    margin-top: 24px;
  }
}

.service-image-column_service {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 34%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .service-image-column_service {
    width: 100%;
  }
}

.service-image_service {
  aspect-ratio: 1.79;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 12px;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .service-image_service {
    max-width: 100%;
    margin-top: 24px;
  }
}

/* Consultation button */
.consultation-button_service {
  font-feature-settings:
    "liga" off,
    "clig" off;
  display: inline-block;
  align-self: stretch;
  border-radius: 6px;
  background: linear-gradient(94deg, #c3002f -2.7%, #db4f00 104.86%);
  margin-top: 45px;
  margin-left: 32px;
  padding: 12px 24px;
  gap: 12px;
  overflow: hidden;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}

.consultation-button_service_2 {
  font-feature-settings:
    "liga" off,
    "clig" off;
  display: inline-block;
  align-self: stretch;
  border-radius: 6px;
  background: linear-gradient(94deg, #c3002f -2.7%, #db4f00 104.86%);
  margin-top: 0px;
  margin-left: 32px;
  padding: 12px 24px;
  gap: 12px;
  overflow: hidden;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}

@media (max-width: 991px) {
  .consultation-button_service {
    margin-left: 10px;
    padding: 12px 20px;
    margin-top: 40px;
  }
}

/* Pricing section */
.pricing-section_service {
  margin-top: 64px;
}

.section-title_service {
  color: #182230;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-left: 32px;
}

@media (max-width: 991px) {
  .section-title_service {
    max-width: 100%;
  }
}
.table-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* плавная прокрутка на iOS */
}

.pricing-table_service {
  min-width: 600px; /* или сколько нужно для полной таблицы */
  width: 100%;
}

.pricing-table_service {
  margin-top: 32px;
  margin-left: 32px;
  width: 883px;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  color: #0c111d;
  font-weight: 500;
}

.table-header_service {
  align-items: center;
  border-radius: 6px 6px 0 0;
  background-color: #98a2b3;
  display: flex;
  min-height: 52px;
  width: 100%;
  max-width: 883px;
  font-size: 15px;
  color: #fcfcfd;
  font-weight: 600;
  line-height: 1;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .table-header_service {
    max-width: 100%;
  }
}

.header-cell_service {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: stretch;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 52px;
  padding: 16px 24px;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
}

.header-cell_service:nth-child(2),
.header-cell_service:nth-child(3) {
  padding: 16px 12px;
  width: auto;
}

.header-cell_service:nth-child(2) {
  width: 196px;
}

.header-cell_service:nth-child(3) {
  width: 352px;
}

@media (max-width: 991px) {
  .header-cell_service {
    padding: 16px 20px;
    white-space: initial;
  }
}

.table-row_service {
  align-items: center;
  border-bottom: 1px solid var(--gray-light-mode-200, #eaecf0);
  background-color: #fff;
  display: flex;
  min-height: 52px;
  width: 100%;
  max-width: 883px;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .table-row_service {
    max-width: 100%;
  }
}

.table-cell_service {
  align-self: stretch;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 52px;
  padding: 14px 24px;
  gap: 10px;
  overflow: hidden;
  width: 296px;
}

.table-cell_service:nth-child(2),
.table-cell_service:nth-child(3) {
  padding: 14px 12px;
  width: auto;
}

.table-cell_service:nth-child(2) {
  width: 196px;
  white-space: nowrap;
}

.table-cell_service:nth-child(3) {
  min-width: 240px;
  width: 244px;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .table-cell_service {
    padding: 14px 20px;
  }

  .table-cell_service:nth-child(2),
  .table-cell_service:nth-child(3) {
    white-space: initial;
  }
}

.table-row-last_service {
  border-radius: 0px 0px 6px 6px;
  border-bottom: none;
}

/* Work specifics section */
.work-specifics_service {
  margin-top: 64px;
  margin-left: 32px;
  width: 883px;
  max-width: 100%;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: #182230;
}

@media (max-width: 991px) {
  .work-specifics_service {
    margin-top: 40px;
  }
}

.work-description_service {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-top: 32px;
}

@media (max-width: 991px) {
  .work-description_service {
    max-width: 100%;
  }
}

/* Popular services section */
.popular-services_service {
  margin-top: 116px;
}

.popular-services_service .section-title_service {
  margin-left: 32px;
}

.section-title_service_2 {
    margin-left: 0px;
    color: #182230;
    font-feature-settings: "liga" off, "clig" off;
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 36px;
}

@media (max-width: 991px) {
  .popular-services_service {
    margin-top: 40px;
  }

  .popular-services_service .section-title_service {
    margin-left: 10px;
  }
}

.services-grid_service {
  align-self: stretch;
  display: flex;
  margin-top: 64px;
  align-items: start;
  gap: 24px;
  font-family:
    Montserrat,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .services-grid_service {
    margin-top: 40px;
  }
}

.service-card_service {
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 1);
  min-width: 240px;
  min-height: 253px;
  padding: 32px;
  overflow: hidden;
  font-weight: 500;
  flex-grow: 1;
  flex-shrink: 1;
  width: 262px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .service-card_service {
    padding: 20px;
  }
}

.service-card-content_service {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  color: #0c111d;
  justify-content: start;
}

.service-card-title_service {
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 24px;
  line-height: 43px;
  font-weight: 500;
}

.service-card-equipment_service {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: start;
  border-radius: 4px;
  background-color: #f2f4f7;
  margin-top: 12px;
  padding: 2px 6px;
  gap: 2px;
  font-size: 13px;
  line-height: 2;
}

.service-card-link_service {
  color: #b62323;
  text-align: right;
  font-size: 18px;
  line-height: 36px;
  margin-top: 74px;
  text-decoration: none;
  align-self: flex-end;
}

@media (max-width: 991px) {
  .service-card-link_service {
    margin-top: 40px;
  }
}

.service-card_service:nth-child(4) .service-card-link_service,
.service-card_service:nth-child(5) .service-card-link_service,
.service-card_service:nth-child(6) .service-card-link_service {
  margin-top: 31px;
}

.contact-card_service {
  border-radius: 6px;
  border: 1px solid var(--gray-light-mode-300, #d0d5dd);
  min-width: 240px;
  min-height: 253px;
  padding: 33px 32px;
  overflow: hidden;
  flex-grow: 1;
  flex-shrink: 1;
  width: 262px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .contact-card_service {
    padding: 33px 20px;
  }
}

.contact-card-title_service {
  font-feature-settings:
    "liga" off,
    "clig" off;
  width: 100%;
  font-size: 30px;
  color: #182230;
  font-weight: 600;
  line-height: 38px;
}

.contact-card-link_service {
  color: #b62323;
  text-align: right;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  margin-top: 75px;
  text-decoration: none;
  align-self: flex-end;
}

@media (max-width: 991px) {
  .contact-card-link_service {
    margin-top: 40px;
  }
}

/* ######Equip####### */

/* Page container */
.page-container_equip {
  display: flex;
  padding-top: 23px;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  background-color: #f2f4f7;
}

.content-wrapper_equip {
  align-self: center;
  display: flex;
  width: 100%;
  max-width: 1384px;
  flex-direction: column;
  align-items: stretch;
}

@media (max-width: 991px) {
  .content-wrapper_equip {
    max-width: 100%;
  }
}

/* Product info section */
.product-info-section_equip {
  align-self: end;
  margin-top: 32px;
  width: 100%;
  max-width: 1352px;
}

@media (max-width: 991px) {
  .product-info-section_equip {
    max-width: 100%;
  }
}

.product-info-container_equip {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .product-info-container_equip {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }
}

.product-description-column_equip {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 66%;
  margin-left: 32px;
}

@media (max-width: 991px) {
  .product-description-column_equip {
    width: 100%;
  }
}

.product-title_equip {
  color: #182230;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 32px;
  font-weight: 700;
  align-self: start;
}

@media (max-width: 991px) {
  .product-title_equip {
    max-width: 100%;
    margin-top: 24px;
  }
}

.product-description_equip {
  color: #667085;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-top: 32px;
}

@media (max-width: 991px) {
  .product-description_equip {
    max-width: 100%;
  }
}

.product-image-column_equip {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 34%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .product-image-column_equip {
    width: 100%;
  }
}

.product-image-container_equip {
  width: 100%;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}

@media (max-width: 991px) {
  .product-image-container_equip {
    max-width: 100%;
    margin-top: 24px;
  }
}

.product-image_equip {
  aspect-ratio: 1.79;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 991px) {
  .product-image_equip {
    max-width: 100%;
  }
}

.consultation-button-large_equip {
  font-feature-settings:
    "liga" off,
    "clig" off;
  display: block;
  align-self: stretch;
  border-radius: 6px;
  background: linear-gradient(94deg, #c3002f -2.7%, #db4f00 104.86%);
  margin-top: 48px;
  padding: 12px 24px;
  gap: 12px;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 991px) {
  .consultation-button-large_equip {
    padding: 12px 20px;
    margin-top: 40px;
  }
}

/* Specifications section */
.specifications-title_equip {
  color: #182230;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 32px;
  font-weight: 700;
  align-self: start;
  margin-top: 64px;
  margin-left: 32px;
}

@media (max-width: 991px) {
  .specifications-title_equip {
    max-width: 100%;
    margin-top: 40px;
  }
}

.specifications-container_equip {
  align-self: end;
  margin-top: 32px;
  width: 100%;
  max-width: 1352px;
}

@media (max-width: 991px) {
  .specifications-container_equip {
    max-width: 100%;
  }
}

.specifications-container_equip {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .specifications-container_equip {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }
}

.specifications-table-column_equip {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 66%;
  margin-left: 32px;
}

@media (max-width: 991px) {
  .specifications-table-column_equip {
    width: 100%;
  }
}

.specifications-table_equip {
  width: 100%;
  font-size: 16px;
  color: #0c111d;
  font-weight: 500;
}

@media (max-width: 991px) {
  .specifications-table_equip {
    max-width: 100%;
    margin-top: 24px;
  }
}

.table-header_equip {
  align-items: center;
  border-radius: 6px 6px 0 0;
  background-color: #98a2b3;
  display: flex;
  min-height: 52px;
  width: 100%;
  max-width: 883px;
  font-size: 15px;
  color: #fcfcfd;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .table-header_equip {
    max-width: 100%;
    white-space: initial;
  }
}

.header-name_equip {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: stretch;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 52px;
  padding: 16px 24px;
  gap: 10px;
  overflow: hidden;
  width: 565px;
}

@media (max-width: 991px) {
  .header-name_equip {
    max-width: 100%;
    padding: 16px 20px;
    white-space: initial;
  }
}

.header-value_equip {
  align-self: stretch;
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  width: 136px;
  flex-shrink: 0;
  height: 52px;
  gap: 10px;
}

.table-row_equip {
  align-items: center;
  border-bottom: 1px solid var(--gray-light-mode-200, #eaecf0);
  background-color: #fff;
  display: flex;
  min-height: 52px;
  width: 100%;
  max-width: 883px;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .table-row_equip {
    max-width: 100%;
  }
}

.row-name_equip {
  align-self: stretch;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 52px;
  padding: 14px 24px;
  gap: 10px;
  overflow: hidden;
  width: 565px;
}

@media (max-width: 991px) {
  .row-name_equip {
    max-width: 100%;
    padding: 14px 20px;
  }
}

.row-value_equip {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  min-height: 52px;
  padding: 14px 12px;
  gap: 10px;
  overflow: hidden;
  width: 136px;
}

.table-row_equip:last-child {
  border-radius: 0 0 6px 6px;
}

.contact-card-column_equip {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 34%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .contact-card-column_equip {
    width: 100%;
  }
}

.contact-card_equip {
  border-radius: 6px;
  border: 1px solid var(--gray-light-mode-300, #d0d5dd);
  min-height: 260px;
  flex-grow: 1;
  padding: 33px 32px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card_equip {
  position: relative;
  overflow: hidden; /* на всякий случай */
}

.contact-card-full-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.contact-card_equip > *:not(.contact-card-full-link) {
  position: relative;
  z-index: 2;
}



@media (max-width: 991px) {
  .contact-card_equip {
    max-width: 100%;
    margin-top: 24px;
    padding: 33px 20px;
  }
}

.contact-card-title_equip {
  font-feature-settings:
    "liga" off,
    "clig" off;
  width: 100%;
  font-size: 30px;
  color: #182230;
  font-weight: 600;
  line-height: 38px;
}

.contact-link_equip {
  color: #b62323;
  text-align: right;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  margin-top: 82px;
  align-self: flex-start;
}

@media (max-width: 991px) {
  .contact-link_equip {
    margin-top: 40px;
  }
}

/* Back to list button */
.back-to-list_equip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 32px;
  background-color: #eaecf0;
  color: #0c111d;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 8px;
  margin-top: 48px;
  transition: background-color 0.3s ease, transform 0.2s ease;
      width: 100%;
}

.back-to-list_equip:hover {
  background-color: #d6dae0;
  transform: translateY(-2px);
}

.back-to-list_equip img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.back-to-list_equip:hover img {
  transform: translateX(-4px);
}

.back-link_equip {
  display: inline-block;
}


@media (max-width: 991px) {
  .back-to-list_equip {
    padding: 24px 20px;
    margin-top: 40px;
  }
}

.back-arrow_equip {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
}

.back-link_equip {
  font-feature-settings:
    "liga" off,
    "clig" off;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

@media (max-width: 991px) {
  .back-link_equip {
    max-width: 100%;
  }
}



/* Масштабирование для разрешения 1360px */
@media (max-width: 1360px) {
  .footer-wd {
    transform-origin: top left; /* Масштабируем относительно верхнего левого угла */
    width: 90.11%; /* Компенсируем уменьшение ширины (100% / 0.9) */
  }

  .main-navigation, .header, .hero-section{
    transform: scale(0.9);
    transform-origin: top left;
    width: 111.11%;
  }

}

@media (max-width: 991px) {

  .footer-wd {
    transform-origin: unset;
    width: auto;
  }
  .main-navigation, .header, .hero-section{
  transform: none;
    transform-origin: unset;
    width: auto;
  }
  
}


/* Стили для основного меню (только для десктопов) */
@media (min-width: 992px) {
  .nav-links {
    display: flex;
    min-width: 240px;
    color: var(--primary-color);
    flex-wrap: nowrap;
    position: relative;
  }
}

/* Стили для мобильного меню */
@media (max-width: 991px) {
  .mobile-menu .nav-links {
    align-self: stretch;
    width: 100%;
    color: #b62323;
    list-style: none;
    display: block; /* Вертикальное отображение */
  }

  .mobile-menu .nav-link {
    display: block;
    padding: 12px 16px;
    border-bottom: 0.5px solid #f2f4f7;
    text-decoration: none;
    color: inherit;
  }


  
/* Стили для пунктов с подменю */
.mobile-menu .nav-link.has-submenu {
  position: relative;
  padding-right: 30px !important;
}

/* Индикатор подменю */
.mobile-menu .nav-link .submenu-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

/* Стили для подменю */
.mobile-menu .sub-menu {
  display: none;
}

.mobile-menu .sub-menu .nav-link {
  padding-left: 32px !important;
  padding-right: 32px !important;
}
  
  
}

/* ######MOBILE####### */

/* Стили для основного меню (только для десктопов) */
@media (min-width: 991px) {
  .nav-links {
    display: flex;
    min-width: 240px;
    color: var(--primary-color);
    flex-wrap: nowrap;
    position: relative;
  }

  /* Скрываем мобильное меню на десктопах */
  .mobile-menu {
    display: none;
  }
  
}

/* Стили для мобильного меню */
@media (max-width: 991px) {
	
   /* ######MENU HEADER####### */
	
   .header {
   display: none;
   padding-top: 23px;
  }
  .main-navigation {
       display: none;
  }
  
  #hero.container {
  padding-top: 48px;  
  }
  
  /* ############# */
	
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f8f8f8;
    z-index: 998;
    overflow-y: auto; /* Прокрутка, если контент не помещается */
  }

  /* Открытое состояние мобильного меню */
  .mobile-menu.open {
    display: block; /* Показываем меню */
  }

  /* Стили для шапки мобильного меню */
  .menu-header {
    border-bottom: 1px solid #eaecf0;
    background-color: #fff;
    display: flex;
    width: 100%;
    padding: 10px 16px;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    color: #182230;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
  }

  /* Стили для контента мобильного меню */
  .menu-content {
    display: none; /* По умолчанию скрыто */
    padding: 16px;
    background-color: #fff;
  }

  /* Показываем контент при открытом меню */
  .mobile-menu.open .menu-content {
    display: block;
  }




  /* Остальные стили для мобильного меню */
  .header-left {
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .menu-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .close-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logo-image {
    aspect-ratio: 0.89;
    object-fit: contain;
    object-position: center;
    width: 32px;
  }

  .brand-name {
    font-feature-settings: "liga" off, "clig" off;
    font-size: 24px;
    margin: 0;
  }

  .menu-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .menu-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 24px;
  }

  /* Navigation Links */
  .nav-links {
    align-self: stretch;
    width: 100%;
    color: #b62323;
    list-style: none;
  }

  .nav-link {
    display: block;
    align-self: stretch;
    border-bottom: 0.5px solid #f2f4f7;
    width: 100%;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
  }

  .nav-link-indented {
    padding-left: 32px;
    padding-right: 32px;
  }

  /* Contact Information */
  .contact-info {
    width: 100%;
    /* max-width: 328px; */
    display: flex;
    flex-direction: column;
	padding: 16px;
  }

  .address-block {
    margin-top: 24px;
    width: 100%;
    font-size: 13px;
    line-height: 2;
  }

  .sales-block {
    margin-top: 12px;
    width: 100%;
    font-size: 13px;
    line-height: 2;
  }

  .contact-label {
    color: #98a2b3;
    font-feature-settings: "liga" off, "clig" off;
    font-size: 13px;
    font-weight: 500;
  }

  .contact-value {
    color: #182230;
    font-feature-settings: "liga" off, "clig" off;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
  }

  .phone-link {
    color: #182230;
    text-decoration: none;
  }

  /* Consultation Button */
.consultation-btn {
    align-self: stretch;
    margin-top: 29px;
    min-height: 54px;
    width: 100%;
    padding: 12px 32px;
    color: #fff;
    background-image: linear-gradient(
        to right bottom, /* Направление градиента (слева сверху → справа снизу) */
        #C3002F 0%,     /* Начальный цвет (0%) */
        #DB4F00 100%    /* Конечный цвет (100%) */
    );
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none; /* Убираем стандартную обводку, если нужно */
    cursor: pointer; /* Курсор-указатель при наведении */
}

.consultation-btn:hover {
    opacity: 0.9; /* Лёгкое затемнение */
    transition: opacity 0.3s ease; /* Плавный эффект */
}

  /* Accessibility Enhancements */
  .nav-link:focus{
  border-top: 2px solid #b62323;
  border-bottom: 2px solid #b62323;
  outline: none; /* убираем outline */
  }
  
  
.mobile-menu.open div.menu-content {
padding:0px;
}
  
  
  .nav-link{
font-weight: 500;
  }

  .menu-close-btn:focus,
  .menu-toggle-btn:focus,
  .phone-link:focus,
  .consultation-btn:focus{
    outline: 2px solid #b62323;
    outline-offset: 2px;
  }

  .nav-link:hover,
  .phone-link:hover {
    text-decoration: underline;
  }
  
.nav-link:hover,
.nav-link:focus,
.nav-link:active {
  cursor: pointer;
  background-color: transparent;
}

  .consultation-btn:hover {
    background-color: #a01f1f;
  }

  
  

}

/* ############# */

#services.services-section div.container div.services-content div.services-column div.services-grid {
	margin-top: 0px;
}

#services.services-section div.container div.services-content div.services-column div.service-card.service-card-wide {
	margin-top: 0px;	
}

/* ######MOBILE_M####### */

@media (max-width: 991px) {
	
	
	
.company-info .company-description_v2 {
	padding-left: 70px;
}

.section-title_v3 {
margin-left: 0px;
}

.company-item {
	flex-direction: inherit;
}

.company-icon-img {
	margin: 0px;
}

.legal-link {
 line-height: 5px;
 text-align: left;
}

.copyright {
	display:none !important;
}


.entry-content > h1:nth-child(1) {
line-height: 42px;
font-size: 34px;
margin-top: 86px;
}

.section-title {
line-height: 42px;
font-size: 30px;
line-height: 34px;
}
}


/* #####FLEX####### */

.company-info {
    display: flex;
    flex-wrap: wrap; /* если нужно переносить на новую строку при нехватке места */
    gap: 43px; /* расстояние между элементами */
    align-items: center; /* выравнивание по вертикали */
	margin-top: 63px;
}

.info-item {
    display: flex;
    flex-direction: column; /* метка и значение в колонку */
    margin-right: 20px; /* или используйте gap в .company-info */
}

.info-item:last-child {
    margin-right: 0; /* убираем отступ у последнего элемента */
}

/* #####CONTACT CARD####### */


.contact-card_home_phone {
  position: absolute;
  top: 0%;  /* под телефоном */
  left: 0;    /* по левому краю .header-phone-wrapper */
  width: 295px;
  box-shadow: 0px 2px 16.2px -2px rgba(24, 39, 75, 0.06);
  padding: 31px 32px 27px 26px;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 23px;
  z-index: 9999999;
}

@media (max-width: 991px) {
  .contact-card_home_phone {
    width: 100%;
    max-width: 295px;
    margin: 0 auto;
	display:none;
  }
}

@media (max-width: 640px) {
  .contact-card_home_phone {
    padding: 20px;
    gap: 15px;
  }
}

.phone-number_home_phone {
  color: #001427;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
}

.phone-number_home_phone:hover {
color: var(--primary-color);
}

.callback-button_home_phone {
  width: 247px;
  padding: 12px 24px;
  border-radius: 6px;
  background: linear-gradient(94deg, #c3002f -2.7%, #db4f00 104.86%);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: opacity 0.2s ease;
}

.callback-button_home_phone:hover {
background:linear-gradient(94.07deg, #970024 -2.7%, #c94800 104.86%);
}

.callback-button_home_phone:focus {
  outline: 2px solid #001427;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .callback-button_home_phone {
    width: 100%;
  }
}

.contact-group_home_phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label_home_phone {
  color: #98a2b3;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

.contact-value_home_phone {
  color: #182230;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
  font-style: normal;
}

a.contact-value_home_phone {
  text-decoration: none;
  transition: color 0.2s ease;
}

a.contact-value_home_phone:hover {
  color: #c3002f;
  text-decoration: underline;
}

a.contact-value_home_phone:focus {
  outline: 2px solid #001427;
  outline-offset: 2px;
}




a img.company-icon-img {
	line-height: unset;
}

/* #####FIXES####### */

#red.contact-text:hover {
color: var(--primary-color);
}

#red.contact_value_v_cont:hover {
color: var(--primary-color);
}

.chrome .contact-card_home_phone {
  right: 321px;
}

.firefox .contact-card_home_phone {
  right: 329px;
}



@media (max-width: 991px) {
.company-name_v2 {
white-space: nowrap;
  }
  
  
.main-content {
margin-top:45px;	
}
  
  .breadcrumbs_v_cont {
    line-height: 18px;
    margin-bottom: 20px;
  }  
  
.cta-column {
	margin-left: 0px;
}
  
  .activities-section {
	  width: auto;
  }
  
  .header-spacer {
	display:none;
  }
  
  .contact-form-column_v4 {
	 margin-left: 0px;
  }
  
}

/* #####CARD##### */

.service-card-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    /* Добавьте эффекты при наведении */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



.contact-card-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}


/* ######FIX####### */


#red.contact-info-value:hover {
color: var(--primary-color);
}


.contact-form-grid div.contact-form-container_contact {
	width: 100%;
}



/* Показываем outline только при фокусе с клавиатуры */
*:focus-visible {
  outline: 2px solid #005fcc; /* можешь поменять цвет или стиль */
  outline-offset: 2px;
}

/* Убираем outline, если фокус был получен мышью */
.no-focus-outline *:focus {
  outline: none !important;
}

.modal-consent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.modal-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #667085;
  flex: 1 1 auto;
  margin-right: auto; /* ← вот эта строка прижмёт к левому краю */
}

.modal-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #C3002F;
  cursor: pointer;
}

.modal-consent a {
  color: #667085;
  text-decoration: underline;
}

.modal-submit {
  flex-shrink: 0;
  padding: 14px 32px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #C3002F, #FF6B00);
  color: white;
  cursor: pointer;
  white-space: nowrap;
}

.fixcontact {
  margin-top: 20px;
}
