* {
  box-sizing: border-box;
  font-family: ToyotaType;
}

html,
body {
  margin: 0;
  text-size-adjust: none;
}

html,
body {
  height: 100%;
}

header {
  background-color: #ffffff;
  height: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 32px;

  img {
    height: 40px;
  }
}

main {
  background-color: #f1f7f8;
  height: 100%;
  display: flex;
  flex-direction: row;
  max-height: calc(100vh - 80px);
  overflow: hidden;
}

h1 {
  font-weight: 400;
  color: #60696f;
}

.kinto-main-content {
  padding: 72px 144px;
}

.kinto-app-badges {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 80px;

  img {
    height: 40px;
  }
}

.kinto-main-image {
  width: 100%;
  max-width: 40%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 895px) {
  main {
    flex-direction: column;
  }

  .kinto-main-image {
    width: 100%;
    max-width: unset;
  }

  .kinto-main-content {
    padding: 48px 96px;
  }
}

@media (max-width: 767px) {
  .kinto-main-content {
    padding: 32px 48px;
  }
}
