/* Обнуляем границы у всех элементов */
* {
  margin: 0;
  margin-top: 0px;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  /* Учитываем границы и отступы в размерах элементов */
}

html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}


/* Для текста используйте системный шрифт San Francisco или аналогичный */
@font-face {
  font-family: 'San Francisco';
  src: url('SF-Pro-Display-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'San Francisco';
  src: url('SF-Pro-Display-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

body {
  font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Стили для кнопки */
.language-selector {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.language-selector .selected-language {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #ffffff;
  border: 0px solid #cccccc;
  border-radius: 5px;
  width: 70px;
}

.language-selector .selected-language img {
  width: 100%;
  height: auto;
}

/* Стили для выпадающего списка */
.language-selector .language-options {
  position: absolute;
  top: 35px;
  margin-right: 10px;
  left: 0;
  width: 70px;
  background-color: #ffffff;
  border: 0px solid #cccccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1;
}

.language-selector .language-options a {
  display: block;
  padding: 10px 20px;
  color: #333333;
  text-decoration: none;
  transition: background-color 0.3s;
}

.language-selector .language-options a:hover {
  background-color: #f2f2f2;
}

/* Показываем выпадающий список при наведении на кнопку */
.language-selector:hover .language-options {
  display: block;
}




/* Общие стили */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  padding: 10px 40px;
}

.logo {
  width: auto;
  height: 100px;
}

.logo1 {
  font-size: 36px;
}

/* Стили для десктопной версии */
@media (min-width: 800px) {
  .desktop-menu {
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    left: 50px;
  }

  .desktop-menu a {
    margin-right: 20px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    /* Анимация изменения цвета */
  }

  /* Анимация при наведении */
  .desktop-menu a:hover {
    color: #ffa500;
    /* Цвет при наведении */
  }

  .social-icons {
    display: flex;
    position: absolute;
    margin-right: 120px;
    margin-top: 0px;
    right: 100px;
    align-items: center;
  }

  .social-icons a {
    margin-left: 0px;
    margin-bottom: 0px;
    color: #333;
    text-decoration: none;
    display: inline-block;
    /* Убедитесь, что ссылки выступают как блочные элементы */
    transition: transform 0.3s ease;
    /* Анимация увеличения */
  }

  .social-icons a:hover {
    transform: scale(1.1);
    /* Увеличение при наведении */
  }

  .social-icons a:hover {
    transform: scale(1.1);
    /* Увеличение только для иконки, на которую наведен курсор */
  }

  .phone-button {
    font-weight: bold;
    position: absolute;
    right: 40px;
    /* или другое значение, подходящее для вашего дизайна */
    margin-left: 30px;
    border: 2px solid rgb(0, 0, 0);
    /* Белая обводка кнопки */
    background-color: #ffa60000;
    color: rgb(0, 0, 0);
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease;
    /* Анимация происходит в течение 0.3 секунды */
  }

  .phone-button:hover {
    transform: scale(1.1);
    /* Увеличение размера кнопки на 10% */
  }

  .hamburger-menu,
  .mobile-menu {
    display: none;
  }
}

/* Стили для мобильной версии */
@media (max-width: 800px) {
  header {
    margin-top: 0px;
    justify-content: flex-start;
  }

  .logo1 {
    margin-top: 100px;
    width: 50%;
    height: auto;
  }

  .logo {
    margin-left: -5%;
    width: 50%;
    height: auto;
  }

  .desktop-menu,
  .social-icons,
  .phone-button {
    display: none;
  }


  .hamburger-menu {
    cursor: pointer;
    width: 30px;
    /* Ширина иконки */
    height: 30px;
    /* Высота иконки */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    z-index: 1000;
    right: 20px;
    align-items: center;
  }

  .hamburger-menu span {
    display: block;
    height: 3px;
    /* Высота линии */
    width: 100%;
    background-color: black;
    /* Цвет линии */
    transition: all 0.3s ease;
  }

  /* Анимация для превращения в крестик */
  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .hamburger-menu.active span:nth-child(2) {
    transform: translateY(-7.5px) rotate(-45deg);
  }


  .mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: orange;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    z-index: 1;
  }

  .mobile-menu.active {
    display: inline-grid;
    text-align: center;
    padding: 60px;
    justify-items: center;
  }

  .mobile-menu a {
    font-size: 18px;
    color: rgb(0 0 0);
    text-decoration: none;
  }

  a.phone-button-mobile {
    display: grid;
    padding: 10px 15px;
    color: white;
    align-items: center;
    justify-content: space-around;
  }

  .social-icons-mobile {
    display: flex;
  }

  .social-icons-mobile a {
    display: block;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 18px;
    color: rgb(0, 0, 0);
    text-decoration: none;
  }

  .phone-button-mobile {
    width: 300px;
    height: 70px;
    margin-top: 40px;
    background-color: #000000;
    color: white;
    padding: 20px;
    border-radius: 50px;
  }

  .language_mobile {
    display: flex;
    justify-content: space-between;
  }

  .language_mobile .language-button {
    flex-grow: 1;
    margin: 0 5px;
    /* Можете регулировать отступы */
    text-align: center;
    text-decoration: none;
    color: inherit;
    /* Стиль текста наследуется */
  }

  .language_mobile .language-button img {
    width: 35px;
    height: 25px;
  }
}


/* Стили для баннера */
.banner {
  background-color: black;
  /* Задаем черный цвет фона */
  color: white;
  /* Задаем белый цвет текста */
  margin-top: 0px;
  /* Отступ сверху для баннера */
  margin-right: 40px;
  /* Отступ справа для баннера */
  margin-bottom: 20px;
  /* Отступ снизу для баннера */
  margin-left: 40px;
  /* Отступ слева для баннера */
  border-radius: 25px;
  height: 790px;
  /* Высота баннера */
  text-align: left;
  /* Выравнивание текста по левому краю баннера */
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-start;
  /* Выравнивание текста и кнопок в верхний угол */
  align-items: flex-start;
  /* Выравнивание текста и кнопок в левый угол */
  padding: 20px;
  /* Отступ внутри баннера */
  position: relative;
  /* Позиционируем баннер как relative, чтобы разместить текст и изображение внутри */
}

.banner p.bold {
  font-size: 72px;
  /* Размер шрифта для текста внутри баннера */
  margin: 0;
  /* Обнуляем внешние отступы абзаца внутри баннера */
  font-weight: bold;
  /* Жирный шрифт */
  margin-left: 40px;
  margin-top: 40px;
}

.button-container {
  margin-top: 0px;
  /* Отступ сверху для контейнера с кнопками */
  margin-left: 0px;
}

/* Стили для кнопки "Оставить заявку" */
.request-button {
  background-color: #ffa500;
  /* Оранжевый цвет фона */
  color: white;
  /* Белый цвет текста */
  padding: 15px 40px;
  /* Отступы внутри кнопки */
  border: 0px solid white;
  /* Белая обводка кнопки */
  border-radius: 25px;
  /* Скругление углов кнопки */
  margin-left: 40px;
  margin-top: 40px;
  font-weight: bold;
  /* Жирный шрифт */
  font-size: 16px;
  /* Размер шрифта */
  cursor: pointer;
  /* Изменяем курсор при наведении на кнопку */
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  /* Добавляем анимацию для background-color, color и transform */
}

.request-button:hover {
  background-color: #ff7b00;
  /* Новый цвет фона при наведении */
  color: white;
  /* Новый цвет текста при наведении */
  transform: scale(1.05);
  /* Увеличиваем кнопку при наведении (можете изменить значение по вашему вкусу) */
}

/* Стили для кнопки "Отследить груз" */
.track-button {
  background-color: transparent;
  /* Прозрачный фон */
  color: white;
  /* Белый цвет текста */
  padding: 15px 40px;
  /* Отступы внутри кнопки */
  border: 2px solid white;
  /* Белая обводка кнопки */
  border-radius: 25px;
  /* Скругление углов кнопки */
  margin-left: 40px;
  margin-top: 20px;
  font-weight: bold;
  /* Жирный шрифт */
  font-size: 16px;
  /* Размер шрифта */
  cursor: pointer;
  /* Изменяем курсор при наведении на кнопку */
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  /* Добавляем анимацию для background-color, color и transform */
}

.track-button:hover {
  background-color: #ffa60000;
  /* Новый цвет фона при наведении */
  color: white;
  /* Новый цвет текста при наведении */
  transform: scale(1.05);
  /* Увеличиваем кнопку при наведении (можете изменить значение по вашему вкусу) */
}

/* Стили для текста "200+" и "50+" */

.bold-title {
  margin: 0;
  margin-left: 40px;
  margin-top: 10px;
  font-size: 72px;
  font-weight: bold;
}

.bold {
  margin: 0;
  margin-left: 40px;
  margin-top: 10px;
  font-size: 72px;
  font-weight: bold;
}


/* Стили для информации о партнерах и покрытии */
.partner-info,
.coverage-info {
  font-size: 16px;
  font-weight: normal;
  margin-left: 40px;
  margin-top: 0px;
}

/* Стили для текста в правом верхнем углу */
.banner-text-container {
  position: absolute;
  /* Позиционируем абсолютно внутри баннера */
  top: 60px;
  /* Отступ сверху */
  right: 60px;
  /* Отступ справа */
}

.banner-text {
  font-size: 20px;
  font-weight: normal;
  text-align: right;
  /* Выравнивание по правому краю */
  margin: 0;
  color: white;
  /* Белый цвет текста */
}

/* Стили для изображения в правом нижнем углу */
.banner-image {
  position: absolute;
  /* Позиционируем абсолютно внутри баннера */
  bottom: 15%;
  /* Отступ снизу */
  scale: 120%;
  right: 0px;
  /* Отступ справа */
  max-width: 70%;
  /* Максимальная ширина изображения */
  height: auto;
}

@media (max-width: 844px) {

  .bold-title {
    font-size: 48px;
    margin-left: 5px;
  }

  /* Изменение размера баннера */
  .banner {
    margin-left: 20px;
    margin-right: 20px;
    height: auto;
    /* Автоматический размер по высоте */
    padding: 15px;
    /* Уменьшенный внутренний отступ */
  }

  /* Скрываем изображение и тексты класса 'bold' в баннере */
  .banner-image,
  .banner p.bold,
  .partner-info,
  .coverage-info {
    display: none;
  }

  /* Перемещение и выравнивание текста в правом верхнем углу */
  .banner-text-container {
    position: static;
    /* Отменяем абсолютное позиционирование */
    margin-top: 30px;
    /* Добавляем отступ сверху */
    text-align: left;
    /* Выравнивание текста по левому краю */
    margin-bottom: 30px;
  }

  /* Адаптация стилей текста */
  .banner-text {
    margin-left: 5px;
    margin-bottom: 0px;
    text-align: left;
    font-size: 18px;
    /* Меньший размер шрифта */
  }

  /* Стили для кнопок, если нужно */
  .button-container button {
    font-size: 18px;
    /* Адаптация размера шрифта для кнопок */
    padding: 15px 30px;
    /* Отступы внутри кнопки */
    border-radius: 50px;
    margin-top: 20px;
    margin-left: 0px;

  }
}



/* Стили для блока "О нас" */
.about-us {
  display: flex;
  /* Делаем блок "О нас" flex-контейнером */
  margin: 40px 0;
}

/* Стили для левой и правой частей блока "О нас" */
.about-us-left,
.about-us-right {
  padding: 20px;
  flex: 1;
  /* Задаём гибкость элементам внутри flex-контейнера */
}

.about-us-title {
  font-size: 36px;
  font-weight: bold;
  margin-left: 90px;
  margin-bottom: 20px;
}

.company-name {
  color: #ffa500;
}

.about-us-description,
.about-us-details {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-right: 90px;
  font-weight: bold;
}

@media (max-width: 844px) {
  .about-us {
    flex-direction: column;
    /* Меняем направление на вертикальное */
  }

  .about-us-left,
  .about-us-right {
    flex: none;
    /* Отменяем гибкость элементов */
    margin-right: 0;
    /* Обнуляем отступ справа, если он был */
    margin-left: 0;
    /* Обнуляем отступ слева, если он был */
  }

  .about-us-title {
    font-size: 24px;
    margin-left: 20px;
    /* Адаптируем отступ слева для заголовка */
    margin-right: 20px;
    /* Адаптируем отступ справа для заголовка */
  }

  .about-us-description,
  .about-us-details {
    font-size: 16px;
    margin-right: 20px;
    /* Адаптируем отступ справа для текста */
    margin-left: 20px;
    /* Адаптируем отступ слева для текста */
  }
}

.timeline-wrapper {
  /* Стили для общего контейнера */
  position: relative;
  padding: 0px;
  background-color: #ffffff;
  /* Другие стили по вашему выбору */
}



.timeline-container {
  background-color: #00000000;
  position: relative;
  width: 100%;
}

.timeline-line {
  display: flex;
  position: absolute;
  transform: translateX(-50%);
  margin-top: 0%;
  left: 50%;
  top: 0%;
  width: 3px;
  height: 100%;
  background-color: #b9b9b9;
}

.circle-prior {
  position: absolute;
  top: 0px;
  margin-top: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #b9b9b9;
  display: none;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  /* Установите желаемый размер шрифта */
  color: #ffffff00;
  /* Цвет текста */
  transition: background-color 0.3s ease;
}

.circle-prior.highlight {

  background-color: #ffa500;
  /* Измените на желаемый цвет фона */

}






/* Стили для блоков преимуществ */
.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transform: translateY(-50% -50%);
  line-height: 1.2;
  font-size: 20px;
  margin-top: 0%;

}

/* Первый блок слева */
.item1 {
  left: 0;
  top: 0%;
}

.item1 .timeline-content {
  border-top-right-radius: 0%;
}

/* Второй блок справа (зеркальный первому блоку) */
.item2 {
  right: 0;
  top: 0px;
  text-align: right;
  transform: scaleX(-1);
  /* Отразить блок по горизонтали */
}

/* Отменить отражение текста внутри второго блока */
.item2 .timeline-content {
  transform: scaleX(-1);
  /* Отменить отражение текста по горизонтали */
  border-top-left-radius: 0%;
}

/* Третий блок слева */
.item3 {
  left: 0;
  top: 0px;

}

.item3 .timeline-content {
  border-top-right-radius: 0%;
}

/* Четвертый блок справа (зеркальный третьему блоку) */
.item4 {
  right: 0;
  top: 0px;
  text-align: right;
  transform: scaleX(-1);
  /* Отразить блок по горизонтали */
}

/* Отменить отражение текста внутри четвертого блока */
.item4 .timeline-content {
  transform: scaleX(-1);
  /* Отменить отражение текста по горизонтали */
  border-top-left-radius: 0%;
}

/* Пятый блок слева */
.item5 {
  left: 0;
  top: 0px;
}

.item5 .timeline-content {
  border-top-right-radius: 0%;
}

/* Стили для иконок */
.timeline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(0, 0, 0, 0);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff00;
  border: 2px solid #00000000;
}

/* Стили для текста преимуществ */
.timeline-content {
  position: relative;
  padding: 50px;
  background-color: #F3F3F4;
  border-radius: 25px;
  box-shadow: 3px 3px 25px rgba(69, 29, 3, 0.00);
  flex: 1;
  max-width: 40%;
}

/* Другие стили остаются без изменений */

/* Начальные стили для грузовика */
.truck {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0%;
  /* Позиция по вертикали, убедитесь, что она корректна */
  z-index: 10;
}

.truck-sticky {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50% -50%);
  /* Убедитесь, что нет других свойств, влияющих на видимость или позиционирование */
}

