/* Сброс стилей по умолчанию */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900
.onest-<uniquifier> {
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body{
  background-color: #121212;
}

html {
scroll-behavior: smooth;
}

@media screen and (max-width: 479px) {
    html {
        scroll-padding-top: 50px;
    }
}

/********************************************* Видео *********************************************/
.first-screen-container{
  background-color: #161515;
  width: 100vw;
  height: 100vh; /* Высота на всю видимую часть экрана */
  overflow: hidden;
}

/* Видео на всю ширину экрана */
.fullscreen-video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  clip-path: ellipse(88% 94% at 50% 0%);
}

.fullscreen-video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Обеспечивает покрытие всего экрана видео */
  transform: translate(-50%, -50%);
  z-index: 1;
}

/********************************************* center logo *********************************************/
/* Логотип в центре видео */
.logo-container {
  position: absolute;
  top: 42%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/*********************************************Контейнер для текста *********************************************/
/* Контейнер для текста */
.text-container {
    position: absolute;
    width: 100%;
    top: 77%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 4% 4%;

    z-index: 10;
}

/* Стили для текста в левом углу */
.text-left {
  font-family: "Onest";
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  font-size: calc(16 * (100vw / 1280));
  line-height: calc(16 * (100vw / 1280));
  width: 50%; /* Ширина блока текста */
  text-align: left;
  color: rgba(134, 134, 134, 1);
  white-space: pre-wrap; /* Сохраняет переносы строк */
  margin-bottom: 1%; /* Адаптивный отступ от нижней границы */
}

/* Стили для текста в правом углу */
.text-right {
  font-family: "Onest";
  text-transform: uppercase;
  width: 50%; /* Ширина блока текста */
  text-align: right;
  font-style: normal;
  font-weight: 600;
  font-size: calc(16 * (100vw / 1280));
  line-height: calc(16 * (100vw / 1280));
  color: rgba(134, 134, 134, 1);

  white-space: pre-wrap; /* Сохраняет переносы строк */
  margin-bottom: 1%; /* Адаптивный отступ от нижней границы */

}

/********************************************* Панель навигации *********************************************/
/* Прозрачная навигационная панель */
.navbar {
  position: fixed;
  width: 100%;
    height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0); /* Полупрозрачный черный фон */
  transform: translateZ(0);
  z-index: 100; /* Поверх видео */
}

.navbar-logo{
  /* width: 22%;

  height: 100%; */
}

.navbar-logo a img {
    /* display: flex; */
    /* width: 100%; */
    /* height: 100%; */
    /* top: 24px; */
    /* left: 44px; */
    /* gap: 0px; */
    transition: filter 0.3s ease;
    padding-left: 5%;
    padding-top: 3%;

}

.navbar-menu {
    width: 43%;
    padding-left: 2%;
    display: flex;
    gap: 4%;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}

.navbar-menu a {
  font-family: "Onest";
  font-size: calc( 12 * (100vw / 1280));
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  color: #EEEEEE;
  transition: color 0.3s ease;
  text-decoration: none;
  font-style: normal;
  line-height: 35px;
}

/* Стили для социальных иконок */
.navbar-social {
  display: flex;
  flex-direction: row;
  /* align-items: center; */
  /* justify-content: center; */
  gap: 16px;
  /* width: 15%; */
  /* height: 50%; */
  padding-right: 1%;

}

