/* =========================================================
   MINTWAVE STUDIO
   Responsive / overflow-safe stylesheet
   ========================================================= */

/* ---------------------------------------------------------
   GLOBAL RESET
   --------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;

  overflow-x: clip;

  background: #f5f7f2;
  color: #172018;

  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

main,
#site {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

section,
header,
footer,
div,
article,
nav,
form {
  min-width: 0;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  max-width: 100%;
}

button,
input,
textarea {
  font-family: inherit;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  width: 100%;
  max-width: 100%;
  height: 82px;

  padding: 0 6.7vw;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(245, 247, 242, 0.9);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.logo {
  min-width: 0;

  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-nav {
  min-width: 0;

  display: flex;
  gap: 30px;

  font-size: 14px;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 100%;
  bottom: -7px;

  height: 1px;

  background: #172018;

  transition: right 0.25s ease;
}

.site-nav a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;

  padding: 0;

  background: none;
  border: 0;

  color: #172018;

  font-size: 25px;
  line-height: 1;

  cursor: pointer;
}


/* =========================================================
   GENERIC SECTIONS
   ========================================================= */

.section {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  padding: 135px 8vw;

  overflow: clip;
}

.section h2,
.hero h1,
.hero h2,
.standout h2,
.contact h2 {
  font-family: "Space Grotesk", sans-serif;

  letter-spacing: -0.07em;
  line-height: 0.92;

  overflow-wrap: anywhere;
}

.section h2 {
  font-size: clamp(54px, 6.5vw, 94px);

  margin: 8px 0 0;
}

.section-heading,
.section-copy,
.feature-copy,
.journey-copy,
.contact > div,
.contact > form {
  min-width: 0;
  max-width: 100%;
}

.section-heading span,
.feature-copy > span,
.journey-copy > span {
  font-size: 12px;

  text-transform: uppercase;
  letter-spacing: 0.18em;

  font-weight: 700;

  color: #687768;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  min-height: calc(100vh - 82px);

  padding: 65px 6.5vw 75px;

  display: grid;

  /*
   * The two columns deliberately total 100%.
   * There is no column gap, so the grid cannot exceed
   * the available content width.
   */
  grid-template-columns:
    minmax(0, 43%)
    minmax(0, 57%);

  align-items: center;

  position: relative;

  overflow: clip;

  background:
    linear-gradient(
      90deg,
      rgba(232, 241, 223, 0.08),
      rgba(232, 241, 223, 0.08)
    ),
    url("assets/hero.jpg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-background {
  width: 100%;
  max-width: 100%;
}

.hero-copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  padding-left: 3vw;

  position: relative;
  z-index: 10;
}

.hero h1 {
  width: 100%;
  max-width: 750px;

  margin: 0;

  font-size: clamp(65px, 8.8vw, 135px);

  color: #f2f5ef;
}

.hero p {
  width: 100%;
  max-width: 500px;

  margin-top: 30px;

  font-size: 20px;

  color: #f2f5ef;

  overflow-wrap: anywhere;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
  width: 100%;
  max-width: 100%;
  height: 680px;
  min-width: 0;
  position: relative;
  z-index: 20;
  overflow: visible;
}


/* =========================================================
   HERO DEVICES
   ========================================================= */

.hero-visual .device {
  position: absolute;

  min-width: 0;
  max-width: 100%;

  margin: 0;
  padding: 0;
}

.hero-visual .device img {
  display: block;

  width: 100%;
  max-width: 100%;
  height: auto;

  object-fit: contain;

  border: 5px solid #000000;
  border-radius: 26px;

  filter:
    drop-shadow(
      0 22px 32px rgba(0, 0, 0, 0.22)
    );
}


/* =========================================================
   IPAD
   ========================================================= */

.device-ipad {
  width: 38%;
  max-width: 38%;

  right: 20%;
  top: 10%;

  z-index: 20;
}

.device-ipad img {
  border: 5px solid #000000;
  border-radius: 26px;
}


/* =========================================================
   PHONE
   ========================================================= */

.device-phone {
  width: 18%;
  max-width: 18%;

  right: 7%;
  top: 30%;

  left: auto;
  bottom: auto;

  z-index: 30;
}

