@font-face {
    font-family: 'Bebas Neue';
    src: url('fonts/ofont.ru_Bebas Neue_0.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Bold';
    src: url('fonts/DrukCyr-Medium.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
}
/* ������� ��������� � ������ ���� */
html, body {
    height: 100%;
    margin: 0;
    overflow: hidden; /* �������� ������ ��������� */
}

/* ��������� ��������� ����������� */
body {
    overflow: scroll; /* ��������� ����������� ������������ ���������� */
    
}
/* Прелоадер на весь экран */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
  }
  
  /* Когда загрузка завершена */
  #preloader.hide {
    opacity: 0;
    pointer-events: none;
  }
  
  /* Контейнер с точками */
  .dots2 {
    display: flex;
    gap: 10px;
  }
  
  /* Сами точки */
  .dots2 span {
    width: 25px;
    height: 25px;
    background-color: black;
    border-radius: 50%;
    animation: bounce 0.6s infinite ease-in-out;
  }
  
  /* Задержка прыжка для каждой точки */
  .dots2 span:nth-child(2) {
    animation-delay: 0.2s;
  }
  .dots2 span:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  /* Анимация прыжка */
  @keyframes bounce {
    0%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-20px);
    }
  }

/* ��� ������� ����� ��������� � ���������, ��� ��� �� ����� ������������ */
::-webkit-scrollbar {
    display: none;
}

.container {
    margin: 15px 44px;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0); /* ��� ����� ������� ���������� ��� �������������� */
}
.search-wrapper {
    position: fixed;
    top: 44px;
    right: 140px;
    width: 38px;
    height: 42px;
    transition: width 0.4s ease;
    z-index: 999;
}
    .search-wrapper:hover {
        width: 445px; 
    }
.search-box {
    width: 100%;
    height: 100%;
    background-color: rgba(185, 185, 185, 0.5);
    border-radius: 5px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: width 0.4s ease;
    position: relative;
   
}

    .search-box input {
        flex-grow: 1;
        border: none;
        outline: none;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 16px;
        font-family: 'Manrope', sans-serif;
        background-color: transparent;
        color: #434343;
        opacity: 0;
        transition: opacity 0.3s ease 0.1s;
    }
        .search-box input::placeholder {
            color: #434343;
            font-family: 'Manrope', sans-serif;
        }
    .search-box .icon {
        margin-left: 10px;
        flex-shrink: 0;
        color: black; /* �������������� ������ */
    }


/* �����: ����������� ����� */
.search-wrapper:hover {
    width: 445px;
}

    .search-wrapper:hover .search-box input {
        opacity: 1;
    }

body {
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Manrope', sans-serif;
    color: white;
     width: 100%;
    height: 100%;
}
.header-line {
    display: flex;
    justify-content: space-between;
    align-items: center; /* ��������� �� ��������� */
    gap: 40px;
}

.nav-menu {
    display: flex;
    gap: 52px;
    align-items: center;
    margin-left: -238px; /* ������� ������ �������� */
    margin-top: -5px; /* ��������� ����� */
}

    .nav-menu a {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 24px;
        color: white;
        position: relative;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.5px;
        font-weight: normal;
    }
        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px; /* ������� ���� ������ */
            width: 100%;
            height: 2px;
            background-color: white;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.2s ease;
        }

        .nav-menu a:hover::after {
            transform: scaleX(1); /* ���������� ��� ������ */
        }

.header-logo img {
    
    object-fit: contain;
}

.language-switcher {
    position: relative;
    display: flex;
    background-color: rgba(185, 185, 185, 0.5);
    border-radius: 5px;
    padding: 4px;
    gap: 2px;
    width: 70px;
    height: 40px;
    margin-top: -5px;
    margin-right: 5px;
    box-sizing: border-box;
    
}

.lang-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 30px;
    height: 32px;
    background-color: white;
    border-radius: 5px;
    transition: left 0.3s ease;
    z-index: 0;
}