.navbar-social a img {
  height: 100%;
  width: 100%;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.navbar-social a img:hover {
  filter: brightness(0.7) invert(1); /* Легкое затемнение при наведении */
}

/* Иконка для раскрытия меню на мобильных устройствах */
.navbar-toggle {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* Панель, которая раскрывается на мобильных устройствах */
.navbar-panel {
  display: none;
  flex-direction: column;
  position: absolute;
    height: 81vh;
  left: 10px;
  right: 10px;
  background-color: #fff;
  border-radius: 15px;

  transform: translate(0%, 53%);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 50px;
  z-index: 999;
  max-height: 90vh;
  overflow-y: auto;
}

/* Стили для panel-menu и panel-social */
.panel-menu  {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 100%;
}

.panel-menu a {
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  width: 100%;
  max-width: 200px;
  font-family: "Onest";
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}


.panel-social {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 55px;
}

.panel-social a img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}
.hidden {
    display: none !important;
    opacity: 0;
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 101%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 1000;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}



/********************************************* animation content *********************************************/
.animation-screen-container{
  padding-bottom: 50px;
  display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
  width: 100vw;
  height: auto;
  background-color: rgba(22, 21, 21, 1);

}

.blur-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.blur-effects-workshop {
        position: absolute;
    left: 0;
    /* top: 0; */
    width: 100%;
    height: 100%;
    /* border: 1px solid #ccc; */
     /*overflow: hidden;*/

    /* height: auto; */
    /* background-color: #f0f0f0; */
    z-index: 1;
}

.random-blur {
    position: absolute; /* Позволяет позиционировать изображения хаотично */
    object-fit: cover; /* Устанавливает как изображение вписывается */
    max-width: 400px; /* Максимальная ширина изображений */
    max-height: 230px; /* Максимальная высота изображений */
    min-width: 100px;
    min-height: 100px;
    transition: filter 0.3s ease; /* Плавное применение размытия */
    border: 5px;

}

.random-blur-workshop {
    position: absolute; /* Позволяет позиционировать изображения хаотично */
    object-fit: cover; /* Устанавливает как изображение вписывается */
    max-width: 400px; /* Максимальная ширина изображений */
    max-height: 230px; /* Максимальная высота изображений */
    min-width: 100px;
    min-height: 100px;
    transition: filter 0.3s ease; /* Плавное применение размытия */
    border: 5px solid black;


}

.animation-small-item-VIEW a{
    text-decoration: none;
}

.animation-description{
  width: 100%;
  display: flex;
  padding-bottom: 3%;
  flex-direction: column;
  align-items: flex-start; 
  justify-content: center;
  font-family: "Onest";
  text-align: right;
  color: white;
  z-index: 10;
}

.animation-title{
  width: 85%;
  height: 40%;
  padding-left: 10%;
  text-align: left;
  font-family: 'Onest';
  font-size: calc(44 * (100vw / 1280));
  font-weight: 500;

}

.animation-descriptio-text{
  width: 43%;
  height: 20%;
  padding-left: 10%;
  text-align: left;
  font-family: 'Onest';
  font-style: normal;
  font-weight: 700;
  font-size: calc(16 * (100vw / 1280));
  line-height: calc(16 * (100vw / 1280));
}

.animation-page .animation-title{
  padding-left: 0%;
}

.animation-page .animation-descriptio-text{
  width: 36%;
  padding-left: 0%;
}

.animation-page{
padding-top: 5%;
    align-items: center;
    justify-content: center;
}

.animation-content{
  height: 85%;
  width: 90vw;
  display: flex;
  gap: 50px;
  flex-direction: column;
  z-index: 10;
}

.animation-item-left-big{
  height: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  align-content: center;
}
.space {
    background-color: lightgray; /* Для визуализации */
    box-sizing: border-box; /* Учитываем padding и border */
    margin: 0; /* Убираем внешние отступы */
    flex-shrink: 0; /* Запрещаем сжатие в flex-контейнере */
}
.animation-big-item{
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  transform: scale(1);
  transition: transform 0.3s ease, height 0.3s ease;

}

.animation-video{
 width: 78%;
  height: 62%;
  overflow: hidden;
  border-radius: 17px;
  border: 7px solid rgb(255, 255, 255); /* Бордер с начальной альфой */
  transition: border-color 0.3s ease-in-out, width 0.3s ease;
}

.animation-video-border{
    overflow: hidden;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.animation-big-item video {
  width: 100%;
 /* transform: scale(1.7) translateY(-2%);*/
  height: auto;
  display: block;
}

/* Эффект наведения на контейнер */
.animation-video:hover {
  border-color: rgba(22, 21, 21, 0.3); /* Плавное изменение альфы бордера */
}

.animation-video-description{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  align-content: flex-start;
  font-family: "Onest";
  width: 77.7%;
  color: white;
  transition: width 0.3s ease;
}

.animation-video-description-title{
  font-family: "Onest";
  color: white; text-decoration: none;
  font-size: calc( 32*(100vw / 1280) );
  transition: font-size 0.3s ease;
}

.animation-video-description-text{
width: 78%;
  font-family: "Onest";
  color: rgba(134, 134, 134, 1); text-decoration: none;
  opacity: 1;
  transition: backgroud-color 0.5s ease, color 0.5s ease,margin-top 0.3s ease, opacity 0.3s ease;
  font-size: calc( 14*(100vw / 1280) );
  text-decoration: none;
  overflow: hidden;
  margin-top: 0%;
}

.small-item-image {
  width: 100%;
 }

.small-item-title {

  font-family: "Onest";
  color: white;
  text-decoration: none;
  text-align: left;
    /* left: 23.5%;*/
  margin: 0 auto;
  width: 44.8%;
  transition: font-size 0.3s ease, opacity 0.3s ease, width 0.3s ease; /* Плавные переходы для шрифта */
  position: relative; /* Относительное позиционирование для правильного расположения описания */
  z-index: 2; /* Поверх описания */
}

.small-item-title a {
  font-family: "Onest";
  text-align: left;
  font-size:calc(1px + 16*(100vw / 1280));
  color: white;
  text-decoration: none;
  transition: font-size 0.3s ease, opacity 0.3s ease; /* Плавные переходы для шрифта */
}

.small-item-description {
width: 77.7%;
  position: relative; /* Меняем на relative, чтобы он выезжал и толкал контент вниз */
  margin-top: -3%; /* Скрываем описание за заголовком */
  opacity: 0;
  overflow: hidden;
  transition: margin-top 0.3s ease, opacity 0.3s ease; /* Плавный эффект выезда и появления */
  z-index: 1; /* Описание находится под заголовком */
}
.small-item-description a {
 font-family: "Onest";
  color: white;
  text-decoration: none;
   font-size:calc(12*(100vw / 1280));
   word-wrap: break-word;
}


.animation-small-item {
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  /* width: 50%; */

  width: 50%;
  /* padding-left: 9%; */
  /* height: 100%; */
  /* overflow: hidden; */
  transition: transform 0.3s ease, height 0.3s ease;
  /* transform: scale(0.8); */
  transform-origin: center;
  position: relative;
}

.animation-small-item:hover {
/*  transform: scale(1); *//* Увеличиваем весь контейнер, включая шрифт */
  height: 100%; /* Контейнер автоматически увеличивает свою высоту */
}

.animation-small-item:hover .small-item-image {
  /*transform: scale(1);  Немного увеличиваем изображение при наведении*/
  border-color: rgb(255, 255, 255); /* Изменяем прозрачность бордера при наведении */
}

.animation-small-item:hover .small-item-description {
 text-decoration: none;
  margin-top: 0; /* Перемещаем описание на видимое место */
  opacity: 1; /* Делаем текст видимым */
 
}

.animation-small-item:hover .animation-video-description-title {
   font-size: calc(1px + 32*(100vw / 1280));
}

.animation-small-item:hover .small-item-description {
  /* font-size: calc(1px + 14*(100vw / 1280));*/
}

.animated-block {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Onest";
 width: 72%;
  height: 14vh;
    background-color: rgb(22 21 21 / 0%);
    color: rgba(134, 134, 134, 1);
    position: relative;
    overflow: hidden;
    transition: color 0.5s ease;
  clip-path: polygon(0 0%, 100% 0%, 100% 100%, 30% 100%);
    border: none;
    outline: none;
}

.animated-block::before {
  content: '';
  position: absolute;
    top: 0px;
    left: -2%;
    width: 37%;
    height: 100%;
  background-color: white;
    clip-path: polygon(0 0, 8% 0%, 89% 100%, 68% 100%);
  z-index: 1;
}

.animated-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  cursor: pointer;
  background-color: white;
  transition: width 0.5s ease; /* Плавное расширение ширины псевдоэлемента */
  z-index: 0; /* Псевдоэлемент фона под текстом и бордером */
}

.animated-block:hover::after {
  width: 100%; /* Заполняем весь блок при наведении */
}

.animated-block:hover {
  color: black; /* Изменяем цвет текста на черный при наведении */
}

.animated-block p {
  position: relative;
  font-family: "Onest";
  font-size: calc( 16 *(100vw / 1280) );
  z-index: 2; /* Текст поверх псевдоэлементов */
}
.animation-small-item-VIEW{
  padding-left: 20%;
  width: 50%;
}
/********************************************* animation content end *****************************************/
/* Начальное состояние: элемент невидим и смещён вниз */
.parallax-item {
  opacity: 0;
  transform: translateY(100px); /* Смещение вниз */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Плавная анимация */
}

/* Конечное состояние: элемент становится видимым и возвращается на место */
.parallax-item.visible {
  opacity: 1;
  transform: translateY(0); /* Возвращаем элемент в исходное положение */
}
/********************************************* workshop content *********************************************/
.workshop-screen-container{
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /*align-items: center;*/
  align-content: space-around;
  width: 100vw;
  height: auto;
  background-color: rgba(246, 246, 246, 1);
}

.workshop-description{
  height: 15%;
  width: 100%;
  display: flex;
  margin-bottom: 3%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: "Onest";
  text-align: right;
  color: rgb(0, 0, 0);
  z-index: 10;
}

.workshop-title{
  width: 85%;
  padding-left: 10%;
  text-align: left;
  font-family: 'Onest';
  font-size: calc(44 * (100vw / 1280));
  font-weight: 500;
}

.workshop-descriptio-text{
  width: 43%;
  height: 20%;
  padding-left: 10%;
  text-align: left;
  font-size: calc(16*(100vw / 1280));
  font-weight: 700;
  line-height: 1;
}

.workshop-page-screen-container{

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
align-items: center;
    justify-content: center;
  width: 100vw;
  height: auto;
  background-color: rgba(246, 246, 246, 1);
}


.animation-page .workshop-title{
  padding-left: 0%;
}

.animation-page .workshop-descriptio-text{
  width: 36%;
  padding-left: 0%;
}

.animation-page .workshop-description{
    align-items: center;
    justify-content: center;
}



.workshop-content{
   /* background-color: rgba(246, 246, 246, 1);*/
    width: 100%;
    height: 95vh;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: space-between;
    gap: 18px;
    padding-left: 10%;
    padding-right: 2%;
    z-index: 10;
}

.workshop-big-item-img-description{
  padding-top: 8px;
      width: 68%;
    text-align: left;
}

.workshop-big-item-img-description-title{
  font-family: "Onest";
  font-size: calc(22*(100vw / 1280));
  color:rgb(0, 0, 0);
  text-decoration: none;
    display: inline-table;
    text-align: left;
    width: 78%;
}

.workshop-big-item-img-text{
  transition: margin-top 0.3s ease, opacity 0.3s ease; /* Плавный эффект выезда и появления */
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-size: calc(14*(100vw / 1280));
  line-height: calc(14*(100vw / 1280));
  color:rgba(134, 134, 134, 1);
  text-decoration: none;
/*      display: grid;
    width: 100%;*/
}

.workshop-content img{
  border-radius: 5px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  border: 5px solid;
  border-color: rgb(0, 0, 0, 1);

}

/* .workshop-item:hover img{
  border-radius: 10px;
  transform: scale(1.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
  border-color: rgb(246, 246, 246, 1);

} */

.workshop-left-items{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25%;
  z-index: 2;
}

.workshop-left-top-item-img img{
  width: 63%;
  height: auto;
}

.workshop-item-img img{
  height: auto;
  transition: width 0.3s ease;
}


.workshop-center-items{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25%;
  z-index:2;
}

.workshop-center-top-item-img img{
  width: 35%;
  height: auto;
}

.workshop-center-bottom-item img{
  width: 84%;
  height: auto;
}

.workshop-right-items{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25%;
  z-index: 2;
}

.workshop-right-top-item-img img{
  width: 63%;
  height: auto;
}

.workshop-right-bottom-item-img img{
  width: 35%;
  height: auto;
}


.animated-block-workshop {
  display: flex;
  justify-content: center;
  align-items: center; font-family: "Onest";
  width: 72%;
  height: 14vh;
  background-color: rgb(246 246 246 / 0%); /* Начальный цвет фона */
  color:rgba(134, 134, 134, 1); /* Цвет текста */
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease; /* Плавный переход цвета текста */
  clip-path: polygon(0 0%, 100% 0%, 100% 100%, 30% 100%);
}

.animated-block-workshop::before {
    content: '';
    position: absolute;
    top: 0px;
    left: -2%;
    width: 37%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    clip-path: polygon(0 0, 8% 0%, 89% 100%, 68% 100%);
    z-index: 1;
}

.animated-block-workshop::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgb(0, 0, 0);
  transition: width 0.5s ease, color 0.5s ease; /* Плавное расширение ширины псевдоэлемента */
  z-index: 0; /* Псевдоэлемент фона под текстом и бордером */
}