.truck img {
  width: 200px;
  /* Ширина грузовика */
  height: auto;
  /* Высота грузовика */
}


.timeline-text {
  position: absolute;
  top: 0px;
  /* Расположение по вертикали, на уровне первого блока преимущества */
  right: 50px;
  /* Расположение по горизонтали, слева от линии */
  width: 50%;
  /* Ширина блока с текстом */
  text-align: right;
}

.timeline-text p {
  font-size: 72px;
  font-weight: bold;
}

/* Цифры приоритетов */

.number-prior {
  font-size: 72px;
  font-weight: bold;
  color: #ffa500;
}


@media (max-width: 844px) {

  /* Скрываем элементы, которые не должны отображаться на мобильных устройствах */
  .timeline-line,
  .circle-prior,
  .truck,
  .timeline-text {
    display: none;
  }

  .timeline-container {
    margin-bottom: 0px;
  }

  /* Изменение стилей блоков преимуществ */
  .timeline-item {
    font-size: 16px;
    position: static;
    /* Отменяем абсолютное позиционирование */
    display: flex;
    flex-direction: column;
    /* Элементы внутри блока располагаются вертикально */
    align-items: center;
    /* Выравнивание по центру */
    margin-bottom: 0px;
    /* Отступ между блоками */
  }

  .timeline-content {
    text-align: center;
    /* Выравнивание текста по центру */
    max-width: 100%;
    /* Максимальная ширина текста */
    margin-left: 20px;
    margin-right: 20px;
  }

  .item2,
  .item4 {
    transform: scaleX(1);
    /* Отменяем зеркальное отображение блоков */
  }

  .item2 .timeline-content,
  .item4 .timeline-content {
    transform: scaleX(1);
    /* Отменяем зеркальное отображение текста в блоках */
  }
}

