@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;
}
/* Мобильные стили */
  @media (max-width: 768px) {
    .desktop-only { display: none !important; }
  }
  
  /* Десктопные стили */
  @media (min-width: 769px) {
    .mobile-only { display: none !important; }
  }
/* ������� ��������� � ������ ���� */
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-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Manrope', sans-serif;
    color: black;
}
.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: black;
        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: black;
            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;
}


.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;
}
.card{
    position: relative;
    padding: 60px 40px 28px;
    background-color: #EAEAEA;
    color: #101010;
    overflow: hidden;
    
    
}
.card-con{
    margin-left: 10px;
}

.main{
    display: flex; 
    align-items:center; 
    gap: 10px; 
    font-family: 'Manrope', sans-serif;
    font-size: 19px;
    margin-top: 70px;
    margin-bottom: 25px;
    margin-left: 5px;
    
}

.pr{   
     color: rgba(185, 185, 185, 1);

}
.back-link {
    text-decoration: none;      /* убрать подчёркивание */
    color: inherit;             /* цвет такой же, как у обычного текста */
    font-family: 'Manrope', sans-serif; /* если хочешь */
    transition: color 0.3s ease; /* вот это добавляет плавность */
    cursor: pointer;            /* чтобы была рука при наведении */
  }
  .back-link:hover {
    color: black; /* сюда — цвет при наведении */
  }
.info_foto {
    display: flex;
    align-items: flex-start;
    gap: 37px;
    margin-bottom: 80px;
   
}
.info1{
    margin-top: -190px;
    max-width: 1250px;
    min-width: 1250px;
    
    height: auto; /* пусть контейнер подстраивается */

}
.foto img{
    max-width: 580px;
    max-height: 706px;
    min-width: 580px;
    min-height: 706px;
}
.title{
    display: flex;
    align-items: flex-start;
    
}
.main-tit {
    font-family: 'Bold', sans-serif;
    font-size: 150px;
    font-weight: normal;
    text-transform: uppercase;
   max-width: 1000px;
    
}
.secondary-tit {
    font-family: 'Bold', sans-serif;
    font-size: 70px;
    font-weight: normal;
    text-transform: uppercase;
    white-space: nowrap; 
    opacity: 0.2; 
    margin-left: 1100px;
    margin-top: 168px;
    position: absolute;
    
}
.art-info{
    max-width: 1150px;
    min-width: 1150px;
    font-family: 'Manrope', sans-serif;
    font-size: 29px;
    word-wrap: break-word;        /* для старых браузеров */
    overflow-wrap: break-word;    /* для современных */
    margin-top: -160px;
    margin-left: -5px;
    
}
.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;
}

.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 {
    position: absolute;
    font-family: 'Bold', sans-serif;
    font-size: 60px;
    font-weight: normal;
    white-space: nowrap; /* ��������� ������� ������ */
    opacity: 0.2; /* ����� ����� �������������� */
    margin-top: -2px;
    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 */
  }