.animated-block-workshop:hover::after {
  width: 100%; /* Заполняем весь блок при наведении */
}

.animated-block-workshop:hover p {
  color: rgb(253, 253, 253); /* Изменяем цвет текста на черный при наведении */
  transition: color 0.5s ease;
}

.animated-block-workshop p {
  position: relative; font-family: "Onest";
  transition: color 0.5s ease;
  font-size: calc(16*(100vw / 1280));
  transition: color 0.5s ease;
  z-index: 2; /* Текст поверх псевдоэлементов */
}

 .VIEW-ALL-workshop{
    position: relative;
    width: 27%;
    left: 70%;
    z-index: 10;
 }

 .VIEW-ALL-workshop a{
    text-decoration: none;
 }

/********************************************* workshop content end *********************************************/

/********************************************* open position *********************************************/
.open-position-container {
  width: 100vw;
  height: auto;
  padding-bottom: 15%;
  display: flex;
  background-color: rgba(22, 21, 21, 1);
  color: #ffffff;
  flex-direction: row;
  justify-content: space-around;
}

.open-position-description{
  width: 45%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 10%;
}

.open-position-container .header {
  width: 100%;
  height: 35%;
  margin-top: 12%;
  margin-bottom: 30px;
}

.open-position-container .header h1 {
  font-size: calc(44*(100vw / 1280));
  font-weight: normal;
  font-family: 'Onest';
  text-transform: none;
  width: 93.3%;
  padding-top: 20px;
}

.open-position-container .positions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 55%;
  justify-content: center;
  padding-right: 5.5%;
  padding-top: 6.5%;
}

.open-position-container .position-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  flex-direction: column;
  position: relative;
 

}

.position-title a {
    color: #EEEEEE;
    text-decoration: none;
}

.open-position-container .position-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -20px;
  width: calc(100% + 40px);
  height: 0;
  background-color: white;
  transition: height 0.5s ease; /* Плавное заполнение */
  z-index: 0;
}

.open-position-container .position-item:hover::before {
  height: calc(100% + 20px); /* Заполнение всей панели белым цветом */
}

.open-position-container .position-item:hover .position-title a {
  color: black; /* Изменение цвета текста при наведении */
  text-decoration: none;
}

.open-position-container .position-item:hover .position-arrow {
  color: black; /* Изменение цвета текста при наведении */
}

.open-position-container .position-details {
  display: flex;
  gap: 10px; font-family: 'Onest';
  font-size: calc(12*(100vw / 1280));
  color: #888; /* Цвет текста для деталей позиции */
  z-index: 1;
}

.open-position-container .position-title {
  flex-grow: 1;
  z-index: 1;
  font-family: 'Onest';
  font-size: calc(26*(100vw / 1280));
  font-weight: bold;
  transition: color 0.5s ease;
}

.open-position-container .position-arrow {
  font-size: calc(36*(100vw / 1280));
  font-weight: bold;
  color: #ffffff;
  align-self: flex-end;
  margin-top: -25px;
  transition: color 0.5s ease;
  z-index: 1;
}

.open-position-container .footer {
font-family: 'Onest';
  width: 100%;
  text-align: left;
  font-size: calc(14*(100vw / 1280));
}

.open-position-container .footer p {
  margin: 5px 0;
}

.open-position-container .footer a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
}

.open-position-container .footer a:hover {
  color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}

.position-description{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-content: space-between;
}
/********************************************* open position end *********************************************/


/********************************************* contact us  *********************************************/

.contact-us {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #121212;
  color: white;
  font-family: 'Onest';
  position: relative;
}

.contact-info h1 {
  font-size: calc(44*( 100vw / 1280 ) );
  padding-bottom: 5%;
  font-weight: normal;
}

.contact-info .subtext {
  font-size: calc(18*( 100vw / 1280 ) );
  margin-top: 10px;
  margin-bottom: 30px;
  color: #888;
}

.contact-info p {
  margin-bottom: 20px;
  
}

.social-icons {
    display: flex;
    gap: 40px;
    padding-top: 18.8%;
    flex-direction: row;
    align-items: stretch;
    width: 91%;
    height: 21%;
}

.social-icons a img {
    width: 100%;
    height: 100%;
}

.contact-form {
    width: 27%;
    height: 68%;
}

