@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;
  -webkit-box-sizing: border-box;
          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: 25px 0;
  border-bottom: 1px solid rgba(255, 93, 34, 0.2);
}

.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo-img {
  width: 141px;
  height: 29px;
}

.header-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-menu-list-extra {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 35px;
  left: 0;
  padding: 8px 12px;
  z-index: 1;
  border: 1px solid #303c56;
  border-radius: 12px;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.5);
  background-color: #03122e;
  width: auto;
}

.header-menu-list-extra.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-menu-item {
  padding: 0 8px;
  cursor: pointer;
  position: relative;
}

.header-menu-item:first-of-type {
  display: none;
}

.header-menu-item:last-of-type {
  padding: 0;
}

.header-menu-item:last-of-type .header-menu-link {
  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;
  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 .header-menu-link:hover {
  border-bottom: none;
}

.header-menu-item-extra {
  padding: 12px;
}

.header-menu-link {
  font-size: 12px;
  font-weight: 400;
  color: #6a7e95;
  padding: 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.header-menu-link:hover {
  border-bottom: 1px solid #00b0f0;
  color: #fff;
}

.header-menu-link-extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  color: #939cb1;
  font-size: 12px;
  line-height: 1.5;
}

.header-menu-link-arrow.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header-burger-menu {
  display: none;
}

.header-burger-menu-link {
  height: 39px;
  color: #fff;
  font-size: 12px;
  border-radius: 30px;
  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;
  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;
  background-color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header-burger-icon span:first-child {
  top: 0;
}

.header-burger-icon span:last-child {
  top: auto;
  bottom: 0;
}

.header-burger-icon.active span {
  background-color: #fff;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.header-burger-icon.active span:first-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: calc(50% - 1px);
}

.header-burger-icon.active span:last-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: calc(50% - 1px);
}

/* Header Media Queries */
@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;
  }
  .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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    height: 100%;
    width: 60%;
    background-color: #00132a;
    overflow: auto;
    margin: 0;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
  .header-menu-list-extra {
    top: 45px;
    left: 40px;
    right: 40px;
  }
  .header-menu-item {
    padding: 16px 40px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-menu-item:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    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-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-link {
    color: #fff;
    font-size: 14px;
    padding: 0;
  }
  .header-burger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@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: -webkit-box;
    display: -ms-flexbox;
    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: 17px 0;
  width: 100%;
  background: url("../img/bg-grid.png") center center/cover no-repeat;
}

.banner-wrap {
  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;
  gap: 40px;
}

.banner-section {
  width: 100%;
  max-width: 502px;
  margin-left: 60px;
}

.banner-section:last-of-type {
  max-width: 618px;
  height: auto;
  padding-left: 0;
}

.banner-section-link {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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;
}

.banner-bg-mobile {
  display: none;
}

.banner-title {
  font-size: 48px;
  line-height: 56px;
  font-family: "PT Astra Fact";
}

.banner-title-span {
  font-family: "PT Astra Fact";
}

.banner-subtitle {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.5;
}

.banner-link {
  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;
  margin-top: 48px;
  border-radius: 30px;
  background-color: #ff5d22;
  color: #fff;
  font-size: 16px;
  padding: 16px 29px;
  width: 100%;
  max-width: 260px;
  cursor: pointer;
  border: none;
}

/* Banner Media Queries */
@media (max-width: 1040px) {
  .banner {
    padding: 52px 0;
  }
  .banner-title {
    font-size: 36px;
  }
  .banner-subtitle {
    margin-top: 20px;
  }
  .banner-link {
    font-size: 14px;
  }
  .banner-section {
    margin-left: 0;
  }
}