.device-phone img {
  border: 5px solid #000000;
  border-radius: 26px;
}


/* =========================================================
   TABLET
   ========================================================= */

.device-tablet {
  width: 18%;

  left: 0%;
  top: 32%;

  z-index: 1000 !important;
}

.device-tablet img {
  /*
   * No border.
   */
  border: 0 !important;

  border-radius: 24px;
}


/* =========================================================
   PHONE CART
   ========================================================= */

.device-phone-cart {
  width: 21%;
  max-width: 21%;

  right: 2%;
  bottom: 9%;

  /*
   * Above phone, below tablet.
   */
  z-index: 900;
}

.device-phone-cart img {
  /*
   * No border.
   */
  border: 0 !important;

  border-radius: 24px;
}


/* =========================================================
   EXPLICIT HERO STACKING
   ========================================================= */

.hero-visual .device-ipad {
  z-index: 20;
}

.hero-visual .device-phone {
  z-index: 30;
}

.hero-visual .device-phone-cart {
  z-index: 900;
}

.hero-visual .device-tablet {
  z-index: 1000 !important;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
  display: grid;

  /*
   * IMPORTANT:
   *
   * Do NOT use:
   *
   * 1fr 1fr + 12vw
   *
   * in a way that lets intrinsic content force the grid.
   *
   * minmax(0, 1fr) allows the columns to shrink properly.
   */
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: clamp(40px, 8vw, 12vw);
}

.section-copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  padding-top: 45px;
}

.section-copy h3,
.journey-copy h3 {
  font-size: 20px;

  overflow-wrap: anywhere;
}

.section-copy p,
.section-copy li,
.journey-copy p {
  color: #5d695f;

  overflow-wrap: anywhere;
}

.section-copy ul {
  list-style: none;

  width: 100%;
  max-width: 100%;

  padding: 0;
  margin-top: 28px;
}

.section-copy li {
  width: 100%;

  border-top: 1px solid #c8d0c5;

  padding: 17px 0;

  overflow-wrap: anywhere;
}

.subhead {
  margin-top: 45px;
}


/* =========================================================
   APP HIGHLIGHTS
   ========================================================= */

.features {
  display: grid;

  /*
   * The gap is subtracted from the available grid width
   * because both tracks are flexible minmax() tracks.
   */
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);

  gap: clamp(40px, 7vw, 8vw);

  align-items: center;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.18)
    ),
    url("assets/app-highlights.jpg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.app-highlights-background {
  width: 100%;
  max-width: 100%;
}

.feature-art {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  height: 610px;
  min-height: 0;
}

.app-highlights-content {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  color: #f2f5ef;
}

.app-highlights-content h2,
.app-highlights-content h3,
.app-highlights-content h4,
.app-highlights-content p,
.app-highlights-content span,
.app-highlights-content .num {
  color: #f2f5ef;
}

.feature-copy h3 {
  font-size: 21px;
  font-weight: 500;

  overflow-wrap: anywhere;
}

.feature-list {
  width: 100%;
  max-width: 100%;

  margin-top: 35px;
}

.feature-list article {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  display: grid;

  grid-template-columns:
    55px
    minmax(0, 1fr);

  gap: 20px;

  padding: 25px 0;

  border-top:
    1px solid rgba(242, 245, 239, 0.35);
}

.feature-list h4 {
  margin: 0;

  font-size: 21px;

  overflow-wrap: anywhere;
}

.feature-list p {
  margin: 8px 0 0;

  overflow-wrap: anywhere;
}


/* =========================================================
   HOW OUR APPS STAND OUT
   ========================================================= */

.standout,
.standout-white {
  width: 100%;
  max-width: 100%;

  background: #ffffff;
  color: #000000;
}

.standout h2 {
  font-size: clamp(55px, 7vw, 100px);

  margin-top: 0;
  margin-bottom: 75px;

  color: #000000;
}

.standout-white h2,
.standout-white h3,
.standout-white p,
.standout-white .num {
  color: #000000;
}

.standout-grid {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: clamp(40px, 7vw, 10vw);
}

.stand-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  min-height: 620px;

  border-top: 1px solid #000000;

  position: relative;

  padding-top: 22px;

  color: #000000;

  overflow: hidden;
}