.form-group {
  margin-bottom: 8%;
  display: flex;
    gap: 20px;
  flex-direction: column;
  width: 100%;
}

.form-group label {
  font-size: calc(14*( 100vw / 1280 ) );
  color: #888;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  font-family: "Onest";
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #444;
  padding: 10px;
  color: white;
 /* font-size: calc(16*( 100vw / 1280 ) );*/
}

.resume input,
.resume textarea {
  color: black;
}

textarea {
  height: 100px;
}

.submit-btn {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  color: white;
  font-size: calc(18*( 100vw / 1280 ) );
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.submit-btn .arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.submit-btn:hover .arrow {
  transform: translateX(5px); /* Двигаем стрелку немного вправо */
}

.submit-btn::before {
  content: '';
  position: absolute;
  bottom: 51px;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 0;
}
.animated-block.success::after {
    background-color: rgba(142, 206, 139, 1); /* Новый цвет для ::after */
}
.animated-block.success::before {
    background-color: rgba(142, 206, 139, 1); /* Новый цвет для ::after */
}

.animated-block-workshop.success::after {
    background-color: rgba(142, 206, 139, 1); /* Новый цвет для ::after */
}
.animated-block-workshop.success::before {
    background-color: rgba(142, 206, 139, 1); /* Новый цвет для ::after */
}

.contact-us .contact-form {
  position: relative;
  z-index: 1;
}

/* фон при автозаполнении */
.contact-form  input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form  input:-webkit-autofill:focus,
.contact-form  input:-webkit-autofill:active {
       -webkit-box-shadow: 0 0 0 30px rgb(18 18 18) inset !important;
    -webkit-text-fill-color: rgb(255 255 255);
}

.contact-form-career input:-webkit-autofill,
.contact-form-career input:-webkit-autofill:hover,
.contact-form-career input:-webkit-autofill:focus,
.contact-form-career input:-webkit-autofill:active {
-webkit-box-shadow: 0 0 0 30px rgb(246 246 246) inset !important;
    -webkit-text-fill-color: rgb(0 0 0);
}

/* Для Firefox и других браузеров */
input:-webkit-autofill,
input:-moz-autofill,
input:-ms-autofill,
input:autofill {
    background-color: transparent !important;
    color: inherit !important;
}




/*
.contact-us::after {
  content: 'CANOE';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: calc(1px + 257*(100vw / 1280));
  color: rgba(255, 255, 255, 0.05); */
/* Полупрозрачный текст *//*

}
*/

.contact-us .footer-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #888;
  text-align: center;
  width: 100%;
}

/* Левый нижний угол (авторские права) */
.footer-left {
  position: absolute;
  bottom: 3%;
  left: 11.5%;
  font-size: calc(1px + 11*(100vw / 1440));
  color: #888;
}

/* Flexbox для расположения EMAIL и PHONE в одной строке */
.form-row {
  display: flex;
  gap: 20px; /* Отступ между полями */
}

/* Правый нижний угол (ссылки) */
.footer-right {
  position: absolute;
  bottom: 3%;
  right: 11.5%;
  font-size: calc(1px + 11*(100vw / 1440));
  color: #888;
}

.footer-right a {
  color: #888;
  text-decoration: none;
}

.footer-right a:hover {
  color: white;
  text-decoration: underline;
}

.contact-us-info{
    display: flex;
    width: 38vw;
    height: 70%;
    flex-wrap: nowrap;
    z-index: 1;
}

.canoe-logo{
    width: 100%;
    height: 55%;
    padding-bottom: 0%;
    position: absolute;
    overflow: hidden;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    font-size: calc(1px + 257*(100vw / 1280));
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.canoe-logo img{
    width: 100%;
    height: 100%;
    filter: invert(80%);
}

.success p{

padding-left: 25%;

}


/********************************************* contact us end *********************************************/





/********************************************* aboutUs  *********************************************/
.cg-industry-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8% 10%; /* Отступы для адаптивности */
  background-color: rgba(246, 246, 246, 1); /* Светлый фон */
  width: 100vw;
  height: 100vh;
  gap: 6%;
}

.intro-text h1 {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400;
  font-size: calc(44*( 100vw / 1280 ) );
  line-height: calc(44*( 100vw / 1280 ) );
  text-align: left; /* Выравнивание текста по левому краю */
  color: #000000;
  max-width: 100%; /* Ограничение ширины */
  margin: 20px auto;
}

/* Серый цвет для определенной части текста */
.intro-text .highlight-text {
  color: #a5a5a5; /* Серый цвет */
}

.description-container {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
  width: 100%;
}

.description-text {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 32%;
}

.column-1 {
  width: 83%;
}

.column-2 {
  width: 66%; /* Каждая колонка занимает 45% ширины */
   margin-bottom: 20px;
  font-family: "Onest";
  color: background: rgba(22, 21, 21, 1);
  line-height: 1em;
  font-size: calc(16*( 100vw / 1280 ) );
}

.description-text p {
  margin-bottom: 20px;
  font-family: "Onest";
  color: background: rgba(22, 21, 21, 1);
  line-height: 1em;
  font-size: calc(16*( 100vw / 1280 ) );
}

.description-text strong {
  font-weight: bold; /* Жирное начертание для выделения */
}

.references-info{
    display: flex;
    flex-direction: column;
    width: 68%;
}

.VIEW-ALL-aboutUs{
    width: 55%;
}

.VIEW-ALL-aboutUs a{
    text-decoration: none;
}

.buttons-container {
  display: flex;
  flex-direction: row;
  gap: 6%;

}

.button-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.line {
  width: 60px;
  height: 1px;
  background-color: #000;
  margin-right: 15px;
  transform: rotate(45deg); /* Наклон линии */
}

.button-text {
  font-family: "Onest";
  font-size: calc(16*( 100vw / 1280 ) );
  text-transform: uppercase;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.arrow {
  font-size: 1.2vw;
  transition: transform 0.3s ease;
}

.button-item:hover .arrow {
  transform: translateX(10px); /* Двигаем стрелку при наведении */
}

.button-item:hover .button-text {
  color: #000000;
}

@media (max-width: 768px) {
  .intro-text h1 {
      max-width: 100%;
  }

  .description-container {
      flex-direction: column; /* Становится колонкой на маленьких экранах */
      align-items: center;
  }

  .column-1, .column-2 {
      width: 100%; /* Столбцы занимают всю ширину */
      text-align: center;
      margin-bottom: 20px;
  }


  .line {
      width: 40px; /* Изменение ширины линии */
  }
}

.animated-block-aboutUs {
  display: flex;
  justify-content: center;
  align-items: center; font-family: "Onest";
  width: 90%;
  height: 14vh;
  background-color: rgba(246, 246, 246, 1); /* Начальный цвет фона */
  color:rgba(134, 134, 134, 1); /* Цвет текста */
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease; /* Плавный переход цвета текста */
  clip-path: polygon(0 0%, 100% 0%, 100% 100%, 30% 100%);
}

.animated-block-aboutUs::before {
    content: '';
    position: absolute;
    top: 0px;
    left: -2%;
    width: 37%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    clip-path: polygon(0 0, 8% 0%, 89% 100%, 68% 100%);
    z-index: 1;
}

.animated-block-aboutUs::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgb(0, 0, 0);
  transition: width 0.5s ease; /* Плавное расширение ширины псевдоэлемента */
  z-index: 0; /* Псевдоэлемент фона под текстом и бордером */
}

