@font-face {
  font-family: Inter-SemiBold;
  src: url(./font/Inter-SemiBold.otf);
}

@font-face {
  font-family: Inter-Regular;
  src: url(./font/Inter-Regular.otf);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  font-weight: normal;
}

body {
  min-height: 100vh;
  color: #37373d;
  background: #f9f9fa;
  font-family: Inter-Regular, Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

ul,
li {
  list-style: none;
}

img,
svg,
span {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

.mt-8 {
  margin-top: 8px;
}

.mr-4 {
  margin-right: 4px;
}

.mr-12 {
  margin-right: 12px;
}

.relative {
  position: relative;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn,
.border-btn {
  display: inline-block;
  border-radius: 24px;
  margin-top: 36px;
  padding: 11px 24px;
  font: 500 20px/24px Inter-SemiBold;
  border: 1px solid #37373d;
}

.btn {
  background: #37373d;
  color: #fff;
}

.border-btn {
  color: #37373d;
}

nav {
  padding: 6px;
  background: #fff;
}

.container {
  width: 100%;
  max-width: 1032px;
  padding: 96px 12px;
  margin: 0 auto;
}

h1 {
  font: 400 40px/1.2 Inter-Regular;
}

h4 {
  font: 500 20px/1.2 Inter-SemiBold;
}

.text-bold {
  font: 500 14px/18px Inter-SemiBold;
}

header {
  background: linear-gradient(to bottom, rgba(30, 64, 175, 0.75) 0%, rgba(125, 211, 252, 0.25) 50%, #f9f9fa);
}

.bg-fff {
  background: #fff;
}

.download-part {
  margin-top: 48px;
  gap: 24px;
}

.split-2 {
  width: 50%;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.split-2 h4 {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
}

.split-2 .btn-group {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  gap: 24px;
}

.split-2 a {
  position: relative;
  padding: 9px 4px;
  text-align: center;
  width: 50%;
  color: #37373d;
  background: #fff;
  border-radius: 24px;
}

.qrcode {
  display: none;
  position: absolute;
  z-index: 2;
  left: 0;
  top: -6px;
  transform: translateY(-100%);
  border-radius: 6px;
}

.split-2 a:hover .qrcode {
  display: block;
}

footer {
  text-align: center;
  color: #7d7d85;
  padding-top: 36px;
  padding-bottom: 24px;
}

footer a {
  color: #7d7d85;
}

footer .relative {
  padding-left: 24px;
  margin-right: 12px;
}

footer .relative::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 12px;
  width: 1px;
  height: 12px;
  background: #eeeef0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }

  h4 {
    font-size: 18px;
  }

  .btn,
  .border-btn {
    padding: 8px 16px;
    margin-top: 24px;
    font-size: 14px;
  }

  .border-btn {
    margin-top: 12px;
  }

  .btn img,
  .border-btn img {
    width: 18px;
  }

  .container {
    padding: 48px 16px;
  }

  .download-part {
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .split-2 .btn-group {
    flex-wrap: wrap;
    gap: 8px;
  }

  .split-2,
  .split-2 a {
    width: 100%;
  }

  .qrcode {
    width: 70%;
    left: 50%;
    transform: translate(-50%, -100%);
  }
}