:root {
  --font-family: "Arial", sans-serif;
  --content-width: 1176px;
  --container-offset: 32px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family);
  -webkit-text-size-adjust: 100%;
  background: #f9fafb;
}

.page__body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

.site-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 80px;
}

.header__container {
  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;
  position: relative;
}

.logo {
  width: 476px;
  margin-right: auto;
}

.img-contain {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.btn-blue {
  font-weight: 700;
  font-size: 24px;
  line-height: 75%;
  text-align: center;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 22px;
  padding: 13px 25px;
  -webkit-box-shadow: 3px 3px 7px 0 rgba(166, 171, 189, 0.75), -6px -6px 7px 0 #ffffff;
  box-shadow: 3px 3px 7px 0 rgba(166, 171, 189, 0.75), -6px -6px 7px 0 #ffffff;
  background: #1758c1;
  height: 44px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  min-width: 200px;
}
@media (any-hover: hover) and (pointer: fine) {
  .btn-blue:hover {
    background: #0e326c;
  }
}

@media screen and (max-width: 768px) {
  .header {
    margin: 0;
    padding: 44px 0 26px 0;
    background: rgba(255, 255, 255, 0.85);
  }
  .btn-blue {
    font-size: 16px;
    line-height: 112%;
    letter-spacing: -0.05em;
    border-radius: 24px;
    padding: 6px 25px;
    -webkit-box-shadow: 3px 3px 7px 0 rgba(166, 171, 189, 0.75), -6px -6px 7px 0 #ffffff;
    box-shadow: 3px 3px 7px 0 rgba(166, 171, 189, 0.75), -6px -6px 7px 0 #ffffff;
    height: 36px;
    max-width: 276px;
  }
  .header .btn-blue {
    display: none;
  }
  .header.header-back {
    margin-bottom: 68px;
  }
  .header.header-back .btn-blue {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__link {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -94px;
  }
  .logo {
    width: 100%;
    max-width: 276px;
    margin: 0;
  }
  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.hero {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 64px;
}

.hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 82px 24px 92px 24px;
  border-radius: 24px;
  -webkit-box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  background: #e0f8ff;
  gap: 48px;
}

.hero__info {
  width: 501px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 51px;
}

.title {
  width: 100%;
  text-align: left;
  font-weight: 900;
  font-size: 48px;
  line-height: 112%;
  letter-spacing: -0.05em;
  color: #1758c1;
}

.hero__text {
  width: 100%;
  text-align: left;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #0047bb;
}

.hero__img {
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  max-width: 428px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 978px) {
  .hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hero__info {
    width: 100%;
    display: contents;
  }
  .hero__title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .hero__img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 768px;
  }
  .hero__text {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    margin-top: 24px;
  }
  .hero__content {
    padding: 30px 16px;
    border-radius: 12px;
    -webkit-box-shadow: none;
    box-shadow: none;
    gap: 24px;
  }
  .title {
    font-weight: 900;
    font-size: 24px;
    line-height: 117%;
    letter-spacing: -0.05em;
  }
  .hero__title {
    padding-right: 6px;
  }
  .hero__text {
    font-weight: 400;
    font-size: 12px;
    line-height: 115%;
    letter-spacing: 0.05em;
  }
}
.cards {
  width: 100%;
  position: relative;
  margin-top: 96px;
}

.cards__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cards__items {
  width: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 244px 218px 202px 228px;
  grid-template-columns: 244px 218px 202px 228px;
  gap: 28px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.cards__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 21px 11px 24px 11px;
  border-radius: 12px;
  -webkit-box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  background: #ffffff;
  gap: 11px;
}

.cards__title {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  color: #1758c1;
}

.cards__text {
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #2e3038;
}

@media screen and (max-width: 1040px) {
  .cards__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 28px;
  }
  .cards__item {
    padding: 24px;
    gap: 11px;
  }
  .cards__text br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .cards {
    margin-top: 32px;
  }
  .cards__items {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cards__item {
    padding: 12px 18px 20px 18px;
    border-radius: 8px;
    -webkit-box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
    box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  }
  .cards__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 92%;
    text-align: center;
  }
  .cards__text {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 250px;
  }
}
.advantages {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 132px;
}

.advantages__container {
  width: 100%;
  max-width: 1040px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 38px;
}

