@import url('https://fonts.googleapis.com/css2?family=Onest:wght@700&display=swap');

/* Общие стили */
body {
  font-family: 'Onest', sans-serif;
  margin: 0;
  padding: 0;
  /* background-color: #EFEBE2; */
}

.animate {
    opacity: 0;
    transform: translateY(50px); /* Начальное положение */
    transition: all 0.8s ease-in-out;
  }

  .animate.from-left {
  transform: translateX(-100px); /* Слева */
}

.animate.from-right {
  transform: translateX(100px); /* Справа */
}

.animate.show {
  opacity: 1;
  transform: translate(0, 0);
}
.navbar {
  height: 102px; /* Высота навбара */
  border-bottom: 1px solid #ccc; /* Линия снизу */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff; /* Цвет фона навбара */
  transition: top 0.4s ease-in-out;
  z-index: 1000;
}

.nav-link {
  font-weight: 700; /* Жирный шрифт */
  font-size: 16px; /* Размер шрифта */
  color: #000 !important; /* Цвет текста */
  margin: 0 10px; /* Отступы между ссылками */
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline; /* Подчёркивание при наведении */
}

/* Гамбургер-меню */
.navbar-toggler {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  width: 36px; /* Размер кнопки */
  height: 36px; /* Размер кнопки */
}

.navbar-toggler-icon {
  width: 36px;
  height: 36px;
  background-size: contain;
}

/* Левая часть */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 20px; /* Расстояние между элементами */
}

/* Центрирование логотипа */
.navbar-center {
  flex: 0 0 340px; /* Фиксированная ширина логотипа */
  display: flex;
  justify-content: center;
}

.navbar-center img {
  width: 340px;
  height: 60px;
}

/* Правая часть */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 20px; /* Отступы между элементами */
}

/* Кнопка выбора языка */
.language-selector {
    position: relative;
  }
  
  .lang-menu {
    position: absolute;
    top: 100%; /* Под кнопкой */
    right: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    min-width: 80px;
  }
  
  .lang-menu button {
    background: none;
    border: none;
    padding: 8px 12px;
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
  }
  
  .lang-menu button:hover {
    background-color: #f8f9fa;
  }
  
/* Главная секция */
.main-banner {
    height: 85vh;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .main-banner img {
    object-fit: cover; /* Заполняет контейнер */
    object-position: center top; /* Смещаем центр вниз */
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; /* Устанавливаем изображение на задний план */
  }
  
  
  /* Текст на баннере */
  .banner-text {
    font-size: 48px;
    font-weight: 600;
    color: #fff !important; /* Принудительно белый текст */
    text-shadow: 4px 4px 5px rgba(0,0,0,0.9);
    text-align: right;
    z-index: 100; /* Поверх всего */
    position: relative; /* Активация z-index */
  }
  
  /* Раздел клиентов */
  .our-customers {
    background-color: #EFEBE2; /* Бежевый цвет фона */
    padding-top: 50px; /* Отступ сверху */
    padding-bottom: 50px; /* Отступ снизу */
  }
  
  .section-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
  }
  
  .section-title::before,
  .section-title::after {
    content: '';
    display: block;
    width: 40%;
    height: 1px;
    background: #000;
    position: absolute;
    top: 50%;
  }
  
  .section-title::before {
    left: 0;
  }
  
  .section-title::after {
    right: 0;
  }

  .swiper-button-next,
.swiper-button-prev {
  color: #4A4A4A; /* Тёмно-серый цвет */
  font-weight: bold;
  width: 50px; /* Увеличенная ширина */
  height: 50px; /* Увеличенная высота */
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 28px; /* Размер стрелок */
  font-weight: 700; /* Толщина стрелок */
  color: #4A4A4A; /* Тёмно-серый цвет */
}
  
  /* Настройка логотипов */
  .swiper-slide img {
    max-height:75px;
    width: auto;
    margin: 0 auto;
  }
  

  /* Раздел "We'll make you famous" */
