@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ThinItalic.woff2') format('woff2');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraLightItalic.woff2') format('woff2');
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraBoldItalic.woff2') format('woff2');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: white;
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  /*overscroll-behavior: none;*/
  -ms-overflow-style: none; /* IE/Edge */
  position: relative;
  background: #022751;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom,
    #72c9e6 0%,
    #72c9e6 50%,
    black 50%,
    black 100%);
  z-index: -1;
}

.scrollable {
  overflow-y: scroll;

  /* Firefox */
  scrollbar-width: none;

  /* Для WebKit-браузеров */
  -ms-overflow-style: none;  /* IE и Edge */
}

.scrollable::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none; /* Для старых версий Safari */
}

html::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.menu-container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1000px;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 20px; /* отступ между бургером и меню */
}

/* Контейнер меню */
.menu-inner {
  flex-grow: 1;
  position: relative; /* для позиционирования ссылок */
  text-align: center;
}

#menu-svg {
  width: 100%;
  height: 120px;
  display: block;
  margin-left: -17px;
}

/* Основное меню */
.labels {
  position: relative; /* или убрать */
  margin-top: 0;
  text-align: center;
}

.menu-label {
  font-size: 18px;
  font-weight: 400;
  background: transparent;
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  display: inline-block;
  white-space: nowrap;
  width: 160px;
  color: white;
  text-decoration: none;
  margin-top: 15px;
}

.menu-label:hover {
  border: 1px solid #eee;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-point {
  filter: none;
  transition: filter 0.1s ease;
}

.menu-point.glow {
  filter:
    drop-shadow(0 0 3px white)
    drop-shadow(0 0 5px white)
    drop-shadow(0 0 7px white);
}

.menu-label.active {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.menu-logo_text_img {
  height: 20px;
  width: auto;
}

.menu-logo-link {
  position: absolute;
  z-index: 1100;
  top: 40px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  cursor: pointer;
}

.menu-container.compact .menu-logo-link {
  display: block;
}

.menu-logo-link:hover {
  filter: drop-shadow(0 0 8px white);
  transition: filter 1s ease;
}

.menu-container.compact #menu-svg path {
  z-index: -1;
}

.mobile-only { display: none;}
.desktop-only { display: block; }

@media (max-width: 767px) {
  .mobile-only { display: block; width: 100vw;}
  .desktop-only { display: none; }
}

/* Мобильное меню */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -230px;
  width: 220px;
  height: calc(100vh - 68px);
  box-sizing: border-box;
  z-index: 1000;
  overflow-y: auto;
  background-color: rgba(2, 32, 47, 0.8);
  transition: left 0.3s ease;
  display: flex;
  flex-direction: row;
}

.mobile-menu.active {
  left: 0!important;
}

.mobile-menu-left {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  /*padding-left: 3px;*/
}

.mobile-menu-left svg {
  width: 40px;
  height: 100%;
  display: block;
}

.mobile-menu-right {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-top: 65px;
}

.mobile-menu-right a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  line-height: 60px;
  position: relative;
}

.mobile-point.glow {
  filter:
          drop-shadow(0 0 3px white)
          drop-shadow(0 0 2px white);
          drop-shadow(0 0 4px white);
}

/* Бургер */

.burger {
  display: none;
  margin-left: 10px;
  width: 56px;
  height: 44px;
  cursor: pointer;
  background: transparent;
  border: none;
  position: relative;
  z-index: 1001;
  transition: none;
}

.burger svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1120px) {
  .menu-label {
    width: 145px;
    font-size: 15px;
  }
}