@media (max-width: 715px) {
  .banner-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .banner-link {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 100%;
    max-width: 360px;
    text-align: center;
    display: none;
  }
  .banner-title {
    text-align: center;
  }
  .banner-subtitle {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
  }
  .banner-section {
    max-width: 100%;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .banner-section:last-of-type {
    margin-top: 60px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .banner-section-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0px;
    margin-bottom: 60px;
  }
  .banner-title {
    font-size: 34px;
  }
}

/* banner-big */
.banner-big {
  padding: 40px 0;
  width: 100%;
  background: url("../img/bg-grid.png") center center/cover no-repeat;
}

.banner-big-wrap-top {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url("../img/ald-banner-big.webp");
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 565px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 60px;
}

.banner-big-wrap-top .banner-big-title {
  max-width: 700px;
  font-family: "PT Astra Fact regular";
  font-weight: 400;
}

.banner-big-wrap-top .banner-big-title strong {
  font-family: "PT Astra Fact";
  font-weight: bold;
}

.banner-big-wrap-top .banner-big-subtitle {
  font-family: "PT Astra Fact regular";
  font-weight: 400;
  line-height: 130%;
  color: #FFFFFF;
  width: 100%;
  padding-left: 20px;
}

.banner-big-wrap-top .banner-big-subtitle strong {
  font-family: "PT Astra Fact";
  font-weight: bold;
}

.banner-big-wrap-top .banner-big-subtitle strong div {
  display: inline;
}

.banner-big-wrap-bottom {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.03%, rgba(74, 202, 252, 0)), to(#4391D0));
  background: linear-gradient(180deg, rgba(74, 202, 252, 0) 0.03%, #4391D0 100%);
  border-radius: 0px 0px 60px 60px;
}

.banner-big-wrap-bottom .banner-big-subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "PT Astra Fact regular";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  color: #FFFFFF;
}

.banner-big-wrap-bottom .banner-big-subtitle strong {
  font-family: "PT Astra Fact";
  font-weight: bold;
}

.banner-big-wrap-bottom .banner-big-subtitle strong span {
  font-family: "PT Astra Fact";
  color: #ff5d22 !important;
  font-weight: bold;
}

.banner-big-wrap-bottom .banner-big-subtitle-mobile {
  display: none;
}

.banner-big-wrap-bottom .banner-big-subtitle-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banner-big-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.banner-big-bottom-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.banner-big-bottom-sub-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.banner-big-bottom-item {
  position: relative;
  padding-left: 60px;
}

.banner-big-bottom-item::before {
  content: "";
  width: 46px;
  height: 40px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg width='46' height='41' viewBox='0 0 46 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.2' width='28.1049' height='28.7403' rx='4.72727' transform='matrix(-0.858763 -0.512373 -0.858763 0.512373 47.2727 26.8237)' fill='white' fill-opacity='0.4' stroke='%236CB8F9' stroke-width='0.590909'/%3E%3Crect opacity='0.4' width='28.1049' height='28.7403' rx='4.72727' transform='matrix(-0.858763 -0.512373 -0.858763 0.512373 47.2727 20.7632)' fill='white' fill-opacity='0.4' stroke='%236CB8F9' stroke-width='0.590909'/%3E%3CforeignObject x='-49.2201' y='-47.9763' width='144.169' height='126.107'%3E%3Cdiv xmlns='http://www.w3.org/1999/xhtml' style='backdrop-filter:blur(24.85px);clip-path:url(%23bgblur_0_1813_3928_clip_path);height:100%25;width:100%25'%3E%3C/div%3E%3C/foreignObject%3E%3Crect data-figma-bg-blur-radius='49.6954' width='28.1049' height='28.7403' rx='4.72727' transform='matrix(-0.858763 -0.512373 -0.858763 0.512373 47.2727 14.9146)' fill='white' stroke='%236CB8F9' stroke-width='0.590909'/%3E%3Cpath d='M32.9272 1.9696C33.7083 1.18856 34.9743 1.18857 35.7554 1.9696L37.0864 3.30066C37.2817 3.49592 37.2817 3.81243 37.0864 4.00769L23.8892 17.205C23.1163 17.9774 21.8691 17.9849 21.0864 17.2284C21.0048 17.1686 20.9249 17.1039 20.8511 17.0302L16.4155 12.5936C15.6345 11.8126 15.6345 10.5456 16.4155 9.76453L17.7466 8.43347C17.9419 8.23865 18.2585 8.23838 18.4536 8.43347L22.4575 12.4384L32.9272 1.9696Z' fill='%234495EC'/%3E%3Cdefs%3E%3CclipPath id='bgblur_0_1813_3928_clip_path' transform='translate(49.2201 47.9763)'%3E%3Crect width='28.1049' height='28.7403' rx='4.72727' transform='matrix(-0.858763 -0.512373 -0.858763 0.512373 47.2727 14.9146)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0px;
}

.banner-big-bottom-item strong {
  font-family: "PT Astra Fact regular";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #FFFFFF;
}

.banner-big-bottom-item p {
  font-family: "PT Astra Fact regular";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #D3DAE8;
}

.banner-big-bottom-sub-info {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -ms-flex-positive: 0;
      flex-grow: 0;
  padding: 32px 20px 0px 32px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(62, 149, 244, 0.6)), to(rgba(36, 87, 142, 0.6)));
  background: linear-gradient(180deg, rgba(62, 149, 244, 0.6) 0%, rgba(36, 87, 142, 0.6) 100%);
  border: 1.25066px solid #6CB8F9;
  border-radius: 24px;
}

