:root {
  zoom: reset;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: flex;
}

body {
  font-family: "Manrope", sans-serif;
}
@media (min-height: 1024px) {
  body {
    display: flex;
    align-items: center;
    min-height: 100vh;
  }
}

.splash {
  display: flex;
  padding: 20px;
  min-height: 100vh;
  margin-inline: auto;
  flex-direction: column;
}
@media (min-width: 576px) {
  .splash {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .splash {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .splash {
    max-width: 960px;
  }
}
@media (min-width: 1024px) {
  .splash {
    flex-direction: row;
    max-width: 1600px;
  }
}
@media (min-height: 1024px) {
  .splash {
    min-height: 1024px;
    max-height: 1024px;
  }
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .content {
    padding: 24px;
  }
}
@media (min-width: 1280px) {
  .content {
    padding: 76px;
  }
}

.logo {
  width: 166px;
  margin-bottom: 36px;
}
@media (min-width: 1024px) {
  .logo {
    width: 200px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1280px) {
  .logo {
    width: 297px;
    margin-bottom: 96px;
  }
}

.title {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  color: #000;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1360px) {
  .title {
    font-size: 48px;
    line-height: 64px;
  }
}

.descr {
  font-size: 14px;
  line-height: 22px;
  color: #6679A0;
  margin-bottom: 24px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media (min-width: 1024px) {
  .descr {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: auto;
  }
}
@media (min-width: 1280px) {
  .descr {
    font-size: 24px;
    line-height: 36px;
  }
}

.app-links--mobile {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .app-links--mobile {
    display: none;
  }
}
.app-links--desktop {
  display: none;
  margin-top: 36px;
}
@media (min-width: 1024px) {
  .app-links--desktop {
    display: flex;
  }
}

.app-link + .app-link {
  margin-left: 16px;
}

.app-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #212B53;
  padding-block: 9px;
  cursor: pointer;
  transition: 0.2s ease;
  border-radius: 10px;
  width: calc(50% - 8px);
  outline: 0;
}
.app-link:hover {
  opacity: 0.9;
}
.app-link:active, .app-link:focus {
  box-shadow: 0 0 0 3px rgba(33, 43, 83, 0.4);
}
@media (min-width: 576px) {
  .app-link {
    width: 140px;
  }
}

.policy-link {
  margin-top: 36px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  color: #6679A0;
  font-size: 12px;
}
@media (min-width: 1024px) {
  .policy-link {
    margin-top: 48px;
  }
}
.policy-link:not(.policy-link--mobile) {
  display: none;
}
@media (min-width: 1024px) {
  .policy-link:not(.policy-link--mobile) {
    display: block;
  }
}
.policy-link--mobile {
  display: block;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .policy-link--mobile {
    display: none;
  }
}

.phone {
  overflow: hidden;
  border-radius: 24px;
}

.page {
  padding: 36px 24px;
  min-height: 100vh;
}
@media (min-width: 992px) {
  .page {
    padding: 96px;
    display: grid;
    gap: 36px;
  }
}
.page--policy {
  grid-template-columns: 264px minmax(0, 800px);
}
.page__logo {
  max-width: 148px;
}
.page__logo-link {
  display: inline-flex;
  transition: 0.2s ease;
  cursor: pointer;
  margin-bottom: 48px;
}
.page__logo-link:hover {
  opacity: 0.7;
}
.page__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 40px;
  color: #000;
}
.page__text h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  color: #212b53;
  margin-bottom: 24px;
}
.page__text p {
  font-size: 20px;
  line-height: 30px;
  color: #212B53;
}
.page__text p + p {
  margin-top: 24px;
}
.page__text a {
  color: #278689;
}
.page__text a:hover {
  text-decoration: none;
}