.make-famous {
    background: #EFEBE2; /* Прозрачный фон */
  }
  
  .section-title {
    font-family: 'Onest', sans-serif; /* Единый шрифт для заголовков */
    font-weight: 700; /* Жирный текст */
    font-size: 40px; /* Размер шрифта */
    color: #000; /* Чёрный цвет */
    text-transform: uppercase; /* Заглавные буквы */
    text-align: center;
    position: relative; /* Для добавления линий */
    margin-bottom: 30px; /* Отступ снизу */
  }
  
  .section-text {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.8;
    color: #000;
  }

  .section-title::before,
  .section-title::after {
    content: '';
    position: absolute;
    top: 50%; /* Центрируем по вертикали */
    width: 30%; /* Длина линий */
    height: 1px;
    background: #000; /* Чёрный цвет линий */
  }
  
  .section-title::before {
    left: 0; /* Линия слева */
    transform: translate(-10%, -50%); /* Смещение на 10% от контейнера */
  }
  
  .section-title::after {
    right: 0; /* Линия справа */
    transform: translate(10%, -50%); /* Смещение на 10% от контейнера */
  }

  .section-title span {
    background: #EFEBE2; /* Цвет фона заголовка для перекрытия линий */
    padding: 0 15px; /* Отступы вокруг текста */
    position: relative;
    z-index: 1; /* Поднимаем текст выше линий */
  }

  
  .text-muted {
    font-size: 16px;
    line-height: 1.8;
  }
  
  /* Кнопка Contact Us */
.btn-contact {
    background-color: #000; /* Чёрный фон */
    color: #fff; /* Белый текст */
    font-weight: 600; /* Жирный шрифт */
    font-size: 18px; /* Размер шрифта */
    padding: 10px 30px; /* Отступы */
    border: none;
    border-radius: 50px; /* Закруглённые края */
    text-decoration: none; /* Убираем подчёркивание */
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s, color 0.3s; /* Плавный переход */
  }
  
  .btn-contact:hover {
    background-color: #28a745; /* Зелёный фон при наведении */
    color: #fff; /* Белый текст */
    cursor: pointer;
  }
  
/* Общий фон */

.contact-header {
    background-image: url('/images/contact-header.jpg'); /* Фоновое изображение */
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 40vh;
    margin-top: 80px;
  }

.contact-details {
    background-color: #EFEBE2;
  }
  
  .contact-details h5, .contact-details p {
    font-size: 25px;
    color: #000;
  }
  
  .contact-details a {
    color: #000;
    text-decoration: none;
  }
  
  .contact-details a:hover {
    text-decoration: underline;
  }
  
  .contact-form {
    background-color: #EFEBE2; /* Цвет фона */
  }
  
  .contact-form-title {
    font-size: 35px;
    font-weight: 700;
    color: #000;
    text-align: center;
    position: relative;
    display: inline-block;
  }
  
  .line-left,
  .line-right {
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #000;
  }
  
  /* .line-left {
    left: 5%;
  } */
  
  .line-right {
    right: 0%;
  }
  
  /* Поля формы */
  .form-input {
    background-color: #EAE5DA; /* Цвет бэка */
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    color: #6D6D6D; /* Цвет текста */
    font-size: 20px;
    margin-bottom: 20px; /* Отступ между полями */
    box-shadow: none;
  }
  
  .form-input:focus {
    outline: none;
    border: 1px solid #B5B5B5; /* Лёгкий фокус */
  }
  
  /* Кнопка формы */
  .btn-send {
    background-color: #A9A9A9; /* Серый фон кнопки */
    color: #fff; /* Белый текст */
    font-weight: 600;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
  }
  
  .btn-send:hover {
    background-color: #8F8F8F; /* Темнее при наведении */
  }
  