.animated-block-aboutUs:hover::after {
  width: 100%; /* Заполняем весь блок при наведении */
}

.animated-block-aboutUs:hover {
  color: rgb(253, 253, 253); /* Изменяем цвет текста на черный при наведении */
}

.animated-block-aboutUs p {
  position: relative;
  font-family: "Onest";
  font-size: calc(16*( 100vw / 1280 ) );
  z-index: 2; /* Текст поверх псевдоэлементов */
}



/********************************************* aboutUs end *********************************************/


/********************************************* career  *********************************************/

.job-listing-container {
  width: 100vw;
  height: auto;
  font-family: "Onest";
  background-color: rgba(246, 246, 246, 1);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.job-header {
  width: 60%;
  margin-top: 10%;
  margin-bottom: 40px;
}

.job-header-info {
  font-size: 1rem;
  color: #999;
  margin-bottom: 10px;
}

.job-title {
  font-size: 44px;
  margin: 10px 0;
  color: #161515;
  font-weight: 600;
  line-height: 44px;
}

.job-subtitle {
  font-size: 16px;
  font-weight: bold;
  margin-top: 80px;
  margin-bottom: 30px;
}

.job-description, .job-details {
  font-size: 1rem;
  line-height: 1.6em;
  margin-bottom: 15px;
}

/* Контейнер для заголовка */
.title-container {
  position: relative; /* Относительное позиционирование для родительского блока */
  left: -20px;
  margin-bottom: 20px; /* Отступ снизу для разделения */
}

/* Декоративная линия перед заголовком */
.line-decoration {
  position: absolute; /* Абсолютное позиционирование */
  left: -100px; /* Линия находится на самом левом краю контейнера */
  top: 50%; /* Центрируем по высоте заголовка */
  transform: translateY(-50%) rotate(45deg); /* Сдвиг по оси Y и наклон */
  width: 90px; /* Увеличенная длина линии */
  height: 1px; /* Толщина линии */
  background-color: #333; /* Цвет линии */
}

/* Стили заголовка */
.section-title {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1; /* Убираем дополнительные отступы */
  display: inline-block; /* Сохраняем блочное поведение для заголовка */
}

.job-application-title{
  width: 52%;
  text-align: center;
  padding-bottom: 20px;
}

.job-requirements {
  width: 45%;
  margin-bottom: 40px;
}

.requirements-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 50px;
}

.requirements-list li {
  margin-bottom: 10px;
  line-height: 1.6em;
  position: relative;
}

.requirements-list li::before {
  content: '•';
  position: absolute;
  left: -15px;
}

.job-application-form {
    width: 52%;
  padding: 30px;
}

.contact-form-career{
width: 100%;
    height: 100%;
}

.VIEW-ALL-contact{
    position: relative;
    width: 56%;
    left: 24%;
    z-index: 10;
}


input[type="text"], input[type="email"], textarea {
  width: 100%;
  outline: none;
  height: 5vh;
  font-size: calc(14*(100vw / 1280));
}

textarea {
  height: 100px;
  resize: none;
}

.file-upload {
  margin: 20px 0;border: 1px dashed #333;
  position: relative;
}

input[type="file"] {
  display: none;
}

.file-upload label {
    display: block;
    /*border: 1px dashed #333;*/
    padding: 10px;
    cursor: pointer;
    width: 100%;
    /* text-align: center;*/
}

.privacy {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.privacy input[type="checkbox"] {
  margin-right: 10px;
}

.apply-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-weight: bold;
}

.apply-btn .line {
  width: 30px;
  height: 1px;
  background: #333;
}

.apply-btn .arrow {
  transition: transform 0.3s;
}

.apply-btn:hover .arrow {
  transform: translateX(5px);
}

.subtext-help{
font-size: calc(16*(100vw/1280));
}

/********************************************* career end *********************************************/


.nav-active{
  color: red;
}

.animationbar {
  padding-top: 10%;
  padding-bottom: 10%;
  background-color: rgba(0, 0, 0, 0); /* Полупрозрачный черный фон */
}

.animationbar-menu{
 display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  }

.animationbar a{
  font-family: "Onest";
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  color: #EEEEEE;
  transition: color 0.3s ease;
  text-decoration: none;
  font-style: normal;
  font-size: 12px;
  line-height: 35px;
}



/********************************************* current animation *********************************************/
.current-animation-container {
    width: 100vw;
    height: auto;
    padding-top: 6%;
    background-color: rgba(22, 21, 21, 1);
    clip-path:ellipse(121% 99% at 50% 0%);
          /*clip-path: ellipse(93% 94% at 50% 0%);*/
    text-align: center;
}

.current-animation-navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 30px;
}

.current-animation-navigation-mob{
    display: none;
}

.current-workshop-navigation-mob{
    display: none;
}

.current-animation-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: rgb(238, 238, 238);
    font-family: "Onest";

}

.prev-current-animation, .next-current-animation {
    color: rgba(134, 134, 134, 1);
    text-decoration: none;
    font-size: 1rem;
    font-family: "Onest";

    font-weight: 500;
}

.prev-current-animation:hover, .next-current-animation:hover {
   color: rgb(238, 238, 238);
}

.current-animation-description {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.6;
    color: rgb(238, 238, 238);
    font-family: "Onest";

}

.current-animation-media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 10%;
}

.current-animation-media video {
    width: 1260px;
    height: 708px;
    border-radius: 15px;
    object-fit: cover;
}
/********************************************* end current animation *********************************************/

/********************************************* current workshop *********************************************/
.current-workshop-container {
    width: 100vw;
    height: auto ;
    padding-top: 6%;
    padding-bottom: 5%;
    background-color: rgba(246, 246, 246, 1);
    text-align: center;
}

.current-workshop-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 30px;
}

.current-workshop-title {
    font-family: "Onest";
    font-style: normal;
    font-weight: 400;
    font-size: 2.5rem;
    font-weight: bold;
    color: rgba(22, 21, 21, 1);
}

.prev-current-workshop, .next-current-workshop {
    color: rgba(134, 134, 134, 1);
    text-decoration: none;
    font-size: 1rem;
    font-family: "Onest";
    font-weight: 500;
}

.prev-current-workshop:hover, .next-current-workshop:hover {
   color: rgb(238, 238, 238);
}

.current-workshop-description {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.6;
    color: rgba(22, 21, 21, 1);

    font-family: "Onest";

}

.current-workshop-media {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 40px;
}

