/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
.qr {
  width: 120px;
  height: 120px;
  min-width: 120px;
  aspect-ratio: 1;
  background-color: white;
  color: #16181e;
  border-radius: 8px;
  padding: 12px;
}

.qr img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

section.benefits {
  overflow: hidden;
}
section.benefits .cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 384px));
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 600px) {
  section.benefits .cards {
    grid-template-columns: 1fr;
  }
}
section.benefits picture {
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  section.benefits picture {
    position: relative;
    transform: none;
    left: auto;
  }
}
section.benefits img {
  filter: brightness(0.75);
  margin: 0 auto;
  width: 540px;
  max-width: 75vw;
}