.services-block {
  background-color: #F3F3F4;
  height: 800px;
  border-radius: 25px;
  margin: 40px;
  position: relative;
  overflow: hidden;
}

.services-images {
  margin-top: 250px;
  margin-left: 10%;
  width: 35%;
  position: absolute;
}

.service-image {
  max-width: 100%;
  height: auto;
}

.services-list {
  position: absolute;
  margin-left: 50%;
  width: 100%;
}

.services-list ul {
  list-style: none;
  padding: 10%;
}

.service-item {
  cursor: pointer;
  padding: 25px;
  font-size: 20px;
  position: relative;
  display: block;
}

.service-item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.service-item::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: grey;
  border-radius: 50%;
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
}

.service-item.active::before {
  background-color: #ffa500;
}

.service-item.active {
  color: #ffa500;
}

.service-shadow {
  max-width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
}



/* Стили для блока описания */
.service-description {
  margin-left: 40px;
  margin-top: 40px;
  position: absolute;
  background-color: #ffffff00;
  border-radius: 10px;
  padding: 20px;
}

.service-description h1 {
  font-size: 72px;
  margin: 0 0 10px;
}

.service-description-container {
  position: absolute;
  margin-top: 580px;
  width: 40%;
  margin-left: 60px;
  margin-bottom: 50px;
}