.current-workshop-media video {
    width: 1260px;
    max-width: 708px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.workshop-content-item{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}

.workshop-content-item img{
    border-radius: 15px;
}

/********************************************* end current workshop *********************************************/

/********************************************* media *********************************************/

/* Адаптивные стили - отображение панели и гамбургер-меню на мобильных устройствах */
@media (max-width: 768px) {

.navbar {
height: 50px;
}
  .navbar-menu, .navbar-social {
    display: none; /* Скрываем меню и соцсети в полной версии */
  }

  .navbar-toggle {
    display: block;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
  }

  .navbar-panel.active {
    display: flex; /* Показываем раскрывающееся меню */
  }

  .open-position-container{
    clip-path: ellipse(190% 100% at 50% 0%); /* Еще более широкий эллипс */
  }

 
}



/* Экстра большие экраны (больше 1200px) */
@media (min-width: 2560px) {

.navbar {
height: 93px;
}
.workshop-content-mob {
  display: none;
  }
.animated-block p{
padding-left: 25%;
}

.animation-content{
gap:120px;
}

.animated-block-workshop p {
    padding-left: 25%;
}

.navbar-logo a img {
    padding-left: 50%;
    padding-top: 0%;
    scale: 1.6;
}

.navbar-social{
    padding-right: 2%;
    scale: 1.6;
    }

 .navbar-panel {
    display: none; /* Скрываем панель на больших экранах */
  }
  .animation-content-mob{
      display: none;
    }

    .footer-small {
       display: none;
    }
    .workshop-content-mob{
        display: none;
    }

    .contact-small-us-title {
    display: none;
}

.logo-container{
        scale: 1.6;
        left: 54.5%;
            transform: translate(-50%, -40%);
}

textarea {
  height: 200px;
  resize: none;
}

 }


/* Экстра большие экраны (больше 1200px) */
@media (min-width: 1200px) {
 .navbar-panel {
    display: none; /* Скрываем панель на больших экранах */
  }
  .animation-content-mob{
      display: none;
    }

    .footer-small {
       display: none;
    }
    .workshop-content-mob{
        display: none;
    }

    .contact-small-us-title {
    display: none;
}

.workshop-content-mob {
  display: none;
  }


 }


/* Планшеты (768px - 1023px) */
@media (max-width: 1200px) {

.submit-btn{
    padding-top: 8%;
    padding-left: 24%;
    width: 91vw;
    left: 0%;
}

.canoe-logo{
    width: 100%;
    height: 55%;
    position: relative;
    padding-bottom: 0%;
    overflow: hidden;
    left: 50%;
    font-size: calc(1px + 257*(100vw / 1280));
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

/*.fullscreen-video-container{
clip-path: ellipse(100% 58% at 50% 26%);
}*/

  .navbar-toggle {
    display: block;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
  }

  .navbar-panel.active {
    display: flex; /* Показываем раскрывающееся меню */
  }

    .navbar-menu, .navbar-social {
    display: none; /* Скрываем меню и соцсети в полной версии */
  }

  .animation-content-mob{
  display: flex;

    }

  escription-text p {
        font-size: 16px;
    }
.text-left {
  font-size: 16px;
  line-height: 16px;
}

.text-right {
   font-size: 16px;
  line-height: 16px;
}

.animation-title {
          text-align: left;
        font-size: 44px;
        padding-left: 3%;
}

.animation-descriptio-text {
    width: 93.3%;
    font-family: Onest;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding-left: 3%;
}

.animation-page .animation-descriptio-text{
  width: 93.3%;
  padding-left: 0%;
}
.animation-content{
    display: none;
}

.animated-block p {
    font-size: 16px;
}

.workshop-content{
    display: none;
}

.workshop-title{
           text-align: left;
        font-size: 44px;
        padding-left: 3%;
}

.workshop-descriptio-text{
width: 93.3%;
 font-size: 14px;
  text-align: left;
   padding-left: 3%;
}

.animation-page .workshop-descriptio-text {
    width:93.3%;
    padding-left: 0%;
}

.open-position-container {
        width: 100vw;
        height: auto;
        display: flex;
        background-color: rgba(22, 21, 21, 1);
        color: #ffffff;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-start;
        padding-bottom: 15%;
        padding-top: 3%;
}

    .open-position-container .header {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .open-position-container .positions {
      width: 97%;
      padding-left: 3%;
      padding-top: 0%;
    }

    .open-position-container .position-arrow{
    font-size: 36px;
    }

      .footer-small {
        display: block;
        padding-top: 0px;
        padding-bottom: 15%;
        width: 100%;
        text-align: center;
         font-family: "Onest";
    }

    .footer {
      display: none;
    }
.footer-left{

font-size: 12px;
}

.footer-right{

font-size: 12px;
}
    .contact-us-title {
        display: none;
    }

    .contact-small-us-title{
      display: block;
      width: 93vw;
    }

    .footer-left{
      position: static;
      padding-top: 40px;
    }

    .footer-right{
        position: static;
    }

    .contact-us::after {
            bottom: 73px;
    }

 .intro-text h1{
        font-size: 32px;
        max-width: 100%;
        width: 94.3%;
        left: 13px;
        top: 153px;
        font-style: normal;
        font-weight: 500;
        font-size: 32px;
        line-height: 40px;
        color: #161515;
 }

        .cg-industry-section {
             height: auto;
             padding-left:0%;
             padding-right: 0%;
        }

         .description-container {
      flex-direction: column; /* Становится колонкой на маленьких экранах */
      align-items: center;
  }

.description-text {
 width: 94.3%;
}

.column-1, .column-2 {
text-align: left;
}

.column-2 {
 width: 100%; /* Каждая колонка занимает 45% ширины */
}
.contact-us h1 {
    /* text-align: left; */
    font-size: 44px;
    /* font-weight: normal; */
    font-family: 'Onest';
    /* text-transform: uppercase; */

    /* padding-top: 20px; */
}

.contact-info .subtext {
    font-size: 18px;

}
.subtext-help {
    font-size: 16px;
}

.form-group label {
    font-size: 14px;
}

.open-position-container .header h1{
font-size: 44px;
text-transform: none;
}

.open-position-container .position-title {
    font-size: 26px;
}
.open-position-container .position-details {
    font-size: 12px;
}
.animated-block-workshop p {
font-size: 16px;
}

    .social-icons {
        display: flex;
        flex-direction: column;
     padding-top: 5%;
    padding-left: 0%;
     scale: 1;
    width: 10%;
    height: 11%;

    }

.contact-us-info {
    display: flex;
            width: 92vw;
        height: 70%;
    flex-wrap: nowrap;
}
    .contact-info{
       left:0%;
       display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

        .contact-form {
                width: 91vw;
        padding-left: 0%;
    }
    .blur-effects{
        display: none;
    }

.open-position-description{
  width: 93.3%;
  padding-left: 3%;
}

.animation-small-item-VIEW{
    width: 91vw;
}
.VIEW-ALL-workshop {
    padding-top: 8%;
    padding-left: 24%;
    width: 91vw;
    left: 0%;
}

.references-info{
    width: 94.3%;
    gap: 10px;
}

.buttons-container {
    flex-direction: column;
    align-items: center;
}
.column-2 {
    font-size: 16px;
}

.animated-block-aboutUs{
    width: 90%;
}


.animated-block-aboutUs p {
    font-size: 16px;
    padding-left: 20px;
}

.job-listing-container {
      padding: 20px;
  }

  .job-title {
      font-size: 2rem;
  }

  .job-subtitle {
      font-size: 1rem;
  }

  input[type="text"], input[type="email"], textarea {
      font-size: 0.9rem;
  }

  .job-header{
  width: 93.3%;
  }

  .job-requirements{
    width: 93.3%;
  }

  .title-container{
    left: 12px;
  }

  .line-decoration{
    left: -20px;
    width: 56px;
  }

  .section-title{
    font-size: 1rem;
    padding-left: 48px;
  }

  .job-application-title{
    width: 87%;
  }

  .job-application-form{
    padding: 0px;
  }

  .requirements-list{
    padding-left: 20px;
  }

  .job-header-info{
        text-align: center;
  }

  .job-title{
    text-align: center;
  }

  .VIEW-ALL-contact{
padding-top: 8%;
    padding-left: 24%;
    width: 88vw;
    left: 0%;
  }

  .animation-page{
padding-top: 10%;
}

.current-animation-navigation-mob{
    display: flex;
    height: 28%;
    margin-bottom: 20px;
    padding: 30px;
    align-items: flex-end;
    justify-content: space-between;
}

.current-workshop-navigation-mob{
    display: flex;
    height: 28%;
    margin-bottom: 20px;
    padding: 30px;
    align-items: flex-end;
    justify-content: space-between;
}

.current-animation-navigation .prev-current-animation{
    display: none;
}

.current-animation-navigation .next-current-animation{
    display: none;
}

.current-animation-description{
    width: 93.3%;
}

.current-animation-media video{
    width: 92%;
    height: auto;
    border-radius: 11px;
    object-fit: none;
}

    .contact-us {
        height: auto;
        display: flex
;
        flex-direction: column;
    }


.workshop-content-mob {
  display: flex;
  }

 }

/* Смартфоны (480px - 767px) */
@media (max-width: 767px) {

    .text-container {
                top: 87%;
        bottom: 0%;
                background-color: #161515;
    }

    .fullscreen-video-container {
                clip-path: none;
                 height: 86vh;
    }

    .animation-content{
        display: none;
    }


.animation-small-item-VIEW a {
  text-decoration: none;
}
    .workshop-content{
        display: none;
    }

    .VIEW-ALL-workshop{
        padding-top: 8%;
        padding-left: 24%;
    }

      .VIEW-ALL-workshop a{
        text-decoration: none;
    }

   .footer {
        display: none;
    }
   .footer-small {
        display: block;
       padding-top: 15px;
        padding-bottom: 15px;
           width: 78%;
    }

    .workshop-content-item{
   flex-wrap: wrap;
    }

    .current-workshop-description{
        width: 93.3%;
    }

.current-workshop-navigation{
    margin-top: 30px;
}


    .contact-us {

        height: auto;
        display: flex;

        flex-direction: column;
    }

    .contact-us .contact-info {

    display: flex;
    flex-direction: row;

}

.social-icons {
    display: flex;
    flex-direction: column;
}

.contact-form {
    width: 117%;
}

.contact-info {
gap: 30px;
    width: 117%;
}

.contact-us-title {
    display: none;
}

.contact-small-us-title{
display: block;
}

.animation-descriptio-text {

 width: 93.3%;
        font-family: Onest;
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
}
.animation-content{
    display: none;
}

.workshop-content{
    display: none;
}

.open-position-container {
     width: 100vw;
    height: auto;
    display: flex;
    background-color: rgba(22, 21, 21, 1);
    color: #ffffff;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

    .open-position-container .header {

        margin-top: 30px;
        margin-bottom: 30px;
    }

    .open-position-container .positions {
      width: 97%;
      padding-left: 3%;
    }

    .footer {
      display: none;
    }

    .contact-us-title {
        display: none;
    }

    .contact-small-us-title{
      display: block;
    }

    .footer-left{
      position: static;
      padding-top: 40px;
    }

    .footer-right{
        position: static;
    }

    .contact-us::after {
            bottom: 73px;
    }

         .intro-text h1{       font-size: 32px;
        max-width: 100%;

        width: 93.3%;

        left: 13px;
        top: 153px;

        font-style: normal;
        font-weight: 500;
        font-size: 32px;
        line-height: 40px;

        color: #161515;
        }

        .cg-industry-section {
             height: auto;
        }

            .description-text {
        width: 93.3%;

 }
        .column-1, .column-2 {

         text-align: left;

    }

.animation-screen-container{
    /*width: 90px;*/
}

.description-text p {
        font-size: 16px;
    }

 }

/* Маленькие устройства (до 479px) */
@media (max-width: 479px) {

.navbar {
height: 50px;
}
  .animation-content-mob{
  display: flex;

    }

.description-text p {
        font-size: 16px;
    }
.text-left {
  font-size: 16px;
  line-height: 16px;
}

.text-right {
   font-size: 16px;
  line-height: 16px;
}

.animation-title {
          text-align: left;
        font-size: 44px;
        padding-left: 3%;
}

.animation-descriptio-text {
    width: 93.3%;
    font-family: Onest;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding-left: 3%;
}

.animation-page .animation-descriptio-text{
  width: 93.3%;
  padding-left: 0%;
}
.animation-content{
    display: none;
}

.animated-block p {
    font-size: 16px;
}

.workshop-content{
    display: none;
}

.workshop-title{
           text-align: left;
        font-size: 44px;
        padding-left: 3%;
}

.workshop-descriptio-text{
width: 93.3%;
 font-size: 14px;
  text-align: left;
   padding-left: 3%;
}

.animation-page .workshop-descriptio-text {
    width:93.3%;
    padding-left: 0%;
}

.open-position-container {
        width: 100vw;
        height: auto;
        display: flex;
        background-color: rgba(22, 21, 21, 1);
        color: #ffffff;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-start;
        padding-bottom: 15%;
}

    .open-position-container .header {

        margin-top: 30px;
        margin-bottom: 30px;
    }

    .open-position-container .positions {
      width: 100%;
      padding-left: 3%;
      padding-right: 3%;
      padding-top: 0%;
    }

    .open-position-container .position-arrow{
    font-size: 36px;
    }

      .footer-small {
        display: block;
        padding-top: 0px;
        padding-bottom: 15%;
        width: 100%;
        text-align: center;
         font-family: "Onest";
    }

    .footer {
      display: none;
    }
.footer-left{
    font-size: 12px;
}

.footer-right{
    font-size: 12px;
}

.contact-us-title {
    display: none;
}

.contact-small-us-title{
    display: block;
    width: 93vw;
}

.footer-left{
    position: static;
    padding-top: 40px;
}

.footer-right{
    position: static;
}

.contact-us::after {
    bottom: 73px;
}

.intro-text h1{
    font-size: 32px;
    max-width: 100%;
    width: 93.3%;
    left: 13px;
    top: 153px;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    color: #161515;
}

.cg-industry-section {
    height: auto;
}

.description-text {
    width: 93.3%;
}

.column-1, .column-2 {
    text-align: left;
}

.contact-us h1 {
    /* text-align: left; */
    font-size: 44px;
    /* font-weight: normal; */
    font-family: 'Onest';
    /* text-transform: uppercase; */
    /* padding-top: 20px; */
}

.contact-info .subtext {
    font-size: 18px;
}

.subtext-help {
    font-size: 16px;
}

.form-group label {
    font-size: 14px;
}

.open-position-container .header h1{
    font-size: 44px;
    text-transform: none;
}

.open-position-container .position-title {
    font-size: 26px;
}
.open-position-container .position-details {
    font-size: 12px;
}
.animated-block-workshop p {
font-size: 16px;
}

    .social-icons {
        display: flex;
        flex-direction: column;
     padding-top: 5%;
    padding-left: 0%;
     scale: 1;
    width: 10%;
    height: 11%;

    }

.contact-us-info {
    display: flex;
            width: 92vw;
        height: 70%;
    flex-wrap: nowrap;
    z-index: 1;
}
    .contact-info{
       left:0%;
    }

        .contact-form {
                width: 91vw;
        padding-left: 0%;
    }
    .blur-effects{
        display: none;
    }

.open-position-description{
  padding-left: 3%;
}

.animation-small-item-VIEW{
    width: 91vw;
}
.VIEW-ALL-workshop {
    padding-top: 8%;
    padding-left: 24%;
    width: 91vw;
    left: 0%;
}

.references-info{
    width: 93.3%;
    gap: 10px;
}

.buttons-container {
    flex-direction: column;
    align-items: center;
}
.column-2 {
    font-size: 16px;
}

.animated-block-aboutUs{
    width: 90%;
}


.animated-block-aboutUs p {
    font-size: 16px;
    padding-left: 20px;
}

.job-listing-container {
      padding: 20px;
  }

  .job-title {
      font-size: 2rem;
  }

  .job-subtitle {
      font-size: 1rem;
  }

  input[type="text"], input[type="email"], textarea {
      font-size: 0.9rem;
  }

  .job-header{
  width: 93.3%;
  }

  .job-requirements{
    width: 93.3%;
  }

  .title-container{
    left: 12px;
  }

  .line-decoration{
    left: -20px;
    width: 56px;
  }

  .section-title{
    font-size: 1rem;
    padding-left: 48px;
  }

  .job-application-title{
    width: 87%;
  }

  .job-application-form{
  width: 86%;
    padding: 0px;
  }

  .requirements-list{
    padding-left: 20px;
  }

  .job-header-info{
        text-align: center;
  }

  .job-title{
    text-align: center;
  }

  .animation-page{
padding-top: 15%;
}

.current-animation-navigation-mob{
    display: flex;
    height: 5%;
    margin-bottom: 20px;
    padding: 30px;
    align-items: flex-end;
    justify-content: space-between;
}

.current-workshop-navigation-mob{
    display: flex;
    height: 5%;
    margin-bottom: 20px;
    padding: 30px;
    align-items: flex-end;
    justify-content: space-between;
}

.current-animation-navigation .prev-current-animation{
    display: none;
}

.current-animation-navigation .next-current-animation{
    display: none;
}

.current-workshop-navigation .prev-current-workshop{
    display: none;
}

.current-workshop-navigation .next-current-workshop{
    display: none;
}

.current-animation-description{
    width: 93.3%;
}

.current-animation-container {
    width: 100vw;
    height: 100vh;
    background-color: rgb(18 18 18);

}

.current-animation-media video{
    width: 92%;
    height: auto;
    border-radius: 11px;
    object-fit: none;
}
.submit-btn{
padding-left: 24%;
}

.workshop-content-mob {
  display: flex;
  }

  .current-animation-navigation{
      display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 30px;
  }

  .workshop-content-item img{
    width: 350px;
}

.blur-effects-workshop{
display: none;
}

}


/*--------------------------------------------------------------------------------------------*/

    .animation-content-mob{
        flex-direction: column;
        gap: 35px;
    }


.animation-small-item-mob{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  align-content: center;

}

.animation-small-video{
 width: 94%;
  height: 62%;
  overflow: hidden;
  border-radius: 16px;
  border: 6px solid rgb(255, 255, 255); /* Бордер с начальной альфой */
  transition: border-color 0.3s ease-in-out, width 0.3s ease;
}


.animation-small-video-border{
    overflow: hidden;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.animation-small-item-mob video {
  width: 100%;
  transform: scale(1.7) translateY(-2%);
  height: auto;
  display: block;
}

/* Эффект наведения на контейнер */
.animation-small-video:hover {
  border-color: rgba(22, 21, 21, 0.3); /* Плавное изменение альфы бордера */
}

.animation-small-video-description{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  align-content: flex-start;
  font-family: "Onest";
  width: 94%;
  color: white;
  transition: width 0.3s ease;
}

.animation-small-video-description-title{
  font-family: "Onest";
  color: white; text-decoration: none;
  font-size: 32px;
  transition: font-size 0.3s ease;
}

.animation-small-video-description-text{
  font-family: "Onest";
  color: rgba(134, 134, 134, 1); text-decoration: none;
  opacity: 1;
  transition: backgroud-color 0.5s ease, color 0.5s ease,margin-top 0.3s ease, opacity 0.3s ease;
  font-size: 14px;
  text-decoration: none;
  overflow: hidden;
  margin-top: 0%;
}

.workshop-small-item{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  align-content: center;
}

.workshop-small-item a {
    width: 95%;
}

.workshop-small-img{
 width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 6px solid rgb(255, 255, 255); /* Бордер с начальной альфой */
  transition: border-color 0.3s ease-in-out, width 0.3s ease;
  border-color: black;
}

.workshop-small-border{
    overflow: hidden;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

/* Эффект наведения на контейнер */
.workshop-small-border:hover {
  border-color: rgba(22, 21, 21, 0.3); /* Плавное изменение альфы бордера */
}

.workshop-small-description{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  align-content: flex-start;
  font-family: "Onest";
  width: 94%;
  color: white;
  transition: width 0.3s ease;
}

.workshop-small-description-title{
  font-family: "Onest";
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 32px;
  transition: font-size 0.3s ease;
}

.workshop-small-description-text{
  font-family: "Onest";
  color: rgba(134, 134, 134, 1);
  text-decoration: none;
  opacity: 1;
  transition: backgroud-color 0.5s ease, color 0.5s ease,margin-top 0.3s ease, opacity 0.3s ease;
  font-size: 14px;
  text-decoration: none;
  overflow: hidden;
  margin-top: 0%;
}

.footer-small{
   padding-top: 15px;
   padding-bottom: 15px;
}

.workshop-content-mob {
  background-color: rgba(246, 246, 246, 1);
  width: 100%;
  height: 75%;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-content: space-between;
  padding-bottom: 5%;
  gap: 35px;
  }
 /*--------------------------------------------------------------------------------------------*/

/* Стили для планшетов и больших экранов */
/*
@media (min-width: 769px) {

  .open-position-container{
    clip-path: ellipse(112% 92% at 50% 0%); */
/* Еще более широкий эллипс *//*

  }

    .current-animation-container{
     clip-path: ellipse(112% 92% at 50% 0%); */
/* Еще более широкий эллипс *//*

  }
}

@media (min-width: 480px) {

  .open-position-container{
    clip-path: ellipse(93% 94% at 50% 0%); */
/* Эллипс, занимающий почти всю ширину *//*

  }

  .current-animation-container{
     */
/* Эллипс, занимающий почти всю ширину *//*

  }

}
*/


