@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #0b4fb2;
  color: #042047;
}

.container {
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

.page {
  background-color: #0b4fb2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px 14px;
}

.phone {
  width: 100%;
  max-width: 420px;
  background: #f2f3f6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.phone__cover {
  position: relative;
  height: 160px;
  background: #0a3f8f;
}
.phone__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.phone__cover-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.brand {
  position: relative;
  background: rgba(221, 230, 242, 0.4980392157);
  padding: 120px 18px 32px;
}
.brand__logo {
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
  z-index: 5;
  width: 112px;
  height: 112px;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(11, 79, 178, 0.28);
}
.brand__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.brand__title {
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.brand__check {
  color: #0b4fb2;
  font-size: 17px;
  transform: translateY(1px);
}
.brand__subtitle {
  margin: 10px auto 28px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.45;
  max-width: 340px;
}
.brand__chips {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 8px;
}

.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px 10px 32px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.04);
  border: 1px solid rgba(17, 24, 39, 0.12);
  font-size: 12px;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.86);
  line-height: 1;
}
.chip__label {
  display: inline-block;
}
.chip__lion {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-52%);
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.22));
}

.logos {
  border-top: 1px solid rgba(2, 16, 36, 0.1607843137);
  border-bottom: 1px solid rgba(2, 16, 36, 0.1607843137);
}

.logos .logos-container {
  border-radius: 30px;
}

.logos .logos-container .wrapper {
  width: 90%;
  height: 100px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0));
}

.logos .logos-container .wrapper-bottom {
  margin: 10px 0;
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}
@keyframes scrollRight {
  to {
    right: -200px;
  }
}
.logos .logos-container .itemLeft,
.logos .logos-container .itemRight {
  width: 200px;
  height: 100px;
  border-radius: 6px;
  background-color: transparent;
  position: absolute;
  animation-timing-function: linear;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos .logos-container .itemLeft img,
.logos .logos-container .itemRight img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.logos .logos-container .itemLeft {
  left: max(1000px, 100%);
  animation-name: scrollLeft;
}

.logos .logos-container .itemRight {
  right: max(1000px, 100%);
  animation-name: scrollRight;
}

.logos .logos-container .item1 {
  animation-delay: -24s;
}

.logos .logos-container .item2 {
  animation-delay: -18s;
}

.logos .logos-container .item3 {
  animation-delay: -12s;
}

.logos .logos-container .item4 {
  animation-delay: -6s;
}

.logos .logos-container .item5 {
  animation-delay: 0s;
}

.lion-badge {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  border: 0;
  overflow: visible;
}
.lion-badge__img {
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.18));
}

.block {
  padding: 18px 18px 32px 18px;
  background: rgba(221, 230, 242, 0.4980392157);
}
.block__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  margin: 16px 0 24px 0;
}
.block__title h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #042047;
}

.links {
  display: grid;
  gap: 12px;
}

.link-btn {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  height: 48px;
  border-radius: 12px;
  background: #cedcf0;
  border: 1px solid rgba(17, 24, 39, 0.12);
  text-decoration: none;
  color: #072f6b;
  transition: transform 120ms ease, background 120ms ease;
}
.link-btn:active {
  transform: scale(0.99);
}
.link-btn:hover {
  background: #bacbe3;
}
.link-btn__left, .link-btn__right {
  display: grid;
  place-items: center;
  color: rgba(17, 24, 39, 0.62);
}
.link-btn__left i, .link-btn__right i {
  color: #072f6b;
  font-size: 20px;
  line-height: 1;
}
.link-btn__label {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.about p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(17, 24, 39, 0.78);
}
.about__photo {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  display: block;
  margin-top: 14px;
}

.stats {
  display: flex;
  gap: 4px;
  justify-content: space-between;
  margin-top: 40px;
}
.stats .stat {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(2, 16, 36, 0.1607843137);
}
.stats .stat strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stats .stat span {
  display: block;
  font-size: 12px;
  color: rgba(17, 24, 39, 0.58);
  line-height: 1.2;
}

.cta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.cta__card {
  text-decoration: none;
  color: rgba(17, 24, 39, 0.82);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 14px;
  padding: 13px 10px;
  display: grid;
  place-items: center;
  gap: 8px;
  transition: transform 120ms ease, background 120ms ease;
}
.cta__card:active {
  transform: scale(0.99);
}
.cta__card:hover {
  background: rgba(17, 24, 39, 0.1);
}
.cta__card i {
  font-size: 20px;
  color: #042047;
}
.cta__card span {
  font-size: 12px;
  color: #364d6c;
  font-weight: 800;
  text-align: center;
}

.footer {
  background: #042047;
  padding: 18px 18px;
  text-align: center;
  color: rgba(221, 230, 242, 0.52);
}
.footer p {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
}
.footer__links {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.footer__links a {
  color: rgba(221, 230, 242, 0.743);
  text-decoration: none;
  font-weight: 700;
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__links span {
  opacity: 0.6;
}

@media (max-width: 520px) {
  .page {
    padding: 0;
    place-items: stretch;
  }
  .phone {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    min-height: 100vh;
  }
}
@media (max-width: 520px) and (max-width: 575px) {
  .logos .logos-container .itemLeft,
  .logos .logos-container .itemRight {
    width: 160px;
    height: 80px;
  }
  .logos .logos-container {
    padding-top: 10px;
  }
}/*# sourceMappingURL=style.css.map */