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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

html,
body {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.contact-info a:hover {
    color: #BDDe63; 
}

.dropdown__chevron {
    width: 16px;
    height: 16px;
    display: inline-block;
    flex: 0 0 16px;
}

.contact-section .work__text-block {
    margin-left: 0;
}

.contact-info .language-selector .language-menu {
/*     display: flex !important; */
}

.header__container .language-selector {
    display: none;
}

.contact-info__mobile {
  display: none;
}

.language-switcher-mobile {
  display: none;
}

.dropdown-toggle {
  display: none;
}

.contact-info__mobile {
  display: none;
}

.language-switcher {
  display: flex;
  gap: 15px;
  align-items: center;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  color: #a9a9a9; /* серый для неактивных */
  text-decoration: none;
  transition: all 0.3s ease;
}

.lang-item i {
  opacity: 0.5;
}

.lang-item.active {
  background: #b9e265; /* зелёный фон */
  color: #333; /* тёмный текст */
}

.lang-item.active i {
  opacity: 1;
}

/* Если можно добавить класс к header2 */
.header2 .nav-menu {
  margin-top: 60px;
}

.conf {
/*   text-align: right; */
  font-family: Golos Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: -2%;
  padding-right: 48px;
  color: #7a8084;
}

.conf:last-child {
  text-align: left;
  padding-top: 7px;
}

.cookie-consent-container {
  font-family: Golos Text;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%; /* Растягиваем контейнер на всю ширину */
  max-width: 850px; /* Максимальная ширина для центрирования */
  background: #1e5679;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
  border-radius: 10px; /* Увеличен радиус для более мягких углов */
  color: #fff;
  padding: 30px; /* Добавлено больше отступов */
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  display: none;
}

.cookie-consent-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 28px; /* Увеличен размер заголовка */
  text-align: center;
  margin-bottom: 20px; /* Увеличен отступ */
  color: #fff;
  font-weight: bold; /* Сделан жирным для акцента */
}
.cookie-consent-title img {
  display: block;
  width: 30px;
  height: 30px;
}

.cookie-consent-description {
  font-size: 16px; /* Немного увеличен размер текста */
  width: 100%; /* Растянуто на ширину контейнера */
  text-align: center; /* Текст по центру */
  margin-bottom: 20px; /* Увеличен отступ */
  line-height: 1.8; /* Увеличена высота строки для удобства чтения */
  color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-description a {
  text-decoration: underline;
  font-weight: bold; /* Ссылка выделена жирным */
}

.cookie-consent-buttons {
  display: flex;
  gap: 20px; /* Увеличено расстояние между кнопками */
  justify-content: center;
  width: 100%;
}

.cookie-consent-button {
  flex: 1; /* Кнопки растянуты на равное расстояние */
  max-width: 300px; /* Увеличена ширина кнопок */
  padding: 20px 0; /* Увеличены отступы внутри кнопок */
  border: none;
  border-radius: 5px;
  font-size: 16px; /* Увеличен размер текста кнопок */
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
}
.highlight-link {
  transition: 0.2s all;
  color: #ffffff !important;
}
.highlight-link:hover {
  color: #498dff !important;
}
.cookie-consent-button.accept-all {
  background: #347af6;
}

.cookie-consent-button.accept-all:hover {
  background: var(--c-primary-600);
}

.cookie-consent-button.accept-essential {
  background: #63666d;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-button.accept-essential:hover {
  background: #4d4f54 !important;
}

.developer a {
  display: inline-flex; /* включаем flex на строке */
  align-items: center; /* выравниваем текст и иконку по центру по вертикали */
  gap: 10px; /* отступ между текстом и иконкой */
  text-decoration: none; /* убираем подчеркивание */
  color: inherit; /* наследуем цвет от родителя */
}

.footer__container.footer-bottom__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}

