html {
  font-family: 'Inter';
}

body {
  margin: 0;
  padding: 0;
}

.banner {
  background-color: #77427a;
  color: #fff;
  text-align: center;
}

.banner p {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-padding {
  margin: 0;
  padding: 0;
}

main {
  padding-left: 150px;
  padding-right: 150px;
  padding-top: 10px;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-area img {
  height: 30px;
  object-fit: cover;
}

.header {
  display: flex;
  flex-wrap: nowrap;
}

.header div {
  flex: 1;
}

.header img {
  height: 500px;
  object-fit: cover;
}

.h-title {
  max-width: 580px;
  margin-bottom: 20px;
  color: #08090a;
  font-size: 50px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.h-description {
  color: #c182b2;
  font-size: 34px;
  line-height: 1.34;
  font-weight: 400;
}

.apps-section {
  padding: 100px 0;
}

.single-app {
  padding-bottom: 50px;
  display: flex;
  flex-wrap: nowrap;

}

.single-app div {
  flex: 1;
}

.sa-images {
  display: flex;
  justify-content: space-between;
}

.sa-images img {
  width: 30%;
  object-fit: cover;
}

.sa-description {
  padding-left: 30px;
}

.reverse .sa-description {
  padding-left: 0;
}

.reverse .sa-images {
  padding-left: 30px;
}

.sa-description .download-icons {
  display: flex;
}

.sa-description .download-icons img {
  height: 70px;
  object-fit: cover;
}

.sad-title {
  padding-right: 10px;
  padding-left: 10px;
  color: #191b22;
  font-size: 28px;
}

.sad-description {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
  color: #191b22;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.stats {
  display: flex;
  justify-content: space-between;
}

.stats .heading {
	color: rgba(25, 27, 34, 0.95);
	font-size: 80px;
	text-align: left;
}

.text-span-3 {
	color: #65c0aa;
}

.mobile-display {
  display: none;
}


@media (max-width: 600px) {
  main {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
  }

  .header {
    display: block;
  }

  .h-title {
    max-width: 400px;
    font-size: 30px;
  }

  .h-description {
    font-size: 24px;
  }

  .header img {
    height: 300px;
    width: 100%;
  }

  .apps-section {
    padding: 20px 0;
  }

  .single-app {
    padding-bottom: 50px;
    display: block;
  }

  .sa-description .download-icons img {
    height: 45px;
  }

  .mobile-display {
    display: block;
  }
}