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

body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 400px;
  color: #fff;
}

h3 {
  font-weight: 500;
  font-size: 28px;
  color: #ffffff;
  line-height: 38px;
  text-align: center;
  font-style: normal;
}

p {
  font-weight: 400;
  font-size: 16px;
  color: #bbbbbb;
  line-height: 24px;
  text-align: center;
  font-style: normal;
}

header {
  margin: 24px 0;
}

a {
  text-decoration: none;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.head {
  width: 100%;
  background: url("./images/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.logo {
  width: 160px;
  height: 40px;
}

.privacy-policy {
  width: 160px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 24px;
}

.header-content {
  margin-top: 170px;
  margin-bottom: 214px;
  gap: 134px;
}

.header-content-left .title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-content-left .title img {
  width: 60px;
  height: 60px;
}

.header-content-left .title h1 {
  font-size: 56px;
  font-weight: 900;
}

.header-content-left p {
  font-size: 20px;
  line-height: 28px;
  margin-top: 16px;
}

.download-app {
  width: 258px;
  height: 74px;
  display: block;
  margin-top: 64px;
}

.header-content-right img {
  width: 550px;
  height: 362px;
  object-fit: contain;
}

.column-box {
  padding-top: 56px;
  padding-bottom: 100px;
}

.bg-color-1 {
  background-color: #171820;
}

.bg-color-2 {
  background-color: #0d0d12;
}

.column-box p {
  margin-top: 20px;
}

.column-box img {
  width: 100%;
  margin-top: 60px;
}

.footer {
  padding-top: 32px;
  padding-bottom: 12px;
  font-weight: 400;
  font-size: 20px;
  color: #bbbbbb;
  text-align: center;
  font-style: normal;
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .logo {
    display: none;
  }

  .header-content {
    margin-top: 44px;
    margin-bottom: 86px;
    text-align: center;
    gap: 43px;
  }

  .header-content.flex-row-between {
    flex-direction: column;
    align-items: center;
  }

  .header-content-left {
    order: 2;
  }
  .header-content-right {
    order: 1;
  }

  .header-content-left .title {
    justify-content: center;
  }

  .header-content-left .title img {
    width: 40px;
    height: 40px;
  }

  .header-content-left .title h1 {
    font-size: 40px;
  }

  .header-content-right img {
    width: 100%;
    height: auto;
  }

  .download-app {
    /* display: none; */
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
  }

  h3 {
    font-size: 32px;
  }

  .column-box {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .column-box p {
    margin-top: 24px;
  }

  .column-box img {
    margin-top: 56px;
  }

  .footer {
    padding: 12px;
    font-size: 18px;
    color: #ffffff;
    font-style: normal;
  }

  .footer br {
    display: none;
  }
}