.banner-big-bottom-sub-info-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

.banner-big-bottom-sub-info strong {
  font-family: "PT Astra Fact regular";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #FFFFFF;
}

.banner-big-bottom-sub-info ul li {
  font-family: "PT Astra Fact regular";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #FFFFFF;
  list-style: disc;
  margin-left: 20px;
}

.banner-big-wrap {
  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;
  gap: 40px;
}

.banner-big-section {
  width: 100%;
}

.banner-big-section:last-of-type {
  height: auto;
  padding-left: 0;
}

.banner-big-section-link {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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;
}

.banner-big-bg-mobile {
  display: none;
}

.banner-big-title {
  font-size: 48px;
  line-height: 56px;
  font-family: "PT Astra Fact";
}

.banner-big-title-span {
  font-family: "PT Astra Fact";
}

.banner-big-subtitle {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.5;
}

.banner-big-link {
  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;
  margin-top: 48px;
  border-radius: 30px;
  background-color: #ff5d22;
  color: #fff;
  font-size: 16px;
  padding: 16px 29px;
  width: 100%;
  max-width: 260px;
  cursor: pointer;
  border: none;
}

/* banner-big Media Queries */
@media (max-width: 1040px) {
  .banner-big {
    padding: 52px 0;
  }
  .banner-big-title {
    font-size: 36px;
  }
  .banner-big-subtitle {
    margin-top: 20px;
  }
  .banner-big-link {
    font-size: 14px;
  }
  .banner-big-section {
    margin-left: 0;
  }
}

@media (max-width: 715px) {
  .banner-big-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .banner-big-link {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 100%;
    max-width: 360px;
  }
  .banner-big-subtitle {
    margin-top: 40px;
    font-size: 18px;
  }
  .banner-big-section {
    max-width: 100%;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .banner-big-section:last-of-type {
    margin-top: 60px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .banner-big-section-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0px;
    margin-bottom: 60px;
  }
  .banner-big-subtitle {
    left: auto;
    position: relative;
  }
  .banner-big-title {
    font-size: 34px;
    padding-left: 20px;
  }
  .banner-big-wrap-top {
    padding-left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../img/ald-banner-big.webp");
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/ald-banner-big.webp");
    background-position: 70% 50%;
    background-size: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    padding-bottom: 20px;
  }
  .banner-big .banner-big-wrap-top .banner-big-title {
    line-height: 120%;
  }
  .banner-big-bottom-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .banner-big-bottom-sub-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .banner-big-number {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0px;
  }
  .banner-big .banner-big-wrap-bottom .banner-big-subtitle-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .banner-big .banner-big-wrap-bottom .banner-big-subtitle-desktop {
    display: none;
  }
  .banner-big .banner-big-wrap-bottom .banner-big-subtitle strong div {
    display: none;
  }
}

@media (max-width: 380px) {
  .banner-big-wrap-bottom .banner-big-subtitle {
    font-size: 28px;
  }
  .banner-big-bottom-item {
    padding-left: 0;
    padding-top: 40px;
  }
  .banner-big-bottom-item strong {
    font-size: 18px;
  }
  .banner-big-bottom-item::before {
    left: 0px;
    top: 0px;
  }
  .banner-big-wrap-bottom .banner-big-subtitle {
    font-size: 28px;
  }
  .banner-big .banner-big-wrap-top .banner-big-title {
    font-size: 28px;
  }
}

/* Data */
.data {
  padding: 60px 0;
}

.data-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.data-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.data-items {
  margin-top: 60px;
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #172951;
  border-radius: 16px;
}

.data-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 333px;
}