.thanks-body {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.thanks-body h1 {
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 28px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #29555e;
  padding-bottom: 12px;
}

.thanks-body img {
  padding-top: 25px;
  padding-bottom: 55px;
}

.thanks-body p {
  max-width: 485px;
  text-align: center;
}

.modal-submit-wrapper {
  display: flex;
  align-items: center; /* выравниваем по высоте */
  gap: 10px; /* расстояние между кнопкой и текстом */
  flex-wrap: wrap; /* чтобы текст переносился на новую строку, если не помещается */
}

.btn-return {
  padding: 12px 24px;
  margin-top: 20px;
  font-family: "Golos Text", sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.btn-back {
  background-color: #d4ff6a;
  color: #1e5c96;
  border: none;
  border-radius: 100px;
  padding: 20px 64px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 35px;
}

/* фон */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.modal.modal-open {
  display: flex;
}

.modal-content {
  background: #fff;
  width: 827px;
  height: 550px;
  padding: 64px 50px;
  position: relative;
  box-sizing: border-box;
  border-radius: 16px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}

.modal-form input,
.modal-form textarea {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 16px;
  box-sizing: border-box;
  width: 696;
  opacity: 1;
  border-radius: 30px;
  border-width: 1px;
  background: #1a25450f;
  border: 1px solid #1a25451a;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-style: normal; /* Regular */
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0%;
  color: #1a2545;
}

.modal-form textarea {
  height: 100px;
}

.modal-form button {
  padding: 20px 64px;
}

.modal-policy {
  padding-top: 30px !important;
  font-family: Golos Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 160%;
  letter-spacing: 0%;
  max-width: 487px !important;
}

.modal-form button[type="submit"] {
  background-color: #d4ff6a;
  color: #1e5c96;
  border: none;
  border-radius: 100px;
  padding: 20px 64px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.modal-policy {
  display: inline-block;
  margin-left: 15px;
  width: auto;
  max-width: 400px;
}

.modal-content h2 {
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 28px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #29555e;
  padding-bottom: 12px;
}

.modal-content p {
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  color: #29555e;
  padding-bottom: 20px;
}

/* кнопка и политика */
.form-footer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  padding: 12px 24px;
  background: #29555e;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
}

.policy {
  font-size: 12px;
  color: #666;
  max-width: 300px;
  line-height: 1.4;
}

.services__container {
  max-width: 100%;
  overflow-x: hidden;
}

.buttons-container {
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.comand__bg {
  background-color: #19445c;
}

.comand-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  background-color: #19445c;
}

/*  */
@media (min-width: 993px) {
  .has-dropdown > a .caret {
    display: inline-block;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #fff;
    vertical-align: middle;
  }

  /* родительский li */
  .nav-menu ul li.has-dropdown {
    position: relative;
  }

  .nav-menu li {
    padding: 10px;
  }

  .nav-menu li .has-dropdown {
    padding: 0;
/*     padding-left: 8px;
padding-right: 8px; */
  }

  /* прозрачный «мостик» для безопасного hover */
  /* .nav-menu ul li.has-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 13px; отступ между ссылкой и меню
  background: rgba(0,0,0,0); важный момент!
  pointer-events: auto; мышь теперь «видит» псевдоэлемент
  z-index: 1;
} */

  /* подменю */
.nav-menu ul ul {
    border-radius: 10px;
    padding-bottom: 15px;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #386D8E;
        width: 417px;
        max-height: 370px;
        /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
        z-index: 999;
        text-align: left;
        padding: 0;
        color: white;
    }

  /* показываем подменю */
  .nav-menu ul li.has-dropdown:hover > ul {
    display: block;
  }

  /* элементы подменю */
  .nav-menu ul ul li {
    display: block;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  /* ссылки подменю */
      .nav-menu ul ul a {
          border-radius: 10px;
        display: block;
                padding-left: 24px;
        padding-bottom: 20px;
        padding-top: 20px;
        font-family: "Golos Text", sans-serif;
        font-weight: 600;
        font-size: 15px;
        line-height: 1;
        letter-spacing: -0.02em;
        color: white;
        text-decoration: none;
        text-align: left;
    }

/*   .nav-menu ul ul a:hover {
  background: #f2f2f2;
} */
}
.footer-menu,
.footer-menu ul {
  list-style: none; /* убираем стандартные кружки */
  margin: 0;
  padding: 0;
}

/* Контейнер */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto; /* или любая ширина, до которой они могут тянуться */
  padding-top: 20px;
  /*   width: 50%;   */ /* занимают всю доступную ширину до max-width */
  font-family: "Golos Text", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}

/* Список */
.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* Элементы */
.breadcrumbs__item {
  display: flex;
  align-items: center;
  font-family: "Golos Text", sans-serif; /* твой шрифт */
  font-weight: 600; /* полужирный */
  font-style: normal; /* SemiBold заменяем на normal, так как font-weight управляет жирностью */
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  leading-trim: none; /* experimental, в современных браузерах почти не влияет */
}

/* Ссылки предыдущих страниц */
.breadcrumbs__item a {
  color: #bdde63;
  text-decoration: underline;
  transition: color 0.2s;
}

.breadcrumbs__item a:hover {
  color: #a0c850; /* чуть темнее при наведении */
}

/* Разделитель */
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin: 0 5px;
  color: #29555e33;
  /* можно изменить цвет разделителя */
}

/* Текущая страница */
.breadcrumbs__item.current .breadcrumbs__current {
  color: #29555e33;
  text-decoration: none;
  font-weight: bold;
}

/*  */
.comand-section2 {
  margin-top: 130px;
  position: relative;
  width: 100%;
  
      display: flex;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: end;
    box-sizing: border-box;
    overflow: hidden;
    padding-bottom: 79px;
/*   min-height: 750px;
overflow: hidden; */
}

.comand__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
}

.comand__bg img {
        max-width: 100%;
  border-radius: 0;
      height: 100%;
}

.comand__bg2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
}

.comand__bg2 img {
    width: 100%;
    height: 82%;
    object-fit: cover;
    border-radius: 0;
}

.comand-content {
    margin: 0 auto;
    position: relative;
    min-height: 100%;
    box-sizing: border-box;
    max-width: 1200px;
    display: flex;
    justify-content: end;
}

.work__text-block {
  max-width: 500px;
}

.work__text-block h1 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #ffffff;
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
}

.about-section .image__wrapper img {
  max-width: 720px;
  padding-top: 20px;
  padding-bottom: 20px;
  visibility: visible;
}

.about-section .text-block {
  margin-top: 0px;
  padding-top: 30px;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 160%;
  letter-spacing: -2%;
  display: block;
}

.about__text-block h1 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #ffffff;
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
}

.work-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  width: 100%;
}

.form-input1::placeholder {
  line-height: 1;
  text-align: top;
}

.form-input {
  width: 100%;
  padding: 20px 16px;
  font-size: 16px;
  border: 1px solid #ffffff66;
  border-radius: 50px;
  outline: none;
  background: #ffffff1a;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.find__href {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  color: #bdde63;
}

.form-input1 {
  width: 100%;
  padding: 20px 16px;
  font-size: 16px;
  border: 1px solid #ffffff66;
  border-radius: 30px;
  outline: none;
  background: #ffffff1a;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-input1:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.work-form {
  margin-top: 20px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.work__text-block h1 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #ffffff;
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
}

.work__text-block2 h1 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #19445c;
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
}

.company {
  background-image: url(../img/banner-about.png);
  background-repeat: no-repeat;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 20px 16px;
  font-size: 16px;
  border: 1px solid #ffffff66;
  border-radius: 50px;
  outline: none;
  background: #ffffff1a;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.work__text-block p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 500;
}

.contact-info {
  display: flex;
}