.stand-card h3 {
  max-width: 100%;

  font-size: 38px;

  letter-spacing: -0.04em;

  margin: 12px 0;

  color: #000000;

  overflow-wrap: anywhere;
}

.stand-card p {
  width: 100%;
  max-width: 500px;

  color: #000000;

  overflow-wrap: anywhere;
}


/* =========================================================
   STANDOUT IMAGES
   ========================================================= */

.stand-device,
.rounded-image {
  display: block;

  width: auto;
  max-width: 75%;
  max-height: 400px;

  margin: 30px auto 0;

  object-fit: contain;

  border: 6px solid #000000;

  border-radius: 28px;

  overflow: hidden;

  filter:
    drop-shadow(
      0 25px 35px rgba(0, 0, 0, 0.25)
    );
}


/* =========================================================
   JOURNEY
   ========================================================= */

.journey {
  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(0, 0.9fr);

  gap: clamp(40px, 7vw, 10vw);

  align-items: center;
}

.journey-background {
  width: 100%;
  max-width: 100%;

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      rgba(245, 247, 242, 0.08),
      rgba(245, 247, 242, 0.08)
    ),
    url("assets/hero.jpg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.journey-art {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  height: 560px;
  min-height: 0;
}

.journey-copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  position: relative;
  z-index: 2;

  background: rgba(245, 247, 242, 0.92);

  border-radius: 34px;

  padding: 55px;

  overflow: hidden;
}

.journey-copy h2 {
  margin: 8px 0 20px;
}

.journey-copy p {
  font-size: 18px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: clamp(40px, 8vw, 12vw);

  background: #e8f1df;
}

.contact h2 {
  font-size: clamp(52px, 6.5vw, 92px);

  margin: 0;
}

.contact-details {
  width: 100%;
  max-width: 100%;

  margin-top: 50px;

  color: #536054;

  overflow-wrap: anywhere;
}

.contact form {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 22px;
}

.contact label {
  display: block;

  width: 100%;
  max-width: 100%;

  font-size: 13px;

  color: #657065;
}

.contact input,
.contact textarea {
  display: block;

  width: 100%;
  max-width: 100%;
  min-width: 0;

  margin-top: 7px;

  border: 0;
  border-bottom: 1px solid #aeb8ab;

  background: transparent;

  padding: 11px 0;

  font: inherit;

  outline: none;
}

.contact textarea {
  resize: vertical;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #172018;
}

.contact button {
  align-self: flex-start;

  border: 0;
  border-radius: 999px;

  background: #172018;
  color: #ffffff;

  padding: 14px 30px;

  font: inherit;

  cursor: pointer;
}

.form-status {
  max-width: 100%;

  font-size: 13px;

  color: #536054;

  overflow-wrap: anywhere;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  background: #172018;
  color: #dce6da;

  padding: 55px 8vw 25px;

  overflow: hidden;
}

.footer-top {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: clamp(30px, 5vw, 5vw);

  padding-bottom: 45px;
}

.footer-top > * {
  min-width: 0;
  max-width: 100%;
}

.footer-contact p {
  margin: 0 0 5px;

  overflow-wrap: anywhere;
}

.footer-links {
  display: flex;
  flex-direction: column;

  gap: 12px;
}

.footer-links a {
  overflow-wrap: anywhere;
}

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

.footer-bottom {
  width: 100%;
  max-width: 100%;

  border-top: 1px solid #4a574c;

  padding-top: 20px;

  font-size: 12px;
}


/* =========================================================
   ERROR / IMAGE STATES
   ========================================================= */

.error {
  width: 100%;
  max-width: 100%;

  padding: 15vh 8vw;

  overflow-wrap: anywhere;
}

.noscript {
  padding: 30px;
}

.missing {
  background: #dfe6dd;

  min-height: 120px;
}

.missing-image {
  background: #dfe6dd;

  min-height: 120px;

  object-fit: contain;
}