.data-item-count {
  font-size: 40px;
  color: #00b0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
}

/* Data Media Queries */
@media (max-width: 1040px) {
  .data {
    margin-top: 0;
    padding: 60px 0;
  }
  .data-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
  .data-item:last-of-type {
    max-width: 390px;
  }
}

@media (max-width: 769px) {
  .data-items {
    padding: 60px 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 40px;
  }
  .data-item {
    max-width: 100%;
  }
}

/* Docs Info */
.docs-info {
  padding: 60px 0 120px 0;
}

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

.docs-info-item {
  width: 100%;
  max-width: 300px;
  height: auto;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.docs-info-item-icon {
  width: 240px;
  height: 178px;
}

.docs-info-item-icon-mobile {
  display: none;
}

.docs-info-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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 Media Queries */
@media (max-width: 860px) {
  .docs-info {
    padding: 40px 0 80px 0;
  }
  .docs-info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
    width: 100%;
    max-width: 488px;
    margin: auto;
  }
  .docs-info-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
    gap: 24px;
  }
  .docs-info-item-icon {
    display: none;
  }
  .docs-info-item-icon-mobile {
    display: block;
    width: 120px;
    height: 120px;
  }
  .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 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 26px;
    max-width: 360px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: 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: -webkit-gradient(linear, left top, left bottom, from(#0f1d38), to(rgba(15, 29, 56, 0))), -webkit-gradient(linear, left bottom, left top, from(#020d21), to(rgba(15, 29, 56, 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.possibilities-header {
  display: -webkit-box;
  display: -ms-flexbox;
  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: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[2];
      grid-template-rows: repeat(2, 1fr);
  gap: 32px;
}

.possibilities-item {
  background-color: #00224b;
  padding: 40px 32px 60px 32px;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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;
}

/* Possibilities Media Queries */
@media (max-width: 950px) {
  .possibilities-items {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr)[3];
        grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 769px) {
  .possibilities {
    padding: 60px 0;
  }
  .possibilities-items {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[6];
        grid-template-rows: repeat(6, auto);
  }
}

/* Architecture */
.architecture {
  padding: 60px 0;
  width: 100%;
  background: url("../img/bg-grid.png") center center/cover no-repeat;
}

.architecture-bg-mobile {
  display: none;
}

.architecture-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.architecture-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.architecture-content {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.architecture-bg {
  width: 100%;
  max-width: 760px;
}

.architecture-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.architecture-list-title {
  color: #5ea7ff;
  font-size: 24px;
  line-height: 32px;
}

.architecture-list-item {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  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;
}

/* Architecture Media Queries */
@media (max-width: 1200px) {
  .architecture {
    padding: 60px 0;
  }
  .architecture-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .architecture-catalog {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 100%;
    margin-top: 60px;
    padding: 40px;
  }
  .architecture-bg {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .architecture-catalog {
    margin-top: 0px;
  }
}

/* Support */
.support {
  padding: 60px 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(15, 29, 56, 0.5)), to(rgba(15, 29, 56, 0.5))), -webkit-gradient(linear, left bottom, left top, from(#020d21), to(rgba(15, 29, 56, 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.support-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.support-items {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.support-item {
  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-align: center;
      -ms-flex-align: center;
          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-item:last-of-type .support-item-title:last-of-type {
  margin-top: 60px;
}

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

.support-list-item {
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  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 Media Queries */
@media (max-width: 1000px) {
  .support-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.scenarios-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.scenarios-bottom {
  margin: 60px auto 0 auto;
  width: 100%;
  max-width: 1120px;
  border-radius: 32px;
  border: 1px solid #002f6c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 60px;
  -webkit-backdrop-filter: blur(18.8px);
          backdrop-filter: blur(18.8px);
  background-color: rgba(255, 255, 255, 0.05);
}

.scenarios-bottom-icon {
  width: 117px;
  height: 132px;
}

.scenarios-bottom-icon-mobile {
  display: none;
}

.scenarios-bottom-icon-tablet {
  display: none;
}

.scenarios-bottom-text {
  font-size: 24px;
  line-height: 32px;
}

.scenarios-bottom-link {
  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;
  width: 100%;
  max-width: 264px;
  padding: 16px 24px;
  background-color: #ff5d22;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
}

.scenarios-swiper {
  margin-top: 60px;
  width: 100%;
}

/* Swiper */
.swiper-slide-img-mobile {
  display: none;
}

.swiper-slide-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 40px;
  border-radius: 24px;
  background-color: rgba(23, 41, 81, 0.3);
  gap: 60px;
}

.swiper-slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 480px;
}

.swiper-slide-title {
  font-size: 24px;
  line-height: 1.5;
  color: #5ea7ff;
}

.swiper-slide-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.swiper-slide-list-item {
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  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;
}

/* Scenarios Media Queries */
@media (max-width: 1200px) {
  .swiper-slide-content {
    max-width: 275px;
  }
  .swiper-slide-img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .swiper-slide-img {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .swiper-slide:last-of-type .swiper-slide-img {
    -ms-flex-item-align: start;
        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) {
  .swiper-slide-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 60px 32px;
    gap: 40px;
  }
  .swiper-slide-content {
    max-width: 100%;
  }
  .swiper-slide-wrap {
    height: auto;
  }
}

@media (max-width: 650px) {
  .scenarios-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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: -webkit-gradient(linear, left top, left bottom, from(#0f1d38), to(rgba(15, 29, 56, 0))), -webkit-gradient(linear, left bottom, left top, from(#020d21), to(rgba(15, 29, 56, 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.advantages-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.advantages-items {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[2];
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.advantages-item-icon {
  width: 46px;
  height: 40px;
}

.advantages-item-desc {
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.5;
}

/* Advantages Media Queries */
@media (max-width: 950px) {
  .advantages-items {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr)[3];
        grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 769px) {
  .advantages-items {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[6];
        grid-template-rows: repeat(6, auto);
  }
  .advantages-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
  .advantages-item-desc {
    margin-top: 0;
  }
}

@media (max-width: 769px) {
  .advantages-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* Advantages free */
.advantages-index {
  padding: 120px 0 60px 0;
  background: transparent;
}

.advantages-index-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 32px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(62, 149, 244, 0.6)), to(rgba(36, 87, 142, 0.6)));
  background: linear-gradient(180deg, rgba(62, 149, 244, 0.6) 0%, rgba(36, 87, 142, 0.6) 100%);
  border: 1px solid #6CB8F9;
  border-radius: 24px;
}

.advantages-index-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.advantages-index-title {
  font-family: "PT Astra Fact regular";
  font-weight: 400;
}

.advantages-index-title span {
  color: #ff5d22;
  font-family: "PT Astra Fact";
  font-weight: bold;
}

.advantages-index-title strong {
  font-family: "PT Astra Fact";
  font-weight: bold;
}

.advantages-index-subtitle {
  font-family: "PT Astra Fact regular";
  font-style: normal;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 160%;
}

.advantages-index-items-title {
  margin-top: 40px;
  font-family: "PT Astra Fact regular";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #96A6CB;
}

.advantages-index-items {
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  -ms-grid-rows: (1fr)[1];
      grid-template-rows: repeat(1, 1fr);
  gap: 32px;
}

.advantages-index-item {
  padding: 40px 32px 48px 32px;
  background-color: rgba(0, 34, 75, 0.5);
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.advantages-index-item-icon {
  width: 46px;
  height: 40px;
}

.advantages-index-item-desc {
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.5;
}

.advantages-index-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px;
  gap: 40px;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-top: 60px;
}

.advantages-index-footer-btn-blue {
  margin-top: 24px;
  cursor: pointer;
  width: 100%;
  height: 56px;
  border: none;
  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;
  background-color: #5ea7ff;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  font-size: 16px;
  padding: 16px 24px;
}

.advantages-index-footer-btn {
  margin-top: 24px;
  cursor: pointer;
  width: 100%;
  height: 56px;
  border: none;
  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;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #5ea7ff;
  cursor: pointer;
  border-radius: 30px;
  font-size: 16px;
  padding: 16px 24px;
}

/* Advantages Media Queries */
@media (max-width: 980px) {
  .advantages-index-items {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[2];
        grid-template-rows: repeat(2, 1fr);
  }
  .advantages-index-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 769px) {
  .advantages-index-items {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[6];
        grid-template-rows: repeat(6, auto);
  }
  .advantages-index-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .advantages-index-item-desc {
    margin-top: 0;
  }
  .advantages-index-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* Advantages free */
.advantages-free {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#0f1d38), to(rgba(15, 29, 56, 0))), -webkit-gradient(linear, left bottom, left top, from(#020d21), to(rgba(15, 29, 56, 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-free-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.advantages-free-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.advantages-free-title span {
  color: #ff5d22;
}

.advantages-free-subtitle {
  font-family: "PT Astra Fact regular";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
}

.advantages-free-items-title {
  margin-top: 40px;
  font-family: "PT Astra Fact regular";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #96A6CB;
}

.advantages-free-items {
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  -ms-grid-rows: (1fr)[1];
      grid-template-rows: repeat(1, 1fr);
  gap: 32px;
}

.advantages-free-item {
  padding: 40px 32px 48px 32px;
  background-color: rgba(0, 34, 75, 0.5);
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.advantages-free-item-icon {
  width: 46px;
  height: 40px;
}

.advantages-free-item-desc {
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.5;
}

.advantages-free-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px;
  gap: 40px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-top: 40px;
}

.advantages-free-footer-btn-blue {
  margin-top: 24px;
  cursor: pointer;
  width: 100%;
  height: 56px;
  border: none;
  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;
  background-color: #5ea7ff;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  font-size: 16px;
  padding: 16px 24px;
}

.advantages-free-footer-btn {
  margin-top: 24px;
  cursor: pointer;
  width: 100%;
  height: 56px;
  border: none;
  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;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #5ea7ff;
  cursor: pointer;
  border-radius: 30px;
  font-size: 16px;
  padding: 16px 24px;
}

/* Advantages Media Queries */
@media (max-width: 980px) {
  .advantages-free-items {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[2];
        grid-template-rows: repeat(2, 1fr);
  }
  .advantages-free-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 769px) {
  .advantages-free-items {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[6];
        grid-template-rows: repeat(6, auto);
  }
  .advantages-free-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .advantages-free-item-desc {
    margin-top: 0;
  }
  .advantages-free-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* Application */
.application {
  padding: 160px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#0f1d38), to(rgba(42, 82, 158, 0))), -webkit-gradient(linear, left top, left bottom, from(#020d21), to(rgba(15, 29, 56, 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.application-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.application-content-social-link {
  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;
  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;
}

/* Application Media Queries */
@media (max-width: 1000px) {
  .application-content-social-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 800px) {
  .application {
    padding: 60px 0;
  }
  .application-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 60px 30px;
  }
  .application-icon {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    max-width: 344px;
    height: 263px;
  }
  .application-content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: 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;
  background: url("../img/section2-bg.png") center center/cover no-repeat;
}

.list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.list-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list-items {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.list-item {
  padding: 40px 32px 60px 32px;
  border-radius: 24px;
  background-color: #00224b;
  width: 100%;
  max-width: 420px;
}

.list-item-title {
  margin-top: 32px;
  font-size: 24px;
  line-height: 32px;
}

.list-item-desc {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.list-item-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  font-size: 14px;
  line-height: 24px;
}

.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 Media Queries */
@media (max-width: 1040px) {
  .list {
    padding: 60px 0;
    height: auto;
  }
  .list-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.stories-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stories-header-line {
  height: 80px;
}

.stories-title {
  width: 100%;
  max-width: 550px;
}

.stories-items {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}

.stories-item {
  width: 100%;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  padding: 60px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.stories-item-text {
  font-size: 24px;
  line-height: 32px;
}

.stories-item-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stories-item-author-name {
  font-size: 20px;
  line-height: 1.5;
}

.stories-item-author-position {
  font-size: 14px;
  line-height: 1.5;
  color: #83a2dc;
}

/* Stories Media Queries */
@media (max-width: 1040px) {
  .stories {
    padding: 60px 0;
  }
  .stories-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* News Section */
.news {
  padding: 60px 0;
  background: url("../img/bg-grid.png") center center/cover no-repeat;
}

.news-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news-header {
  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;
  gap: 20px;
}

.news-items {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(11.8px);
          backdrop-filter: blur(11.8px);
  border-radius: 32px;
}

.news-item-content {
  padding: 40px 30px;
}

.news-item-date {
  font-size: 14px;
  color: #ffffff;
}

.news-item-title {
  margin-top: 24px;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
}

.news-item-desc {
  margin-top: 24px;
  color: #8ba3cb;
  font-size: 14px;
  line-height: 1.5;
}

.news-item-link {
  margin-top: 60px;
  width: 100%;
  max-width: 143px;
  padding: 16px 30px;
  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;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  font-size: 16px;
  color: #4495ec;
}

.news-item-img {
  width: 100%;
}

@media (max-width: 1100px) {
  .news-item:last-of-type {
    display: none;
  }
  .news-item-desc {
    display: none;
  }
  .news-items {
    gap: 28px;
  }
}

@media (max-width: 650px) {
  .news-item:last-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .news-item-content {
    padding: 32px;
  }
  .news-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* Connect Section */
.connect {
  background-image: url("../img/bg-grid.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.connect-bg {
  padding: 90px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#020d21), to(rgba(15, 29, 56, 0)));
  background: linear-gradient(180deg, #020d21 0%, rgba(15, 29, 56, 0) 100%);
}

.connect-wrap {
  width: 100%;
  max-width: 1159px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.connect-title {
  font-size: 32px;
  line-height: 40px;
  width: 100%;
  max-width: 447px;
}

.connect-title-span {
  display: block;
  font-family: "PT Astra Fact regular" !important;
  font-style: normal;
  font-weight: 400;
  font-size: 14px !important;
  line-height: 170%;
  color: #FFFFFF;
  margin-top: 20px;
}

.connect-form {
  border-radius: 32px;
  border: 1px solid #002f6c;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(11.8px);
          backdrop-filter: blur(11.8px);
  padding: 48px 60px;
}

.connect-form-label {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  color: #8ba3cb;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.connect-form-custom-input {
  border: 1px solid #5e7fb6;
  height: 52px;
  position: relative;
  width: 100%;
  background: #00132a33;
  border-radius: 8px;
}

.connect-form-custom-input.active {
  border: 1px solid #5ea7ff;
}

.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%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  margin-top: 1px;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.connect-form-custom-checkbox.active {
  background: #4495ec;
  border: 1px solid #4495ec;
}

.connect-form-custom-checkbox.active::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.connect-form-input {
  width: 100%;
  border-radius: 8px;
  background: #00132a33;
  height: 52px;
  padding-left: 20px;
  outline: none;
  border: none;
  font-size: 14px;
  color: #ffffff;
}

.connect-form-unit {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23px;
}

.connect-form-btn {
  margin-top: 24px;
  cursor: pointer;
  width: 100%;
  height: 56px;
  border: none;
  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;
  background-color: #ff5d22;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  font-size: 16px;
  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-error {
  color: #fa0e0e;
  position: absolute;
  margin-left: 10px;
  top: -22px;
}

@media (max-width: 1090px) {
  .connect-form-error {
    font-size: small;
    top: -18px;
  }
}

@media (max-width: 1090px) {
  .connect {
    padding: 60px 0;
  }
  .connect-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: 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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .connect-form-group {
    margin-top: 8px;
  }
}

/* Footer */
.footer {
  padding: 60px 0;
}

.footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}

.footer-top-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 901px;
}

.footer-top-logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-top-logo-img {
  width: 141px;
  height: 29px;
}

.footer-top-logo-desc {
  margin-top: 24px;
  color: #8ba3cb;
  font-size: 12px;
}

.footer-top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.footer-top-item-link {
  color: #ffffff;
  font-size: 14px;
}

.footer-top-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 238px;
}

.footer-top-btn {
  width: 100%;
  padding: 16px 24px;
  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;
  background-color: #ff5d22;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  font-size: 14px;
}

.footer-top-link {
  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;
  width: 100%;
  margin-top: 16px;
  border: 1px solid #4495ec;
  border-radius: 30px;
  font-size: 14px;
  color: #ffffff;
  padding: 12px 24px;
}

.footer-top-link-span {
  font-weight: bold;
  font-family: "PT Astra Fact";
}

.footer-top-social-links {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}

.footer-top-social-link {
  width: 37px;
  height: 37px;
}

.footer-top-social-link-icon {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.footer-top-header-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 64px;
  margin-top: 40px;
}

.footer-bottom-link {
  font-size: 12px;
  color: #8ba3cb;
}

.footer-desc {
  display: none;
  margin-top: 60px;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1040px) {
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-top-links {
    max-width: 100%;
  }
  .footer-top-social-links {
    margin-top: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-top-logo-desc {
    display: none;
  }
  .footer-top-header-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
  }
  .footer-top-link {
    margin-top: 0;
  }
  .footer-bottom {
    gap: 30px;
  }
  .footer-bottom-link {
    text-align: center;
  }
  .footer-desc {
    display: block;
  }
}

@media (max-width: 590px) {
  .footer-top-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-top-header-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .footer-top-list {
    margin-top: 24px;
    gap: 24px;
  }
  .footer-top-nav:first-of-type {
    margin-top: 36px;
  }
  .footer-top-logo-img {
    width: 212px;
    height: 44px;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(8px);
          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 #002f6c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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;
  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;
  background-color: #ff5d22;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  font-size: 16px;
  padding: 16px 24px;
  -ms-flex-item-align: end;
      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%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  margin-top: 1px;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.modal-success {
  display: none;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-success-icon {
  width: 80px;
  height: 80px;
}

.modal-success-title {
  margin-top: 60px;
  font-size: 24px;
  color: #5ea7ff;
}

.modal-success .form-btn {
  margin-top: 60px;
}

.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 {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.form {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.form-error {
  color: #fa0e0e;
  position: absolute;
  margin-left: 10px;
  top: -22px;
}

.button_reloadBTN {
  padding: 10px 24px;
  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;
  background-color: #ff5d22;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 30px;
}

@media (max-width: 577px) {
  .modal-popup {
    padding: 48px 24px;
  }
  .modal-popup-close {
    font-size: 30px;
  }
}

@media (max-width: 410px) {
  .modal-popup-title {
    font-size: 16px;
  }
  .modal-popup-desc {
    font-size: 14px;
  }
  .modal-popup-close {
    font-size: 16px;
  }
}
/*# sourceMappingURL=c_style.css.map */