/* Стили для вашей кастомной навигации */
    .header {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 999;
      transition: all 0.3s ease;
      background: none;
    }
    nav{
      background: none;
      position: fixed;
    }

    .nav {
      background-color: none;
      transition: background-color 0.3s ease;
      padding: 10px 0;
    }

    .scrolled .nav {
      background-color: #ffffff00;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      color: #ebe9e9;
      display: none;

    }
    .scrolled .nav .nav-link {
      color: #000;
    }
    .logo {
      width: 30%;
    }

    .nav-items {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 20px;
    }

    .nav-link {
      text-decoration: none;
      color: #ebe9e9;
      font-weight: 500;
    }

    .nav-link:hover {
      color: #7fcea9;
      text-decoration: underline;
    }

    .navbar-toggler {
      border: none;
      font-size: 1.5rem;
    }

    .nav-mobile-menu {
      display: none;
    }

    /* Адаптивность */
    @media (max-width: 768px) {
      .nav-navbar {
        display: none;
       
      }

      .nav-mobile-menu {
        display: flex;
   
      }
      .nav-logo{
         width: 80%;
      }

      .nav-items {
        flex-direction: column;
        gap: 10px;
        color: #000;
      }
      .nav-items li a {
        color: #000;
      }
      .mobile-menu-open .nav-navbar {
        display: flex;
        background-color: white;
        padding: 15px;
        width: 100%;
        color: #000;
      }
    }

    .hero-section {
  margin-top: 0px; /* Если у вас фиксированное меню */
}

.hero-section .carousel-item {
  height: 100vh;
  min-height: 400px;
  background-color: #000;
  color: white;
}

.hero-section .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 0.6;
}

.hero-section .carousel-caption {
  bottom: 10%;
  left: 9%;
}



.hero-section p {
  font-size: 1.2rem;
}

/**svipper styles */
.grayscale {
      filter: grayscale(100%);
      transition: filter 0.3s;
    }

    .grayscale:hover {
      filter: none;
    }

    .pe-6 {
      padding-right: 3.5rem !important;
    }
    .swiper-slide img {
      width: 75%;
      height: auto;
    }

    .footer {
      background-color: #1c1c1c;
      color: #ebe9e9;
      padding: 20px 0;
    }
    .whatcapp{
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      width: 100px;
      height: 100px;
    }