/* =========================================================
   TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 900px) {

  /* -------------------------------------------------------
     Header
     ------------------------------------------------------- */

  .site-header {
    padding: 0 6vw;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;

    position: absolute;

    top: 82px;
    left: 0;
    right: 0;

    width: 100%;
    max-width: 100%;

    padding: 25px 6vw;

    background: #f5f7f2;

    flex-direction: column;

    gap: 18px;

    border-top:
      1px solid #dbe1d8;
  }

  .site-nav.open {
    display: flex;
  }


  /* -------------------------------------------------------
     Generic
     ------------------------------------------------------- */

  .section {
    padding: 100px 7vw;
  }


  /* -------------------------------------------------------
     Hero
     ------------------------------------------------------- */

  .hero {
    grid-template-columns:
      minmax(0, 1fr);

    padding-top: 80px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;

    height: 570px;

    margin-top: 30px;
  }


  /* -------------------------------------------------------
     Hero mockups
     ------------------------------------------------------- */

  .device-ipad {
    width: 34%;
    max-width: 34%;

    right: 19%;
    top: 12%;
  }

  .device-phone {
    width: 17%;
    max-width: 17%;

    right: 7%;
    top: 29%;
  }

  .device-tablet {
    width: 17%;
    max-width: 17%;

    left: 4%;
    top: 32%;

    z-index: 1000 !important;
  }

  .device-phone-cart {
    width: 20%;
    max-width: 20%;

    right: 1%;
    bottom: 9%;

    z-index: 900;
  }


  /* -------------------------------------------------------
     Main sections
     ------------------------------------------------------- */

  .about,
  .features,
  .journey,
  .contact {
    grid-template-columns:
      minmax(0, 1fr);

    gap: 50px;
  }


  /* -------------------------------------------------------
     App Highlights
     ------------------------------------------------------- */

  .feature-art {
    width: 100%;
    max-width: 100%;

    height: 500px;
    min-height: 0;
  }


  /* -------------------------------------------------------
     Standout
     ------------------------------------------------------- */

  .standout-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr);

    gap: 6vw;
  }

  .stand-card {
    min-height: 520px;
  }

  .stand-device,
  .rounded-image {
    max-width: 75%;
    max-height: 360px;
  }


  /* -------------------------------------------------------
     Journey
     ------------------------------------------------------- */

  .journey-art {
    width: 100%;
    max-width: 100%;

    height: 360px;
    min-height: 0;
  }

  .journey-copy {
    padding: 35px;
  }


  /* -------------------------------------------------------
     Footer
     ------------------------------------------------------- */

  .footer-top {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr);
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  /* -------------------------------------------------------
     Header
     ------------------------------------------------------- */

  .site-header {
    height: 72px;

    padding: 0 6vw;
  }

  .site-nav {
    top: 72px;
  }


  /* -------------------------------------------------------
     Hero
     ------------------------------------------------------- */

  .hero {
    min-height: calc(100vh - 72px);

    padding:
      70px
      6vw
      65px;

    grid-template-columns:
      minmax(0, 1fr);
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;

    height: 430px;

    margin-top: 30px;
  }


  /* -------------------------------------------------------
     Mobile mockups
     ------------------------------------------------------- */

  .device-ipad {
    width: 34%;
    max-width: 34%;

    right: 20%;
    top: 16%;
  }

  .device-phone {
    width: 17%;
    max-width: 17%;

    right: 5%;
    top: 30%;
  }

  .device-tablet {
    width: 17%;
    max-width: 17%;

    left: 1%;
    top: 34%;

    z-index: 1000 !important;
  }

  .device-phone-cart {
    width: 20%;
    max-width: 20%;

    right: 0;
    bottom: 8%;

    z-index: 900;
  }


  /* -------------------------------------------------------
     Mobile borders
     ------------------------------------------------------- */

  .hero-visual .device-ipad img,
  .hero-visual .device-phone img {
    border: 4px solid #000000;

    border-radius: 21px;
  }

  .hero-visual .device-tablet img,
  .hero-visual .device-phone-cart img {
    border: 0 !important;
  }


  /* -------------------------------------------------------
     Sections
     ------------------------------------------------------- */

  .section {
    width: 100%;
    max-width: 100%;

    padding: 80px 6vw;
  }

  .section h2,
  .standout h2,
  .contact h2 {
    font-size: 52px;
  }


  /* -------------------------------------------------------
     App Highlights
     ------------------------------------------------------- */

  .feature-art {
    width: 100%;
    max-width: 100%;

    height: 300px;
    min-height: 0;
  }

  .feature-list article {
    grid-template-columns:
      40px
      minmax(0, 1fr);

    gap: 15px;
  }


  /* -------------------------------------------------------
     Standout
     ------------------------------------------------------- */

  .standout-grid {
    grid-template-columns:
      minmax(0, 1fr);

    gap: 40px;
  }

  .stand-card {
    min-height: auto;

    padding-bottom: 45px;
  }

  .stand-device,
  .rounded-image {
    max-width: 85%;
    max-height: 330px;

    border-width: 5px;

    border-radius: 23px;
  }


  /* -------------------------------------------------------
     Journey
     ------------------------------------------------------- */

  .journey-art {
    width: 100%;
    max-width: 100%;

    height: 390px;
    min-height: 0;
  }

  .journey-copy {
    width: 100%;
    max-width: 100%;

    padding: 30px;

    border-radius: 26px;
  }


  /* -------------------------------------------------------
     Contact
     ------------------------------------------------------- */

  .contact {
    gap: 45px;
  }

  .contact-details {
    margin-top: 35px;
  }


  /* -------------------------------------------------------
     Footer
     ------------------------------------------------------- */

  .footer {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .footer-top {
    grid-template-columns:
      minmax(0, 1fr);

    gap: 30px;
  }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

  .site-header {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-visual {
    height: 360px;
  }


  /* -------------------------------------------------------
     Compact mockup composition
     ------------------------------------------------------- */

  .device-ipad {
    width: 35%;
    max-width: 35%;

    right: 19%;
    top: 17%;
  }

  .device-phone {
    width: 17%;
    max-width: 17%;

    right: 5%;
    top: 31%;
  }

  .device-tablet {
    width: 17%;
    max-width: 17%;

    left: 10%;
    top: 35%;

    z-index: 1000 !important;
  }

  .device-phone-cart {
    width: 20%;
    max-width: 20%;

    right: 0;
    bottom: 7%;

    z-index: 900;
  }


  /* -------------------------------------------------------
     Requested border behavior
     ------------------------------------------------------- */

  .hero-visual .device-ipad img,
  .hero-visual .device-phone img {
    border: 4px solid #000000;
    border-radius: 20px;
  }

  .hero-visual .device-tablet img,
  .hero-visual .device-phone-cart img {
    border: 0 !important;
  }


  /* -------------------------------------------------------
     Typography
     ------------------------------------------------------- */

  .section h2,
  .standout h2,
  .contact h2 {
    font-size: 46px;
  }

  .journey-copy {
    padding: 25px;
  }
}


/* =========================================================
   EXTRA SMALL DEVICES
   ========================================================= */

@media (max-width: 340px) {

  .hero h1 {
    font-size: 48px;
  }

  .hero-visual {
    height: 330px;
  }

.device-ipad {
  width: 38%;

  right: 20%;
  top: 6%;

  z-index: 20;
}

.device-phone {
  width: 18%;

  right: 7%;
  top: 24%;

  left: auto;
  bottom: auto;

  z-index: 30;
}

  .device-tablet {
    width: 16%;
    left: 0;
  }

  .device-phone-cart {
    width: 19%;
    right: 0;
  }

  .section {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}


/* =========================================================
   FINAL OVERFLOW GUARD
   ========================================================= */

/*
 * These rules intentionally apply to the layout wrappers
 * rather than individual content elements.
 *
 * They prevent a positioned mockup, long URL, unusually long
 * word, or intrinsic grid item from creating horizontal
 * scrolling.
 */

html,
body,
#site,
main {
  max-width: 100%;
}

.hero,
.features,
.standout,
.journey,
.contact,
.footer {
  max-width: 100%;
}

.hero *,
.features *,
.standout *,
.journey *,
.contact *,
.footer * {
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
span,
a {
  overflow-wrap: anywhere;
}
.google-play-button img {
  display: block;
  width: 156px;
  max-width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

@media (max-width: 600px) {
  .google-play-button img {
    width: 70px;
    max-width: 100%;
  }
}
