@font-face {
  font-family: 'Druzhok';
  src: url('/fonts/Druzhok.woff2') format('woff2'),
       url('/fonts/Druzhok.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Source Code Pro';
  src: url('/fonts/SourceCodeItalic-ExtraLightItalic.woff2') format('woff2');
  font-weight: 200;
  font-style: italic;
}

html {

  overflow-x: hidden; 
}
body {
  font-family: 'Druzhok';
  font-weight: 400;
  background: #000000;
  overflow-x: hidden; 
  margin: 0;
  padding: 0;
}

h2{
  font-family: 'Druzhok';
  font-weight: 700;
  color: #D6BA75;
}

.logo {
  color: #F2F2F2;
  font-size: 24px;
  font-weight: bold;
  font-family: 'Druzhok';
}

@media (max-width: 768px) {
  .logo {
      font-size: 20px;
  }
}

@media (max-width: 480px) {
  .logo {
      font-size: 18px;
  }
}

body {
  margin-top: 60px; /* Отступ для фиксированного хедера */
}
.main-container {
  position: relative;
  width: 100%;
  max-width: 100vw; 
  margin: 0 auto;
  padding: 0 2vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

.content-container {
  width: 100%;
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 2vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 5vh;
  box-sizing: border-box;
}

input,
select,
textarea,
button {
  outline: 0;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 480px) {
  .main-container, .content-container {
    padding: 0 5vw;
  }
}
/* Основной стиль для текста */
.logo {
  font-size: 36px;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #FFFFFF, #FFFFFF, #D6BA75 20%, #FFFFFF, #FFFFFF);
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: glossyText 2s ease-in-out infinite; /* Бесконечная анимация */
}

@keyframes glossyText {
  0% {
      background-position: 200% 0;
  }
  100% {
      background-position: -200% 0;
  }
}
/* Анимация для блеска по тексту */
@keyframes glossyText {
  0% {
      background-position: -100% 0; /* Начало слева за пределами текста */
  }
  100% {
      background-position: 100% 0; /* Уход золота за текст вправо */
  }
}
.image-block-top {
  margin-top: -5vw;
    margin-bottom: 16vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -3vw; /* Поднимает весь контейнер с картинкой и надписью */
}

.image-block-top img {
  max-width: 50%; /* Контролирует размер изображения */
  width: auto;
  height: auto;
  border-radius: 5px;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 89%);
  object-fit: contain;
}
.caption {
  margin-top: 1vw; /* Отступ для надписи */
  font-size: 1rem;
  color: #cccccc9e;
  text-align: center;
}
/*
/* MARKETING SECTION */
.marketing-container {
  width: 100%;
  max-width: 90vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  overflow-x: hidden;
}

.marketing {
  color: #D6BA75;
  font-size: 10vw;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
  margin-bottom: 2vh;
  z-index: 91;
}

.comprehensive-approach {
  font-family: 'Source Code Pro';
  width: 90%;
  max-width: 50vw;
  color: #ECEBEB;
  font-size: 2vw;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.25vw;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2vw;
  flex-shrink: 0;
  box-sizing: border-box;
}

.flex-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 90vw;
  margin: 5vh auto 0;
  z-index: 89;
  gap: 3vw; /* Убираем gap полностью */
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.scheme, .scheme-1 {
  flex-shrink: 0;
  position: relative;
  width: 30%;
  max-width: 66vw;
  height: 18vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  z-index: 89;
  overflow: hidden;
}

.scheme {
  background-image: url(./assets/mark_1.png);
  margin-right: -1vw; /* Отрицательный отступ для уменьшения расстояния между элементами */
} 
.scheme-1 {
  background-image: url(./assets/mark_2.png);
}

/* Близкое расположение элементов на очень больших экранах */
@media (min-width: 1600px) {
  .flex-row {
    gap: 4vw;
  }
  .scheme, .scheme-1 {
    width: 30%;
  }
  .image-block-top {
    margin-top: -5vw;
    margin-bottom: 16vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 53vw;
    margin-left: 17vw;
    margin-bottom: 4vw;
}
  .comprehensive-approach {
    font-size: 2vh;
}
  
}

/* Адаптация для экранов до 1200px */
@media (max-width: 1200px) {
  .marketing-container, .flex-row {
    max-width: 86vw;
    gap: 4vw;
  }
}

/* Адаптация для маленьких экранов (до 768px) */
@media (max-width: 768px) {
  .marketing-container, .flex-row {
    max-width: 100%;
  }
  .comprehensive-approach {
    width: 100%;
    max-width: 90vw;
    margin-right: 5vw;
    padding: 0 4vw;
    text-align: center;
  }
  .scheme{
    margin-left: 10vw;
  }
  .scheme-1{
    margin-left: 13vw;
  }

  .scheme, .scheme-1 {
    width: 70vw;
    height: 24vw;
}
  .flex-row {
    flex-direction: column; /* Переход на вертикальное расположение */
    gap: 2vh;
  }
  .scheme{
    margin-left: -31vw;
  }
  .scheme-1{
    margin-left: 26vw;
  }

  .scheme, .scheme-1 {
    width: 70vw;
    height: 24vw;
}
}

/* Адаптация для мобильных экранов (до 480px) */
@media (max-width: 480px) {
  .marketing-container, .flex-row {
    padding: 0 2vw;
  }
  .marketing {
    font-size: 11vw;
  }
  .comprehensive-approach {
    font-size: 2.5vw;
    letter-spacing: 0.15vw;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5vw;
    text-align: justify;
  }
  .scheme, .scheme-1 {
    width: 70vw; /* Увеличенная ширина для более удобного просмотра на мобильных */
    height: 20vw;
  }
  .flex-row {
    flex-direction: column;
    gap: 7vh; /* Разделение между элементами для вертикального расположения */
  }
  .scheme{
    margin-left: -31vw;
  }
  .scheme-1{
    margin-left: 26vw;
  }

  .scheme, .scheme-1 {
    width: 70vw;
    height: 24vw;
}

}


/*______________BRANDING SECTION______________*/
.branding-section {
  display: flex;
  flex-direction: column;
  align-items: center; /* Центрирование по горизонтали */
  width: 100%;
  max-width: 75vw;
  margin: 0 auto;
  padding: 5vh 2vw;
  box-sizing: border-box;
  margin-top: 20vw;
  margin-bottom: 7vw;
}
.mouse {
  height: 9vw;
  margin-left: 50vw;
  margin-bottom: -2vw;
}
.frame {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 45vw;
  background: url(./assets/images/15bf861d-f4ee-422e-b2a8-1bcb58cdab52.png) no-repeat center;
  background-size: contain;
  padding: 2vw 0;
  box-sizing: border-box;
  margin-bottom: 3vh;
  margin-left: -38vw;
}
.mouse {
  display: block;
  position: relative;
  width: 10vw;
  height: 7vw;
  background: url(./assets/images/0052c064-efed-410e-bed1-ba8ab2d3471f.png) no-repeat center;
  background-size: contain;
  z-index: 86;
  margin: -5vh auto;
}
.mouse {
  height: 9vw;
  margin-left: 50vw;
  margin-bottom: -2vw;
}

@media (max-width: 768px) {
  .branding-section {
    padding: 4vh 5vw;
    margin-top: 31vw;
    margin-bottom: 7vw;
  }
}

/* Контейнер для заголовка BRANDING */
.frame {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 45vw;
  background: url(./assets/images/15bf861d-f4ee-422e-b2a8-1bcb58cdab52.png) no-repeat center;
  background-size: contain;
  padding: 2vw 0; /* Увеличенные отступы сверху и снизу */
  box-sizing: border-box;
  margin-bottom: 3vh; /* Добавлен отступ снизу */
}

@media (max-width: 768px) {
  .frame {
    max-width: 80vw;
    padding: 3vw 0; /* Дополнительные отступы на маленьких экранах */
  }
}

/* Заголовок BRANDING */
.branding-e0 {
  color: #D6BA75;
  font-size: 5vw; /* Увеличенный размер для большей выразительности */
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  margin: 0;
  margin-top: 1vw;
}

@media (max-width: 480px) {
  .branding-e0 {
    font-size: 6vw;
  }
  .branding-section {
     padding: 0vw; 
    margin-top: 49vw;
    margin-bottom: 62vw;
}
}

/* Вспомогательный контейнер .frame-2 */
.frame-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 60vw;
  background: url(./assets/images/15bf861d-f4ee-422e-b2a8-1bcb58cdab52.png) no-repeat center;
  background-size: contain;
  padding: 2vw; /* Просторные отступы для текста */
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 3vh; /* Отступ сверху для разделения с заголовком */
}

