@font-face {
  font-family: "PT Astra Fact regular";
  src: url(../fonts/PTAstraFact-Regular.ttf);
}

@font-face {
  font-family: "PT Astra Fact";
  src: url(../fonts/PTAstraFact-Bold.ttf);
}

html {
  scroll-padding-top: 55px;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PT Astra Fact regular";
  /* outline: 1px solid red; */
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
  margin: 0;
}

body {
  overflow-x: hidden;
  background-color: #00132a;
  color: #ffffff;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.locked {
  overflow: hidden;
}
.container {
  width: 100%;
  max-width: 1321px;
  margin: 0 auto;
  padding: 0 20px;
}
.orange-line {
  width: 3px;
  height: 48px;
  background-color: #fc5d2b;
}
.title {
  font-size: 32px;
  font-weight: normal;
  color: #fff;
}
@media (max-width: 577px) {
  .title {
    font-size: 28px;
  }
}
/*header*/
.header {
  padding: 44px 0 47px 0;
  border-bottom: 1px solid rgba(252, 93, 43, 0.2);
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo-img {
  width: 141px;
  height: 29px;
}
.header-menu-list {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.header-burger-menu {
  display: none;
}
.header-menu-item {
  padding: 0 8px;
}
.header-menu-link {
  font-size: 12px;
  font-weight: 400;
  color: #6a7e95;
  padding: 4px 0;
}

.header-menu-link:hover {
  border-bottom: 1px solid #00b0f0;
  color: #fff;
}

.header-menu-item:last-of-type .header-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 211px;
  width: 100%;
  height: 39px;
  background-color: #ff5d22;
  border-radius: 30px;
  color: #fff;
  padding: 0;
  margin-left: 34px;
  cursor: pointer;
  border: none;
  padding: 10px 24px;
}
.header-menu-item:last-of-type {
  padding: 0;
}
.header-menu-item:last-of-type .header-menu-link:hover {
  border-bottom: none;
}

.header-menu-item:first-of-type {
  display: none;
}

/*адаптив header*/
@media (max-width: 1280px) {
  .header-menu-list {
    gap: 10px;
  }
}

@media (max-width: 1200px) {
  .header-menu {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
  }
  .header-menu-item:first-of-type {
    display: flex;
    padding: 29.5px 20px;
    border-bottom: 1px solid rgba(252, 93, 43, 0.2);
  }
  .header-menu-item:nth-child(2) {
    margin-top: 40px;
  }

  .header-menu.active {
    left: 0;
    margin-top: 0;
    margin-right: 0;
    z-index: 10;
  }

  .header-menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    height: 100%;
    width: 60%;
    background-color: #00132a;
    overflow: auto;
    margin: 0;
    backdrop-filter: blur(20px);
  }
  .header-burger-menu {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .header-burger-menu-link {
    height: 39px;
    color: #fff;
    font-size: 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 211px;
    background-color: #ff5d22;
    cursor: pointer;
    border: none;
    padding: 10px 24px;
  }
  .header-burger-icon {
    display: block;
    width: 26px;
    height: 18px;
    position: relative;
    z-index: 50;
    cursor: pointer;
    float: right;
  }
  .header-burger-icon span {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #fff;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
  }
  .header-burger-icon span:first-child {
    top: 0;
  }

  .header-burger-icon span:last-child {
    top: auto;
    bottom: 0;
  }
  .header-menu-item:last-of-type {
    padding: 0 40px;
    margin-top: 40px;
  }
  .header-menu-item:last-of-type .header-menu-link {
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }
  .header-menu-item {
    padding: 16px 40px;
    width: 100%;
    display: flex;
    /* align-items: center;
    justify-content: center; */
  }
  .header-menu-link {
    color: #fff;
    font-size: 14px;
    padding: 0;
  }

  .header-burger-icon.active span {
    background-color: #fff;
    -webkit-transform: scale(0);
    transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }

  .header-burger-icon.active span:first-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 1px);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }

  .header-burger-icon.active span:last-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
}