.lang-button {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: black;
    background-color: transparent;
    border: none;
    padding: 3px;
    width: 33px;
    height: 24px;
    cursor: pointer;
    z-index: 1;
    position: relative;
}
.container {
    margin: 15px 44px;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0); /* ��� ����� ������� ���������� ��� �������������� */
}
.search-wrapper {
    position: fixed;
    top: 44px;
    right: 140px;
    width: 38px;
    height: 42px;
    transition: width 0.4s ease;
    z-index: 999;
}
    .search-wrapper:hover {
        width: 445px; 
    }
.search-box {
    width: 100%;
    height: 100%;
    background-color: rgba(185, 185, 185, 0.5);
    border-radius: 5px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: width 0.4s ease;
    position: relative;
   
}

    .search-box input {
        flex-grow: 1;
        border: none;
        outline: none;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 16px;
        font-family: 'Manrope', sans-serif;
        background-color: transparent;
        color: #434343;
        opacity: 0;
        transition: opacity 0.3s ease 0.1s;
    }
        .search-box input::placeholder {
            color: #434343;
            font-family: 'Manrope', sans-serif;
        }
    .search-box .icon {
        margin-left: 10px;
        flex-shrink: 0;
        color: black; /* �������������� ������ */
    }


/* �����: ����������� ����� */
.search-wrapper:hover {
    width: 445px;
}

    .search-wrapper:hover .search-box input {
        opacity: 1;
    }

body {
    margin: 0;
    padding: 0;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Manrope', sans-serif;
    color: white;
}
.header-line {
    display: flex;
    justify-content: space-between;
    align-items: center; /* ��������� �� ��������� */
    gap: 40px;
}

.nav-menu {
    display: flex;
    gap: 52px;
    align-items: center;
    margin-left: -238px; /* ������� ������ �������� */
    margin-top: -5px; /* ��������� ����� */
}

    .nav-menu a {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 24px;
        color: white;
        position: relative;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.5px;
        font-weight: normal;
    }
        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px; /* ������� ���� ������ */
            width: 100%;
            height: 2px;
            background-color: white;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.2s ease;
        }

        .nav-menu a:hover::after {
            transform: scaleX(1); /* ���������� ��� ������ */
        }

.header-logo img {
    
    object-fit: contain;
}

.language-switcher {
    position: relative;
    display: flex;
    background-color: rgba(185, 185, 185, 0.5);
    border-radius: 5px;
    padding: 4px;
    gap: 2px;
    width: 70px;
    height: 40px;
    margin-top: -5px;
    margin-right: 5px;
    box-sizing: border-box;
    
}

.lang-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 30px;
    height: 32px;
    background-color: white;
    border-radius: 5px;
    transition: left 0.3s ease;
    z-index: 0;
}

.lang-button {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: black;
    background-color: transparent;
    border: none;
    padding: 3px;
    width: 33px;
    height: 24px;
    cursor: pointer;
    z-index: 1;
    position: relative;
}
.slider {
    position: relative;
    width: 100%;
    height: 1026px;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1.5s cubic-bezier(0.10, 0, 0.10, 1); /* ������� ������ � ����� */
    height: 100%;
}
.Blogo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2; /* ������ ��� ������ �������� */
    margin-top:30px;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 3;
    
}

.dot {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 3;
    
}

.dot-active {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    
    top: 0;
    left: 0;
    z-index: 2;
    transition: transform 0.6s ease-in-out;
}


/*� ���*/
.about-us {
    position: relative;
    padding: 60px 40px 28px;
    background-color: #101010;
    color: #EAEAEA;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    margin-top: -18px;
}
.about-us-colum {
    display: flex; /* �������� flexbox */
    align-items: center; /* ����������� �������� �� ��������� */
    gap: 20px; /* ��������� ���������� ����� ���������� */
    max-height:1032px;
    position: relative; /* родитель должен быть позиционирован */
}

.main-onas {
    font-family: 'Bold', sans-serif;
    font-size: 400px;
    font-weight: normal;
    max-height: 507px; /* ������������ ������ ���������� */
    white-space: nowrap; /* ��������� ������� ������ */
    margin: -62px 0px -200px 2px;
}