/* Стили для кнопки */
.service-description-button {
  margin-top: 50px;
  text-align: left;
  padding: 10px 20px;
}

.service-description-button button {
  position: absolute;
  font-size: 16px;
  bottom: 40px;
  left: 60px;
  background-color: #ffa500;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.service-description-button button:hover {
  background-color: #000000;
  color: white;
  transform: scale(1.05);
}

/* Стили для активной кнопки */
.service-item.active+.service-description-button button {
  background-color: #ffa500;
}

.service-image.animate {
  animation: movePlane 2s infinite;
}



/* Animation styles service block */
@keyframes moveAndRotatePlane {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(-10deg);
  }
}

@keyframes moveShadow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    transform: translateX(10px);
    opacity: 0.5;
  }
}

#air {
  animation: moveAndRotatePlane 2s infinite;
  z-index: 1;

}

#airshadow {
  /* Стили для тени */
  position: relative;
  /* Абсолютное позиционирование внутри контейнера */
  /* Другие стили (размер, фон и т.д.) */
  transform: translateX(-50%, -50%);
  /* Центрирование элемента */
  animation: moveShadow 2s infinite;
  z-index: 0;
  mix-blend-mode: multiply;
}


@keyframes moveAndRotatePlanetrain {

  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(-100px) rotate(0deg);
  }
}