@media (max-width: 769px) {
  .header {
    padding: 25px 0;
  }
  .header-logo-img {
    width: 100%;
    max-width: 145px;
    height: 30px;
  }

  .header-menu-item:first-of-type .header-logo-img {
    display: flex;
    width: 100%;
    max-width: 145px;
    height: 30px;
  }
}
@media (max-width: 715px) {
  .header-burger-menu-link {
    display: none;
  }
}
@media (max-width: 577px) {
  .header-logo-img {
    width: 100%;
    max-width: 116px;
    height: 24px;
  }

  .header-menu-item:first-of-type .header-logo-img {
    max-width: 116px;
    height: 24px;
  }
}

@media (max-width: 500px) {
  .header-menu-list {
    width: 100%;
  }
}
/*завершение адаптива*/
/*banner*/

.banner {
  padding: 42px 0 94px 0;
  width: 100%;
  background: url("../img/bg-grid.png") center center/cover no-repeat;
}
.banner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner-section {
  width: 100%;
  max-width: 474px;
}
.banner-section:last-of-type {
  max-width: 600px;
  height: auto;
}
.banner-bg {
  /* width: 100%; */
}
.banner-bg-mobile {
  display: none;
}


.banner-title {
  font-size: 48px;
  font-family: "PT Astra Fact";
  line-height: 56px;
}
.banner-subtitle {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.5;
}
.banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  border-radius: 30px;
  background-color: #ff5d22;
  color: #fff;
  font-size: 16px;
  padding: 16px 55px;
  width: 100%;
  max-width: 300px;
  cursor: pointer;
  border: none;
}
.banner-section-link {
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  border-radius: 30px;
  background-color: #ff5d22;
  color: #fff;
  font-size: 16px;
  padding: 16px 55px;
  width: 100%;
  max-width: 360px;
  cursor: pointer;
  border: none;
}

@media (max-width: 1040px) {
  .banner {
    padding: 52px 0;
  }
  .banner-title {
    font-size: 36px;
  }
  .banner-subtitle {
    margin-top: 20px;
  }
  .banner-link {
    font-size: 14px;
  }
}
@media (max-width: 715px) {
  .banner-wrap {
    flex-direction: column;
    align-items: start;
  }
  .banner-link {
    align-self: center;
    width: 100%;
    max-width: 360px;
    text-align: center;
  }
  .banner-title {
    text-align: center;
  }
  .banner-subtitle {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
  }
  .banner-section {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .banner-section:last-of-type {
    margin-top: 60px;
    align-self: center;
  }
  .banner-link {
    display: none;
  }
  .banner-section-link {
    display: flex;
  }
  .banner-bg {
    display: none;
  }
  .banner-bg-mobile {
    display: block;
  }
  .banner-section {
    flex-direction: column-reverse;
  }
  .main-title-wrap {
    flex-direction: column;
  }
  .banner-section-link {
    margin-top: 0px;
    margin-bottom: 60px;
  }
  .banner-title {
    font-size: 34px;
  }

}

/*data*/
.data {
  margin-top: -45px;
  padding-bottom: 106px;
}
.data-wrap {
  display: flex;
  flex-direction: column;
}
.data-header {
  display: flex;
  gap: 20px;
  align-items: center;
}
.data-items {
  margin-top: 60px;
  padding: 60px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  background-color: #172951;
  border-radius: 16px;
}
.data-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 390px;
}
.data-item:last-of-type {
  max-width: 254px;
}
.data-item-count {
  font-size: 40px;
  color: #00b0f0;
  display: flex;
  align-items: center;
}
.data-item-count-span {
  margin-left: 3px;
  font-size: 24px;
  color: #fff;
}
.data-item-title {
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.5;
}
.data-item-subtitle {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #83a2dc;
}

@media (max-width: 1040px) {
  .data {
    margin-top: 0;
    padding: 60px 0;
  }
  .data-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .data-item:last-of-type {
    max-width: 390px;
  }
}
@media (max-width: 769px) {
  .data-items {
    padding: 60px 30px;
  }
  .data-items {
    flex-wrap: wrap;
    justify-content: start;
    gap: 40px;
  }
  .data-item {
    max-width: 100%;
  }
}

