* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 110% !important;
}

:root {
  --base-font-size: 1.2vw;
  --services_item_info_title: 2vw;
  --title: 5.2vw;
  --header: 3.2vw;
  --about_text: 3.2vw;
  --about_block_item_title: 3.2vw;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 100%;
  font-family: inherit;
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  text-align: inherit;
  line-height: inherit;
  vertical-align: baseline;
}

@font-face {
  font-family: "SONGER_G_Regular";
  src: url("fonts/SONGER_G_Regular.eot");
  src: url("fonts/SONGER_G_Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SONGER_G_Regular.woff") format("woff"), url("fonts/SONGER_G_Regular.ttf") format("truetype");
}

@font-face {
  font-family: "SONGER_SE_Regular";
  src: url("fonts/SONGER_SE_Regular.eot");
  src: url("fonts/SONGER_SE_Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SONGER_SE_Regular.woff") format("woff"), url("fonts/SONGER_SE_Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Inter-Regular";
  src: url("fonts/Inter-Regular.eot");
  src: url("fonts/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Inter-Regular.woff") format("woff"), url("fonts/Inter-Regular.ttf") format("truetype");
}

body {
  margin: 0px;
  padding: 0px;
  font-size: var(--base-font-size);
  line-height: 1.4vw;
  background-color: #0d0d10;
  font-family: "Inter-Regular";
  color: #ffffff;
  letter-spacing: 0em;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

.section {
  width: 100%;
}

.container {
  width: 96%;
  margin: 0 auto;
  position: relative; /* Необходимо для корректного позиционирования псевдоэлемента */
}

.header_contacts {
  font-family: "SONGER_G_Regular";
}

a {
  color: #ffffff;
  text-decoration: none;
}

.header {
  font-size: var(--header);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 15px 0px 30px 0px;
}

.header_menu {
  font-family: "SONGER_G_Regular";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.logo img {
  width: 100%;
}

/* stories */
.stories-wrapper {
}

.stories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 30px 0px;
}

.stories_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(20% - 24px);
  flex: 0 0 calc(20% - 24px);
  margin-right: 30px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.stories_item:hover {
  scale: 1.05;
  -webkit-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
  cursor: pointer;
}

.stories_item video {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

/* Стили для модального окна */
.modal {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 45vw; /* 45% от ширины экрана для соотношения 9:16 */
  height: 80vh; /* 80% от высоты экрана */
  max-width: calc(80vh * (9 / 16)); /* Максимальная ширина, чтобы сохранить соотношение сторон 9:16 */
  max-height: calc(45vw * (16 / 9)); /* Максимальная высота, чтобы сохранить соотношение сторон 9:16 */
  border-radius: 30px;
  overflow: hidden;
}

.modal-content video {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.close:hover {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* letter-wrap  */
.letter-wrap {
  display: inline-block;
  position: relative;
}

.letter-wrap * {
  pointer-events: none;
}

.letter-wrap__word {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.letter-wrap__char {
  display: inline-block;
  position: relative;
}
.letter-wrap__char-inner {
  display: inline-block;
}
.letter-wrap__char-inner:after {
  content: attr(data-letter);
  position: absolute;
  top: 100%;
  left: 0;
}

/* services */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  row-gap: 30px;
  margin-top: 60px;
  -webkit-transform: translateY(2%);
  -ms-transform: translateY(2%);
  transform: translateY(2%);
}

.services_item {
  position: relative;
}

.services_item:hover {
  cursor: pointer;
}

.services_item:hover .services_item_thumb img {
  scale: 1.05;
}

.services_item_thumb {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Устанавливает соотношение сторон 1:1, чтобы блок был квадратным */
  overflow: hidden;
  border-radius: 30px;
}

.services_item_thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services_item_info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 100%;
  max-width: 80%;
  border-radius: 30px;
  background: -o-linear-gradient(346deg, rgba(19, 19, 19, 0.1) 13.54%, rgba(19, 19, 19, 0.5) 83.06%);
  background: linear-gradient(104deg, rgba(19, 19, 19, 0.1) 13.54%, rgba(19, 19, 19, 0.5) 83.06%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.services_item_info_title {
  font-family: "SONGER_G_Regular";
  font-size: var(--services_item_info_title);
}

.services_item_info_text {
  line-height: 140% !important;
}

.services_item:nth-child(even) {
  -webkit-transform: translateY(40%);
  -ms-transform: translateY(40%);
  transform: translateY(40%);
}

/* fixed_menu */

.fixed_menu {
  border-radius: 30px;
  width: 300px;
  background: -o-linear-gradient(358deg, rgba(0, 0, 0, 0.6) 0.44%, rgba(181, 181, 181, 0.6) 99.72%);
  background: linear-gradient(92deg, rgba(0, 0, 0, 0.6) 0.44%, rgba(181, 181, 181, 0.6) 99.72%);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);

  padding: 15px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(100%) scale(0.5);
  -ms-transform: translateX(-50%) translateY(100%) scale(0.5);
  transform: translateX(-50%) translateY(100%) scale(0.5);
  opacity: 0;
  z-index: 10;
}

.fixed_menu_soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bg_fixed_menu {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 9;
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  display: none;
}

.call {
  background-color: #fff;
  color: #000;
  padding: 10px 10px;
  width: auto !important;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 13px;
  font-family: "SONGER_G_Regular";
}

.fixed_menu a {
  width: 34px;
  height: 34px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.fixed_menu a:hover {
  scale: 0.95;
}

.fixed_menu img {
  width: 34px;
  height: 34px;
}

h2.title span {
  color: #75db18;
}

h1.title span {
  color: #75db18;
}

.title {
  font-family: "SONGER_G_Regular";
  font-size: var(--title);
  line-height: 94% !important;
  letter-spacing: -1%;
  margin-top: 60px;
}

.cooperation .title {
  margin-top: 0px;
}

.title img {
  width: 4vw;
  vertical-align: middle; /* Выравнивание изображения по середине текста */
}

.about {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  padding-bottom: 56.25%; /* Соотношение сторон 16:9 */
  margin-top: 60px;
}

.about img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about_text {
  font-family: "SONGER_G_Regular";
  font-size: var(--title);
  color: #1e2419;
  overflow-wrap: break-word; /* Обеспечивает перенос слов целиком */
  word-wrap: break-word; /* Поддержка для старых браузеров */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; /* Включает автоматическую расстановку переносов (если поддерживается) */
  margin-top: 60px;
}

.about_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}

.about_block_item_block {
  display: grid;
  grid-template-columns: 2fr 1.3fr 0.5fr;
  gap: 30px;
}

.about_block_item {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
}

.about_block_item_title {
  font-family: "SONGER_G_Regular";
  font-size: var(--about_block_item_title);
}

.about_block_item_img {
  position: relative;
  width: 100%;
}

.about_block_item_img_inner {
  position: relative;
  scale: 1;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 100%;
}

.about_block_item_img img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.about_block_item_img .lottie {
  position: absolute;
  width: 100%;
  scale: 1.2;
  top: 0;
  left: 0;

  height: 100%;
  z-index: -2;
}

.about_block_item video {
  width: 200px;
  height: 200px;
}

.about_block_item_text {
  margin-top: 6px;
  max-width: 80%;
  line-height: 140% !important;
  opacity: 0.6;
}

.preloader {
  position: fixed;
  background-color: #131313;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.preloader_digit {
  font-family: "SONGER_G_Regular";
  font-size: 180px;
  color: #fff;
  position: absolute;
  left: 2%;
  bottom: 1%;
  z-index: 31;
  text-align: right;
  width: auto;
}

.smooth-wrapper {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.smooth-content {
  position: absolute;
  width: 100%;
  will-change: transform;
}

.lottie {
  width: 200px;
  height: 200px;
}

.fixed_menu_content_img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.fixed_menu_content_img img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.fixed_menu_content {
  display: none;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%); /* начальная позиция ниже экрана */
  opacity: 0; /* начальная прозрачность */
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease; /* плавный переход */
}

.fixed_menu_content_active {
  display: block; /* отображается при активации */
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); /* перемещается в исходную позицию */
  opacity: 1; /* становится видимым */
}

.fixed_menu_content_title {
  font-family: "SONGER_G_Regular";
  font-size: var(--services_item_info_title);
  margin-top: 20px;
}

.fixed_menu_content_info {
  font-size: 16px;
  line-height: 140% !important;
  margin-top: 10px;
  margin-bottom: 20px;
}

.close_fmc_widget,
.close_fmc {
  position: absolute;
  width: 50px !important;
  height: 50px !important;
  right: 10px;
  top: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.close_fmc_widget:hover {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  cursor: pointer;
}

.close_fmc:hover {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  cursor: pointer;
}

.services_item_info_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.open {
  width: 50px !important;
  height: 50px !important;
}

/* Team */

.team {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.team_item_photo {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.team_item_photo_block {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.team_item_photo_active .team_item_photo_thumb,
.team_item_photo_active .team_item_photo_name {
  min-width: 170px;
  min-height: 170px;
  width: 21vw; /* 30% от ширины экрана */
  height: 21vw; /* 30% от ширины экрана */
}

.team_item_photo_active .team_item_text {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.team_item_photo_thumb,
.team_item_photo_name {
  min-width: 300px;
  min-height: 300px;
  width: 30vw; /* 30% от ширины экрана */
  height: 30vw; /* 30% от ширины экрана */
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.team_item_photo_thumb {
  position: relative;
  z-index: 2;
}

.team_item_photo_name {
  background-color: #fff;
  position: relative;
  left: -5%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10%;
  color: #000;
}

.name {
  font-family: "SONGER_G_Regular";
  font-size: var(--services_item_info_title);
}

.team_item_photo_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
}

.team_item_text {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 0;
  -webkit-transform: translateY(300px);
  -ms-transform: translateY(300px);
  transform: translateY(300px);
  max-width: 80%;
}

.team_item_text p {
  margin: 10px 0px;
  line-height: 140% !important;
}

.team_item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.1fr; /* Установка минимальной ширины 0 для первого столбца */
  gap: 60px;
  height: 50vh;
  position: relative;
}

.team_title {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.team_title .title {
  margin-top: 0px;
}

.line {
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 10%;
  left: 0;
  scale: 1.2;
}

.partners .about_block_item_img_inner {
  background-color: #fff;
  border-radius: 30px;
  width: 100%;
  padding-top: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden; /* Чтобы скрыть части изображения, выходящие за границы */
}

.partners .about_block_item_img_inner img {
  position: absolute;
  width: auto;
  max-width: 80%;
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* promo */

.promo_block {
  position: relative;
  width: 100%;
  height: 90vh;
  margin-top: 60px;
}

.promo {
  position: relative;
  width: 100%;
  border-radius: 30px;
  height: 90vh;
  overflow: hidden;
  background-color: #131313;
}

.promo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; /* Обеспечивает покрытие всего контейнера */
}

.promo_block .title {
  position: relative;
  text-indent: 8.8em;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); /* Начальное положение для анимации */
  padding-left: 15px;
}

/* cooperation */

.cooperation {
  position: relative;
  color: #000;
  width: 100%;
  border-radius: 30px;
  padding: 15px;
  background-color: #75db18;
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 60px;
}

.cooperation_info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.cooperation_info_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.cooperation_info_item_title {
  font-family: "SONGER_G_Regular";
  font-size: var(--services_item_info_title);
}

/* footer */

.footer_phone {
  padding: 15px;
  display: block;
  color: #fff;
  border-radius: 30px;
  width: 100%;
  text-align: center;
  font-size: 15vw;
  margin-top: 30px;
  font-family: "SONGER_G_Regular";
  background-color: #2d2d2d;
}

.footer_block {
  display: grid;
  grid-template-columns: 1fr 1fr 0.5fr;
  gap: 30px;
  margin-top: 30px;
}

.footer_block_item {
  background-color: #2d2d2d;
  padding: 15px;
  color: #fff;
  border-radius: 30px;
  min-height: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer_block_item_contact {
  font-family: "SONGER_G_Regular";
  font-size: var(--services_item_info_title);
}

.footer_map {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.footer_map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  opacity: 0.5;
}

.footer_info a {
  text-decoration: underline;
}

.footer_info a:hover {
  color: #75db18;
}

.footer .logo {
  margin: 30px 0px;
}

.footer {
  padding-bottom: 60px;
}

/* widget */

.widget {
  position: fixed;
  left: 20px;
  bottom: 20px;
  overflow: hidden;
  border-radius: 30px;
  width: 100px;
  height: 180px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #131313;
  outline: 2px solid transparent;
  outline-offset: -3px;
  -webkit-box-shadow: 0 0 0 2px transparent;
  box-shadow: 0 0 0 2px transparent;
  -webkit-animation: gradient 3s infinite;
  animation: gradient 3s infinite;
}
/* 
@keyframes gradient {
  0% {
    box-shadow: 0 0 0 2px #f09433;
  }
  20% {
    box-shadow: 0 0 0 2px #e6683c;
  }
  40% {
    box-shadow: 0 0 0 2px #dc2743;
  }
  60% {
    box-shadow: 0 0 0 2px #cc2366;
  }
  80% {
    box-shadow: 0 0 0 2px #bc1888;
  }
  100% {
    box-shadow: 0 0 0 2px #f09433;
  }
} */

.widget video {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;

  height: 100%;
  cursor: pointer;
}

.widget.expanded {
  width: 200px;
  height: 360px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.widget .close_fmc {
  display: none;
}

/* progress_digit */

.progress_digit {
  position: fixed;
  right: 20px;
  bottom: 20px;
  text-align: right;
  z-index: 8;
  font-family: "SONGER_G_Regular";
  font-size: var(--about_block_item_title);
}

@media screen and (max-width: 900px) {
  .team_title {
    height: auto;
    margin-top: 60px;
  }
  .services {
    grid-template-columns: 1fr;
    margin-top: 60px;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }

  .footer_map {
    height: 250px;
  }

  .team {
    gap: 60px;
  }
  :root {
    --base-font-size: 16px;
    --services_item_info_title: 26px;
    --title: 32px;
    --header: 26px;
    --about_text: 26px;
    --about_block_item_title: 26px;
  }

  .services_item_info {
    max-width: 90%;
  }

  .about_block_item {
    grid-template-columns: 1fr 2.3fr;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .services_item:nth-child(even) {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }

  .widget {
    bottom: 12%;
  }

  .progress-ring {
    display: none;
  }

  .footer_block {
    grid-template-columns: 1fr;
  }

  .cooperation_info {
    grid-template-columns: 1fr;
  }

  .team_item_photo_active .team_item_photo_thumb,
  .team_item_photo_active .team_item_photo_name {
    min-width: 120px;
    min-height: 120px;
    width: 10vw; /* 30% от ширины экрана */
    height: 10vw; /* 30% от ширины экрана */
  }

  .team_item_photo_thumb,
  .team_item_photo_name {
    min-width: 160px;
    min-height: 160px;
    width: 18vw; /* 30% от ширины экрана */
    height: 18vw; /* 30% от ширины экрана */
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .header_contacts {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .header {
    font-size: 20px;
  }

  .about_block_item_block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about_block_item_img {
    position: relative;
    width: 100px;
  }

  .about_block {
    gap: 30px;
  }

  .about_block_item_text {
    max-width: 100%;
  }

  .team_item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    height: auto;
  }

  .promo_block {
    height: 50vh;
  }

  .promo {
    height: 50vh;
  }

  .title img {
    width: 6vw;
    vertical-align: middle;
  }

  .cooperation {
    height: auto;
    gap: 60px;
  }

  .stories-wrapper {
    display: none;
  }

  .promo_block .title {
    text-indent: 0em;
  }

  .team_item_photo_block {
    position: relative;
  }

  .progress_digit {
    font-size: 14px;
  }

  .name {
    font-size: 13px;
  }

  .line {
    display: none;
  }

  h1.title {
    margin-top: 30px;
  }

  .about_block_item_digit {
    display: none;
  }

  .footer_phone {
    font-size: 12vw;
  }

  .header_menu {
    width: 100%;
  }

  .container {
    width: 90%;
    margin: 0 auto;
    position: relative;
  }

  .team_item_photo_thumb,
  .team_item_photo_name {
    min-width: 150px;
    min-height: 150px;
    width: 20vw; /* 30% от ширины экрана */
    height: 20vw; /* 30% от ширины экрана */
  }

  .team_item_text {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    max-width: 100%;
  }

  .fixed_menu {
    display: block; /* отображается при активации */
    -webkit-transform: translateX(-50%) translateY(0%) scale(1);
    -ms-transform: translateX(-50%) translateY(0%) scale(1);
    transform: translateX(-50%) translateY(0%) scale(1);
    opacity: 1; /* становится видимым */
  }

  .partners .about_block_item_img_inner img {
    max-width: 80%;
  }

  .preloader_digit {
    font-size: 80px;
  }

  .footer_info {
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 14px;
  }

  .footer {
    padding-bottom: 120px;
  }
}

@media screen and (min-width: 1600px) {
}