@media (max-width: 768px) {
  .frame-2 {
    max-width: 85vw;
    padding: 2vw;
  }
}

/* Описание услуг брендинга */
.branding-2 {
  font-family: 'Source Code Pro';
  color: #ffffff;
  font-size: 1.5vw;
  font-weight: 400;
  line-height: 1.8; /* Больше расстояние между строками */
  text-align: center;
  max-width: 90%; /* Ограничение ширины текста внутри рамки */
  padding: 1vw; /* Отступы вокруг текста */
  margin: 0 auto;
  box-sizing: border-box;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .branding-2 {
    font-size: 2vw;
    padding: 1.5vw;
    max-width: 85%;
  }
}

@media (max-width: 480px) {
  .branding-2 {
    font-size: 2.5vw;
    max-width: 80%;
    padding: 2vw;
    line-height: normal;
  }
  .mouse {
    height: 9vw;
    margin-left: 58vw;
    margin-bottom: -3vw;
}
.pr-block {
  margin-bottom: 32vw;
}
}





/* Флекс-блок для рамещения SVG */
.pr-block {

  width: 117vw;
}

.billboard {
  max-width: 80%;
  max-height: 80%;
}

/* Пропорциональное масштабирование SVG */
.billboard svg {
  width: 100%;
  height: auto;
}