.secondary-onas {
    position: absolute;
    font-family: 'Bold', sans-serif;
    font-size: 70px;
    font-weight: normal;
    max-height: 89px; /* ������������ ������ ���������� */
    white-space: nowrap; /* ��������� ������� ������ */
    margin: -275px -0px -200px 1650px;
    opacity: 0.1; /* ����� ����� �������������� */
}
.achievements {
    display: flex; /* �������� flexbox */
    align-items: center; /* ����������� �������� �� ��������� */
    gap: 20px;
    margin-top: 60px;
    margin-left:10px;
    gap:40px;
}
.achievement {
    display: flex; /* �������� flexbox */
    align-items: center; /* ����������� �������� �� ��������� */
    gap: 18px;
    
}
    .achievement h1 {
        font-family: 'Bold', sans-serif;
        font-size: 158px;
        font-weight: normal;
    }
    .achievement p {
        font-family: 'Manrope', sans-serif;
        font-size: 29px;
        margin-top: 42px;
        line-height: 1.4;
        letter-spacing: 1px; /* ����������� ���������� ����� ������� */
    }
.stick {
    margin-left: 0px;
    margin-top: 30px;
}
.foto-onas {
    margin-left: 12px;
    margin-top: -100px;
}
.info-onas {
    white-space: nowrap;
    
}
.string-info {
    font-family: 'Manrope', sans-serif;
    font-size: 29px;
    margin-top: 42px;
    line-height: 0.4;
    letter-spacing: 0px;
    margin-bottom: 60px;
    margin-left:12px;
}
/* Делаем абзацы блочными и добавляем отступы */
.string-info p[data-lang] {
    display: block !important; /* Принудительно блочный */
    margin-bottom: 1em !important; /* Отступ между абзацами */
    white-space: normal !important; /* Разрешаем переносы */
}
.Artist {
    background-color: #EAEAEA;
    color: black;
    padding: 60px 0px 20px; /* ���� ������ �����, ��� � ����� */

    border-top: none; /* ������� ������ ����� */
    margin-top: -18px;
}
.art_2 {
    display: flex; /* �������� flexbox */
    align-items: center; /* ����������� �������� �� ��������� */
    gap: 720px; /* ��������� ���������� ����� ���������� */
    min-height: 250px;
    position: relative; /* родитель должен быть позиционирован */
}
    .art_2 h1 {
        font-family: 'Bold', sans-serif;
        font-size: 400px;
        font-weight: normal;
        max-height: 507px; 
        white-space: nowrap; 
        margin: -40px 0px -200px 50px;
    }
    .art_2 p {
        position: absolute;
        font-family: 'Bold', sans-serif;
        font-size: 70px;
        font-weight: normal;
        max-height: 89px; 
        white-space: nowrap; 
        margin-top: 18px;
        opacity: 0.2; 
        margin-left: 1700px;
    }

.search-container2 {
    position: relative;
    margin-top: 190px;
    margin-right: 1500px;
    display: flex;
    justify-content: center;
}

/* ������ ������ */
.search-wrapper2 {
    position: absolute;
    width: 580px; /* ��������� ������ */
    height: 40px;
    z-index: 999;
    left: 50px; /* ����� ����� ��������� �������������� */
}


/* ���� � ����� ����� */
.search-box2 {
    width: 100%;
    height: 100%;
    background-color: rgba(185, 185, 185, 0.9); /* ��� � ����������������� */
    border-radius: 5px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    
}


    /* ���� ����� */
    .search-box2 input {
        flex-grow: 1;
        border: none;
        outline: none;
        padding-left: 10px;
        padding-right: -20px;
        font-size: 16px;
        font-family: 'Manrope', sans-serif;
        background-color: transparent;
        color: #434343;
        opacity: 1;
        
    }



/* ������ ������ */
.search-box2 .icon2 {
    margin-left: 10px;
    flex-shrink: 0;
    color: black; /* ���� ������ */
}