.advantages__title {
  width: 100%;
  text-align: left;
  max-width: 701px;
}

.advantages__text {
  width: 100%;
  text-align: left;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #000000;
}

@media screen and (max-width: 768px) {
  .advantages {
    margin-top: 32px;
  }
  .advantages__container {
    gap: 16px;
  }
  .advantages__title {
    padding-right: 6px;
  }
  .advantages__text {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}
.credit {
  width: 100%;
  position: relative;
  margin-top: 64px;
  margin-bottom: 96px;
}

.credit__container {
  width: 100%;
  max-width: 1040px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 96px;
}

.credit__items {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.credit__title {
  width: 100%;
  max-width: 324px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.credit__item {
  width: 100%;
  padding: 24px 34px 30px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 432px;
  gap: 22px;
  border-radius: 24px;
  -webkit-box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  background: #ffffff;
}

.credit__img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.credit__text {
  width: 100%;
  text-align: center;
  margin: auto 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: -0.05em;
  text-align: center;
  color: #0047bb;
}

.btn-green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 75%;
  text-align: center;
  color: #ffffff;
  -webkit-box-shadow: 3px 3px 7px 0 rgba(166, 171, 189, 0.75), -6px -6px 7px 0 #ffffff;
  box-shadow: 3px 3px 7px 0 rgba(166, 171, 189, 0.75), -6px -6px 7px 0 #ffffff;
  background: #34c759;
  border-radius: 22px;
  padding: 13px 25px;
  width: auto;
  min-width: 203px;
  height: 44px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media (any-hover: hover) and (pointer: fine) {
  .btn-green:hover {
    background: #1a692d;
  }
}

@media screen and (max-width: 768px) {
  .credit {
    margin-top: 32px;
    margin-bottom: 64px;
  }
  .credit__container {
    gap: 64px;
  }
  .credit__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .credit__title {
    max-width: 100%;
  }
  .credit__item {
    width: 100%;
    padding: 30px 18px;
    min-height: 312px;
    gap: 16px;
    border-radius: 8px;
    -webkit-box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
    box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  }
  .credit__text {
    font-weight: 700;
    font-size: 16px;
    line-height: 112%;
    letter-spacing: -0.05em;
    text-align: center;
  }
  .btn-green {
    font-size: 16px;
    line-height: 112%;
    letter-spacing: -0.05em;
    -webkit-box-shadow: 3px 3px 7px 0 rgba(166, 171, 189, 0.75), -6px -6px 7px 0 #ffffff;
    box-shadow: 3px 3px 7px 0 rgba(166, 171, 189, 0.75), -6px -6px 7px 0 #ffffff;
    width: 100%;
    max-width: 276px;
    height: 36px;
  }
}
.consequences {
  width: 100%;
  position: relative;
  margin-top: 64px;
  margin-bottom: 96px;
}

.consequences__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 90px;
}

.consequences__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 42px 24px 88px 24px;
  border-radius: 24px;
  -webkit-box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  background: #ffffff;
  gap: 76px;
}

.consequences__info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.consequences__title {
  width: 406px;
  text-align: left;
}

.consequences__img {
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  max-width: 567px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.consequences__items {
  width: 100%;
  max-width: 776px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.consequences__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 204px;
  gap: 57px;
  border-radius: 24px;
  padding: 34px 30px;
  -webkit-box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  background: #f8fafd;
}
.consequences__item:nth-child(3) .consequences__text {
  max-width: 496px;
}

.consequences__ico {
  width: 114px;
  height: 114px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.consequences__text {
  width: auto;
  text-align: left;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: -0.05em;
  color: #0047bb;
}

@media screen and (max-width: 768px) {
  .consequences {
    margin-top: 24px;
    margin-bottom: 64px;
  }
  .consequences__container {
    gap: 64px;
  }
  .consequences__content {
    padding: 30px 0 36px 0;
    border-radius: 12px;
    -webkit-box-shadow: none;
    box-shadow: none;
    gap: 35px;
  }
  .consequences__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 19px;
  }
  .consequences__title {
    width: 100%;
    padding: 0 18px;
  }
  .consequences__img {
    max-width: 768px;
  }
  .consequences__items {
    padding: 0 18px;
    gap: 16px;
  }
  .consequences__item {
    min-height: 156px;
    gap: 20px;
    border-radius: 8px;
    padding: 15px 16px;
    -webkit-box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
    box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  }
  .consequences__ico {
    width: 56px;
    height: 56px;
  }
  .consequences__text {
    font-weight: 700;
    font-size: 16px;
    line-height: 112%;
    letter-spacing: -0.05em;
  }
}
.confirmation {
  width: 100%;
  position: relative;
  margin-top: 64px;
  margin-bottom: 96px;
}

.confirmation__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.confirmation__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 48px 24px;
  border-radius: 24px;
  -webkit-box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  background: #ffffff;
  gap: 96px;
}

.confirmation__info {
  width: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 62px;
  margin-right: 21px;
  margin-left: auto;
}

.confirmation__title {
  width: 406px;
  text-align: left;
}

.confirmation__img {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  max-width: 562px;
}

.confirmation__link {
  min-width: 224px;
}

.confirmation__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 976px;
  gap: 48px;
}