/* Main section container */
.production-section {
  position: relative;
  width: 174%;
  display: flex;
  align-items: center;
  padding: 2rem;
  transform: translateZ(0);
  margin-top: 17vw;
}

/* Container for SVG elements */
.camera-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.prod-light{
  visibility: visible;
}
/* Camera SVG styling */
.camera {
  position: absolute;
  left: -33%;
  top: -9%;
  transform: translateY(-50%);
  width: 176vw;
  height: auto;

}


/* Content container */
.content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 45%;

  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}








/* Основной блок для SVG элемента */
.design-block {
  margin-top: 44vw;
  width: 123vw;

}

.design-element {
  max-width: 70%;

}

/* Пропорционалное масштабирование SVG */
.design-element svg {
  width: 100%;
  height: auto;
}


@media (max-width: 480px) {
  .design-block {
    margin-top: 63vw;
    margin-bottom: 49vw;
  }
.production-section {
  position: relative;
  width: 205%;
  display: flex;
  align-items: center;
  padding: 2rem;
  transform: translateZ(0);
}
}

.contact-button {
  all: unset; /* Сбрасывает все базовые стили */
}/* Стили для модального окна */




.web-mobile-container {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* Контейнер для текста и телефона */
.web-mobile-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  padding: 20px 0;
}

/* Левый блок для заголовка и текста */
.web-mobile-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  gap: 5vw;
}

/* Заголовок */
.web-mobile-development {
  
  color: #D6BA75;
  font-size: 8vw;
  font-weight: 700;
  margin-bottom: 2vw;

}

/* Описание (слева от телефона) */
.web-mobile-department {
  
  font-family: 'Source Code Pro';
  color: #ffffff;
  font-size: 2vw;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}





@media (min-width: 1200px) {
  .web-mobile-left {
    width: 50%;
  }
  
  .web-mobile-development {
    font-size: 100px;
  }
  
  .web-mobile-department {
    font-size: 31px;
    width: 45vh;
    line-height: 122%;
}
  
  .rectangle-b {
    width: 450px;
    margin-top: 200px;
    margin-left: 23vw;
  }
}


@media (max-width: 1199px) and (min-width: 768px) {
  .web-mobile-left {
    width: 60%;
    gap: 3vw;
  }
  
}

@media (max-width: 767px) {
  .web-mobile-container {
    flex-direction: column;
    padding: 20px;
  }
  
  .web-mobile-content {
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 0vh;
  }
  
  .web-mobile-left {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 2vh;
  }
  
  .web-mobile-development {
    font-size: 6vw;
    padding: 0;
    margin-bottom: 3vh;
  }
  
  .web-mobile-department {
    font-size: 14px;
    text-align: center;

  }
  
  .rectangle-b {
    width: 80vw;
    margin-top: 5vh;
    border-radius: 10vw;
  }
  
  .rectangle-c {
    border-width: 3vw;
    border-radius: 10vw;
  }
}


@media (max-width: 479px) {
  .web-mobile-development {
    font-size: 7vw;
    margin-bottom: -2vw;
  }
  
  .web-mobile-department {
    font-size: 10px;
  }
  
  .rectangle-b {
    width: 55vw;
    border-radius: 15vw;
  }
  
  .rectangle-c {
    border-width: 4vw;
    border-radius: 15vw;
    width: 55vw;
  
  }
  .iphone {
    width: 241px;
    height: 382px;
    border-radius: 30px;
    background-color: #000;
    border: 8px solid #fff;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-top: 4vw;
}
}





/*______________adv_________________*/
.adv {
  display: flex;
  align-items: flex-start;
  position: relative;
  color: #D6BA75;
  font-family: Century Schoolbook, var(--default-font-family);
  font-size: 8vw;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  z-index: 20;
  margin-bottom: 2vh;
}

