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

body {
  font-family: "Roboto", sans-serif;
  width: 100%;
  min-height: 100vh;
}

.container {
  max-width: 1328px;
  margin: auto;
  width: 90%;
}

.content-container {
  max-width: 850px !important;
}

.home {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}
.home-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.home-logo {
  width: 141px;
  height: 141px;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.06));
}

.home-logo img {
  width: 100%;
}

.home-heading {
  font-size: 52px;
  color: #eb002f;
  margin-top: 40px;
  font-weight: 500;
}

.home-description {
  font-size: 26px;
  margin-top: 16px;
  color: #000;
  font-weight: 400;
}

.app-download {
  width: 210px;
  margin-top: 150px;
}

.app-download img {
  width: 100%;
}

.footer {
  background: #eb002f;
  width: 100%;
  padding: 25px 0px;
}

.footer ul {
  max-width: 500px;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.footer ul a {
  text-decoration: none;
  font-family: inherit;
  color: #fff;
  font-size: 16px;
}

.footer ul a:hover {
  text-decoration: underline;
}

.header {
  background: #eb002f;
  width: 100%;
  padding: 15px 0px;
  position: relative;
  margin-bottom: 50px;
}

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

.header-logo {
  width: 60px;
  height: 60px;
}

.header-logo img {
  width: 100%;
}

.header-heading {
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content-heading {
  font-size: 22px;
  color: #000;
  margin-top: 60px;
  margin-bottom: 20px;
}
.content-heading-2 {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
  margin-top: 20px;
}

.content-info {
  font-size: 17px;
  color: #000;
  margin-bottom: 50px;
  padding-left: 5px;
}

ul.content-list {
  margin-bottom: 50px;
  padding-left: 22px;
  list-style: square;
}

ul.content-list ul {
  padding-left: 22px;
  list-style: square;
}

.content-inner {
  line-height: 24px;
}

@media (max-width: 500px) {
  .home-logo {
    width: 130px;
    height: 130px;
  }

  .home-heading {
    font-size: 40px;
    margin-top: 35px;
  }

  .home-description {
    font-size: 20px;
    margin-top: 12px;
  }

  .app-download {
    width: 180px;
    margin-top: 140px;
  }

  .app-download img {
    width: 100%;
  }

  .footer {
    padding: 22px 0px;
  }

  .header {
    padding: 12px 0px;
  }

  .header-logo {
    width: 40px;
    height: 40px;
  }

  .header-heading {
    font-size: 22px;
  }
}
