*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #212529;
  background: #fff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: #168bd2;
  text-decoration: none;
}
a:hover,
a:focus-visible {
  text-decoration: underline;
}

.info-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.info-header,
.info-footer {
  background: #343a40;
  color: #fff;
}

.info-header {
  padding: 0 16px;
}

.info-header__content {
  display: flex;
  min-height: 93px;
  align-items: center;
  justify-content: space-between;
  padding-right: 31px;
}

.info-header__logo {
  display: block;
  width: 125px;
}
.info-header__account {
  display: block;
  width: 38px;
}
.info-main {
  padding: 48px 48px 46px;
}

h1,
h2 {
  margin: 0 0 22px;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}
h2 {
  margin-top: 26px;
  font-size: 32px;
}
h3 {
  margin: 18px 0 4px;
  font-size: 16px;
}
p {
  margin: 0 0 16px;
}
p.compact {
  margin-bottom: 4px;
}
.lead {
  font-size: 20px;
  font-weight: 300;
}

.info-footer__content {
  display: grid;
  min-height: 125px;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 24px;
  padding-bottom: 24px;
}

.info-footer__content > a {
  padding-left: 24px;
}

.info-footer img {
  display: block;
  width: 125px;
}
.info-footer p {
  margin: 0;
  text-align: center;
}

@media (max-width: 767px) {
  .info-footer__content {
    display: flex;
    min-height: 149px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 28.78125px 24px 24px;
  }
  .info-footer__content > a {
    padding-left: 0;
    transform: translateX(-8px);
  }
  .info-footer p {
    width: 100%;
  }
}