.logo img {
  width: 132px;
  height: 50px;
  opacity: 1;
  transition: height 0.3s ease;
  margin-top: 25px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.barzha,
.oblako1,
.oblako2,
.oblako3 {
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 2;
}

.language-selector {
  font-family: Golos Text;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: -2%;
  position: relative;
  display: inline-block;
  margin-left: auto;
}
.language-button i.fa-globe {
  font-size: 16px;
}
.language-button {
  font-family: Golos Text;
  font-weight: 600;
  line-height: 100%;
  border: none;
  background-color: transparent;
  color: white;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.language-button:hover {
  color: #bdde63;
}

.language-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #386D8E;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 4px;
}

.language-item {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background-color 0.2s ease;
}

.language-item:hover {
  background-color: #BDDE63;
}

.oblako1 {
  height: auto;
  top: 0vh;
  left: 47vw;
}

.oblako2 {
  width: 18vw;
  height: auto;
  top: 1vh;
  left: 94vw;
}

.oblako3 {
  width: 22vw;
  height: auto;
  top: 1vh;
  left: 0vw;
}

.header__hero {
  position: relative;
  height: 650px;
  background-image: url("../img/hero1-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

nav li a {
  color: #ffffff;
  font-family: Golos Text;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: -2%;
  display: flex;
}

nav li a:hover {
  color: #BDDE63;
}

.nav-menu ul ul a:hover {
  background-color: #FFFFFF1A;
}

.contact-info p {
  padding-right: 32px;
  color: #ffffffcc;
  font-family: Golos Text;
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
}

.contact-info a {
  color: #ffffffcc;
}

.contact-info a:hover {
  text-decoration: underline;
}

.menu-toggle {
  margin-top: 4vh;
  margin-left: auto;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  transition: all 0.3s ease;
}

.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 15px;
  font-size: 20px;
  color: white;
  background-color: #007bff;
  margin-right: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.sticker:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.phone {
  padding-bottom: 21px;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
}

.email {
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
}

.copyright {
  padding-top: 39px;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 10px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.banner {
  padding: 100px 20px;
  text-align: left;
  /*   background-image: url(../img/hero1-bg.png);
 */
}

.banner .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  z-index: 1;
}

.content {
  flex-basis: 50%;
}

.image {
  flex-basis: 50%;
}

.image img {
  width: 100%;
  height: auto;
}

.banner h1 {
  color: #ffffff;
  margin-bottom: 20px;
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 170px;
  line-height: 80%;
  letter-spacing: -3%;
  text-transform: uppercase;
}

.banner p {
  color: #ffffff;
  font-family: Golos Text;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.6;
  padding-left: 12px;
}

.blocks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.blocks-grid2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.block {
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  border-left: 0;
}

.block img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
.advantages-section {
  max-width: 1200px;
  margin: 0 auto;
/*   padding: 40px 0; */
}

.advantages-grid {
/*   display: grid; */
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Текст — растянут на 2 колонки */
.advantages-text {
  grid-column: span 2;
  grid-row: 1;
}

.advantages-title {
  color: #29555e;
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
}

.advantages-subtitle {
  font-size: 0.9rem;
  color: #29555e;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 160%;
  letter-spacing: -2%;
}

.advantage-card {
  display: flex;
  background-color: #e6f7ff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eef9ff;
  width: 100%;
  margin-bottom: 10px;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    margin-left: 10px;
    width: 40px;
    height: 40px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.advantage-title {
  display: flex;
  align-items: center;
  color: #29555e;
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 17px;
  letter-spacing: -2%;
    margin-left: 20px;
}

.advantage-icon img{
  width: 40px;
    height: 40px;
}

.advantage-text {
  color: #29555e;
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
}

.block:hover {
  background: #0056b3;
}

.block:hover .top-icon {
  border-radius: 50%;
  background-color: #dafa82 !important;
}

.block {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 18px;
  border-left: 0;
  transition: background 0.3s ease;
}

.block:hover {
  background: #0056b3;
}

.block-content {
  position: relative;
  overflow: hidden;
}

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

.top-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  background-color: white;
  border-radius: 50%;
}

.top-icon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bottom-text {
  position: absolute;
  bottom: 20px;
  left: 10px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Golos Text;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  vertical-align: middle;
  z-index: 55;
}

.block-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 86, 121, 0.92);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.block-content:hover::before {
  opacity: 1;
}

.anchor-icon {
  width: 30px !important;
  height: 30px !important;
}

.container__text {
  text-align: center;
}

.split-section__container {
  background-image: url(../img/bg-about.png);
}

.contect {
  flex: 1;
}

.experience {
  margin-bottom: 160px;
}

.split-section::before {
  content: "";
  position: absolute;
  right: 0;
  width: 45%;
  height: 100%;
  background-image: url(../img/eurasia.png);
}

.split-section::after {
  content: "";
  position: absolute;
  right: 0;
  width: 45%;
  height: 100%;
  background-image: url(../img/biglogo.png);
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.split-section {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  max-height: 380px;
  overflow: hidden;
}

.about-section {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: end;
  box-sizing: border-box;
  max-height: 380px;
  overflow: hidden;
}

.about-section2 {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: end;
  box-sizing: border-box;
  overflow: hidden;
}

.about-section3 {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: end;
  box-sizing: border-box;
  overflow: hidden;
}

.contact-section {
  display: flex;
  max-width: 1200px;
  align-items: center;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 565px;
}

.contact-section-econom {
  display: flex;
  max-width: 1200px;
  align-items: center;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 600px;
}

.about__text-block h1 {
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
}

.export__bg {
  background-image: url(../img/export-hero.png);
}

.export__bg2 {
  background-image: url(../img/container.png);
  background-repeat: no-repeat;
}

.about-section {
  display: flex;
  max-width: 1200px;
  align-items: center;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.text-block {
  margin-top: 40px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.contact__text-block {
  margin-top: 40px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.work__text-block {
    margin-left: 54%;
    max-width: 1050px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-right: 0;
    float: right;
    padding-right: 0;
}

.work__text-block2 {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-block h1 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  font-family: Golos Text;
}

.text-block p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 160%;
  letter-spacing: -2%;
}

.sealink-container .text-block p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 160%;
  letter-spacing: -2%;
}

.text-block2 h1 {
  color: #29555e;
  font-size: 36px;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  font-family: Golos Text;
}

.sealink-container .text-block2 h1 {
  color: #29555e;
  font-size: 36px;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  font-family: Golos Text;
}

.mobile-title {
  display: none;
}

.text-block2 p {
  font-size: 18px;
  color: #29555e;
  margin-bottom: 30px;
  line-height: 1.6;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 160%;
  letter-spacing: -2%;
}

.work__text-block h1 {
  color: #29555e;
  font-size: 36px;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  font-family: Golos Text;
}

.about__text-block h1 {
  color: #29555e;
  font-size: 36px;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  font-family: Golos Text;
}

.work__text-block p {
  color: #29555e;
  margin-bottom: 30px;
  font-family: Golos Text;
  font-weight: 500;
  font-size: 17px;
  line-height: 160%;
}

.work__text-block2 p {
  color: #29555e;
  margin-bottom: 30px;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 160%;
  letter-spacing: -2%;
}

.about__text-block {
  max-width: 625px;
}

.about__text-block p {
  color: #29555e;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 160%;
  letter-spacing: -2%;
}

.contact__text-block h1 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  font-family: Golos Text;
}

.contact__text-block p {
  color: #ffffff;
  margin-bottom: 30px;
  font-family: Golos Text;
  font-weight: 500;
  font-size: 17px;
  line-height: 160%;
}

.company__text-block h1 {
  color: #ffffff;
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
}

.dryport-services-grid-wrapper {
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.dryport-service-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.dryport-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.dryport-service-icon {
  width: 80px;
  height: 50px;
  margin-bottom: 10px;
}

.dryport-service-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 22px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  color: white;
}

.dryport-service-desc {
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  letter-spacing: -2%;
  color: #e0e0e0;
}

.company__text-block p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 160%;
  letter-spacing: -2%;
}

.contact__btn {
  font-family: Golos Text;
  font-weight: 500;
  font-size: 17px;
  line-height: 120%;
  display: inline-block;
  padding: 15px 30px;
  background-color: #ffffff;
  color: #1a2545;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
  max-width: 382px;
  opacity: 1;
  padding-top: 21px;
  padding-right: 64px;
  padding-bottom: 24px;
  padding-left: 64px;
  margin-bottom: 61px;
  border-radius: 40px;
}

.contact-info-box {
  flex: 1;
  margin-left: 50px;
  max-width: 602px;
  max-height: 440px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.contact-item {
  margin-bottom: 16px;
}

.label {
  display: inline-block;
  background: #d4e55b;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.contact_label {
  display: inline-block;
  background: #d4e55b;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  font-family: Golos Text;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

.contact-info-box p {
  margin: 0;
  font-family: Golos Text;
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  color: #ffffff;
}



.btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #dafa82;
  color: black;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
  width: fit-content;
  opacity: 1;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-bottom: 61px;
  border-radius: 40px;
  font-family: Golos Text;
  font-weight: 500;
  font-size: 17px;
  line-height: 160%;
}

.btn2 {
  margin: 0 auto;
  display: inline-block;
  padding: 15px 30px;
  background-color: #dafa82;
  color: black;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
  width: fit-content;
  opacity: 1;
  padding-top: 15px;
  padding-right: 75px;
  padding-bottom: 18px;
  padding-left: 75px;
  margin-bottom: 61px;
  border-radius: 40px;
  font-family: Golos Text;
  font-weight: 500;
  font-size: 17px;
  line-height: 160%;
}

.btn2:hover {
  background-color: #0056b3;
}

.about-section3 img {
  max-width: 720px;
}

.btn3 {
  width: 100%;
  display: inline-block;
  padding: 15px 30px;
  background-color: #dafa82;
  color: black;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
  opacity: 1;
  padding-top: 15px;
  padding-right: 75px;
  padding-bottom: 18px;
  padding-left: 75px;
  border-radius: 40px;
  font-family: Golos Text;
  font-weight: 500;
  font-size: 17px;
  line-height: 160%;
}

.btn4 {
  font-family: Onest;
  font-weight: 500;
  font-size: 17px;
  line-height: 120%;
  letter-spacing: 0%;
  display: inline-block;
  padding: 15px 30px;
  background-color: #dafa82;
  color: black;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
  width: fit-content;
  opacity: 1;
  padding-top: 15px;
  padding-right: 48px;
  padding-bottom: 18px;
  padding-left: 48px;
  margin-bottom: 61px;
  border-radius: 40px;
  font-family: Golos Text;
  font-weight: 500;
  font-size: 17px;
  line-height: 160%;
}

.buttons-container2 {
  margin-top: 50px;
}

.rabota-btn {
  max-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #19445c;
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 86, 179, 0.2);
  border: none;
  cursor: pointer;
  width: fit-content;
}

.rabota-btn:hover {
  background-color: #004098;
  transform: translateY(-1px);
}

.rabota-text {
  display: inline-block;
  vertical-align: top;
  font-family: "Golos Text";
  font-size: 14px;
  line-height: 120%;
  font-weight: 500;
  margin-right: 12px;
}

.rabota-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: -25px;
}

.r-letter {
  background-color: #e74c3c;
  color: white;
  font-weight: bold;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px;
}

.domain {
  font-size: 14px;
  font-weight: 500;
}

.rabota-btn i {
  margin-left: 12px;
  font-size: 16px;
  opacity: 0.8;
}

.btn:hover {
  background-color: #0056b3;
}

.experience__text {
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  color: #29555e;
  padding-top: 80px;
}

.image-block {
  position: relative;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  max-width: 1920px;
  margin: 0 auto;
  box-sizing: border-box;
}

.service-block {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.service-block:hover {
  transform: scale(1.05);
}

.service-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 387px;
  padding: 12px 16px 7px 16px;
  color: #1d1d1d;
  text-align: left;
  z-index: 1;
}

.about-section3 {
  margin-bottom: 160px;
  padding-top: 80px;
}

.service-content h3 {
  margin-top: 18px;
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: -2%;
  margin-bottom: 10px;
}

.service-content p {
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: Golos Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -2%;
}

.service-block img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
}

.partners h2 {
  font-size: 28px;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-logos img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.wilo-section {
  background-color: #0e38b1;
  color: white;
  padding: 60px 20px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wilo-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  margin: 0 auto;
}

.wilo-section .theme-btn1 {
  background-color: #fff;
  color: #0e38b1;
  margin-left: 350px;
}

.catalog__text {
  text-align: center;
  font-size: 26px;
}

.catalog__text {
  padding: 10px;
}

.catalog__text p {
  text-align: center;
  font-size: 20px;
  padding-top: 10px;
}

.catalog__pic {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 20px 0;
}

.card {
  position: relative;
  width: 350px;
  height: 315px;

  flex: 1 1 calc(25% - 7.5px);
  max-width: calc(25% - 7.5px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.card-text p {
  margin: 0;
  padding: 5px;
  font-size: 18px;
  color: #333;
  line-height: 1.4;
}

.learn-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #0e38b1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more::after {
  content: "→";
  margin-left: 5px;
}

@media (max-width: 1200px) {
  .catalog__pic {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.contact-us {
  background-color: #0e38b1;
  color: white;
  padding: 60px 20px;
}

.contact__text {
  max-width: 1200px;
  margin: 0 auto;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact__container {
  align-self: flex-end;
}

.contact-us h2,
.contact-us p {
  margin: 0;
}

.contact-us .theme-btn1 {
  margin: auto;
  justify-content: end;
}

.contact__button {
  justify-content: space-between;
}

.contact-us h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-us p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.container__services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-section {
  padding: 80px 0;
  background-color: #fff;
}

.container__services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-container {
  display: flex;
  gap: 30px;
}

.text-column {
  flex: 1;
  min-width: 50%;
}

.section-header h1 {
  font-size: 42px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-header h2 {
  font-size: 28px;
  color: #555;
  margin-bottom: 20px;
  font-weight: 400;
}

.header__container {
  display: flex;
}

.line {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff33;
  z-index: 1;
  transform: translateY(-50%);
}

.line2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background-color: #e0e0e0;
  z-index: 1;
}

.hover {
  opacity: 0;
}

.top-icon:hover .hover {
  opacity: 1;
}

.top-icon:hover .default {
  opacity: 0;
}

.work__advantages-block {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.work__advantages-block h1 {
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  letter-spacing: -2%;
  color: #29555e;
}

.work__advantages-block p {
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 160%;
  letter-spacing: -2%;
  color: #29555e;
}

.help-container {
  background-color: #226092;
  color: white;
  border-radius: 12px;
  padding-top: 32px;
  padding-left: 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  margin-bottom: 80px;
}

.content-left {
  flex: 1;
  line-height: 1.7;
}

.content-left h2 {
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
}

.content-left p {
  padding-top: 16px;
  padding-bottom: 12px;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 180%;
  letter-spacing: 0%;
}

.content-right {
  flex: 1;
}

#help-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#help-form input,
#help-form textarea {
  padding: 12px;
  border: none;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#help-form input:focus,
#help-form textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.form-input::placeholder {
  color: #ffffff;
  opacity: 1; /* чтобы гарантированно видеть цвет без снижения прозрачности */
}

.form-input1::placeholder {
  color: #ffffff;
  opacity: 1; /* чтобы гарантированно видеть цвет без снижения прозрачности */
}

#help-form textarea {
  min-height: 100px;
  resize: vertical;
}

button[type="submit"] {
  background-color: #d4ff6a;
  color: #1e5c96;
  border: none;
  border-radius: 100px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

button[type="submit"]:hover {
  background-color: #b8f054;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Карточка */
.card1 {
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Иконка */
.icon-container {
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon {
  font-size: 20px;
}

/* Заголовок */
.card1 h3 {
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #29555e;
}

/* Текст */
.card1 p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: Golos Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -2%;
  color: #29555e;
  padding-left: 5px;
  padding-top: 5px;
}

.find {
  margin-top: 54px;
  border-radius: 16px;
  background-color: #1e5679;
  margin-bottom: 100px;
}

.find2 {
  margin-top: 54px;
  margin-bottom: 80px;
  background-image: url(../img/callback.png);
  background-repeat: no-repeat;
  border-radius: 16px;
}

.find__text {
  max-width: 665px;
  padding: 20px;
  padding-left: 53px;
  padding-top: 32px;
}

.find__text h3 {
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  color: #ffffff;
  padding-bottom: 12px;
}

.find__text p {
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 17px;
  line-height: 160%;
  letter-spacing: -2%;
  color: #ffffff;
}

.card-content {
  display: flex;
  align-items: flex-start; /* Выравнивание по верху */
  gap: 12px; /* Отступ между иконкой и текстом */
}

.card-content h3 {
  align-self: center;
}

.container__bg {
  position: relative;
  background: #1e567966;
  padding: 20px 0;
  z-index: 500;
}

.container__bg2 {
  position: relative;
  background: #1e5679;
  padding: 20px 0;
  z-index: 500;
}

.nav-menu {
  align-content: center;
  text-align: center;
  vertical-align: middle;
  padding-left: 55px;
  padding-top: 25px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.site-footer {
  background-color: #1e5679;
  color: #fff;
  font-size: 14px;
}

.contact-footer {
  background-color: #1e5679;
  color: #fff;
  font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-brand {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 78px;
  width: 200px;
  margin-top: 33px;
}

.footer-nav {
  padding-top: 20px;
  width: 250px;
}

.footer-contacts {
  padding-top: 20px;
  width: 460px;
  margin-left: -90px;
  margin-bottom: 20px;
}

.footer-title {
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: Golos Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: -2%;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #bdc3c7;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-menu a:hover {
      color: #BDDE63;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #000;
  font-family: Golos Text;
  font-weight: 400;
  font-style: Regular;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: -2%;
}

.contact-item__ask {
  font-family: Golos Text;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  padding-bottom: 16px;
}

.contact-item i {
  margin-right: 12px;
  color: #0e38b1;
  width: 20px;
  text-align: center;
}

.contact-item a {
  color: #bdc3c7;
  transition: color 0.3s;
  text-decoration: none;
}

.contact-item a:hover {
        color: #BDDE63;
}

.contact-item2 a {
  color: #ffffff;
  transition: color 0.3s;
  text-decoration: none;
}

.contact-value:hover {
  color: #0e38b1;;
}

.footer-bottom {
  margin-top: auto;
  text-align: center;
  margin-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff33;
  font-size: 13px;
  font-family: Golos Text;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    text-align: center;
    align-items: center;
  }

  .footer-title {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-menu {
    text-align: center;
  }

  .contact-list {
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  color: #333;
}

.contact-item i {
  margin-right: 10px;
  color: #ffffff99;
  margin-bottom: 5px;
}

.contact-section__container {
  background-image: url(../img/contact-bg.png);
  background-position: -150px center;
}

.work-section__container {
  background-image: url(../img/work-bg.png);
}

.about__text {
  padding-top: 20px;
  font-family: Golos Text;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  leading-trim: NONE;
  line-height: 110.00000000000001%;
  letter-spacing: -2%;
  color: white;
}

.text-block2 {
  color: black;
}

.about-section__container {
  background-image: url(../img/hero-bg-about.png);
}

@media (max-width: 480px) {
    .modal-content{
        height: 675px;
    }
    
  .contact-info__mobile {
    display: flex;
    flex-direction: column;
  }

  .contact-info__mobile {
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    font-variant-numeric-figure: lining-nums;
    font-variant-numeric-spacing: proportional-nums;
    color: #29555e;
  }
  .language-button .fa-caret-down {
    display: none;
  }
  .language-selector {
    position: relative;
    display: inline-block;
  }

  /* Кнопка */
  .language-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    background: #b9e265; /* зелёный */
    font-weight: 600;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    border: none;
  }

  /* Меню */
  .language-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 1000;
    display: flex;
    flex-direction: column;
  }

  .language-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .language-menu a:hover {
    background: #f0f0f0;
  }
}
/* === Адаптация под мобилку === */
@media (max-width: 768px) {
  .language-selector {
    display: flex !important;
    flex-direction: row;
    width: 100%;
    margin-top: 8px;
    padding-left: 25px;
  }

  .language-button {
    width: 33%;
    justify-content: center;
    font-size: 16px;
    padding: 12px 18px;
    border-radius: 10px;
  }

  .language-menu {
    position: static;
    width: 100%;

    box-shadow: none;
    display: flex;
    flex-direction: row;
  }

  .language-menu a {
    font-size: 16px;
    padding: 14px;
    border-bottom: 1px solid #eee;
  }

  .language-menu a:last-child {
    border-bottom: none;
  }

  .menu-footer {
    margin-top: auto; /* ✅ Прижмет к низу */
  }

  .language-switcher-mobile {
    display: flex;
    flex-direction: column;
  }

  .has-dropdown:nth-child(2) .dropdown-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
    overflow: hidden; /* чтобы ссылка не налезала */
  }

  .has-dropdown:nth-child(2) .dropdown-link {
    flex: 1 1 auto;
    text-decoration: none;
  }

  .has-dropdown:nth-child(2) .dropdown-split-toggle {
    flex: 0 0 auto;
    background-color: #e2f4b2;
    border: none;
    cursor: pointer;
    z-index: 10;
    position: relative;
    width: 100px;
    height: 31px;
  }

  .dropdown-split {
    display: flex;
    flex-direction: row;
  }

  .has-dropdown:nth-child(2) .dropdown-link {
    max-width: 251px;
  }

  .card1 p {
    max-width: 336px;
  }
  .banner h1 {
    font-size: 70px !important;
  }

  .menu-toggle {
    display: flex;
    margin-right: 25px;
    margin-top: 28px;
  }

  .logo img {
    margin-top: 27px;
  }

  .header__container {
    height: 100px;
  }

  .banner {
    padding-top: 29px;
  }

  .banner .container {
    justify-content: center;
  }

  .banner p {
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    padding-left: 0px;
    font-size: 18px !important;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
  }
  .header__hero {
    max-height: 400px;
    background-position: 77% 70%;
    background-image: url(../img/bg-hero.png);
  }

  .block-content {
    max-height: 120px;
    text-align: left;
  }
  .bottom-text {
    width: 340px;
    position: absolute;
    bottom: 10px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Golos Text;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    z-index: 55;
  }
  .split-section::before {
    content: "";
    position: absolute;
    width: 100%;
    right: 0;
    left: auto;
    height: 100%;
    background-image: url(../assets/img/eurasiaad.png);
    background-repeat: no-repeat;
  }

  .split-section::after {
    content: "";
    margin-top: 25px;
    margin-left: 260px;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../assets/img/logoad.png);
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
  }

  .split-section__container {
    background-image: url(../img/bg-about-ad.png);
  }

  .split-section {
    max-height: 580px;
  }

  .text-block {
    margin-top: 270px;
  }

  .text-block h1 {
    font-family: Golos Text;
    font-weight: 700;
    font-size: 24px;
    line-height: 110.00000000000001%;
  }

  .text-block p {
    font-family: Golos Text;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1px;
    max-width: 1920px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .experience__text {
    font-family: Golos Text;
    font-weight: 700;
    font-size: 24px;
    line-height: 110.00000000000001%;
    padding-left: 15px;
  }
  .service-block {
    margin-right: 5px;
    margin-left: 5px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
  }

  .service-content h3 {
    padding-top: 10px;
    padding-left: 149px;
  }

  .service-content p {
    padding-left: 149px;
  }

  .site-footer {
    background-color: #1d5974;
    color: #fff;
    font-size: 14px;
  }
  .footer-brand {
    margin: 0 auto;
    min-width: 416px;
    max-height: 247px;
    text-align: center;
    align-items: center;
  }
  .footer-nav {
    display: none;
  }
  .footer-contacts {
    display: none;
  }

  /* адаптация 02.09 */

  .about__text-block h1 {
    padding-top: 40px;
    font-size: 28px;
  }

  .about__text-block p {
    font-size: 14px;
  }

  .contact-section {
    min-height: auto;
  }

  .btn4 {
    margin-bottom: 0px;
  }
  .about__text-block {
    padding: 16px;
  }

  .split-section__container {
    background-color: #1d6fa1;
    background-image: none !important;
    color: #ffffff;
    padding: 40px 20px;
  }

  .split-section__container2 {
    background-color: #1d6fa1;
    color: #ffffff;
    padding: 40px 20px;
  }

  /* Контейнер секции */
  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Заголовок */
  .about__text {
    padding-top: 0px;
    font-family: "Golos Text", sans-serif;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
  }

  .split-section__container {
    padding-top: 25px;
  }

  .about-section {
    min-height: 460px;
  }

  .text-block {
    padding-top: 0px !important;
  }

  .split-section__container {
    background-color: #1e5679;
  }

  /* Картинка */
  .about-section > img {
    max-width: 100%;
    margin-bottom: 20px;
    padding-top: 0px;
  }

  .text-block {
    padding: 0px !important;
    margin-top: 15px;
  }

  .text-block p {
    margin-top: 10px;
  }

  .image__wrapper {
    border-radius: 16px;
  }

  .image__wrapper img {
    width: 100%;
    padding: 0px !important;
  }

  .about__text {
    margin-bottom: 0px;
  }

  /* Текст */
  .about-section .text-block {
    font-family: "Golos Text", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0 auto;
    max-width: 860px;
    text-align: left;
  }

  .split-section__container2 {
    background-image: url(../img/bame-container.png) !important;
  }

  .split-section__container2 .about-section img {
    visibility: hidden;
  }

  .split-section__container2 h1 {
    margin: 0px;
  }

  .about-section2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "text";
    gap: 16px;
    padding: 0 16px;
  }

  .about-section3 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "text";
    gap: 16px;
    padding: 0 16px;
  }

  .about-section3 .text-block2 {
    display: contents;
  }

  .about-section3 .text-block2 h1 {
    display: flex;
    grid-area: title;
    margin: 0;
    font-size: 28px;
    align-items: center;
  }

  .about-section3 img {
    grid-area: image;
    border-radius: 12px;
    max-width: 100% !important;
  }

  .about-section3 .text-block2 p {
    margin: 0;
    font-size: 14px;
  }

  /* уберём левый паддинг, который задан инлайном */
  .about-section3 .text-block2[style] {
    padding-left: 0 !important;
  }

  .about-section3 {
    margin-bottom: 80px !important;
  }

  /* «Сплющиваем» обёртку, чтобы ее дети стали элементами сетки */
  .about-section2 .text-block2 {
    display: contents;
  }

  .about-section2 .text-block2 h1 {
    display: flex;
    grid-area: title;
    margin: 0;
    font-size: 28px;
    align-items: center;
  }

  .image_wrapper {
    justify-content: center;
    margin: 0 auto;
  }

  .about-section2 img {
    grid-area: image;
    border-radius: 12px;
    max-width: 100% !important;
  }

  .about-section2 .text-block2 p {
    margin: 0;
    font-size: 14px;
  }

  /* уберём левый паддинг, который задан инлайном */
  .about-section2 .text-block2[style] {
    padding-left: 0 !important;
  }
  .comand-section2 {
    margin-top: 48px;
    padding: 20px 15px;
    min-height: auto;
  }

  .comand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-title {
    display: block;
    order: 1;
    width: 100%;
    margin-bottom: 15px;
  }

  .mobile-title h1 {
    font-size: 22px;
    color: #29555e;
    font-size: 28px;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 28px;
    line-height: 110.00000000000001%;
    letter-spacing: -2%;
    font-family: Golos Text;
  }

  .comand__bg2 {
    order: 2;
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }

  .comand__bg2 img {
    padding-top: 80px;
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .comand-content {
    order: 3;
    width: 100%;
  }

  .work__text-block2 p {
    font-size: 16px;
    line-height: 1.5;
    color: #34495e;
    margin-top: 0;
  }

  .comand-content {
    position: relative;
    margin-left: 0;
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
    padding: 0;
    max-width: 1200px;
  }

  /* Скрываем оригинальный заголовок на мобилке */
  .comand-content h1 {
    padding-top: 5px;
    font-family: Golos Text;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 110.00000000000001%;
    letter-spacing: -2%;
  }

  .work__text-block2 {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    padding-top: 240px;
  }

  .company {
    padding: 15px 0;
    background: #2c6a9c;
  }

  .company .container {
    background: #2c6a9c;
    border-radius: 12px;
    margin: 0 15px;
    padding: 0 0 20px 0;
    /*     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
  }

  .company__text-block h1 {
    padding-top: 20px !important;
    font-size: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }

  .company__text-block h1 img {
    margin: 0 !important;
  }

  .company__text-block h1 img:first-child {
    width: 40px;
    height: auto;
  }

  .company__text-block h1 img:last-child {
    width: 120px;
    height: auto;
  }

  .company__text-block p {
    font-size: 14px;
    line-height: 1.4;
    text-align: left !important;
    padding: 0 15px;
    margin-bottom: 10px;
  }

  .dryport-services-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
  }

  .dryport-service-card {
    background: #ffffff0f;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 0 !important;
  }

  .dryport-service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .dryport-service-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: Golos Text;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    line-height: 110.00000000000001%;
    letter-spacing: -2%;
  }

  .dryport-service-desc {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 0;
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: -2%;
  }

  /* Скрываем все карточки кроме первых трех */
  .dryport-service-card:nth-child(n + 4) {
    display: none;
  }

  /* Контейнер для кнопки */
  .show-all-container {
    padding: 0 15px;
  }

  /* Стили для кнопки "Показать все" */
  .show-all-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 15px;
    background: #bdde63;
    border: 3px solid #c7e86de6;
    color: #29555e;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .show-all-btn::before,
  .show-all-btn::after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background-image: url("/assets/img/icons.png");
    background-repeat: no-repeat;
    vertical-align: middle;
  }

  .show-all-btn::before {
    margin-top: 5px;
  }

  .show-all-btn::after {
    margin-left: 8px;
    margin-top: 5px;
  }

  .show-all-btn.hide-all {
    color: white;
    background: #347af6;
    border: 3px solid #498dff;
  }

  .show-all-btn.hide-all::before,
  .show-all-btn.hide-all::after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background-image: url("/assets/img/icons2.png");
    background-repeat: no-repeat;
    vertical-align: middle;
  }

  .company__text-block h1 {
    padding-left: 10px;
    flex-direction: row !important;
    gap: 10px;
    padding-top: 30px !important;
  }

  .company__text-block h1 img:first-child {
    width: 30px;
    margin-right: 5px !important;
  }

  .company__text-block h1 img:last-child {
    width: 100px;
    margin-left: 5px !important;
  }

  .company__text-block h1 {
    font-size: 22px;
    white-space: nowrap;
  }

  .sealink-container {
    display: flex;
    flex-direction: column;
  }

  /* Правим порядок ВСЕХ элементов внутри sealink-container */
  .sealink-container .text-block2 {
    order: 1 !important; /* Заголовок первым */
    padding-left: 0 !important;
    padding: 0 15px;
    width: 100%;
  }

  .sealink-container > img {
    order: 2 !important; /* Фото вторым */
    max-width: 100% !important;
    padding: 0 15px;
    margin: 20px 0;
  }

  .sealink-container > p {
    order: 3 !important; /* Параграфы третьими */
    margin-top: 15px !important;
    padding: 0 15px;
    width: 100%;
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: -2%;
    color: #29555ecc;
  }

  /* Стили для заголовка */
  .sealink-container .text-block2 h1 {
    padding-left: 20px;
    padding-top: 20px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
    font-size: 22px !important;
    margin-bottom: 15px !important;
  }

  .sealink-container .text-block2 h1 img {
    margin: 0 !important;
    vertical-align: middle !important;
  }

  .sealink-container .text-block2 h1 img:first-child {
    width: 30px !important;
    height: auto !important;
  }

  .sealink-container .text-block2 h1 img:last-child {
    width: 100px !important;
    height: auto !important;
  }

  .comand__bg img {
    border-radius: 0;
    max-width: auto;
    max-height: 300px;
  }

  .find .find__text {
    padding-top: 20px;
  }

  .comand-content .work__text-block {
    padding-top: 310px;
    margin-left: 0;
  }
  
  .work__text-block {
      margin-left: 0;
  }
  
  .work-section__container .container {
      z-index: 0;
  }

  .btn {
    margin-bottom: 15px;
  }

  .contact-section__container {
    background-image: url(/assets/img/bgmobile.png);
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .contact-info-box {
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 35px;
  }

  .contact__text-block {
    padding-bottom: 0;
  }

  .contact-section {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .contact__btn {
    padding-right: 32px;
    padding-left: 32px;
  }

  .footer-brand {
    background-color: #1e5679;
  }

  .blocks-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .advantages-text {
    grid-column: span 1;
  }

  .blocks-grid2 {
    padding-top: 78px;
    grid-template-columns: repeat(1, 1fr);
  }

  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
  }

  .advantages-title {
    font-family: Golos Text;
    font-weight: 700;
    font-style: Bold;
    font-size: 28px;
    letter-spacing: -2%;
    max-width: 360px;
    margin: 16px;
    margin-bottom: 8px;
  }

  .advantage-title {
    font-family: Golos Text;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: -2%;
    max-width: 330px;
  }

  .advantages-subtitle {
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 160%;
    margin-left: 16px;
    color: #29555e;
  }

  .advantage-card {
    width: 100%;
    margin-left: 16px;
    margin-right: 96px;
    max-width: 384px;
  }

  .find2 {
    background-image: url(/assets/img/find2.png);
    background-repeat: no-repeat;
    background-position: -30px center; /* Сдвигает на 10px левее */

    background-size: cover;
  }

  .find__text {
    padding-top: 272px;
    padding-left: 16px;
  }

  .btn {
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    color: #1a2545;
  }

  .export__bg2 {
    background-image: url(/assets/img/exportbg.png);
    background-repeat: no-repeat;
  }

  .about__text-block img {
    vertical-align: middle;
    margin-bottom: 5px;
    margin-right: 5px;
  }

  .about__text-block p {
    max-width: 550px;
    margin-bottom: 5px;
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 17px;
    line-height: 160%;
    letter-spacing: -2%;
  }
  .contact-section-econom {
    padding-top: 120px;
  }

  .buttons-container2 {
    margin-top: 39px;
  }
  .help-container {
    margin-top: 90px;
    flex-direction: column;
    padding-top: 24px;
    padding-left: 16px;
  }
  .content-left .first {
    display: none;
  }
  .content-left p {
    color: #ffffff;
    font-family: Golos Text;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: -2%;
    margin-bottom: -40px;
  }
  .content-left h2 {
    font-family: Golos Text;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -2%;
  }
  .work-form {
    margin-top: 0;
  }

  .breadcrumbs {
    padding-left: 20px;
  }

  .split-section__container .container {
    z-index: 1 !important;
    position: relative;
  }

  /* Десктопные стили - скрываем мобильный заголовок */
  @media (min-width: 481px) {
    .contact-info__mobile {
      display: flex;
      flex-direction: column;
    }
    .mobile-title {
      display: none;
    }

    .comand-content h1 {
      display: block !important;
    }
  }

  @media (max-width: 992px) {
      
      .comand__bg {
          width: 100%;
          
      }
    .container__bg {
      padding: 0 !important;
    }

    .banner h1 {
      font-size: 140px;
    }

    .logo img {
      height: 60px;
      margin-left: 9px;
    }

    .container__bg {
      padding: 0;
    }

    .line {
      display: none;
    }

    .menu-toggle {
      display: flex;
      margin-right: 25px;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 15px;
      text-align: left;
    }
    .nav-menu li {
      /*       height:40px; */
      padding: 0 12px;
    }
    .nav-menu li a {
      font-size: 16px;
      padding: 0px;
      color: #29555e;
      display: block;
    }

    .contact-info {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .logo img {
      height: 50px;
    }
  }
  /* ===== Цвета под макет ===== */
  :root {
    --c-blue: #1e5679; /* верхняя тёмная полоса */
    --c-text: #29555e; /* основной текст */
    --c-accent: #e2f4b2; /* зелёная плашка раздела */
    --c-accent-dot: #cbea6a; /* зелёная точка активного пункта */
    --c-divider: #e8eef5; /* разделители */
  }

  /* Бургер */
  .menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    z-index: 1102; /* поверх оверлея */
  }
  .menu-toggle .bar {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s, opacity 0.25s;
  }
  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ===== Мобильный офф-канвас ===== */
@media (max-width: 992px) {
  /* показываем бургер */
  .menu-toggle {
    display: flex;
  }

  /* панель */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 100%;
    height: 100%;
    align-content: flex-start;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 1;
    margin-top: 100px;
    padding: 0 14px 24px;
    overflow-y: auto;
  }
  .nav-menu.is-open {
    transform: translateX(0);
    display: flex !important;
    flex-direction: column !important;
    padding-bottom: 130px;
  }

  /* тёмная шапка внутри офф-канваса (как в макете) */

  /* переносим крестик (бургер) в правый верх */
  .menu-toggle.is-active {
    top: 10px;
    right: 10px;
    background: transparent;
  }

  /* оверлей */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 37, 69, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1;
  }
  .nav-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  /* список и разделители */
  .nav-menu > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav-menu > ul > li {
    border-top: 1px solid var(--c-divider);
    display: flex !important;
    flex-direction: column !important;
  }
  .nav-menu > ul > li:first-child {
    border-top: 0;
  }

  .nav-menu li a {
    display: block;
    padding: 12px 8px;
    font: 500 16px/1.3 "Golos Text", system-ui;
    color: var(--c-text);
    text-decoration: none;
  }

  /* зелёная плашка для раздела с подпунктами */
  .dropdown-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--c-accent);
    border-radius: 12px;
  }
  .dropdown-link {
    flex: 1 1 auto;
    min-width: 0;
  }

  .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #d7e4f0;
    background: none;
    flex: 0 0 auto;
    padding-right: 20px;
  }
  .dropdown-toggle .caret {
    width: 10px;
    height: 10px;
    display: block;
    border-right: 2px solid var(--c-text);
    border-bottom: 2px solid var(--c-text);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }
  .has-dropdown.expanded .dropdown-toggle .caret {
    transform: rotate(45deg);
  }

  /* аккордеон подменю */
  .has-dropdown > ul {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
    height: 0;
    overflow: hidden;
    transition: height 0.25s ease;
    position: static;
    box-shadow: none;
    width: auto;
    max-height: none;
    background: transparent;
  }
  .has-dropdown > ul > li > a {
    font-size: 15px;
    padding: 10px 8px 10px 24px;
    position: relative;
  }

  /* зелёная точка у активного подпункта */
  .has-dropdown > ul > li > a.current,
  .has-dropdown > ul > li > a[aria-current="page"] {
    color: #9ccb34;
  }
  .has-dropdown > ul > li > a.current::before,
  .has-dropdown > ul > li > a[aria-current="page"]::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-accent-dot);
  }

  /* блокировка прокрутки страницы */
  body.scroll-lock {
    overflow: hidden;
  }
}

/* На десктопе ничего не ломаем (если нужен hover-дропдаун — оставь свой старый код в min-width:993px) */
@media (min-width: 993px) {
  .nav-overlay {
    display: none !important;
  }
}