.genre-container {
    background-color: #EAEAEA; /* ������ ��� */
    padding-left: 20px;
    padding-right: 20px;
    color: white; /* ����� ���� ������ */
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 1780px; /* ���������� ������������ ������, �������� 1200px */
    min-height: 275px;
    max-height: 275px;
    margin-top: -70px;
    margin-left: 1260px;
    border-top-left-radius: 6px; /* ������������ ����*/
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    overflow: hidden;
    margin-bottom: -200px;
}
.dropdown-container {
      width: 100%;
      max-width: 580px;
      margin: 40px auto 0;
      position: relative;
      margin-top: 0px;
    }
.genre-btn {
      width: 100%;
      max-width: 580px;
      height: 40px;
      background: rgba(185, 185, 185, 0.9);
      border: none;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 28px;
      font-size: 16px;
      color: #111;
      font-family: 'Manrope', sans-serif;
      cursor: pointer;
      box-sizing: border-box;
      outline: none;
      transition: background 0.15s;
    }
    .genre-btn:active, .genre-btn:focus {
      background: #bbbbbb;
    }
 .arrow-img.open {
      transform: rotate(180deg);
    }

    /* Выпадающий список */
    .dropdown-list {
      background: rgba(185, 185, 185, 0.9);
      border-radius: 5px;
      max-height: 0;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
      padding: 0;
      margin: 0;
      position: absolute;
      width: 100%;
      left: 0;
      top: 60px;
      z-index: 105;
      opacity: 0;
      pointer-events: none;
    }
    .dropdown-list.open {
      max-height: 1500px;
      opacity: 1;
      pointer-events: auto;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.50s;
    }
    .dropdown-list li {
      list-style: none;
      padding: 15px 28px;
      font-size: 16px;
      color: #181818;
      cursor: pointer;
      border-bottom: 1px solid #bbbbbb;
      transition: background 0.2s, color 0.2s;
    }
    .dropdown-list li:last-child {
      border-bottom: none;
    }
    .dropdown-list li:hover {
      background: #ff9800;
      color: #181818;
    }   

.genres {
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: 0;
      padding: 0;
      margin: 0;
    }
    .genre {
      background: none;
      border: none;
      width: 100%;
      padding: 17px 28px;
      font-size: 16px;
      color: #181818;
      cursor: pointer;
      text-align: left;
      transition: background 0.2s, color 0.2s;
      border-bottom: 1px solid #bbbbbb;
      display: flex;
      gap: 15px;
      align-items: center;
    }
    
    .genre:last-child {
      border-bottom: none;
    }
    .genre:hover {
      background: white;
      color: black;
      outline: none;
    }
    .genre.active {
    background: #fff;         /* Белый фон */
    color: #222;   
    }
    .genre div[data-lang="en"] {
      font-size: 15px;
      color: black;
      margin-left: 15px;
    }
    .genre:hover div[data-lang="en"], .genre:focus div[data-lang="en"] {
      color: black;
    }
.filter-buttons {
    position: relative;
    display: flex;
    background-color: rgba(185, 185, 185, 0.9);
    border-radius: 5px;
    padding: 4px;
    gap: 2px;
    width: 580px;
    height: 40px;
    box-sizing: border-box;
    margin-top: 30px;
    margin-left: 12px;
    margin-bottom: 10px;
}

.filter-slider {
    width: 286px; /* ������ �������� */
    height: 32px;
    position: absolute;
    top: 4px;
    left: 3px;
    background-color: white;
    border-radius: 5px;
    transition: left 0.5s ease; /* ������� �������� */
    z-index: 0;
    
}

.button {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: black;
    background-color: transparent;
    border: none;
    padding: 0px;
    width: 193px;
    height: 42px;
    cursor: pointer;
    z-index: 1;
    position: relative;
    margin-right: 30px;
    margin-left: 50px;
    margin-top:-3px;
}

    .button.active {
        color: black; /* ���� �������� ������ */
    }
    
.letter-block {
    display: block; /* По умолчанию показываем */
}
.abc0{
    margin-left:50px;
    margin-top:42px;
    display: block; /* Иконки букв */
}
.abc {
    margin-left: 50px;
    margin-bottom: 5px;
    display: block; /* Иконки букв */
}
.artist-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 �������� � ������ */
    padding: 20px;
    gap: 0px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: -15px;
}

