#hero {
  transition: background-image 0.5s;
}

#main_content.app h1 {
  font-size: 1.65em;
}

#hero_message.hipsta_black h1 {
  text-shadow: -0.5px -1px white;
}

#floating_download {
  position: fixed;
}

#hero_qr {
  padding: 0;
}

#hero_footer .qrcode.filled * {
  color: #15151E;
}

#main_content .navigation {
  padding-top: 28px;
}

#cameras_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-column-gap: 42px;
  grid-row-gap: 21px;
  place-items: center;
  margin: 21px 14px 21px -7px;
}

#cameras_grid img {
  width: 100%;
  height: auto;
}

div.awards_box {
  display: flex; 
  flex-direction: row; 
  gap: 14px; 
  place-items: flex-end; 
  padding-bottom: 14px;
}

div.award {
  display: flex;
  flex-direction: row;
  justify-content: center;
  
}

div.award:before {
  content: '';
  background: url("/img/laurel_leading.svg") no-repeat;
  background-size: 22px 50px;

  padding-right: 25px;
  margin-right: 2px;
  display: inline;
}

div.award:after {
  content: '';
  background: url("/img/laurel_trailing.svg") no-repeat;
  background-size: 22px 50px;

  padding-left: 25px;
  margin-left: 5px;
  display: inline;
}

div.award .type {
  display: flex;
  flex-direction: column;
  
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "SFCondensed", sans-serif;
  text-transform: uppercase;
  font-variation-settings: "wght" 700, "wdth" 52;
  font-size: 1em;
  text-align: center;
}

div.award .type .year {
  font-variation-settings: "wght" 500, "wdth" 130;
  border-top: 1px solid #15151E;
  font-size: 0.75em;
}

div.app_icon {
  padding-bottom: 21px;
  filter: drop-shadow(0px 1px 1px rgb(0 0 0 / 0.4));
}

div.app_icon img {
  border-radius: 16px;
  width: 76px;
  height: 76px;
}

div.more_button {
  background-image: linear-gradient(to bottom right, #F19699, #7F5AC0);
  border-radius: 10px;
  height: 54px;
  padding: 0 20px 0 20px;
  align-content: center;
  font-weight: 600;
}

div.more_button a {
  color: #F7F4F1;
}

#main_content .standard_formatting.other_app h3 {
  margin-top: 0;
}

#hero_content, .hero_content {
  display: grid;
  align-items: center;
  justify-items: center;
  
  padding: 0;
}

#hero_footer {
  padding-top: 7px;
}

#hero_content > *, .hero_content > * {
  grid-area: 1/1/1/1; /* zstack */
}

.hero_content {
  transform: scale(0.35);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.5, 0.0, 0.25, 1.0);
}

.hero_content.current {
  transform: initial;
  opacity: 1;
}

.hero_image {
  width: 40vh;
}

video.device_demo {
  width: auto;
  height: 57vh;
  border-radius: 6%;
  z-index: 5;
}

.device_bezel {
  width: auto;
  height: 62vh;
  z-index: 10;
  content: url('/img/iphone15.png');
}

@media only screen and (max-width: 1024px) {
  div.awards_box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 21px;
  }
}

@media only screen and (max-width: 700px) {
  .sub_navigation {
    flex-direction: row-reverse;
    font-size: 1em;
    padding-bottom: 21px;
  }
  
  #main_content {
    justify-content: flex-start;
  }
  
  #half_grid.paging .page_container {
    height: unset;
    padding: 28px 0 70px 0;
  }
  
  .hero_content {
    display: none;
  }
  .hero_content.current {
    display: block;
  }
  .hero_image {
    width: 40vw;
  }
}
