footer {
  background-color: #0b1226;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 60px;
  /* Отступ сверху 20 пикселей */
  padding-bottom: 100px;
  /* Отступ снизу 40 пикселей */
  padding-left: 10px;
  /* Отступ слева 10 пикселей */
}

.footer-menu {
  background-color: #0b1226;
  color: white;
  padding: 20px 0;
  position: relative;
}

.footer-menu a {
  color: white; /* белый цвет текста */
  text-decoration: none; /* Убираем подчеркивание */
  transition: color 0.3s ease; /* Плавное изменение цвета при наведении */
}

.footer-menu a:hover {
  color: #3464ad; /* Цвет текста при наведении */
}

.footer-menu-content {
  display: flex;
  justify-content: center;
  position: relative;
}

.footer-menu-line {
  position: absolute;
  left: -5px;
  /* Отступ слева */
  right: 10px;
  /* Отступ справа */
  width: calc(100% - 100px);
  bottom: 0;
  border-bottom: 0.5px solid transparent;
  /* Почти невидимая линия */
}

.footer-contacts {
  margin-left: 15%; /* Левый отступ в процентах */
  margin-right: 15%; /* Правый отступ в процентах */
  padding: 20px;
}

.container-footer {
  display: flex;
  flex-direction: column; /* Располагаем элементы в столбец */
}

.footer-menu-item {
  margin: 0 20px;
}

.item-footer {
  display: flex;
  align-items: center; /* Выравниваем элементы по вертикали */
  margin-bottom: 20px; /* Добавляем отступ между элементами */
}

.item-footer img {
  margin-right: 20px; /* Добавляем отступ справа от изображений */
}

/* Медиа-запрос для изменения отступов при уменьшении экрана до размера планшета */
@media screen and (max-width: 992px) {
  .footer-menu {
    margin-left: 10%; /* Уменьшаем левый отступ */
    margin-right: 10%; /* Уменьшаем правый отступ */
  }
  .footer-contacts {
    margin-left: 10%; /* Уменьшаем левый отступ */
    margin-right: 10%; /* Уменьшаем правый отступ */
  }
}

/* Медиа-запрос для изменения отступов при уменьшении экрана до размера мобильного устройства */
@media screen and (max-width: 576px) {
  .footer-menu {
    display: none;
    /* Скрываем блок на мобильных устройствах */
  }

  .footer-contacts {
    margin-left: 1%; /* Уменьшаем левый отступ */
    margin-right: 2%; /* Уменьшаем правый отступ */
  }
}