/* Footer */
.footer {
    background-color: #fff; /* Белый фон */
    color: #000; /* Чёрный текст */
    height: 285px; /* Фиксированная высота футера */
    display: flex;
    align-items: center;
  }
  
  .footer-logo {
    width: 340px; /* Ширина логотипа */
    height: auto;
  }
  
  .footer-title {
    font-weight: 700; /* Жирный шрифт */
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .footer-text,
  .footer-link-address {
    font-size: 16px;
    color: #6c757d; /* Серый цвет для адреса */
    text-decoration: none;
    line-height: 1.5;
  }
  
  .footer-link-address:hover {
    color: #000; /* Подсветка при наведении */
  }
  
  .footer-email a,
  .footer-phone a {
    color: #000; /* Чёрный цвет ссылок */
    font-weight: 600;
    text-decoration: none;
  }
  
  .footer-email a:hover,
  .footer-phone a:hover {
    text-decoration: underline;
  }
  
  .footer-nav li {
    margin-bottom: 10px; /* Отступ между пунктами меню */
  }
  
  .footer-link {
    color: #000; /* Чёрный цвет ссылок */
    font-weight: 600;
    text-decoration: none;
  }
  
  .footer-link:hover {
    text-decoration: underline; /* Подчёркивание при наведении */
  }
  
  .footer-rights {
    font-size: 14px;
    color: #6c757d; /* Серый цвет текста */
  }
  
/* Секция NEWS */
.news-section {
    background-color: #EFEBE2; /* Бежевый фон */
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  /* Заголовок секции NEWS */
  .section-title {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
  }

  
/* Секция NEWS */
.news-section {
    background-color: #EFEBE2;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 60px;
  }
  
  /* Заголовок секции NEWS */
  .section-title-news {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
  }
  
  .news-line { /* Уникальный класс для линии NEWS */
    width: 100%; /* Ширина линии в пределах контейнера */
    height: 1px;
    background-color: #000;
    margin: 0 auto 40px auto; /* Центрируем линию и добавляем отступ */
  }
  
  /* Новостной блок */
  .news-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  
  /* Левая часть: блок даты и изображения */
  .news-image-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
  }
  
  .news-date {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Onest', sans-serif;
    color: #000;
    margin-bottom: 15px; /* Отступ от даты до картинки */
  }
  
  .news-image {
    width: 450px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* Правая часть: текстовый контент */
  .news-content {
    width: 50%;
    text-align: center;
  }
  
  .news-heading {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
  }
  
  .news-divider { /* Линия под заголовком */
    width: 50%;
    height: 1px;
    background-color: #000;
    margin: auto;
    margin-bottom: 30px;
  }
  
  .news-description {
    max-width: 60%;
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin: auto;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* Кнопка "Contact Us" */
  .btn-news {
    display: inline-block;
    background-color: #211D1D;
    color: #4AFD56;
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
  }
  
  .btn-news:hover {
    background-color: #333;
  }

  /* About Section */
.about-section {
    background-color: #EFEBE2; /* Бежевый фон */
    padding: 60px 0;
    margin-top: 60px;
  }
  
  .section-title-about {
    font-family: 'Onest', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .section-subtitle-about {
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .about-line {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin: 0 auto 40px auto; /* Центрируем линию и отступ вниз */
  }
  
  .about-text {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    text-align: justify;
  }
  
  img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px; /* Скругление краев */
  }
  .img-fluidX{
    height: 60vh;
  }

  /* Under Construction Section */
.under-construction {
    background-color: #EFEBE2; /* Бежевый фон */
    padding: 100px 0;
  }
  
  .section-title {
    font-family: 'Onest', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .construction-text {
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #555;
    text-align: center;
  }
  
  .construction-image img {
    max-width: 300px; /* Ограничение размера изображения */
    margin: 0 auto;
    display: block;
  }
  
  
                         

/* Адаптация для гамбургера на маленьких экранах */
@media (max-width: 992px) {
  .navbar-left, .navbar-right {
    display: none; /* Скрываем левую и правую части на малых экранах */
  }

  .navbar-toggler {
    display: block; /* Показываем гамбургер */
  }

  .navbar-center img {
    width: 280px; /* Уменьшаем логотип */
    height: 50px;
  }
}

@media (max-width: 768px) {
  .navbar-center img {
    width: 200px; /* Ещё меньше логотип на мобильных устройствах */
    height: 40px;
  }
}

@media (max-width: 992px) {
  .navbar-left, .navbar-right {
    display: none; /* Скрываем левую и правую части */
  }

  .navbar-toggler {
    display: flex; /* Показываем гамбургер */
    justify-content: center;
    align-items: center;
  }

  .collapse {
    background-color: #fff; /* Фон раскрывающегося меню */
    border-top: 1px solid #ddd; /* Линия сверху */
    padding: 20px; /* Отступы внутри меню */
  }

  .collapse .navbar-nav {
    display: flex;
    flex-direction: column; /* Строим ссылки в столбик */
    gap: 15px; /* Расстояние между ссылками */
  }

  .collapse .nav-link {
    font-size: 18px;
    text-align: left; /* Выравнивание текста */
    padding: 10px 0; /* Отступы вокруг текста */
  }

  .navbar-center img {
    width: 280px; /* Уменьшаем логотип */
    height: 50px;
  }
}

@media (max-width: 768px) {
  .navbar-center img {
    width: 200px; /* Ещё меньше логотип на мобильных устройствах */
    height: 40px;
  }
}