@keyframes moveShadowtrain {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(0px);
  }
}

#train {
  animation: moveAndRotatePlanetrain 2s infinite;
  z-index: +1;
  margin-top: -15%;
}

#trainshadow {
  position: absolute;
  transform: scaleX(1.5);
  top: 59%;
  left: -20%;
  mix-blend-mode: multiply;
}


@keyframes scalePlaneroad {

  0%,
  100% {
    transform: scale(1);
    transform-origin: bottom;

  }

  50% {
    transform: scale(1.1);
    /* Увеличиваем элемент на 20% в середине анимации */
    transform-origin: bottom;
  }
}


#road {
  animation: scalePlaneroad 2s infinite;
  margin-top: -20%;
  z-index: +1;
  mix-blend-mode: multiply;
}

#roadshadow {
  /* Стили для тени */
  position: absolute;
  /* Абсолютное позиционирование внутри контейнера */
  top: 70%;
  /* Выравнивание по вертикали */
  left: 50%;
  /* Выравнивание по горизонтали */
  /* Другие стили (размер, фон и т.д.) */
  transform: translateX(-50%, -50%);
  /* Центрирование элемента */
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: 0%;
}


@keyframes moveAndRotatemulti {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-40px) rotate(0deg);
  }
}

@keyframes moveShadow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    transform: translateX(10px);
    opacity: 0.5;
  }
}

#multi {
  scale: 130%;
}

#multi {
  animation: moveAndRotatemulti 2s infinite;
  margin-top: -50%;
}

#multishadow {
  /* Стили для тени */
  position: absolute;
  /* Абсолютное позиционирование внутри контейнера */
  top: 70%;
  /* Выравнивание по вертикали */
  left: 5%;
  /* Выравнивание по горизонтали */
  /* Другие стили (размер, фон и т.д.) */
  transform: translateX(-50%, -50%);
  /* Центрирование элемента */
  animation: moveShadow 2s infinite;
  z-index: 0;
  mix-blend-mode: multiply;
}

#storage {
  mix-blend-mode: multiply;
  margin-top: -10%;
}

#transit {
  mix-blend-mode: multiply;
  scale: 130%;
  margin-left: -20%;
  margin-top: -10%;
}

#consult {
  margin-top: -15%;
}



