@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: 200px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

* {
  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;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}
.locked {
  overflow: hidden;
}
.title {
  font-size: 40px;
  color: #003a5c;
  font-family: "PT Astra Fact";
}
@media (max-width: 577px) {
  .title, .stack-title {
    font-size: 32px;
    text-align: center;
  }
}
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
/*header*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  backdrop-filter: blur(16px);
  z-index: 1;
  transition: all .5s ease-in;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header.header-scroll {
  background-color: #fff;
  box-shadow: 0px 4px 20px 0px #0079c11a;
}
.header.header-scroll .header-menu-link {
  color: #2a2b30;
}

.header-menu-list {
  display: flex;
  gap: 60px;
  align-items: center;
}
.header-menu-link {
  font-size: 18px;
  color: #f5fcff;
}
.header-menu-item {
  transition: all .2s;
}
/* .header-menu-item:hover {
   transform: scale(1.1);
} */
.header-logo-link {
  display: block;
  width: 156px;
  height: 38px;
}
.header-logo-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.header-burger-icon {
  display: none;
}
.header-logo-link-extra {
  display: none;
  width: 159px;
  height: 38px;
}
.header__menu-item:first-of-type {
  display: none;
}
/*адаптив header*/

@media (width < 1040px) {
  .header-menu-link {
    display: block;
    font-size: 16px;
    padding: 20px;
    width: 100%;
    color: #2a2b30;
    /* text-align: center; */
  }
  .header.header-scroll .header-menu-link {
    color: #2a2b30;
  }
  .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.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: flex-start; */
    gap: 0;
    height: 100%;
    width: 60%;
    /* background-color: #3b455b; */
    /* background-color: rgba(0, 0, 0, 0.1); */
    background-color: #ffffff;
    overflow: auto;
    margin: 0;
    position: relative;
    z-index: 40;
    /* backdrop-filter: blur(16px); */
    backdrop-filter: blur(30px);
    padding: 20px;
    box-shadow: 0px 4px 20px 0px #45454526;
  }

  .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.header-scroll .header-burger-icon span {
    background-color: #0078ef;
  }
  .header-burger-icon span:first-child {
    top: 0;
  }

  .header-burger-icon span:last-child {
    top: auto;
    bottom: 0;
  }

  .header-menu-item {
    /* padding: 20px; */
    width: 100%;
    /* border-bottom: 1px solid #f2f3f4; */
  }
  .header__menu-item:first-of-type {
    display: block;
    padding: 20px;
    align-self: flex-start;
  }
  .header-burger-icon.active span {
    /* background-color: #3b3e40; */
    -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 (width < 769px) {
  .header {
    padding: 45px 20px;
  }
  /* .header-logo-link {
    width: 114px;
    height: 30px;
  } */
}
@media (width < 500px) {
  .header-menu-list {
    width: 100%;
    height: fit-content;
  }
  .header-burger-icon.active span {
    background-color: #0078ef;
  }
}
/*завершение адаптива*/
/*banner*/
.banner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: url("../img/banner.png") center center/cover no-repeat;
  padding: 215px 15px 201px 15px;
  margin-bottom: 100px;
}
.banner-wrap {
  /* padding: 110px 15px 201px 15px; */
  display: flex;
  flex-direction: column;
}
.banner-title {
  color: #fff;
  font-size: 48px;
  font-family: "PT Astra Fact";
}
.banner-subtitle {
  margin-top: 24px;
  color: #fff;
  width: 30%;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 1040px) {
  .banner-subtitle {
    width: 50%;
  }
}
@media (max-width: 735px) {
  .banner {
    padding: 241px 15px 300px 15px;
    background: url("../img/banner-mobile.png") center center/cover no-repeat;
    margin-bottom: 60px;
  }
  .banner-wrap {
    /* padding: 43px 15px 380px 15px; */
    margin-bottom: 100px;
  }
  .banner-title {
    text-align: center;
  }
  .banner-subtitle {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 577px) {
  .banner-title {
    font-size: 40px;
  }
  .banner-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
}

/*extra*/
.extra {
  padding: 0 20px;
  margin-bottom: 100px;
}
.extra-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.extra-text {
  color: #071c27;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 620px) {
  .extra-text {
    font-size: 16px;
  }
}
/*advantages*/
/* .advantages { */
  /* padding-top: 100px; */
/* } */
.advantages-wrap {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}
.advantages-items {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 324px);
  gap: 20px;
}
.advantages-item {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #def3ff;
}
.advantages-item-text {
  color: #071c27;
  font-size: 18px;
}
.advantages-item-text-span {
  font-family: "PT Astra Fact";
}
.advantages-item-icon {
  width: 68px;
  height: 68px;
}
.advantages-item-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.advantages-item-list-text {
  font-size: 18px;
  color: #071c27;
  /* line-height: 26px; */
  display: flex;
  gap: 10px;
  /* align-items: center; */
}
.advantages-item-list-point {
  display: block;
  min-width: 6px;
  max-width: 6px;
  height: 6px;
  background-color: #b6e4ff;
  margin-top: 8px;
}
@media (max-width: 1100px) {
  .advantages-items {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 324px);
    gap: 20px;
  }
}
@media (max-width: 730px) {
  .advantages-items {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 324px);
    gap: 20px;
  }
}
@media (max-width: 577px) {
  .advantages {
    padding-top: 100px;
  }
  .advantages-items {
    margin-top: 60px;
    grid-template-rows: repeat(6, auto);
  }
  .advantages-item {
    padding: 40px 20px;
  }
  .advantages-item-text {
    margin-top: 32px;
    font-size: 16px;
    order: 2;
  }
  .advantages-item-icon {
    width: 56px;
    height: 56px;
    order: 1;
  }
  .advantages-item-list {
    margin-top: 16px;
    order: 3;
  }
  .advantages-item-list-text {
    font-size: 16px;
  }
}
/*components*/
.components {
  margin-top: 100px;
  padding: 0 15px;
}
.components-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}
.components-title {
  color: #fff;
}
.components-item {
  padding: 40px;
  background-color: #f2f5f6;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.components-item:first-of-type {
  background-color: #0079c1;
}
.components-item-title {
  font-size: 24px;
  color: #071c27;
  font-family: "PT Astra Fact";
}
.components-item-subtitle {
  font-size: 18px;
  color: #071c27;
  line-height: 26px;
}
@media (max-width: 730px) {
  .components-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 20px;
  }
}
@media (max-width: 577px) {
  .components {
    margin-top: 120px;
  }
  .components-wrap {
    grid-template-rows: repeat(6, auto);
  }
  .components-title {
    text-align: start;
  }
  .components-item {
    padding: 40px 32px;
  }
  .components-item-subtitle {
    font-size: 16px;
  }
}
/*stages*/
.stages {
  margin-top: 193px;
  margin-bottom: 60px;
}
.stages-wrap {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  position: relative;
}
.stages-header {
  display: flex;
  justify-content: space-between;
}
.stages-wrap-btns {
  display: flex;
  gap: 18px;
}
.stages-btn {
  width: 48px;
  height: 48px;
  /* background-color: rgba(0, 121, 193, 1); */
  border: 1px solid #82d0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}
.stages-btn-arrow {
  width: 17px;
  height: 15px;
  background: url("../img/blue-arrow.svg") center center/cover no-repeat;
}
.stages-btn.active {
  background-color: rgba(0, 121, 193, 1);
  border: none;
  transition: background-color 0.3s ease;
}
.stages-btn.active .stages-btn-arrow {
  width: 17px;
  height: 15px;
  background: url("../img/white-arrow.svg") center center/cover no-repeat;
}
.stages-btn:last-of-type .stages-btn-arrow {
  rotate: 180deg;
}
.stages-btn.active:first-of-type .stages-btn-arrow {
  rotate: 180deg;
}
.stages-btn.active:last-of-type .stages-btn-arrow {
  rotate: 0deg;
}
.stages-btn:hover {
  border: 1px solid #d7dde1;
}
.stages-btn.active:hover {
  background-color: #4eb9e5;
}
.stages-items {
  margin-top: 73px;
  display: flex;
  gap: 21px;
  position: relative;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: 100%;
  overflow: hidden;
}
.stages-items-line {
  width: 100%;
  position: absolute;
  z-index: -2;
  height: 1px;
  background: linear-gradient(
    270deg,
    rgba(215, 221, 225, 0) 0%,
    #d7dde1 10%,
    #d7dde1 90%,
    rgba(215, 221, 225, 0) 100%
  );
  top: 39px;
}
.stages-item {
  display: none;
  /* display: flex; */
  flex-direction: column;
  width: 100%;
  /* min-width: 305px; */
  max-width: 305px;
  height: 224px;
  padding-left: 32px;
}
.stages-item-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  /* background-color: rgba(0, 121, 193, 1); */
  border: 8px solid rgba(81, 163, 218, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stages-item-icon-extra-wrap {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background-color: rgba(0, 121, 193, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stages-item-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 144px;
  height: 1px;
  background: linear-gradient(
    270deg,
    rgba(0, 121, 193, 0) 0%,
    #0079c1 15%,
    #0079c1 75%,
    rgba(0, 121, 193, 0) 100%
  );
  z-index: -1;
}

.stages-item:nth-child(2) .stages-item-icon-wrap,
.stages-item:last-of-type .stages-item-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  /* background-color: rgba(0, 121, 193, 1); */
  border: 8px solid rgba(76, 225, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stages-item:nth-child(2) .stages-item-icon-extra-wrap,
.stages-item:last-of-type .stages-item-icon-extra-wrap {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background-color: rgba(76, 225, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stages-item:nth-child(2) .stages-item-line,
.stages-item:last-of-type .stages-item-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 144px;
  height: 1px;
  background: linear-gradient(
    270deg,
    rgba(76, 225, 255, 0) 0%,
    #4ce1ff 15%,
    #4ce1ff 75%,
    rgba(76, 225, 255, 0) 100%
  );

  z-index: -1;
}
.stages-item-icon-quotes {
  min-width: 10px;
  max-width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  rotate: -45deg;
  border-radius: 1px;
}
.stages-item-icon-quotes:last-of-type {
  rotate: 135deg;
}
.stages-item:nth-child(5) .stages-item-icon-extra-wrap {
  display: flex;
  align-items: center;
}

.stages-item-icon-line {
  width: 2px;
  height: 22px;
  background-color: #fff;
  rotate: 15deg;
  border-radius: 6px;
}
.stages-item-text {
  margin-top: 27px;
  font-size: 18px;
  color: #4a5a68;
  line-height: 28px;
}
.stages-item:nth-child(2) .stages-item-text,
.stages-item:last-of-type .stages-item-text {
  color: #4eb9e5;
}
@media (max-width: 577px) {
  .stages {
    margin-top: 120px;
  }
  .stages-header {
    justify-content: center;
  }
  .stages-wrap-btns {
    display: none;
  }
  .stages-items {
    margin-top: 60px;
    gap: 36px;
    flex-direction: column;
  }
  .stages-items-line {
    width: 1px;
    position: absolute;
    z-index: -2;
    height: 100%;
    background: linear-gradient(
      270deg,
      rgba(215, 221, 225, 0) 0%,
      #d7dde1 10%,
      #d7dde1 90%,
      rgba(215, 221, 225, 0) 100%
    );
    top: 0;
    left: 31px;
  }
  .stages-item {
    display: none;
    /* display: flex; */
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: 100%;
    /* min-width: 305px; */
    max-width: 100%;
    height: 128px;
    padding-left: 0;
  }
  .stages-item-icon-wrap {
    width: 64px;
    height: 64px;
  }
  .stages-item-icon-extra-wrap {
    width: 48px;
    height: 48px;
  }
  .stages-item-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 104px;
    background: linear-gradient(
      270deg,
      rgba(0, 121, 193, 0) 0%,
      #0079c1 15%,
      #0079c1 75%,
      rgba(0, 121, 193, 0) 100%
    );
    top: auto;
    z-index: -1;
  }

  .stages-item:nth-child(2) .stages-item-icon-wrap,
  .stages-item:last-of-type .stages-item-icon-wrap {
    width: 64px;
    height: 64px;
  }
  .stages-item:nth-child(2) .stages-item-icon-extra-wrap,
  .stages-item:last-of-type .stages-item-icon-extra-wrap {
    width: 48px;
    height: 48px;
  }
  .stages-item:nth-child(2) .stages-item-line,
  .stages-item:last-of-type .stages-item-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 104px;
    background: linear-gradient(
      270deg,
      rgba(76, 225, 255, 0) 0%,
      #4ce1ff 15%,
      #4ce1ff 75%,
      rgba(76, 225, 255, 0) 100%
    );
    top: auto;

    z-index: -1;
  }
  .stages-item:nth-child(3) .stages-item-icon,
  .stages-item:nth-child(7) .stages-item-icon {
    width: 17px;
    height: 17px;
  }
  .stages-item:nth-child(4) .stages-item-icon {
    width: 20px;
    height: 24px;
  }
  .stages-item:nth-child(6) .stages-item-icon,
  .stages-item:last-of-type .stages-item-icon {
    width: 21px;
    height: 21px;
  }

  .stages-item-text {
    margin-top: 0;
    font-size: 16px;
    line-height: 26px;
  }
}

/*application*/
.application {
  max-width: 1920px;
  padding: 100px 20px;
  background-color: #f2f5f6;
  margin: 0 auto;
}
.application-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 22.6px 0px #0000001a;
  background-color: #fff;
  padding: 83px 0 49px 0;
}
.application-subtitle {
  margin-top: 30px;
  color: #071c27;
  font-size: 18px;
}
.application-logos {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  row-gap: 30px;
}
.application-content {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-left: 98px;
}
.application-img-mobile {
  display: none;
}
.application-img {
  width: 421px;
  height: auto;
}
.application-logo-wrap:first-of-type .application-logo {
  width: 151px;
  height: 37px;
}
.application-logo-wrap:nth-child(2) .application-logo {
  width: 144px;
  height: 29px;
}
.application-logo-wrap:nth-child(3) .application-logo {
  width: 146px;
  height: 41px;
}
.application-logo-wrap:nth-child(4) .application-logo {
  margin-left: 35px;
  width: 68px;
  height: 60px;
}
.application-logo-wrap:nth-child(5) .application-logo {
  width: 150px;
  height: 55px;
}
.application-logo-wrap:nth-child(6) .application-logo {
  margin-left: 35px;
  width: 61px;
  height: 60px;
}
@media (max-width: 1040px) {
  .application-content {
    padding-left: 50px;
  }
}
@media (max-width: 960px) {
  .application-logos {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    row-gap: 30px;
  }
  .application-img {
    width: 330px;
    height: auto;
  }
}
@media (max-width: 670px) {
  .application-wrap {
    flex-direction: column;
  }
  .application-content {
    width: 100%;
  }
  .application-img {
    margin-top: 80px;
    align-self: flex-end;
  }
}
@media (max-width: 577px) {
  .application-wrap {
    padding: 54px 24px;
  }
  .application-content {
    padding-left: 0;
  }
  .application-subtitle {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
    line-height: 26px;
  }
  .application-logos {
    margin-top: 50px;
    row-gap: 50px;
    grid-template-rows: repeat(5, auto);
  }
  .application-img-mobile {
    margin-top: 92px;
    display: block;
    width: 294px;
    height: 176px;
  }
  .application-img {
    display: none;
  }
  .application-logo-wrap:first-of-type {
    grid-column: 1/3;
    grid-row: 1/2;
    margin: auto;
  }
  .application-logo-wrap:first-of-type .application-logo {
    width: 171px;
    height: 42px;
  }
  .application-logo-wrap:nth-child(2) {
    grid-column: 1/3;
    grid-row: 4/5;
    margin: auto;
  }
  .application-logo-wrap:nth-child(2) .application-logo {
    width: 179px;
    height: 34px;
  }
  .application-logo-wrap:nth-child(3) {
    grid-column: 1/3;
    grid-row: 2/3;
    margin: auto;
  }
  .application-logo-wrap:nth-child(3) .application-logo {
    width: 175px;
    height: 48px;
  }
  .application-logo-wrap:nth-child(4),
  .application-logo-wrap:nth-child(6) {
    margin: auto;
  }
  .application-logo-wrap:nth-child(4) .application-logo,
  .application-logo-wrap:nth-child(6) .application-logo {
    margin-left: 0;
    width: 87px;
    height: 75px;
  }
  .application-logo-wrap:nth-child(5) {
    grid-column: 1/3;
    grid-row: 3/4;
    margin: auto;
  }
  .application-logo-wrap:nth-child(5) .application-logo {
    width: 188px;
    height: 70px;
  }
}
/*connect*/
.connect {
  padding: 100px 20px;
}
.connect-wrap {
  display: flex;
  background-color: #f2f5f6;
  padding: 60px;
  justify-content: space-between;
}
.connect-content {
  display: flex;
  flex-direction: column;
}
.connect-subtitle {
  font-size: 18px;
  margin-top: 10px;
  color: #071c27;
  width: 70%;
}
.connect-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.connect-form-input {
  height: 56px;
  width: 100%;
  border: 1px solid #7d7d7d;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0 16px;
  outline: none;
}
.connect-form-input::placeholder {
  font-size: 14px;
  color: #7d7d7d;
}
.connect-form-btn {
  width: 100%;
  height: 62px;
  cursor: pointer;
  background-color: #0078ef;
  border: none;
  color: #fff;
  font-size: 18px;
}
.connect-form-btn:hover {
  background-color: #03a3ff;
}
.connect-form-agreement {
  font-size: 14px;
  color: #7d7d7d;
}
.connect-form-input-wrap {
  position: relative;
  width: 100%;
}
.connect-form-input-error {
  color: #e8112d;
  font-size: 12px;
  position: absolute;
  bottom: -15px;
  left: 5px;
}
.connect-form-input.error {
  border: 1px solid #e8112d;
}
@media (max-width: 1060px) {
  .connect-wrap {
    flex-direction: column;
  }
  .connect-form {
    margin-top: 40px;
  }
}
@media (max-width: 577px) {
  .connect-wrap {
    padding: 25px;
  }
  .connect-subtitle {
    width: 100%;
    text-align: center;
  }
}
/*footer*/
.footer {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: url("../img/footer-bg.png") center center/cover no-repeat;
  padding: 60px 15px;
}
.footer-wrap {
  display: flex;
  flex-direction: column;
}
.footer-content {
  display: flex;
  justify-content: space-between;
}
.footer-logo {
  width: 198px;
  height: 50px;
}
.footer-menu-list {
  display: flex;
  gap: 40px;
}
.footer-menu-link {
  font-size: 14px;
  color: #f2f5f6;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-title {
  color: #f2f5f6;
  font-size: 14px;
}
.footer-contact {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: #f2f5f6;
}
.footer-contact-icon {
  width: 16px;
  height: 16px;
}
.footer-contact-link {
  font-size: 14px;
  color: #f2f5f6;
}
.footer-bottom {
  font-size: 14px;
  color: #6a7e94;
  margin-bottom: 10px;
}
.footer-extra-text {
  display: none;
}

.stack {
  padding: 0 15px;
  margin-top: 160px;
  margin-bottom: 100px;
}

.stack-title {
  font-family: "PT Astra Fact";
  color: #003A5C;
  font-size: 40px;
  font-weight: bold;
  line-height: 52px;
  margin-bottom: 60px;
}

.stack-inner {
  display: flex;
  gap: 10px;
}

.stack-item {
  padding: 24px 100px;
  background-color: #DEF3FF;
  font-size: 24px;
  color: #2A2B30;
  line-height: 32px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1430px) {
  .stack-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .footer-menu-list {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .stack-item {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 625px) {
  .footer {
    background: url("../img/Footer-bg-mobile.png") center center/cover no-repeat;
  }
  .footer-content {
    flex-direction: column;
  }
  .footer-menu-list {
    margin-top: 60px;
    padding-bottom: 30px;
    gap: 30px;
    border-bottom: 1px solid rgba(217, 217, 217, 0.2);
  }
  .footer-contacts {
    margin-top: 30px;
  }
  .footer-bottom {
    display: none;
  }
  .footer-extra-text {
    display: block;
    font-size: 14px;
    color: #6a7e94;
    margin-top: 10px;
  }
  .footer-logo {
    width: 198px;
    height: 50px;
  }
}

@media screen and (max-width: 450px) {
  .stack-item {
    font-size: 16px;
    padding: 24px 70px;
  }
  .stack-title {
    font-size: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 340px) {
  .stack-title {
    font-size: 29px;
  }
}


/* курсор */
/* body {
  cursor: none;
}

a {
  cursor: none;
}

button {
  cursor: none;
}

input {
  cursor: none;
}

.cursor {
  z-index: 990;
  position: fixed;
  background: #0079c1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  pointer-events: none;
  box-shadow:  0 0 20px #0079c1,
               0 0 60px #0079c1,
               0 0 90px #0079c1;
  animation: colors 5s infinite;
  transform: translate(-50%, -50%);
  display: none;
}

@keyframes colors {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }

}

.cursor::before {
  content: '';
  position: absolute;
  background: #0079c1;
  width: 50px;
  height: 50px;
  opacity: 0.2;
  transform: translate(-30%, -30%);
  border-radius: 50%;
  filter: blur(5px);
} */

.footer-policies {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: fit-content;
    margin: 2rem auto;
}