/* Адаптив */
@media (max-width: 1024px) {
  .menu-container {
    max-width: none;
  }
  svg#menu-svg, .labels {
    display: none;
  }
  .burger {
    display: block;
  }
  .scroll-nav-arrow.scroll-nav-up {
    top: 55px!important;
  }
  .scrollbar {
    display: none!important;
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

.sky {
  height: 40vh;
  background: #72c7e6;
  text-align: center;
}
.see {
  position: relative;
  height: 60vh;
  background: linear-gradient(to top, #022751, #1b80ac);
  text-align: center;
  /*z-index: 1;*/
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*z-index: 1000;*/
}

.antitrix_img {
  position: relative;
  top: -117px
}

.antitrix_img {
    height: 400px;
    width: auto;
}

.antitrix_img:hover {
  filter: drop-shadow(0 0 10px #ffffff);
  transition: filter 1s ease;
}

/* добавляем надпись */
.logo-code {
  position: absolute;
  top: -85px;
  right: 565px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  font-size: 20px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.logo-code-cks {
  color: #1b80ac;
}

.logo-code-colon {
  color: #eeeeee;
}

.logo-code-x {
  color: #2f5272;
  font-weight: bold;
  opacity: 0.8;
}


.antitrix_img:hover + .logo-code {
  opacity: 1;
}

.page {
  height: 100vh;
  width: 100vw;
}

.down-arrow {
  position: absolute; /* или fixed, в зависимости от верстки */
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  display: block;
  width: 60px;
  z-index: 1001;
}

.down-arrow svg {
  opacity: 0.7;
  transition: 1s ease;
}

.down-arrow svg:hover {
  opacity: 1;
  filter: drop-shadow(0 0 5px #ffffff);
}

.scrollbar {
  position: fixed;
  top: 8px;
  bottom: 8px;
  right: 0;
  /*height: 100vh;*/
  width: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 1002;
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.1); /* затемнение */
  backdrop-filter: blur(1px);          /* размытие */
  border-radius: 10px;
  padding: 8px 0;
}

.scrollbar::before {
  content: '';
  position: absolute;
  top: 8px; /* такой же как padding-top */
  bottom: 8px; /* такой же как padding-bottom */
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

.scrollbar-dot {
  position: relative; /* нужно для ::before */
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  z-index: 1;
  cursor: pointer;
}

/* Расширенная область наведения */
.scrollbar-dot::before {
  content: "";
  position: absolute;
  top: -60px;
  bottom: -60px;
  left: -15px;
  right: -15px;
  background: transparent;
  border-radius: 50%;
  pointer-events: auto;
}

.scrollbar-dot.active {
  width: 8px;
  height: 8px;
  background-color: white;
  filter:
    drop-shadow(0 0 3px white)
    drop-shadow(0 0 5px white)
    drop-shadow(0 0 7px white);
  transition: filter 1s ease;
}

.scrollbar-dot:hover {
  width: 8px;
  height: 8px;
  background-color: white;
  filter:
    drop-shadow(0 0 3px white)
    drop-shadow(0 0 5px white)
    drop-shadow(0 0 7px white);
  transition: filter 1s ease;
}

.about-page {
  background: linear-gradient(to top, black, #022751);
}

.po-antitrix-page {
  background: linear-gradient(to top, #022751, black)
}

.afl-page {
  background: linear-gradient(to top, #1b80ac, #022751)
}

.ai-double-page {
  background: linear-gradient(to top, #72c7e6, #1b80ac)
}

.license-page {
  background: linear-gradient(to top, #1b80ac, #72c7e6)
}

.contacts-page {
  background: linear-gradient(to top, #022751, #1b80ac)
}

.footer {
  height: 68px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #b3d5e1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  box-sizing: border-box;
  padding: 0 0 10px;
  user-select: none;
}

.footer-info {
  margin-bottom: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
}

.footer-info a.privacy-link {
  display: block;
  margin-top: 4px;
  color: #b3d5e1;
  font-weight: normal;
  font-size: 10px;
  text-decoration: underline;
  cursor: pointer;
}

.footer-info a.privacy-link:hover {
  color: #fff;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background-color: rgba(2, 32, 47, 0.8);
  font-size: 12px;
  /* Убираем запрет выделения */
  user-select: text;
  cursor: text; /* показывает текстовый курсор */
  margin-bottom: 5px;
}

.marquee__content {
  display: inline-flex;
  animation: marquee-left 50s linear infinite;
}

.marquee__content span {
  padding-right: 50px;
  white-space: nowrap;
}

.footer:hover .marquee__content {
  animation-play-state: paused;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.styled-table {
  font-size: 13px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  overflow: hidden;
  color: white;
}

.styled-table table {
  width: 100%;
  border-collapse: collapse;
}

.styled-table th {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  /*border: 1px solid rgba(255, 255, 255, 0.05);*/
}

.styled-table td {
  padding: 5px 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: top;
}

.styled-table a {
  color: #72c9e6;
  /*text-decoration: underline;*/
}

.styled-table td:first-child {
  font-weight: 600;
  width: 40%;
}

.styled-table td:first-child {
  background-color: rgba(255, 255, 255, 0.05);
  width: 30px;
}

.details-file-button {
  display: block;
  margin-top: 15px;
  padding-top: 4px;
  width: 100%;
  text-align: center;
  height: 35px;
  text-decoration: none;
  color: #72c9e6;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.details-file-button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transition: 1s;
}

.chart-wrapper {
  max-width: 600px;
  /*padding: 20px;*/
}
.page-container {
  padding-top: 140px;
  height: calc(100vh - 100px);
  overflow: hidden;
}

.content-col {
  height: 618px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content-unit-50 {
  display: block;
  height: 303px;
  width: 100%;
  overflow: hidden;
}

.content-unit-100 {
  display: block;
  height: 618px;
  width: 100%;
  overflow: hidden;
}

.styled-table th {
  font-size: 14px;
}

.mobile-content-col {
  height: 100vh;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 70px;
  font-size: 11px;
}

.mobile-content-unit-50 {
  height: 250px;
  overflow: hidden;
  padding-left: 4px;
  padding-right: 4px;
}

.mobile-content-unit-100 {
  height: 510px;
  overflow: hidden;
  padding-left: 4px;
  padding-right: 4px;
}

.about-page-2 {
  background: black;
}

.po-antitrix-page-2 {
  background: #022751;
}

.afl-page-2 {
  background: #1b80ac;
}

.ai-double-page-2 {
  background: #72c7e6;
}

.license-page-2 {
  background: #1b80ac;
}

.contacts-page-2 {
  background: #022751;
}

.desktop-only {
  width: 100vw;
}

.doc-links-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.doc-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 18%;
  width: 100%;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  padding-left: 20px;
  overflow: hidden;
  z-index: 1;

  background: linear-gradient(to right, #022751, #1b80ac);
}

.doc-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #022751, #1b80ac);
  opacity: 0;
  transition: opacity 1s;
  z-index: 0;
}

.doc-link:hover::before {
  opacity: 1;
}

.doc-link > * {
  position: relative;
  z-index: 1;
}

.doc-link-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12%;
  height: 100%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 20px;
}

.po-antitrix-video {
  width: 100%;
  border-radius: 20px;
  opacity: 0.8;
}

.po-antitrix-goals {
  margin-top: 8px;
  padding: 5px;
}

.fw-bold {
  font-weight: bold;
}

.afl-icon {
  font-size: 25px;
  background-color: rgba(2, 32, 47, 0.8);
  width: 42px;
  height: 37px;
  padding: 5px;
  text-align: center;
  /*border: 1px solid #1b80ac;;*/
  border-radius: 10px;
}

.ai-icon {
  font-size: 20px;
  background: linear-gradient(to top, #022751, #1b80ac);
  width: 35px;
  height: 30px;
  padding: 5px;
  text-align: center;
  /*border: 1px solid #1b80ac;;*/
  border-radius: 10px;
}

.color-dark-blue {
  color: #022751;
}

.license-schema-full {
  padding-top: 40px;
  border-radius: 20px;
  text-align: center;
  color: white;
  font-family: sans-serif;
  position: relative;
  opacity: 0.8;
}

.license-side-modules {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 0;
}

.module-app {
  margin: 0 auto 0;
  width: 290px;
  border-radius: 16px;
  overflow: hidden;
  background: #72c7e6;
  color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  height: 200px;
}

.module-app-list-icon {
  font-size: 100px;
  color: #1b80ac;;
}

.browser-head {
  background: #1b80ac;
  padding: 8px;
  display: flex;
  gap: 6px;
  justify-content: flex-start;
}

.browser-head .circle {
  width: 10px;
  height: 10px;
  background: #72c7e6;
  border-radius: 50%;
}

.license-side-module {
  position: relative;
  width: 60px;
  height: 100px;
  border-radius: 10px;
  background: #1b80ac;
  /*border: 1px solid #72c7e6;*/
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  text-align: center;
  padding: 10px;
}

.side-icon.right {
  position: absolute;
  right: -20px;
  font-size: 16px;
}

.side-icon.left {
  position: absolute;
  left: -20px;
  font-size: 16px;
}


.module-label {
  padding-top: 18px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.license-box {
  display: flex;
  padding-top: 6px;
  width: 100%;
  background: #72c7e6;
  border-radius: 12px;
  color: white;
  font-size: 25px;
  font-family: sans-serif;
  text-align: center;
  align-items: center;
  flex-direction: column;
  height: 120px;
  border: 1px solid #1b80ac;

}

.license-box-price {
  display: flex;
  padding-top: 6px;
  width: 100%;
  background: #1b80ac;
  border-radius: 12px;
  color: white;
  font-size: 25px;
  font-family: sans-serif;
  text-align: center;
  align-items: center;
  flex-direction: column;
  height: 120px;
  border: 1px solid #72c7e6;
}

.license-box-icon-wrapper {
  display: block;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #1b80ac;
  border-radius: 20px;
  position: inherit;
  color: white;
}

.license-box-icon-wrapper-price {
  display: block;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #72c7e6;
  border-radius: 20px;
}


.license-icon {
  font-size: 20px;
  background: #72c7e6;
  width: 35px;
  height: 30px;
  padding: 5px;
  text-align: center;
  /*border: 1px solid #1b80ac;*/
  border-radius: 10px;
}

.license-svg {
  height: 350px;
  display: block;
}

.call-us-link {
  padding: 4px 7px 4px 7px;
  background: linear-gradient(to left, #13536e, #1b80ac);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}

#map {
  height: 100%;
  width: 100%;
  border: 1px solid #022751;
  border-radius: 20px;
}
#map-mobile {
  height: 95%;
  width: 100%;
  border: 1px solid #13536e;
  border-radius: 20px;
}
.maplibregl-ctrl-attrib {
  /*background: none!important;*/
  /*opacity: 0.5;  !* прозрачность *!*/
  /*font-size: 10px; !* меньше размер *!*/
  /*color: #72c7e6!important;*/
  display: none!important;
}

.contact-icon {
  font-size: 20px;
  background: #022751;
  width: 35px;
  height: 35px;
  padding-top: 7px;
  text-align: center;
  /*border: 1px solid #1b80ac;;*/
  border-radius: 10px;
  color: #72c7e6;
}

.contacts-contact-title {
  font-weight: bold;
  /*padding: 3px;*/
  display: inline-block;
  width: 90px;
  border-radius: 5px;
}

.contact-link {
  color: white;
}

.contacts-unit {
  position: relative!important;
}
.contacts-unit p {
  z-index: 1003!important;
  position: relative;
}

.contacts-antitrix_iceberg {
  position: absolute;
  opacity: 0.2;
  height: 600px;
  z-index: 1!important;
  top: 0;
  left: 150px
}

.contacts-antitrix-wrapper {
  width: 100%;
  padding-top: 15px;
  font-size: 15px;
}

.contacts-antitrix-wrapper span {
  font-weight: bold;
}

.ta-center {
  text-align: center;
}

/* Базовое состояние: элементы вне экрана и невидимы */
.appear-left,
.appear-right {
  opacity: 0;
  transition: transform 1.1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.1s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Когда страница НЕ активна — держим блоки «за краем» */
.page:not(.is-current) .appear-left  { transform: translateX(-100vw); }
.page:not(.is-current) .appear-right { transform: translateX(100vw);  }

/* Когда страница активна — плавно въезжают и проявляются */
.page.is-current .appear-left,
.page.is-current .appear-right {
  transform: translateX(0);
  opacity: 1;
}

/* (опционально) Лёгкая «ступенчатая» задержка для детей внутри .content-col */
.appear-left > *, .appear-right > * {
  transition: transform .6s ease, opacity .6s ease;
}
.page.is-current .appear-left  > * { transition-delay: calc(0.03s * var(--i, 0)); }
.page.is-current .appear-right > * { transition-delay: calc(0.03s * var(--i, 0)); }

.bgfx {
  position: absolute;
  inset: 0;
  pointer-events: none;   /* не мешает кликам по контенту */
  z-index: 0;             /* фон */
  --bgfx-blur: 0px;
  --bgfx-opacity: 1;
}
.bgfx canvas {
  filter: blur(var(--bgfx-blur));
  opacity: var(--bgfx-opacity);
}

/* чтобы контент был поверх */
.page {
  position: relative;
  contain: layout paint;
}
.page .content-col,
.page .content-unit-50,
.page .content-unit-100 {
  position: relative;
  z-index: 1;
}

/* Уважение сокращённой анимации */
@media (prefers-reduced-motion: reduce) {
  .appear-left, .appear-right,
  .appear-left > *, .appear-right > * {
    transition: none;
  }
}

/*Десктопы*/
@media (min-width: 1324px) and (max-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (max-width: 1323px) {
  .container {
    max-width: 1140px;
    font-size: 14px;
  }
}

@media (min-width: 1280px) and (max-height: 915px) {
  .antitrix_img {
    height: 340px;
    width: auto;
    top: -102px;
  }
  .content-col {
    height: 577px;
  }
  .content-unit-100 {
    height: 577px;
  }
  .content-unit-50 {
    height: 288px;
  }

  .po-antitrix-video {
    width: 90%;
  }

  .chart-wrapper {
    height: 264px;
  }
  .styled-table {
    font-size: 11px;
  }

  .doc-links-wrapper {
    display: block;
  }

  .doc-link {
    margin-bottom: 17px;
  }

  .afl-icon {
    height: 25px;
    width: 30px;
    font-size:14px;
  }

  .ai-icon {
    height: 25px;
    width: 30px;
    font-size:14px;
  }

  .afl-p-ul {
    margin-bottom: 0.3rem;
  }

  .ai-first-p {
    margin-bottom: 0.3rem;
  }

  .license-p-ul {
    margin-bottom: 0.3rem;
  }
  .license-p3 {
    margin-top: 0.3rem;
  }

  .license-svg {
    height: 312px;
  }
  .contacts-antitrix_iceberg {
    height: 550px;
    left: 122px;
  }
  #map {
    height: 95%;
  }
  .po-antitrix-page p {
    margin-bottom: 0.3rem;
  }
  .afl-page p {
    margin-bottom: 0.3rem;
  }
  .ai-double-page p {
    margin-bottom: 0.3rem;
  }
  .ai-pre-last-p {
    margin-top: -10px!important;
    margin-bottom: 0.3rem;
  }
  .license-page p {
    margin-top: 0!important;
    margin-bottom: 0.3rem;
  }
}

@media (min-width: 1280px) and (max-height: 840px) {
  .content-col {
    height: 542px;
  }
  .content-unit-100 {
    height: 542px;
  }
  .content-unit-50 {
    height: 270px;
  }
  .chart-wrapper {
    height: 240px;
  }
  .styled-table {
    font-size: 10px;
  }
  .doc-link {
    margin-bottom: 14px;
  }
  .ai-first-p {
    margin-bottom: 0.3rem;
  }

  .ai-icon {
    font-size: 16px;
    width: 28px;
    height: 26px;
  }

  .ai-pre-last-p {
    margin-top: -12px;
    margin-bottom: 0.3rem;
  }
  .license-p1 {
    margin-bottom: 0.5rem;
  }
  .license-p2 {
    margin-bottom: 0.5rem;
  }
  .license-p3 {
    margin-bottom: 0.5rem;
  }
  .license-schema-full {
    padding-top: 10px;
  }
  .module-app {
    width: 275px;
    height: 190px;
  }
  .contacts-antitrix_iceberg {
    height: 507px;
    left: 134px;
  }
    .po-antitrix-page p {
    margin-bottom: 0.5rem;
  }
  .afl-page p {
    margin-bottom: 0.5rem;
  }
  .ai-double-page p {
    margin-top: 0!important;
    margin-bottom: 0.5rem;
  }
  .license-page p {
    margin-top: 0!important;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 1278px) and (max-height: 800px) {
  .container {
    font-size: 13px;
  }
  .content-col {
    height: 460px;
  }
  .content-unit-100 {
    height: 460px;
  }
  .content-unit-50 {
    height: 228px;
  }
  .chart-wrapper {
    height: 200px;
  }
  .styled-table {
    font-size: 9px;
  }
  .styled-table thead th {
    padding: 6px;
  }
  .details-file-button {
    margin-top: 5px;
    height: 32px;
  }
  .doc-link {
    height: 17%;
  }
  .po-antitrix-video {
    width: 73%;
  }
  .afl-p1 {
    margin-bottom: 0.4rem;
  }
  .afl-p2 {
    margin-bottom: 0.4rem;
  }
  .afl-p-ul {
    margin-bottom: 0.2rem;
  }
  .afl-icon {
    height: 30px;
    width: 34px;
    font-size: 18px;
  }
  .ai-header {
    margin-bottom: 0;
  }
  .ai-first-p {
    margin-bottom: 0.1rem;
  }
  .license-p-ul{
    margin-bottom: 0.3rem;
  }
  .ai-icon {
    font-size: 14px;
    width: 26px;
    height: 22px;
  }
  .ai-pre-last-p {
    margin-top: -14px;
    margin-bottom: 0.1rem;
  }
  .license-p1 {
    margin-bottom: 0.3rem;
  }
  .license-p2 {
    margin-bottom: 0.3rem;
  }
  .license-p3 {
    margin-bottom: 0.3rem;
    margin-top: 0!important;
  }
  .license-icon {
    font-size: 16px;
    width: 30px;
    height: 25px;
  }
  .license-schema-full {
    padding-top: 0;
  }
  .module-app {
    width: 228px;
    height: 165px;
  }
  .license-side-modules {
    max-width: 405px;
  }

  .module-app-list-icon {
    font-size: 70px;
  }
  .license-svg {
    height: 265px;
  }
  #map {
    height: 93%;
  }
  .contacts-antitrix_iceberg {
    height: 430px;
    left: 162px;
  }
}

@media (min-width: 1278px) and (height: 720px) {
  .details-file-button {
    height: 30px;
  }
  .doc-link {
    height: 16%;
  }
  .ai-pre-last-p {
    margin-bottom: 0;
  }
}

@media (min-width: 1278px) and (max-height: 719px) {
  .container {
    font-size: 11px;
  }
  .content-col {
    height: 342px;
  }
  .content-unit-100 {
    height: 342px;
  }
  .content-unit-50 {
    height: 170px;
  }
  .chart-wrapper {
    height: 139px;
  }
  .styled-table {
    font-size: 6px;
  }
  .details-file-button {
    margin-top: 2px;
    height: 22px;
  }
  .doc-link {
    margin-bottom: 6px;
  }
  .po-antitrix-video {
    width: 45%;
  }
  .afl-icon {
    height: 23px;
    width: 26px;
    font-size: 13px;
  }
  .afl-p1 {
    margin-bottom: 0;
  }
  .afl-p2 {
    margin-bottom: 0;
  }
  .afl-p-ul {
    margin-bottom: 0;
  }
  .ai-first-p {
    margin-bottom: 0;
  }
  .ai-icon {
    font-size: 10px;
    width: 24px;
    height: 18px;
  }
  .ai-pre-last-p {
    margin-bottom: 0;
  }
  .license-p1 {
    margin-bottom: 0;
  }
  .license-p2 {
    margin-bottom: 0;
  }
  .license-p-ul {
    margin-bottom: 0;
  }
  .license-icon {
    font-size: 10px;
    width: 22px;
    height: 18px;
  }
  .license-p3 {
    margin-bottom: 0;
  }
  .license-schema-full {
    padding-top: 0;
  }
  .module-app-list-icon{
    font-size: 38px;
  }
  .module-app {
    width: 190px;
    height: 125px;
    margin: 0 30px 0;
  }
  .license-side-modules {
    max-width: 405px;
  }
  .license-svg {
    height: 185px;
  }
  #map {
    height: 90%;
  }
  .contacts-antitrix_iceberg {
    height: 308px;
    left: 182px;
  }
  .contacts-antitrix-wrapper {
    font-size: 10px;
  }
}

/*Планшеты*/
@media (max-width: 1162px) {
  .container {
    max-width: 1020px;
    font-size: 13px;
  }
}

@media (max-width: 1024px) and (min-height: 1200px) {
  .container {
    font-size: 18px;
  }
  .content-col {
    height: 935px;
  }
  .content-unit-100 {
    height: 935px;
  }
  .content-unit-50 {
    height: 465px;
  }

  .styled-table {
    font-size: 14px;
  }
  .doc-links-wrapper {
    display: block;
  }
  .doc-link {
    margin-bottom: 20px;
  }
  #map {
    height: 97%;
  }
  .contacts-antitrix_iceberg {
    left: 68px;
  }
}

@media (max-width: 1024px) and (max-height: 600px) {
  .antitrix_img {
    height: 300px;
    width: auto;
    top: -88px;
  }
  .page-container {
    padding-top: 70px;
    height: 530px;
  }
  .content-col {
    height: 410px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 11px;
  }
  .content-unit-50 {
    height: 200px;
    padding: 5px;
  }
  .content-unit-100 {
    height: 410px;
    padding: 5px;
  }
  .chart-wrapper {
    margin-top: 0;
    height: 195px;
    position: relative;
    display: flex;
    justify-content: center;
  }
  #savingsChart {
    width: 365px !important;
    height: 100% !important;
  }
  .styled-table {
    height: 365px;
    font-size: 8px;
  }
  .styled-table th {
    font-size: 12px !important;
}
  .details-file-button {
    margin-top: 7px;
    height: 25px;
  }
  .doc-links-wrapper {
    justify-content: space-between;
  }
  .po-antitrix-video {
    width: 80%;
  }
  .po-antitrix-goals p {
    margin-bottom: 0.7rem;
  }
  .afl-icon {
    font-size: 14px;
    width: 30px;
    height: 24px;
  }
  .afl-p2 {
    margin-bottom: 0.5rem;
  }
  .afl-p-ul {
    margin-bottom: 0.5rem;
  }
  .ai-first-p {
    margin-bottom: 0.5rem;
  }
  .license-p-ul {
    margin-bottom: 0.5rem;
  }
  .ai-icon {
    font-size: 14px;
    width: 26px;
    height: 22px;
  }
  .ai-pre-last-p {
    margin-bottom: 0.5rem;
  }
  .license-icon {
    font-size: 14px;
    width: 26px;
    height: 22px;
  }
  .license-p1 {
    margin-bottom: 0.5rem;
  }
  .license-p2 {
    margin-bottom: 0.5rem;
  }
  .license-p3 {
    margin-bottom: 0.5rem;
    margin-top: 0!important;
  }
  .license-side-modules {
    max-width: 330px;
  }
  .module-app {
    width: 190px;
    height: 145px;
  }
  .module-label {
    font-size: 15px;
  }
  .license-side-module {
    width: 45px;
    height: 75px;
    font-size: 10px;
  }
  .module-app-list-icon {
    font-size: 65px;
  }
  .license-svg {
    height: 200px;
  }
  .coptacts-p1 {
    font-size: 16px;
  }
  .contacts-address {
    font-size: 16px;
  }
  .contacts-antitrix_iceberg {
    height: 410px;
    left: 120px
  }
  .contacts-contact-title {
    font-size: 16px;
  }
  .contact-link {
    font-size: 16px;
  }
  .contacts-antitrix-wrapper {
    font-size: 12px;
  }
}

@media (max-width: 912px) and (min-height: 1300px) {
  .content-col {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 17px;
  }
  .content-unit-100 {
    height: 500px;
  }
  .content-unit-50 {
    height: 248px;
  }
  .mobile-center {
    display: flex;
    justify-content: center;
  }
  .chart-wrapper {
    margin-top: 0;
    width: 600px;
    max-width: 1000px;
    height: 252px;
    position: relative;
  }
  #savingsChart {
    width: 100% !important;
    height: 100% !important;
  }
  .styled-table {
    font-size: 11px;
  }
  .details-file-button {
    margin-top: 9px;
  }
  .po-antitrix-video-wrapper {
    text-align: center;
  }
  .po-antitrix-video {
    width: 50%;
  }
  .ai-video-wrapper {
    text-align: center;
  }
  .afl-p1 {
    margin-bottom: 0.5rem;
  }
  .afl-p2 {
    margin-bottom: 0.5rem;
  }
  .afl-p-ul {
    margin-bottom: 0.5rem;
  }
  .afl-icon {
    height: 35px;
  }
  .license-p1 {
    margin-bottom: 0.3rem;
  }
  .license-p2 {
    margin-bottom: 0.3rem;
  }
  .license-p3 {
    margin-bottom: 0.3rem;
    margin-top: 0!important;
  }
  .license-p-ul {
    margin-bottom: 0.1rem;
  }
  .license-schema-full {
    padding-top: 0;
  }
  .module-app {
    height: 185px;
  }
  .license-svg {
    height: 300px;
  }
  .contacts-antitrix_iceberg {
    height: 490px;
    left: 300px;
  }
}

@media (max-width: 853px) and (min-height: 1200px){
  .page-container {
    height: 1200px;
  }
  .content-col {
    height: 458px;
    font-size: 16px;
  }
  .content-unit-50 {
    height: 228px;
  }
  .content-unit-100 {
    height: 458px;
  }
  .chart-wrapper {
    margin-top: 0;
    height: 223px;
  }
  #savingsChart {
    display: block;
    width: 100%;
    height: 100%;
  }
  .styled-table {
    font-size: 11px;
  }
  .styled-table th {
    padding: 5px;
  }
  .details-file-button {
    margin-top: 3px;
  }
  .po-antitrix-video-wrapper {
    text-align: center;
  }
  .po-antitrix-video {
    width: 49%;
  }
  .afl-page p {
    margin-bottom: 0.1rem;
  }
  .afl-icon {
    font-size: 18px;
    height: 30px;
  }
  .license-side-modules {
    max-width: 435px;
  }
  .module-app {
      width: 260px;
      height: 175px;
    }
  .contacts-antitrix_iceberg {
    height: 530px;
    left: 255px;
  }
  .ai-video-wrapper {
    text-align: center;
  }
  .ai-double-page p {
    margin-bottom: 0.1rem;
  }
  .license-page p {
    margin-bottom: 0.1rem;
    margin-top: 0!important;
  }
  .license-schema-full {
    padding-top: 0;
  }
  .module-app {
    height: 150px;
  }
  .module-app-list-icon {
    font-size: 60px;
  }
  .license-svg {
    height: 308px;
  }
  .contacts-antitrix_iceberg {
    height: 452px;
    left: 300px;
  }
}

@media (max-width: 820px) and (min-height: 1100px) {
  .page-container {
    height: calc(100vh - 74px);
  }
  .container {
    font-size: 15px;
  }
  .content-col {
    height: 406px;
  }
  .content-unit-100 {
    height: 406px;
  }
  .content-unit-50 {
    height: 202px;
  }
  .chart-wrapper {
    height: 205px;
  }
  .styled-table {
    font-size: 9px;
  }
  .details-file-button {
    margin-top: 5px;
    height: 28px;
  }
  .po-antitrix-goals {
  }
  .po-antitrix-goals p {
    margin-bottom: 0.1rem;
  }
  .po-antitrix-video-wrapper {
    text-align: center;
  }
  .po-antitrix-video {
    width: 50%;
  }
  .afl-page p {
    margin-bottom: 0.1rem!important;
  }
  .afl-icon {
    font-size: 18px;
    width: 35px;
    height: 32px;
  }
  .ai-double-page p {
    margin-bottom: 0.1rem;
  }
  .ai-icon {
    font-size: 14px;
    width: 28px;
    height: 26px;
  }
  .ai-video-wrapper {
    text-align: center;
  }
  .license-p-ul {
    font-size: 14px;
  }
  .license-page p {
    margin-bottom: 0.1rem;
    margin-top: 0!important;
  }
  .license-icon {
    font-size: 12px;
    width: 28px;
    height: 20px;
  }
  .license-schema-full {
    padding-top: 0;
  }
  .module-app {
    width: 230px;
    height: 145px;
    font-size: 52px;
    margin: 0 28px 0;
  }
  .module-app-list-icon {
    font-size: 64px;
  }
  .license-svg {
    height: 262px;
  }
  .contacts-antitrix_iceberg {
    height: 400px;
    left: 285px;
  }
}

@media (max-width: 768px) and (min-height: 1024px) {
  .antitrix_img {
    height: 330px;
    top: -102px;
  }
  .container {
    font-size: 14px;
  }
  .page-container {
    height: calc(100vh - 70px);
  }
  .content-col {
    height: 370px;
  }
  .content-unit-100 {
    height: 370px;
  }
  .content-unit-50 {
    height: 185px;
  }
  .chart-wrapper {
    height: 190px;
  }
  .styled-table th {
    padding: 4px;
  }
  .styled-table {
    font-size: 8px;
  }
  .details-file-button {
    margin-top: 5px;
    height: 27px;
  }
  .po-antitrix-video-wrapper {
    text-align: center;
  }
  .po-antitrix-video {
    width: 49%;
  }
  .po-antitrix-goals p {
    margin-bottom: 0.1rem;
  }
  .afl-page p {
    margin-bottom: 0.1rem;
  }
  .afl-icon {
    font-size: 16px;
    width: 31px;
    height: 26px;
  }
  .ai-double-page p {
    margin-bottom: 0.1rem;
  }
  .ai-icon {
    font-size: 14px;
    width: 26px;
    height: 22px;
  }
  .ai-video-wrapper {
    text-align: center;
  }
  .license-p-ul {
    font-size: 12px;
  }
  .license-page p {
    margin-bottom: 0;
    margin-top: 0!important;
  }
  .license-icon {
    font-size: 8px;
    width: 24px;
    height: 18px;
  }
  .license-schema-full {
    padding-top: 0;
  }
  .module-app {
    width: 240px;
    height: 140px;
    margin: 0 28px 0;
  }
  .module-app-list-icon {
    font-size: 52px;
  }
  .license-svg {
    height: 230px;
  }
  .contacts-antitrix_iceberg {
    height: 362px;
    left: 282px;
  }
}

@media (width: 540px) and (min-height: 720px) {
  .antitrix_img {
    height: 280px;
    top: -86px
  }
  .mobile-content-col {
    font-size: 13px;
    padding-left: 7px;
    padding-right: 7px;
  }
  .mobile-content-unit-50 {
    height: 47%;
  }
  .mobile-content-unit-100 {
    height: 100% !important;
  }
  .chart-wrapper-mobile {
    height: 100% !important;
    display: flex;
    justify-content: center;
    padding-top: 35px;
  }
  #savingsChartMobile {
    width: 80% !important;
    height: 95% !important;
  }
  .styled-table {
    /*margin-top: 30px;*/
    font-size: 11px;
    height: 525px;
  }
  .details-file-button {
    margin-top: 12px;
  }
  .license-page p {
    margin-bottom: 0.5rem;
  }
  .license-svg {
    height: 340px;
  }
}

@media (max-width: 500px) {
  .antitrix_img {
    height: 200px !important;
    width: auto !important;
    top: -61px !important;
  }
}

@media (max-width: 430px) and (min-height: 932px) {
  .mobile-content-col {
    font-size: 14px;
    padding-left: 7px;
    padding-right: 7px;
  }
  .mobile-content-unit-50 {
    height: 48%;
  }
  .mobile-content-unit-100 {
    height: 100% !important;
  }
  .chart-wrapper-mobile {
    height: 100% !important;
    display: flex;
    justify-content: center;
    padding-top: 35px;
  }
  #savingsChartMobile {
    margin-top: 30px;
    width: 95% !important;
    height: 75% !important;
  }
  .chart-wrapper-mobile {
    height: 100% !important;
    display: flex;
    justify-content: center;
    padding-top: 35px;
  }
  #savingsChartMobile {
    width: 95% !important;
    height: 80% !important;
  }
  .styled-table {
    margin-top: 10px;
    height: 726px;
    font-size: 12px;
  }
  .details-file-button {
    margin-top: 10px;
  }
  .license-svg {
    height: 355px!important;
  }
}

@media (max-width: 414px) and (min-height: 896px) {
  .mobile-content-col {
    font-size: 13px;
    padding-left: 7px;
    padding-right: 7px;
  }
  .mobile-content-unit-50 {
    height: 48%;
  }
  .mobile-content-unit-100 {
    height: 100% !important;
  }
  .chart-wrapper-mobile {
    height: 100% !important;
    display: flex;
    justify-content: center;
    padding-top: 35px;
  }
  #savingsChartMobile {
    width: 95% !important;
    height: 80% !important;
  }
  .styled-table {
    margin-top: 25px;
    height: 630px;
    font-size: 11px;
  }
  .details-file-button {
    margin-top: 31px;
  }
  .license-svg {
    height: 345px!important;
  }
  .module-app {
    width: 218px
  }
}

@media (max-width: 412px) and (min-height: 914px) {
  .mobile-content-col {
    padding-left: 7px;
    padding-right: 7px;
  }
  .chart-wrapper-mobile {
    height: 100% !important;
    display: flex;
    justify-content: center;
    padding-top: 40px;
  }
  .styled-table {
    margin-top: 30px;
    font-size: 11px;
    height: 629px;
  }
  .details-file-button {
    margin-top: 38px;
  }
}

@media (max-width: 390px) and (min-height: 844px) {
  .mobile-content-col {
    font-size: 13px;
  }
  .mobile-content-unit-50 {
    height: 48%;
  }
  .chart-wrapper-mobile {
    height: 100% !important;
    display: flex;
    justify-content: center;
    padding-top: 35px;
  }
  #savingsChartMobile {
    margin-top: 30px;
    width: 95% !important;
    height: 75% !important;
  }
  .mobile-content-unit-100 {
    height: 100% !important;
  }
  .styled-table {
    margin-top: 30px;
    height: 555px;
    font-size: 10px;
  }
  .details-file-button {
    margin-top: 40px;
  }
  .ai-double-mobile-title {
    font-size: 14px;
  }
  .ai-icon {
    font-size: 17px!important;
    width: 34px!important;
    height: 29px!important;
  }
  .ai-pre-last-p {
    margin-bottom: 0.5rem;
  }
  .license-p3 {
    margin-bottom: 1rem!important;
  }
  .module-app {
    width: 208px;
  }
  .license-svg {
    height: 330px;
  }
}

@media (max-width: 375px) {
  .mobile-content-col {
    font-size: 11px;
  }
  .mobile-content-unit-100 {
    height: 100%;
  }
  .chart-wrapper-mobile {
    height: 100% !important;
    display: flex;
    justify-content: center;
    padding-top: 35px;
  }
  #savingsChartMobile {
    width: 90% !important;
    height: 85% !important;
  }
  .styled-table {
    margin-top: 20px;
    height: 450px;
    font-size: 8px;
  }
  .details-file-button {
    margin-top: 12px;
  }
  .afl-page p {
    margin-bottom: 0.5rem;
  }
  .ai-double-mobile-title {
    font-size: 12px;
    margin-bottom: 0.2rem;
  }
  .ai-double-page p {
    margin-bottom: 0.5rem;
    margin-top: 0!important;
  }
  .ai-first-p {
    margin-bottom: 0.2rem!important;
  }
  .ai-icon {
    font-size: 14px!important;
    width: 27px!important;
    height: 24px!important;
  }
  .license-page p {
    margin-bottom: 0.5rem;
    margin-top: 0!important;
  }
  .license-icon {
    font-size: 14px;
    width: 28px;
    height: 24px;
  }
  .module-app {
    width: 196px;
  }
  .license-svg {
    height: 280px;
  }
}

@media (max-width: 360px) and (min-height: 740px) {
  .mobile-content-col {
    padding-left: 7px;
    padding-right: 7px;
  }
  .mobile-content-unit-50 {
    height: 48%;
  }
  .mobile-content-unit-100 {
    height: 100% !important;
  }
  .styled-table {
    margin-top: 15px;
    font-size: 9px;
    height: 528px;
  }
  .module-app {
    width: 185px!important;
  }
  .license-svg {
    height: 295px!important;
  }
}

@media (max-width: 344px) and (min-height: 882px) {
  .mobile-content-col {
    font-size: 12px;
  }
  .chart-wrapper-mobile {
    height: 100% !important;
    display: flex;
    justify-content: center;
    padding-top: 35px;
  }
  #savingsChartMobile {
    width: 95% !important;
    height: 70% !important;
  }
  .styled-table {
    margin-top: 15px;
    font-size: 10px;
    height: 660px;
  }
  .details-file-button {
    margin-top: 16px;
  }
  .module-app {
    width: 170px!important;
  }
  .license-svg {
    height: 280px!important;
  }
}