/* Стили для мобильных устройств */
@media (max-width: 844px) {


  .service-description-button button {
    position: static;
    font-size: 16px;
    bottom: 40px;
    background-color: #ffa500;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
  }

  .service-description-button {
    order: 3;
    position: relative;
    margin-left: 0%;
    margin-bottom: 20px;
  }

  .service-description-text {
    display: none;
  }

  .service-item::before {
    display: none;
    /* Скрываем круги */
  }

  .service-description h1 {
    font-size: 24px;
  }

.services-block {
  margin: 20px;
  display: flex;
  height: 600px;
  width: auto;
  position: relative;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

  .services-images {
    position: relative;
    margin: 100px 0px 0px;
    order: 1;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
  }

  .service-image-container {
    position: relative;
    height: 100%;
    text-align: center;
  }

  .service-image-container.active {
    visibility: visible;
    /* Показать активный контейнер изображений */
  }

  .service-image {
    width: auto;
    /* Пример, установите нужный размер или оставьте auto */
    height: auto;
    /* Пример, установите нужный размер или оставьте auto */
  }

  .services-navigation {
    margin-left: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    width: 100%;
    padding: 20px;
    order: 3;
  }

  .services-list {
    margin-top: 0%;
    margin-left: 0%;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    overflow-x: auto;
    text-align: center;
    align-items: center;
    position: relative;
  }

  .services-list ul {
    display: flex;
    text-align: center;
    width: 100%;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    /* Другие стили */
    font-size: 16px;
  }


  .service-item {
    display: none;
    /* Скрываем все элементы */

  }

  .service-item.active {
    margin: 25px;
    font-size: 16px;
    display: block;
    /* Показываем только активный элемент */
    z-index: 3;
  }

  .nav-button {
    cursor: pointer;
    z-index: 4;
  }

  .service-description {
    order: 2;
    margin-left: 0%;
    margin-top: 0px;
    display: flex;
    background-color: #ffffff00;
    border-radius: 10px;
    padding: 0px;
  }

  .service-description h1 {
    margin-bottom: 0px;
    font-size: 24px;
    position: relative;
    display: none;
  }

  .service-description-container {
    position: absolute;
    margin-top: 0px;
    width: 40%;
    margin-left: 60px;
    margin-bottom: 50px;
  }


  /* Стили для кнопки */
  .service-description-button {
    position: relative;
    text-align: left;
  }

  #transit {
    mix-blend-mode: multiply;
    scale: 100%;
    margin-left: 0;
    margin-top: 0;
  }

  #multi {
    animation: moveAndRotatemulti 2s infinite;
    margin-top: -30%;
  }

  #multi {
    scale: 100%;
  }

}





/* Скрытие стрелок на десктопных версиях */
@media (min-width: 800px) {
  .nav-button {
    display: none;
  }
}


/* Стили для блока с формой обратной связи */
.feedback-form {
  position: relative;
  display: flex;
  margin-left: 40px;
  margin-right: 40px;
  background-color: #f5f5f5;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 25px;
  margin-top: 40px;
  overflow: hidden;
}

/* Стили для изображения справа */
.feedback-image {
  flex: 1;
  margin-right: 0px;
  margin-left: 0px;
}

.feedback-image img {
  position: relative;
  margin-top: -150px;
  margin-right: -150px;
  rotate: 25deg;
  scale: 150%;
}

/* Стили для контейнера с текстом и формой слева */
.feedback-content {
  flex: 2;
  margin-left: 40px;
  margin-top: 40px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}

.feedback-content h1 {
  font-size: 72px;
  margin-bottom: 40px;
  line-height: 72px;
}

.feedback-content h4 {
  margin-bottom: 20px;
}

/* Стили для элементов формы */
.form-group {
  margin-bottom: 15px;
  width: 60%;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  height: 40px;
  border-radius: 25px;
}

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

button[type="submit"] {
  font-size: 16px;
  bottom: 40px;
  left: 60px;
  background-color: orange;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
}

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