/*docs-info*/
.docs-info {
  padding: 60px 0 120px 0;
}
.docs-info-wrap {
  display: flex;
  justify-content: space-between;
}
.docs-info-item {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.docs-info-item:last-of-type .docs-info-item-title,
.docs-info-item:nth-child(2) .docs-info-item-title {
  margin-top: 32px;
}
.docs-info-item-icon {
  width: 240px;
  height: 178px;
}
.docs-info-item-content {
  display: flex;
  flex-direction: column;
}
.docs-info-item-title {
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}
.docs-info-item-subtitle {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #83a2dc;
}
.docs-info-item-icon-mobile {
  display: none;
}
@media (max-width: 860px) {
  .docs-info {
    padding: 40px 0 80px 0;
  }
  .docs-info-wrap {
    flex-direction: column;
    gap: 80px;
    width: 100%;
    max-width: 488px;
    margin: auto;
  }
  .docs-info-item {
    flex-direction: row;
    max-width: 100%;
    gap: 24px;
  }
  .docs-info-item-icon-mobile {
    display: block;
    width: 120px;
    height: 120px;
  }
  .docs-info-item-icon {
    display: none;
  }
  .docs-info-item:last-of-type .docs-info-item-title,
  .docs-info-item:nth-child(2) .docs-info-item-title {
    margin-top: 0;
  }
  .docs-info-item-title {
    text-align: start;
  }
  .docs-info-item-subtitle {
    text-align: start;
  }
}
@media (max-width: 650px) {
  .docs-info-item {
    flex-direction: row;
    gap: 26px;
    max-width: 360px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .docs-info-item-title {
    margin-top: 0;
    text-align: start;
  }
  .docs-info-item-subtitle {
    text-align: start;
  }
  .docs-info-item-icon {
    width: 120px;
    height: 107px;
  }
  .docs-info-item:last-of-type .docs-info-item-title,
  .docs-info-item:nth-child(2) .docs-info-item-title {
    margin-top: 0;
  }
}
/*possibilities*/
.possibilities {
  padding: 60px 0 156px 0;
  background: linear-gradient(180deg, #0f1d38 0%, rgba(15, 29, 56, 0) 100%),
    linear-gradient(0deg, #020d21 0%, rgba(15, 29, 56, 0) 100%);
}
.possibilities-wrap {
  display: flex;
  flex-direction: column;
}
.possibilities-header {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 523px;
}
.possibilities-header .orange-line {
  height: 80px;
}
.possibilities-title {
  line-height: 40px;
}
.possibilities-items {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
}
.possibilities-item {
  background-color: #00224b;
  padding: 40px 32px 60px 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}
.possibilities-item-title {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}
.possibilities-item-desc {
  margin-top: 32px;
  font-size: 14px;
  line-height: 24px;
  color: #8ba3cb;
}
@media (max-width: 950px) {
  .possibilities-items {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 769px) {
  .possibilities {
    padding: 60px 0;
  }
  .possibilities-items {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
  }
}

/*architecture*/
.architecture-bg-mobile {
  display: none;
}
.architecture {
  padding: 60px 0 208px 0;
  width: 100%;
  background: url("../img/bg-grid.png") center center/cover no-repeat;
}
.architecture-wrap {
  display: flex;
  flex-direction: column;
}
.architecture-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.architecture-content {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
}
.architecture-catalog {
  width: 100%;
  max-width: 380px;
  background-color: rgba(0, 34, 75, 0.3);
  border-radius: 24px;
  padding: 40px 40px 62px 40px;
  height: fit-content;
}
.architecture-bg {
  width: 100%;
  max-width: 859px;
}
.architecture-list-title {
  color: #5ea7ff;
  font-size: 24px;
  line-height: 32px;
}
.architecture-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.architecture-list-item {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  position: relative;
  display: flex;
  gap: 12px;
}
.architecture-list-item::before {
  display: block;
  content: "";
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  background: url("../img/white-arrow.svg") center center/cover no-repeat;
}
@media (max-width: 1200px) {
  .architecture {
    padding: 60px 0;
  }
  .architecture-content {
    flex-direction: column;
    margin-top: 60px;
    justify-content: center;
    align-items: center;
  }
  .architecture-catalog {
    order: 2;
    max-width: 100%;
    margin-top: 60px;
    padding: 40px;
  }
  .architecture-bg {
    order: 1;
    width: 100%;
    max-width: 859px;
  }
}
@media (max-width: 769px) {
  .architecture-bg {
    max-width: 688px;
  }
}
@media (max-width: 450px) {
  .architecture-bg-mobile {
    display: block;
  }
  .architecture-bg {
    display: none;
  }
  .architecture-content {
    flex-direction: column-reverse;
  }
  .architecture-catalog {
    margin-top: 0px;
  }
}
/*support*/
.support {
  padding: 60px 0;
  background: linear-gradient(
      0deg,
      rgba(15, 29, 56, 0.5),
      rgba(15, 29, 56, 0.5)
    ),
    linear-gradient(0deg, #020d21 0%, rgba(15, 29, 56, 0) 100%);
}
.support-wrap {
  display: flex;
  flex-direction: column;
}
.support-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.support-items {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.support-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;
}
.support-item-icon {
  width: 240px;
  height: 178px;
}
.support-item-title {
  color: #fff;
  font-size: 24px;
  line-height: 32px;
}
.support-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.support-list-item {
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  gap: 13px;
}
.support-list-item::before {
  display: block;
  content: "";
  min-width: 4px;
  max-width: 4px;
  height: 4px;
  background-color: #4495ec;
  border-radius: 10px;
  margin-top: 8px;
}
.support-item:last-of-type .support-item-title:last-of-type {
  margin-top: 60px;
}

@media (max-width: 1000px) {
  .support-items {
    flex-direction: column;
    gap: 80px;
  }
  .support-item {
    max-width: 100%;
  }
}

/*scenarios*/
.scenarios {
  padding: 60px 0;
  background: url("../img/bg-grid.png") center center/cover no-repeat;
}
.scenarios-wrap {
  display: flex;
  flex-direction: column;
}
.scenarios-header {
  display: flex;
  gap: 20px;
  align-items: center;
}
.scenarios-bottom {
  margin: 60px auto 0 auto;
  width: 100%;
  max-width: 1120px;
  border-radius: 32px;
  border: 1px solid rgba(0, 47, 108, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 60px;
  backdrop-filter: blur(18.799999237060547px);
  background-color: rgba(255, 255, 255, 0.05);
}
.scenarios-bottom-icon {
  width: 117px;
  height: 132px;
}
.scenarios-bottom-text {
  font-size: 24px;
  line-height: 32px;
}
.scenarios-bottom-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 264px;
  padding: 16px 24px;
  background-color: rgba(255, 93, 34, 1);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
}
.scenarios-bottom-icon-mobile {
  display: none;
}
.scenarios-bottom-icon-tablet {
  display: none;
}
/*swiper*/
.swiper-slide-img-mobile {
  display: none;
}
.scenarios-swiper {
  margin-top: 60px;
  width: 100%;
  /* height: 624px; */
}
.swiper-slide-wrap {
  display: flex;
  padding: 60px 40px;
  border-radius: 24px;
  background-color: rgba(23, 41, 81, 0.3);
  gap: 60px;
}

.swiper-slide-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
}
.swiper-slide-title {
  font-size: 24px;
  line-height: 1.5;
  color: rgba(94, 167, 255, 1);
}
.swiper-slide-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.swiper-slide-list-item {
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  gap: 8px;
}
.swiper-slide-list-item::before {
  content: "";
  display: block;
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  background: url("../img/blue-arrow.svg") center center/cover no-repeat;
}
@media (max-width: 1200px) {
  /* .scenarios-swiper {
    height: 610px;
  } */
  .swiper-slide-content {
    max-width: 275px;
  }
  /* .swiper-slide-wrap {
    height: 534px;
  } */
  .swiper-slide-img-wrap {
    display: flex;
  }
  .swiper-slide-img {
    align-self: center;
  }
  .swiper-slide:last-of-type .swiper-slide-img {
    align-self: flex-start;
  }
}
@media (max-width: 1000px) {
  .scenarios-bottom {
    padding: 32px 40px;
    gap: 40px;
  }
  .scenarios-bottom-icon {
    display: none;
  }
  .scenarios-bottom-icon-tablet {
    display: block;
    width: 113px;
    height: 105px;
  }
  .scenarios-bottom-text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  /* .scenarios-swiper {
    height: 845px;
  } */
  .swiper-slide-wrap {
    flex-direction: column;
    padding: 60px 32px;
    gap: 40px;
  }
  .swiper-slide-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
  .swiper-slide-wrap {
    /* align-items: center; */
    height: auto;
  }
}
@media (max-width: 650px) {
  .scenarios-bottom {
    flex-direction: column;
    gap: 0;
  }
  .scenarios-bottom-text {
    margin-top: 40px;
    text-align: center;
  }
  .scenarios-bottom-link {
    margin-top: 30px;
  }
  .scenarios-bottom-icon-tablet {
    display: none;
    width: 231px;
    height: 209px;
  }
  .scenarios-bottom-icon-mobile {
    display: block;
    width: 231px;
    height: 209px;
  }
}
@media (max-width: 577px) {
  .scenarios-bottom {
    padding: 32px 40px;
  }
  .swiper-slide-img {
    display: none;
  }
  .swiper-slide-img-mobile {
    display: block;
  }
}

/*advantages*/
.advantages {
  padding: 60px 0;
  background: linear-gradient(180deg, #0f1d38 0%, rgba(15, 29, 56, 0) 100%),
    linear-gradient(0deg, #020d21 0%, rgba(15, 29, 56, 0) 100%);
}
.advantages-wrap {
  display: flex;
  flex-direction: column;
}
.advantages-header {
  display: flex;
  gap: 20px;
  align-items: center;
}
.advantages-items {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
}
.advantages-item {
  padding: 40px 32px 48px 32px;
  background-color: rgba(0, 34, 75, 0.5);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}
.advantages-item-icon {
  width: 46px;
  height: 40px;
}
.advantages-item-desc {
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 950px) {
  .advantages-items {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 769px) {
  .advantages-items {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
  }
  .advantages-item {
    flex-direction: row;
    gap: 32px;
  }
  .advantages-item-desc {
    margin-top: 0;
  }
}
@media (max-width: 769px) {
  .advantages-item {
    flex-direction: column;
  }
}
/*application*/
.application {
  padding: 160px 0;
  background: linear-gradient(180deg, #0f1d38 0%, rgba(42, 82, 158, 0) 100%),
    linear-gradient(180deg, #020d21 0%, rgba(15, 29, 56, 0) 100%);
}
.application-wrap {
  width: 100%;
  max-width: 1201px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #ffffff;
  border-radius: 32px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
}
.application-content {
  display: flex;
  flex-direction: column;
}
.application-content-desc {
  font-size: 24px;
  line-height: 32px;
}
.application-content-social {
  margin-top: 48px;
}
.application-content-social-title {
  font-size: 24px;
  color: #5ea7ff;
}
.application-content-social-links {
  margin-top: 30px;
  display: flex;
  gap: 24px;
}
.application-content-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 291px;
  height: 48px;
  background-color: #4495ec;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}
.application-content-social-link-icon {
  width: 32px;
  height: 32px;
}
.application-icon {
  width: 100%;
  max-width: 344px;
  height: 263px;
}
@media (max-width: 1000px) {
  .application-content-social-links {
    flex-direction: column;
  }
}
@media (max-width: 800px) {
  .application {
    padding: 60px 0;
  }
  .application-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
  }
  .application-icon {
    order: 1;
    width: 100%;
    max-width: 344px;
    height: 263px;
  }
  .application-content {
    order: 2;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
  }

  .application-content-social-link {
    gap: 20px;
    max-width: 300px;
    height: 56px;
  }
  .application-content-social-title {
    font-size: 22px;
  }
}

/*list*/
.list {
  padding: 116px 0 180px 0;
  background: url("../img/section2-bg.png") center center/cover no-repeat;
  height: 904px;
}
.list-wrap {
  display: flex;
  flex-direction: column;
}
.list-header {
  display: flex;
  gap: 20px;
  align-items: center;
}
.list-items {
  margin-top: 60px;
  display: flex;
  gap: 32px;
}
.list-item {
  padding: 40px 32px 60px 32px;
  border-radius: 24px;
  background-color: #00224b;
  width: 100%;
  max-width: 420px;
  cursor: pointer;
  height: 300px;
}
.list-item:hover {
  background-color: #002f6c;
}
.list-item.active {
  background-color: #002f6c;
  height: auto;
  min-height: 512px;
}
.list-item-title {
  margin-top: 32px;
  font-size: 24px;
  line-height: 32px;
}
.list-item-desc {
  margin-top: 32px;
  display: none;
  flex-direction: column;
  gap: 32px;
}
.list-item-catalog::before {
  display: block;
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  content: "";
  background: url("../img/blue-arrow.svg") center center/cover no-repeat;
}
.list-item-catalog {
  display: flex;
  gap: 8;
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 1040px) {
  .list {
    padding: 60px 0;
    background: url("../img/section2-bg.png") center center/cover no-repeat;
    height: auto;
  }
  .list-items {
    flex-direction: column;
  }
  .list-item {
    padding: 40px 32px 48px 32px;
    max-width: 100%;
    height: auto;
  }
  .list-item.active {
    background-color: #002f6c;
    height: auto;
    min-height: auto;
  }
  .list-header {
    width: 100%;
    max-width: 300px;
  }
  .list-header-line {
    height: 80px;
  }
  .list-title-span {
    font-weight: bold;
    font-family: "PT Astra Fact";
  }
}
/*stories*/
.stories {
  padding: 120px 0;
}
.stories-wrap {
  display: flex;
  flex-direction: column;
}
.stories-header {
  display: flex;
  gap: 20px;
  align-items: center;
}
.stories-header-line {
  height: 80px;
}
.stories-title {
  width: 100%;
  max-width: 550px;
}
.stories-items {
  margin-top: 60px;
  display: flex;
  gap: 28px;
}
.stories-item {
  width: 100%;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(11.800000190734863px);
}
.stories-item-header {
  background-color: rgba(0, 34, 75, 1);
  padding: 34px 30px;
  border-radius: 32px 32px 0 0;
}
.stories-item-logo {
  width: 160px;
  height: 48px;
}
.stories-item-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}
.stories-item-title {
  font-size: 24px;
  line-height: 1.5;
}
.stories-item-desc {
  margin-top: 30px;
  font-size: 14px;
  color: rgba(139, 163, 203, 1);
  line-height: 1.5;
}
.stories-item-link {
  margin-top: 60px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 211px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(94, 167, 255, 1);
  border-radius: 32px;
  padding: 16px 30px;
  gap: 10px;
}
@media (max-width: 769px) {
  .stories {
    padding: 60px 0;
  }
}
@media (max-width: 660px) {
  .stories-items {
    flex-direction: column;
  }
}
/*news*/
.news {
  padding: 60px 0;
  background: url("../img/bg-grid.png") center center/cover no-repeat;
}
.news-wrap {
  display: flex;
  flex-direction: column;
}
.news-header {
  display: flex;
  gap: 20px;
  align-items: center;
}
.news-items {
  margin-top: 60px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.news-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(11.800000190734863px);
  border-radius: 32px;
}
.news-item-content {
  padding: 40px 30px;
}
.news-item-date {
  font-size: 14px;
  color: #fff;
}
.news-item-title {
  margin-top: 24px;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}
.news-item-desc {
  margin-top: 24px;
  color: rgba(139, 163, 203, 1);
  font-size: 14px;
  line-height: 1.5;
}
.news-item-link {
  margin-top: 60px;
  width: 100%;
  max-width: 143px;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  font-size: 16px;
  color: rgba(68, 149, 236, 1);
}
.news-item-img {
  width: 100%;
}
@media (max-width: 1100px) {
  .news-item:last-of-type {
    display: none;
  }
  .news-items {
    gap: 28px;
  }
  .news-item-desc {
    display: none;
  }
}
@media (max-width: 650px) {
  .news-item-content {
    padding: 32px;
  }
  .news-item:last-of-type {
    display: flex;
  }
  .news-items {
    flex-direction: column;
  }
}

/*connect*/
.connect {
  background-image: url("../img/bg-grid.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.connect-bg {
  padding: 120px 0;
  background: linear-gradient(180deg, #020d21 0%, rgba(15, 29, 56, 0) 100%);
}
.connect-wrap {
  width: 100%;
  max-width: 1159px;
  margin: auto;
  display: flex;
  gap: 32px;
}
.connect-title {
  font-size: 32px;
  line-height: 40px;
  width: 100%;
  max-width: 447px;
}
.connect-title-span {
  font-weight: bold;
  font-family: "PT Astra Fact";
}
.connect-form {
  border-radius: 32px;
  border: 1px solid rgba(0, 47, 108, 1);
  background: rgba(255, 255, 255, 0.05);
  padding: 48px 60px;
}
.connect-form-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  color: rgba(139, 163, 203, 1);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.5s;
}

.connect-form-custom-input {
  border: 1px solid rgba(94, 127, 182, 1);
  height: 52px;
  position: relative;
  width: 100%;
  background: #00132a33;
  border-radius: 8px;
}
.connect-form-custom-input.active {
  border: 1px solid #5ea7ff;
}
.connect-form-input {
  width: 100%;
  border-radius: 8px;
  background: #00132a33;
  height: 52px;
  padding-left: 20px;
  outline: none;
  border: none;
  font-size: 14px;
  color: #fff;
}

.connect-form-unit {
  margin-top: 24px;
  display: flex;
  gap: 23px;
}
.connect-form-btn {
  margin-top: 24px;
  cursor: pointer;
  width: 100%;
  height: 56px;
  border: none;
  background-color: #ff5d22;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  padding: 16px 24px;
}

.connect-form-group {
  margin-top: 32px;
  position: relative;
}
.connect-form-checkbox-label {
  font-size: 12px;
  color: rgba(190, 193, 211, 0.3);
  line-height: 20px;
}

/* *********************************
Чекбоксы
********************************* */

.connect-form-real-checkbox {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.connect-form-custom-checkbox {
  position: relative;
  display: inline-block;
  min-width: 16px;
  height: 16px;
  background: #00224b;
  border: 1px solid #8ba3cb;
  border-radius: 4px;
  vertical-align: sub;
  margin-right: 15px;
  cursor: pointer;
}

.connect-form-custom-checkbox::before {
  content: "";

  /* Рисуем галочку */
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url("../img/checked.svg");
  background-size: contain;
  background-repeat: no-repeat;

  /* Выравниваем по центру */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  margin-top: 1px;

  transition: 0.2s ease-in;
}

.connect-form-custom-checkbox.active {
  background: #4495ec;
  border: 1px solid #4495ec;
}

.connect-form-custom-checkbox.active::before {
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1090px) {
  .connect {
    padding: 60px 0;
  }
  .connect-wrap {
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }
  .connect-title {
    font-size: 28px;
    line-height: 36px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .connect-form {
    width: 100%;
    max-width: 448px;
    padding: 60px 20px;
  }
  .connect-form-unit {
    margin-top: 16px;
    flex-direction: column;
    gap: 16px;
  }
}

/*footer*/
.footer {
  padding: 60px 0;
}
.footer-wrap {
  display: flex;
  flex-direction: column;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 40px;
}
.footer-bottom-link {
  font-size: 12px;
  color: #8ba3cb;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.footer-top-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 901px;
}
.footer-top-logo-wrap {
  display: flex;
  flex-direction: column;
}
.footer-top-logo {
  width: 141px;
  height: 29px;
}
.footer-top-logo-desc {
  margin-top: 24px;
  color: #8ba3cb;
  font-size: 12px;
}

.footer-top-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-top-item-link {
  color: #fff;
  font-size: 14px;
}
.footer-top-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 238px;
}

.footer-top-btn {
  width: 100%;
  padding: 16px 24px;
  background-color: rgba(255, 93, 34, 1);
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  border-radius: 30px;
}
.footer-top-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  border: 1px solid #4495ec;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
  padding: 12px 24px;
}
.footer-top-link-span {
  font-weight: bold;
  font-family: "PT Astra Fact";
}
.footer-top-social-links {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.footer-top-social-link {
  width: 37px;
  height: 37px;
}
.footer-top-social-link-icon {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.footer-desc {
  display: none;
  margin-top: 60px;
  font-size: 12px;
  text-align: center;
}
.footer-top-header-links {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1040px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-top-links {
    max-width: 100%;
  }
  .footer-top-social-links {
    margin-top: 60px;
    justify-content: center;
  }
  .footer-bottom {
    gap: 30px;
  }
  .footer-top-logo-desc {
    display: none;
  }
  .footer-desc {
    display: block;
  }
  .footer-bottom-link {
    text-align: center;
  }

  .footer-top-header-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
  .footer-top-link {
    margin-top: 0;
  }
}
@media (max-width: 590px) {
  .footer-top-section {
    flex-direction: column;
  }
  .footer-top-header-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer-top-list {
    margin-top: 24px;
    gap: 24px;
  }
  .footer-top-nav:first-of-type {
    margin-top: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .footer-top-logo {
    width: 212px;
    height: 44px;
  }
}
/*modal*/
.modal {
  /* overflow: scroll; */
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: none;
  overflow-x: hidden;
}
.modal-popup {
  z-index: -2;
  background-color: #00224b;
  width: 80%;
  max-width: 700px;
  margin: 5% auto;
  padding: 24px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 47, 108, 1);
  display: flex;
  flex-direction: column;
}
.modal-popup-title {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  font-family: "PT Astra Fact";
  font-weight: bold;
}
.modal-popup-desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}
.modal-popup-close {
  margin-top: 30px;
  background-color: #ff5d22;
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  padding: 16px 24px;
  border-radius: 30px;
  align-self: flex-end;
}

.modal-popup-group {
  margin-top: 20px;
  position: relative;
}
.modal-popup-checkbox-label {
  font-size: 12px;
  color: rgba(190, 193, 211, 0.5);
  line-height: 20px;
}
.modal-popup-link {
  color: rgba(190, 193, 211, 0.5);
}
/* *********************************
Чекбоксы
********************************* */

.modal-popup-real-checkbox {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.modal-popup-custom-checkbox {
  position: relative;
  display: inline-block;
  min-width: 18px;
  height: 18px;
  background: #00224b;
  border: 1px solid #8ba3cb;
  border-radius: 4px;
  vertical-align: sub;
  margin-right: 15px;
  cursor: pointer;
}

.modal-popup-custom-checkbox::before {
  content: "";

  /* Рисуем галочку */
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url("../img/checked.svg");
  background-size: contain;
  background-repeat: no-repeat;

  /* Выравниваем по центру */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  margin-top: 1px;

  transition: 0.2s ease-in;
}
.modal-popup-real-checkbox:checked + .modal-popup-custom-checkbox {
  background: #4495ec;
  border: 1px solid #4495ec;
}

.modal-popup-real-checkbox:checked + .modal-popup-custom-checkbox::before {
  transform: translate(-50%, -50%) scale(1);
}

/* .modal-popup-close {
  position: absolute;
  top: 0;
  right: 5%;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s;
  transform-origin: center;
}
.modal-popup-close:hover {
  transform: rotate(180deg);
} */

.form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-error,
.connect-form-error {
  color: #fa0e0e;
  position: absolute;
  margin-left: 10px;
  top: -22px;
}

.modal-success {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal-success-icon {
  width: 80px;
  height: 80px;
}
.modal-success-title {
  margin-top: 60px;
  font-size: 24px;
  color: rgba(94, 167, 255, 1);
}
.modal-success .form-btn {
  margin-top: 60px;
}

@media (max-width: 1090px) {
  .connect-form-error {
    font-size: small;
    top: -18px;
  }
}
@media (max-width: 577px) {
  .modal-popup {
    padding: 48px 24px;
  }
  .modal-popup-close {
    font-size: 30px;
  }
  .connect-form-group {
    margin-top: 8px;
  }
}

@media (max-width: 410px) {
  .modal-popup-title {
    font-size: 16px;
  }
  .modal-popup-desc {
    font-size: 14px;
  }
  .modal-popup-close {
    font-size: 16px;
  }
}

.button_reloadBTN {
  padding: 10px 24px;
  background-color: #ff5d22;
  cursor: pointer;
  color: #fff;
  border-radius: 30px;
  border: none;
}