.adv-promotion-department {
  
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 67vw;
  max-width: 100%;
  height: auto;
  gap: 2vw;
  color: #ffffff;
  font-family: 'Source Code Pro';
  font-size: 1.8vw;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  z-index: 21;
  margin-bottom: 3vh;
}

.devices-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 90vw;
  padding: 0 2vw;
  gap: 16vw;

}


.phone, .tablet, .nout {
  position: relative;
  border-radius: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

.phone img, .tablet img, .nout img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; 
  width: auto;
  height: auto;
}
.nout img {
  margin-bottom: 3vw;
}

/* Телефон */
.phone {
  width: 8vw;
  height: 15vw;
}

/* Планшет */
.tablet {
  width: 20vw;
  height: 13vw;
}
.tablet{
  background: url(./assets/images/a1f55e61-a56e-4503-b18d-143aedd0b147.png) no-repeat center;
  background-size: cover;
}
.phone{
  background: url(./assets/images/tel.png) no-repeat center;
  background-size: cover;
}
.nout {
  border: 0.6vw solid #30292700;
    width: 23vw;
    height: 18vw;
    background: url(./assets/images/a14a953e-dd8a-4b46-b0d7-ff0abc6c6e8f\ .png) no-repeat center;
    background-size: cover;
}


@media (max-width: 667px) {
  .adv {
    font-size: 7vw;
    height: auto;
    margin-top: 13vw;
    margin-left: 2vw;
  }

  .advertising-promotion-department {
    font-size: 3.5vw;
    position: relative;
  }

  .devices-container {
    flex-direction: column;
    align-items: center;
    gap: 4vh;
    padding: 0;
    margin: 0;
  }

  .phone {
    width: 15vw;
    height: 28vw;
  }

  .tablet {
    width: 30vw;
    height: 20vw;
  }

  .nout {
    width: 45vw;
    height: 35vw;
  }
  .phone img, .tablet img, .nout img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .nout img {
    position: absolute;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
}
}

.content-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.navigation {
  flex: 1;
  margin-right: 20px;
  font-family: 'Source Code Pro';
}

.navigation ul {
  list-style-type: none;
  padding: 0;
}

.navigation li {
  margin-bottom: 10px;
}

.navigation a {
  color: #D6BA75;
  font-size: 1.5rem;
  text-decoration: none;
}

.navigation a:hover {
  color: #FFFFFF;
}

.image-block {
  flex: 1;
  text-align: center;
  position: relative;
}

.image-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-caption-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-caption-container img {
  max-width: 171%;
  height: auto;
  border-radius: 5px;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 89%);
}

.caption {
  margin-top: 10px;
  font-size: 1rem;
  color: #cccccc9e;
  text-align: center;
  font-family: 'Source Code Pro';
}

.button-container {
  margin-left: 20px; /* Отступ между изображением и кнопкой */
}

.fl-button {
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: transparent;
  color: #D6BA75;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-family: 'Century Schoolbook';

}


.fl-button:hover {
  background-color: #302927;
  color: #FFFFFF;
  border-color: #D6BA75;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Адаптивные стили */
@media (max-width: 768px) {
  .content-block {
    flex-wrap: wrap;
  }

  .navigation {
    flex: 1 1 100%;
    margin-right: 0;
    margin-bottom: 20px;
 
  }

  .image-button-container {
    justify-content: center;
  }

  .button-container {
    margin-left: 10px;
  }

  .fl-button {
    font-size: 1.2rem;
    padding: 8px 16px;
  }

  .caption {
    font-size: 0.9rem;
  }
  .header {
    margin-top: 6vw;
}
}

@media (max-width: 480px) {
  .fl-button {
    font-size: 1rem;
    padding: 8px 12px;
  }

  .caption {
    font-size: 0.8rem;
  }
}

.contact-button {
  all: unset; /* Сбрасывает все базовые стили */
}/* Стили для модального окна */




/* Стили для модального окна */
.modal {
  display: none; /* Скрыто по умолчанию */
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Полупрозрачный черный фон */
  justify-content: center;
  align-items: center;
}

/* Стили для содержимого модального окна */
.modal-content-pop{
  position: relative;
  max-width: 90%; /* Максимальная ширина для адаптивности */
  max-height: 90%; /* Максимальная высота для адаптивности */
  display: flex;
  justify-content: center;
  align-items: center;

}

/* Изображение внутри модального окна */
.popup-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 10px;
}

/* Кнопка закрытия */
.close {
  position: absolute;
  top: 8%;
  right: 4%;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.close:hover {
  color: #ddd;
}

.contact-button {
  font-family: 'Source Code Pro';
  font-weight: 200;
  padding: 8px 38px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}