.confirmation__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 48px;
  border-radius: 24px;
  -webkit-box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  background: #f8fafd;
  gap: 32px;
}

.confirmation__text {
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: -0.05em;
  color: #0047bb;
}

.confirmation__schema {
  width: 100%;
  max-width: 777px;
}
.confirmation__schema img:first-child {
  display: none;
}

@media screen and (max-width: 978px) {
  .confirmation__info {
    margin-right: 0;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .confirmation {
    margin-top: 36px;
    margin-bottom: 64px;
  }
  .confirmation__content {
    padding: 30px 0 36px 0;
    border-radius: 12px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #ffffff;
    gap: 35px;
  }
  .confirmation__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 34px;
  }
  .confirmation__title {
    width: 100%;
    padding: 0 18px;
    padding-right: 24px;
  }
  .confirmation__items {
    padding: 0 18px;
    gap: 16px;
  }
  .confirmation__link.btn-green {
    margin: 20px 0;
    padding: 0;
  }
  .confirmation__link.btn-blue {
    width: 100%;
    margin-top: 20px;
  }
  .confirmation__item {
    padding: 26px 18px 32px 18px;
    border-radius: 8px;
    -webkit-box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
    box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
    gap: 21px;
  }
  .confirmation__text {
    font-weight: 700;
    font-size: 16px;
    line-height: 112%;
    letter-spacing: -0.05em;
  }
  .confirmation__schema {
    width: 100%;
    max-width: 777px;
  }
  .confirmation__schema img:first-child {
    display: block;
  }
  .confirmation__schema img:last-child {
    display: none;
  }
}
@media screen and (max-width: 340px) {
  .confirmation__title {
    padding-right: 18px;
  }
  .confirmation__title br {
    display: none;
  }
}
.banner {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 54px 0;
}

.banner__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.banner__content {
  width: 100%;
  min-height: 563px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 51px;
  padding: 42px 24px 54px 24px;
  border-radius: 24px;
  background: #ffffff;
  -webkit-box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
  box-shadow: 4px 4px 8px 0 rgba(166, 171, 189, 0.5), -4px -4px 8px 0 rgba(240, 242, 246, 0.5);
}

.banner__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 424px;
}

.banner__text {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: -0.05em;
  text-align: center;
  color: #0047bb;
}

.banner__img {
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  max-width: 479px;
}

.banner__link {
  width: auto;
  text-align: center;
  font-weight: 900;
  font-size: 48px;
  line-height: 112%;
  color: #0047bb;
  letter-spacing: -0.05em;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  margin-top: 24px;
}
@media (any-hover: hover) and (pointer: fine) {
  .banner__link:hover {
    color: #34c759;
  }
}

.banner__btn {
  width: 100%;
  max-width: 375px;
  margin-top: 52px;
}

.banner__btn.btn-blue {
  display: none;
}

@media screen and (max-width: 768px) {
  .banner__content {
    min-height: 0;
    gap: 48px;
    padding: 42px 18px 54px 18px;
    border-radius: 12px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .banner__btn.btn-blue {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .banner__info {
    width: 100%;
  }
  .banner__btn {
    margin-top: 48px;
  }
  .banner__text {
    font-size: 16px;
    line-height: 112%;
    letter-spacing: -0.05em;
    padding: 0 17px;
  }
  .banner__link {
    font-weight: 900;
    font-size: 24px;
    line-height: 117%;
    margin-top: 24px;
  }
}