.artist-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    max-width: 360px;
    min-width: 360px;
    max-height: 360px;
    min-height: 360px;
    margin-bottom: 5px;
    
    
}

    .artist-card img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }
    /* ������� ���������� ����� */
    .artist-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
        border-radius: 10px;
        z-index: 1;
        
    }
    .artist-card:hover img {
        transform: scale(1.1);
    }

.artist-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 10px;
    font-size: 64px;
    font-family: 'Bold', sans-serif;
    text-align: left;
    margin-bottom: 10px;
    margin-left:18px;
    z-index: 2;
    word-wrap: break-word; /* позволяет тексту переноситься */
    white-space: normal;  /* позволяет перенос строки */
    max-width: 100%; /* Ограничивает ширину */
    box-sizing: border-box; /* Учитывает padding в ширине */
    
}
.hiden {
    display: none; /* �������� ��� ����� �� ��������� */
}
.load-more-btn {
    background-color: #2B2B2B;
    color: #EAEAEA;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    width: 285px;
    height: 69px;
    text-align: center;
    font-size: 19px;
    font-family: 'Manrope', sans-serif;
    margin-left: 1582px;
    margin-bottom: 150px;
    transition: background-color 0.8s ease; /* ������� ��������� ����� ������ */
}


    .load-more-btn:hover {
        background-color: #B9B9B9;
        color: #2B2B2B;
    }
.hide-btn {
    
    background-color: #2B2B2B;
    color: #EAEAEA;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    width: 285px;
    height: 69px;
    text-align: center;
    font-size: 19px;
    font-family: 'Manrope', sans-serif;
    margin-left: 1582px;
    margin-bottom: 150px;
    transition: background-color 0.8s ease; /* ������� ��������� ����� ������ */
}


    .hide-btn:hover {
        background-color: #B9B9B9;
        color: #2B2B2B;
    }
.hide-btn2{
    text-decoration: none;      /* убрать подчёркивание */
    color: inherit; 
}
.team {
    overflow: hidden;
    position: relative;
    background-color: #101010;
    color: #EAEAEA;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: -18px;
    padding-top: 150px; /* ��������� ������ ������ */
    padding-bottom: 72px; /* ��������� ������ ����� */
}
.main-team {
    font-family: 'Bold', sans-serif;
    font-size: 400px;
    font-weight: normal;
    max-height: 507px; /* ������������ ������ ���������� */
    white-space: nowrap; /* ��������� ������� ������ */
    margin-top: -150px;
    margin-left: 43px;
}
.secondary-team {
    font-family: 'Bold', sans-serif;
    font-size: 70px;
    font-weight: normal;
    max-height: 89px; /* ������������ ������ ���������� */
    white-space: nowrap; /* ��������� ������� ������ */
    opacity: 0.1; /* ����� ����� �������������� */
    margin-top: -810px;
    margin-bottom:0px;
    margin-left: 1775px;
    margin-right:0px;
}
.team-info {
    display: flex;
    justify-content: space-between; /* ��������� �������� �� ����� */
    margin-top: 350px;
    margin-bottom: -200px;
    
}
.left-text,
.right-text {
    width: 880px; /* ������ ������ ������� ����� */
    font-size: 29px;
    color: white;
    line-height: 1.5;
    font-family: 'Manrope', sans-serif;
}
/* ���� �� ������ ��������� ������ ����� ����, ����� ������������ ������������� ������� */
.left-text {
    margin-left: 50px; /* ������������� ������ ������ ��� ���������� ���������� */
}

.right-text {
    margin-right: 55px; /* ������������� ����� ������ ��� ���������� ���������� */
}
/*���� �������*/
.image-container {
    display: flex;
    gap: 37px;
    justify-content: center;
   
}

/* ������ ���� � ��������� */
.image-wrapper {
    position: relative;
    overflow: hidden; /* ����� ����������� �� �������� �� ������� ���������� */
    border-radius: 10px; /* ��������� ������ ��� ����� */
}

