:root {
  --white: #fff;
  --dark-green: #042a2b;
  --cadet-gray: #819494;
  --anti-flash-white-100: #e6eaea;
  --anti-flash-white-50: #f2f4f4;
  --mint: #17b890;
  --mint-light: #2ad2a8;
  --crimson: #d72638;
}

:root {
  --font-jost: "Jost", sans-serif;
}

* {
  color: var(--dark-green);
  font-family: var(--font-jost);
  font-weight: 400;
}

.wrapper {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Common */

.color-mint {
  color: var(--mint);
}

.color-crimson {
  color: var(--crimson);
}

.color-cadet-gray {
  color: var(--cadet-gray);
}

.text-extra-bold {
  font-weight: 800;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.h1 {
  font-size: 48px;
  line-height: 56px;
}

.h2 {
  font-size: 32px;
  line-height: 40px;
}

.p {
  font-size: 20px;
  line-height: 28px;
}

.text-lg {
  font-size: 24px;
  line-height: 32px;
}

.text-sm {
  font-size: 16px;
  line-height: 24px;
}

.button {
  border-radius: 12px;
  padding: 24px;
  min-width: 336px;
  background: var(--mint);
  font-weight: 800;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--white);
  transition: background 0.2s ease;
}

.button:hover {
  background: var(--mint-light);
}

.section-default {
  margin-top: 144px;
}

/* Main styles */

body {
  background: var(--anti-flash-white-50);
}

.logo-container {
  padding-top: 48px;
}

.logo {
  font-size: 48px;
  line-height: 36px;
}

.banner-container {
  margin-top: 32px;
  max-width: 100%;
  overflow: hidden;
}

.banner-img {
  max-width: 702px;
}

.banner-img-mobile {
  display: none;
}

.promo-container {
  margin-top: 128px;
}

.logline {
  margin: 48px 0;
}

.stores-container {
  column-gap: 16px;
  margin-top: 48px;
}

.store-img {
  max-width: 162px;
  transition: opacity 0.2s ease;
}

.store-img:hover {
  opacity: 0.9;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 34px;
  width: 100%;
  margin-top: 48px;
}

.feature-img {
  max-width: 144px;
}

.feature-title {
  margin: 48px 0 24px;
}

.call-logline {
  margin: 48px 0;
}

.call-sublogline {
  margin: 24px 0 48px;
}

.footer {
  padding-bottom: 48px;
}

.footer-link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  .h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .p {
    font-size: 16px;
    line-height: 24px;
  }

  .text-lg {
    font-size: 20px;
    line-height: 28px;
  }

  .button {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }

  .logo-container {
    padding-top: 32px;
  }

  .banner-container {
    margin-top: 17px;
  }

  .banner-img {
    display: none;
  }

  .banner-img-mobile {
    display: block;
    min-width: 564px;
  }

  .promo-container {
    margin-top: 81px;
  }

  .logline {
    margin: 32px 0;
  }

  .button-link {
    width: 100%;
  }

  .stores-container {
    margin-top: 32px;
  }

  .section-default {
    margin-top: 96px;
  }

  .features-container {
    grid-template-columns: 1fr;
    margin-top: 38px;
    row-gap: 32px;
  }

  .feature-title {
    margin: 32px 0 16px;
  }

  .call-logline {
    margin: 32px 0;
  }

  .call-sublogline {
    margin: 16px 0 32px;
  }

  .footer {
    padding-bottom: 32px;
  }
}

@media screen and (max-width: 425px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 400px) {
  .h1 {
    font-size: 28px;
  }

  .stores-container {
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
  }
}