@media (max-width: 844px) {
  .feedback-form {
    padding-top: 40px;
    margin-left: 20px;
    margin-right: 20px;
    flex-direction: column;
    align-items: center;
  }

  /* Стили для изображения справа */
  .feedback-image {
    flex: 1;
    margin-right: 0px;
    margin-left: 0px;
  }

  .feedback-image img {
    position: relative;
    margin-top: -150px;
    margin-right: -350px;
    rotate: 25deg;
    scale: 150%;
    z-index: 0;
    display: none;
  }

  /* Стили для контейнера с текстом и формой слева */
  .feedback-content {
    text-align: center;
    margin: 0;
    width: 100%;

  }

  .feedback-content h1 {

    font-size: 24px;
    margin-bottom: 0px;
    line-height: 24px;
    white-space: nowrap;
    /* Текст не переносится на новую строку */
    overflow: hidden;
    /* Обрезать текст, который не помещается в блоке */
    text-overflow: ellipsis;
    /* Добавлять многоточие, если текст обрезается */
  }

  .feedback-content h4 {
    margin-top: 50px;
    margin-bottom: 20px;
  }

  /* Стили для элементов формы */
  .form-group {
    margin-bottom: 15px;
    width: 100%;
  }

  .form-group label {
    display: block;
    margin-bottom: 5px;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    height: 40px;
    border-radius: 25px;
    z-index: 1;
  }

  .form-group textarea {
    height: 100px;
    z-index: 1;
  }

  button[type="submit"] {
    font-size: 16px;
    bottom: 40px;
    left: 60px;
    background-color: orange;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    z-index: 1;
  }

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

/* Дополнительные стили по вашему усмотрению */
.tracking-container {
  position: relative;
  margin-top: 0px;
  width: 100%;
  height: 700px;
  padding: 100px;
  border-radius: 0;
  align-items: center;
  background-image: url('tracking.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: left;
}

.tracking-container h1 {
  font-size: 72px;
  margin: 0;
}

.tracking-container input[type="text"] {
  width: 100%;
  border-radius: 25px;
  border: 1px solid #ffffff;
  background: rgba(0, 0, 0, 0.2);
  font-size: 16px;
  margin-top: 40px;
  padding-left: 40px;
  height: 50px;
  backdrop-filter: blur(10px);
  /* Размытие фона */
  color: white;
}

.trackingResults {
  margin-top: 20px;
  margin-left: 0px;
}

.tracking-container button[type="button"] {
  font-size: 16px;
  background-color: #ffa500;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  /* Добавляем переход цвета */
}

/* При наведении меняем цвет на черный */
.tracking-container button:hover {
  background-color: #2e2e2e;
}




@media (max-width: 844px) {
  .tracking-container h1 {
    justify-content: center;
    display: flex;
    position: relative;
    text-align: center;
    font-size: 24px;
    /* Установить размер шрифта 24px для мобильных устройств */
  }

  .tracking-container {
    position: relative;
    padding: 40px 40px 0px 40px;
    display: flex;
    margin-top: 20px;
    justify-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }

  .trackingResults {
    margin-top: 20px;
    margin-left: 0px;
  }

  .tracking-container input[type="text"] {
    width: 100%;
    border-radius: 25px;
    border: 1px solid #ffffff;
    background: rgba(0, 0, 0, 0.2);
    font-size: 16px;
    margin-top: 40px;
    padding-left: 40px;
    height: 50px;
    margin-left: 0px;
    backdrop-filter: blur(20px);
    /* Размытие фона */
    color: white;
  }

  .tracking-container button[type="button"] {
    font-size: 16px;
    background-color: #ffa500;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    margin-top: 20px;
    margin-left: 0px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    /* Добавляем переход цвета */
  }
}



.container {
  display: flex;
  margin: 20px;
}

.right-container {
  width: auto;
  height: auto;
}

.left-panel {
  width: 60%;
  padding: 40px 20px 40px 100px;
  background-color: #ffffff00;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

.block-title {
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 40px;
}

.directions {
  list-style: none;
  padding: 0;
  counter-reset: direction-counter;
  display: flex;
  /* Добавьте это свойство */
  flex-direction: column;
  /* Вертикальное расположение направлений */
}

/* ... (предыдущие стили) ... */

.direction {
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 10px;
  display: flex;
  /* Добавляем flex для центрирования по вертикали */
  align-items: center;
  /* Центрируем содержимое по вертикали */
  position: relative;
  padding-left: 0px;
  transition: transform 0.2s;
  /* Добавляем анимацию увеличения */
  transform-origin: left;
  /* Устанавливаем центр как точку трансформации */
}

.direction:before {
  content: counter(direction-counter);
  counter-increment: direction-counter;
  font-size: 16px;
  width: 30px;
  height: 30px;
  background-color: #000000;
  color: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  transition: transform 0.5s;
  /* Добавляем анимацию увеличения */
  transform-origin: left;
  /* Устанавливаем центр как точку трансформации */
  transition: background-color 0.5s ease;
  /* Добавляем переход цвета */
}

.direction:hover {
  transform: scale(1.1);
  /* Увеличиваем размер при наведении */
}

.direction:hover:before {
  transform: scale(1.1);
  /* Увеличиваем размер при наведении */
  background-color: #ffa500;
}

/* ... (предыдущие стили) ... */


.countries {
  list-style: none;
  padding-left: 0;
  display: none;
  margin-top: 10px;
  column-count: 1;
  column-gap: 20px;
  margin-bottom: 10px;
  transform-origin: left;
  /* Устанавливаем центр как точку трансформации */
}

.countries li {
  break-inside: avoid-column;
  /* Избегаем разрыва элементов списка между столбцами */
  transition: transform 0.5s;
  /* Добавляем анимацию увеличения */
  transform-origin: left;
  /* Устанавливаем центр как точку трансформации */
}

.countries li:hover {
  transform: scale(1.1);
  /* Увеличиваем размер при наведении */
}

@media (min-width: 768px) {

  .container {
    flex-direction: row-reverse;
  }

  .left-panel {
    width: 100%;
    order: 2;
  }

  .right-panel {
    width: 100%;
    margin-left: -100px;
    margin-top: 100px;
    background-image: url('path_to_your_image.jpg');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    order: 1;
  }
}

@media (max-width: 844px) {

  .block-title {
    font-size: 24px;
  }

  .container {
    flex-direction: column;
  }

  .left-panel,
  .right-panel {
    width: 90%;
    padding: 10px;
  }

  .directions {
    font-size: 12px;
    flex-direction: column;
  }

  .direction,
  .countries li {
    font-size: 12px;
  }

  .right-panel {
    display: none;
    /* Скрываем карту на мобильных устройствах */
  }
}


/* Стили для контейнера слайдера */
.slider-container {
  position: relative;
  width: 100%;
  background-color: #000;
  overflow: hidden;
  position: relative;
  margin-top: 0;
  height: 200px;
  display: flex;
  align-items: center;
}

/* Стили для слайдов */
.slider {
  display: flex;
  animation: sliderAnimation 20s linear infinite;
  /* Продолжительность анимации может быть изменена */
  width: max-content;
  /* Автоматическая ширина для бесконечной прокрутки */
  white-space: nowrap;
  /* Предотвращаем перенос строк */
  align-items: center;
}

.slide {
  flex: 0 0 200px;
  /* Ширина каждого слайда (подстройте под ваши логотипы) */
  margin: 0 100px;
  padding-right: 40px;
  /* Расстояние между слайдами */
}

.slide img {
  width: 100%;
  /* Заполнить всю доступную ширину контейнера */
  height: auto;
  /* Сохранить пропорции изображения */
}

/* Анимация для бесконечного перемещения слайдов */
@keyframes sliderAnimation {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Сдвигаем на 50% ширины слайдера */
  }
}



/* Стили для блока контактов */
.contact-block {
  background-color: #000;
  padding: 40px;
  margin-top: 20px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-end;
}

.contact-section {
  padding: 0;
  background-color: #000;
  margin-top: 0;
  padding-left: 100px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  align-items: flex-end;
}

/* Стили для заголовка */
.contact-block h2 {
  font-size: 72px;
  margin-bottom: 20px;
}

/* Стили для призывного текста */
.contact-text {
  text-align: right;
  font-size: 18px;
  margin-top: 20px;
}

/* Стили для кнопки номера */
.contact-button {
  margin-bottom: 20px;
  display: block;
  text-align: center;
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: white;
  color: black;
}

/* Стили для иконок контактов */
.contact-icons {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 0px;
}

.contact-icons a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
}

.contact-icons img {
  width: 30px;
  height: 30px;
}

/* Стили для логотипа Xan Cargo */
.cargo-logo {
  width: 250px;
  /* Установите размер логотипа по вашему выбору */
  margin-top: 20px;
}

@media (max-width: 800px) {

  /* Стили для блока контактов */
  .contact-block {
    background-color: #000;
    padding: 20px;
    margin-top: 20px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
  }

  .contact-section {
    padding: 0;
    background-color: #000;
    margin-top: 0;
    padding-left: 0px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
  }

  /* Стили для заголовка */
  .contact-block h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  /* Стили для призывного текста */
  .contact-text {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
  }

  /* Стили для кнопки номера */
  .contact-button {
    margin: 20px;
    display: block;
    text-align: center;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .contact-button:hover {
    background-color: white;
    color: black;
  }

  /* Стили для иконок контактов */
  .contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .contact-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
  }

  .contact-icons img {
    width: 30px;
    height: 30px;
    z-index: 0;
  }

  /* Стили для логотипа Xan Cargo */
  .cargo-logo {
    width: 150px;
    /* Установите размер логотипа по вашему выбору */
    margin-top: 20px;
  }
}