/* ��������� ��������� �������� */
.color-image1, .color-image2 {
    width: 392px;
    height: 444px;
    object-fit: cover; /* ������������ �������� ���������� */
    filter: grayscale(100%); /* �����-����� ����������� */
    transition: all 0.5s ease; /* ������� ��������� */
}

/* ��������� �������� �������� ��� ��������� */
.image-wrapper.active .color-image1,
.image-wrapper.active .color-image2 {
    width: 534px;
    height: 444px;
    filter: none; /* ������� ������ grayscale */
    
}
.Partners {
    overflow: hidden;
    background-color: #EAEAEA;
    color: black;
    margin-top: -18px;
    padding-top: 150px; /* ��������� ������ ������ */
    min-height: 750px;
    padding-bottom: 20px; /* ��������� ������ ����� */
    
}

/*��������*/
.main-part {

    font-family: 'Bold', sans-serif;
    font-size: 290px;
    font-weight: normal;
    max-height: 317px; /* ������������ ������ ���������� */
    white-space: nowrap; /* ��������� ������� ������ */
    margin-top: 0px;
    margin-left: 45px;
}

.secondary-part {
    font-family: 'Bold', sans-serif;
    font-size: 70px;
    font-weight: normal;
    max-height: 89px; /* ������������ ������ ���������� */
    white-space: nowrap; /* ��������� ������� ������ */
    opacity: 0.2; /* ����� ����� �������������� */
    margin-top: -538px;
    margin-bottom: 0px;
    margin-left: 1690px;
    margin-right: 0px;
}
.image-container {
    width: 100%;
    overflow: hidden; /* �������� ���, ��� ������� �� ������� ���������� */
    position: relative;
    margin-top: 230px;
    margin-bottom: -20px;
}

.scrolling-images {
    display: flex;
    width: max-content;
    animation: scroll-left 5s linear infinite;
}

.scrolling-image {
    width: 100%; /* ������ ����������� �������� 25% ������ ���������� */
    height: 170px; /* ������������� ������ ������ �������� */
    object-fit: contain; /* ����������� �� ����� ���������� */ /* ������������, ��� ����������� ��������� ��������� */
}

/* �������� ��� ���������� �������� ����������� */
@keyframes scroll-left {
    0% {
        transform: translateX(0%); /* �������� � ������ */
    }

    100% {
        transform: translateX(-100%); /* ���������� ��� ����������� �� 100% */
    }
}



/* �������� ����������� */
.image-container .scrolling-images:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(path/to/your/image.png); /* �������� ������� ���������� ���� */
}


.contacts {
    overflow: hidden;
    position: relative;
    background-color: #101010;
    color: #EAEAEA;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: -18px;
    padding-top: 150px; /* ��������� ������ ������ */
    padding-bottom: 72px; /* ��������� ������ ����� */
    
}
.contacts-colum {
    display: flex; /* �������� flexbox */
    align-items: center; /* ����������� �������� �� ��������� */
    gap: 20px; /* ��������� ���������� ����� ���������� */
    min-height: 421px;
    max-height: 421px;
    margin-bottom:-220px;
    position: relative;
}

.main-con {
    font-family: 'Bold', sans-serif;
    font-size: 260px;
    font-weight: normal;
    max-height: 507px; /* ������������ ������ ���������� */
    white-space: nowrap; /* ��������� ������� ������ */
    margin-top: -50px;
    margin-left: 42px;
}

.secondary-con {
    position: absolute;
    font-family: 'Bold', sans-serif;
    font-size: 70px;
    font-weight: normal;
    max-height: 89px; /* ������������ ������ ���������� */
    white-space: nowrap; /* ��������� ������� ������ */
    margin-top: -368px;
    margin-left:1650px;
    opacity: 0.12; /* ����� ����� �������������� */
}
.contacts-colum2 {
    display: flex; /* �������� flexbox */
    align-items: center; /* ����������� �������� �� ��������� */
    gap: 75px; /* ��������� ���������� ����� ���������� */
    min-height: 781px;
    max-height: 781px;
}
.form-container {
    width: 580px;
    margin-left:51px;
    margin-top:0px;
}

form {
    display: flex;
    flex-direction: column;
}

.input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

form input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(185, 185, 185, 1);
    padding: 10px 0;
    width: 100%;
    color: rgba(185, 185, 185, 1);
    margin-bottom: 18px;
    font-size: 24px;
    outline: none;
    font-family: Manrope, sans-serif;
}

   

    /* ����� ������� � ������, ������� ������� � ��� */
    form input:focus {
        color: rgba(185, 185, 185, 1);
        outline: none;
        background-color: transparent;
    }

    /* ����� ��� placeholder */
    form input::placeholder {
        
        color: rgba(234, 234, 234, 1);
        font-size: 24px;
        font-family: Manrope, sans-serif;
    }

.colum-bt {
    display: flex; /* �������� flexbox */
    align-items: center; /* ����������� �������� �� ��������� */
    gap:43px;
    width:614px;
    
}
    .colum-bt p {
        font-size: 14px; /* ������ ������ */
        font-family: Manrope, sans-serif;
    }

.submit-btn {
    background-color: #2B2B2B;
    color: rgba(234, 234, 234, 1);
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 285px;
    height: 69px;
    text-align: center;
    font-size: 19px;
    font-family: 'Manrope', sans-serif;
    transition: background-color 0.8s ease; /* ������� ��������� ����� ������ */
}

    .submit-btn:hover {
        background-color: rgba(234, 234, 234, 1);
        color: #2B2B2B;
    }


.background-image-container {
    background-image: url('sv.png'); /* ��������� ���� � ����������� */
    background-size: cover; /* ����������� ��������� ��������� ��������� */
    background-position: center; /* ���������� ����������� */
    background-repeat: no-repeat; /* ��������� ���������� ����������� */
    height: 992px; /* ������ ���������� � 100% �� ������ ���� */
    display: flex;
    justify-content: center; /* ������������ ����� �� ������ */
    align-items: center; /* ������������ ������������ ����� */
    margin-top:-18px;
    margin-bottom:-18px;
}
.sv-container {
    background-color: #EAEAEA;
    color: black;
    max-height:631px;
    min-height:631px;
    max-width:1199px;
    min-width:1199px;
    font-family: 'Manrope', sans-serif;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    border-top: none; /* ������� ������ ����� */
    
}
.sv-text {
    display: flex; /* �������� flexbox */
    align-items: center; /* ����������� �������� �� ��������� */
    gap: 430px; /* ��������� ���������� ����� ���������� */
    min-width: 973px;
    max-width: 973px;
    min-height: 190px;
    max-height: 190px;
    display: flex; /* �������� flexbox */
    align-items: center; /* ����������� �������� �� ��������� */
    margin-left:112px;
    margin-right:114px;
    margin-top:59px;
    position: relative;
}

.main-mailing {
    font-family: 'Bold', sans-serif;
    font-size: 150px;
    font-weight: normal;
    white-space: nowrap; /* ��������� ������� ������ */
   
}

.secondary-mailing {
    font-family: 'Bold', sans-serif;
    font-size: 60px;
    font-weight: normal;
    white-space: nowrap; /* ��������� ������� ������ */
    opacity: 0.2; /* ����� ����� �������������� */
    margin-top: -2px;
    position: absolute;
    margin-left: 900px;
}
.sv-info {
    display: flex; /* �������� flexbox */
    align-items: center; /* ����������� �������� �� ��������� */
    gap: 60px; /* ��������� ���������� ����� ���������� */
    min-width: 973px;
    max-width: 973px;
    margin-left: 112px;
    margin-right: 114px;
    margin-top:-30px;
}
.sv-sub{
    margin-top:-100px;
}
    .sv-sub p {
        font-family: 'Manrope', sans-serif;
        font-size: 29px;
        color: rgba(16, 16, 16, 1);
    }
.sv-forms {
    min-width: 505px;
    max-width: 505px;
    margin-top: 30px;
}
    .sv-forms p {
        margin-top:-25px;
        font-family: 'Manrope', sans-serif;
        font-size: 14px;
        color: rgba(16, 16, 16, 1);
    }
.input-wrapper2 {
    position: relative;
    margin-bottom: 10px;
}

.sv-forms form input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(16, 16, 16, 1);
    padding: 10px 0;
    width: 100%;
    color: rgba(16, 16, 16, 1);
    margin-bottom: 18px;
    font-size: 24px;
    outline: none;
    font-family: Manrope, sans-serif;
}



    /* ����� ������� � ������, ������� ������� � ��� */
    .sv-forms form input:focus {
        color: rgba(16, 16, 16, 1);
        outline: none;
        background-color: transparent;
    }

    /* ����� ��� placeholder */
    .sv-forms form input::placeholder {
        color: rgba(16, 16, 16, 1);
        font-size: 24px;
        font-family: Manrope, sans-serif;
    }
.submit-btn2 {
    background-color: #2B2B2B;
    color: rgba(234, 234, 234, 1);
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 285px;
    height: 69px;
    text-align: center;
    font-size: 19px;
    font-family: 'Manrope', sans-serif;
    transition: background-color 0.8s ease; /* ������� ��������� ����� ������ */
}
    .submit-btn2:hover {
        background-color: rgba(185, 185, 185, 1);
        color: #2B2B2B;
    }
    /* ������ */
    .footer {
    background-color: #EAEAEA;
    color: black;
    padding: 60px 0px 20px; /* ���� ������ �����, ��� � ����� */
    font-family: 'Manrope', sans-serif;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    border-top: none; /* ������� ������ ����� */
}

/* ��������� ������� */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    padding:8px 200px 0px 0px; /* ����������� ������� ������� */
    gap: 200px; /* ����������� ���������� ����� ��������� */
}

/* ������� */
.footer-column {
    flex: 1;
    min-width: 150px;
    
}

/* ������� */
.logo-column {
    flex: 3;
    max-width: 500px;
    margin-left: 0;
}

.footer-logo {
    font-size: 150px;
    font-family: 'Bold', sans-serif;
    margin: 0;
    white-space: nowrap;
    font-weight: normal;
    margin-top: -20px; /* ��������� ����� */
    margin-left: -5px; /* �������� ����� */
}

.footer-subtitle {
    color: #bbb;
    font-size: 80px;
    font-weight: normal;
    margin-top: 10px;
    font-family: 'Bold', sans-serif;
    line-height: 1.1;
    margin-top: -25px;
    white-space: nowrap;
    margin-left: -5px; /* �������� ����� */
}
.info {
    text-decoration: none;
    color: black;
    font-size: 21px;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
    margin-top: -12px;
    margin-left: 180px;
}
/* ������ */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 8px;
    margin-left: 320px;
    white-space: nowrap;
}


    .footer-links li {
        margin-bottom: 20px;
    }

    .footer-links a {
        text-decoration:none;
        color: black;
        font-size: 21px;
        font-family: 'Manrope', sans-serif;
    }

/* ���. ������ */
.social-icons {
    display: flex;
    gap: 20px;
    margin-left: 180px;
    margin-top: 20px;
}

    .social-icons img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.adres {
    text-decoration: none;
    color: black;
    font-size: 21px;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
    margin-top: -18px;
    margin-left: 44px;
}
    .adres p {
        margin-bottom: 40px;
    }
/* ������ ����� */
.footer-bottom {
    font-size: 19px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 100px;
    max-width: 1715px;
    padding-left: 100px;
    padding-right: 100px;
    border-top: none; /* ������� ����� */
    margin-top: 2px;
    margin-left: -50px;
    padding-bottom: 38px; /* ����������� ������ ����� */
}

.footer-bottom-left,
.footer-bottom-right {
    
    display: flex;
    flex-direction: column;
    gap: 0px;
}

    .footer-bottom-right a {
        text-decoration: none;
        color: black;
        margin-right: 28px;
        margin-bottom: 10px;
        font-weight: 500;
    }
    .footer-bottom-left span {
        text-decoration: none;
        color: black;
        margin-right: 10px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    /* Скрываем все языковые элементы по умолчанию */
[data-lang] {
    display: none;
  }
  
  /* Показываем только русскую версию при загрузке */
  [data-lang="ru"] {
    display: inline-block; /* Для ссылок используем inline-block */
  }