:root {
  --color-white: #fff;
  --color-light: #f6f6f7;
  --color-dark: #575656;
  --color-darker: #393836;
  --color-blue: #2e9fc0;
  --color-pink: #e72f78;
  --gradient: radial-gradient(circle, #68c6d2 0, rgba(40, 157, 190, 0) 100%), linear-gradient(180deg, #31a8cb, #01647e);
  --size-sm: 576px;
  --size-md: 768px;
  --size-lg: 992px;
  --size-xl: 1200px;
}

@font-face {
  font-family: 'LL Circular Bold Web';
  src: url(../fonts/circular-bold/lineto-circular-bold.eot);
  src:
    url(../fonts/circular-bold/lineto-circular-bold.eot?#iefix) format('embedded-opentype'),
    url(../fonts/circular-bold/lineto-circular-bold.woff2) format('woff2'),
    url(../fonts/circular-bold/lineto-circular-bold.woff) format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LL Circular Book Web';
  src: url(../fonts/circular/lineto-circular-book.eot);
  src:
    url(../fonts/circular/lineto-circular-book.eot?#iefix) format('embedded-opentype'),
    url(../fonts/circular/lineto-circular-book.woff2) format('woff2'),
    url(../fonts/circular/lineto-circular-book.woff) format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

header {
  position: relative;
  min-height: 100%;
  width: 100%;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.05);
  padding: 13px 0 0;
}

@media (min-width: 768px) {
  header {
    padding: 13px 27px;
  }
}

.logo,
header {
  background-color: var(--color-white);
}

.logo {
  padding: 0;
  position: absolute;
  top: 11px;
  max-width: 150px;
}

.logo--skewed {
  top: 0;
  left: -40px;
  transform: rotate(-5deg);
  min-width: 180px;
  padding: 20px 40px;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .logo {
    top: -18px;
    transform: rotate(-5deg);
    padding: 20px 40px;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.05);
    max-width: 280px;
    margin-top: 20px;
  }
}

.logo img {
  width: 100%;
  height: auto;
}

.lead {
  font-size: 1.5em;
}

footer {
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: 31px 0 0;
  z-index: 3;
  position: relative;
}

footer a,
footer a:active,
footer a:focus,
footer a:hover,
footer a:visited {
  color: inherit;
  text-decoration: none;
}

.footer-headline {
  font-family: 'LL Circular Bold Web', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 26px;
}

.footer-headline-logo {
  max-width: 90%;
  background: var(--color-white);
  display: flex;
  flex-wrap: nowrap;
  height: 80px;
  align-items: center;
  justify-content: center;
}

.footer-headline-logo img {
  max-height: 100%;
  width: auto;
}

.footer-links {
  padding: 0;
  list-style: none;
}

.footer-links li {
  color: var(--color-dark);
  padding-left: 36px;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: left center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='w-6 h-6'%3E%3Cpath fill='%23575656' d='M15.75 2.25H21a.75.75 0 0 1 .75.75v5.25a.75.75 0 0 1-1.5 0V4.81L8.03 17.03a.75.75 0 0 1-1.06-1.06L19.19 3.75h-3.44a.75.75 0 0 1 0-1.5zm-10.5 4.5a1.5 1.5 0 0 0-1.5 1.5v10.5a1.5 1.5 0 0 0 1.5 1.5h10.5a1.5 1.5 0 0 0 1.5-1.5V10.5a.75.75 0 0 1 1.5 0v8.25a3 3 0 0 1-3 3H5.25a3 3 0 0 1-3-3V8.25a3 3 0 0 1 3-3h8.25a.75.75 0 0 1 0 1.5H5.25z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.footer-bottom {
  padding: 12px 0;
  margin-top: 16px;
  color: var(--color-white);
  background-color: var(--color-blue);
  font-size: 14px;
  font-family: 'LL Circular Bold Web', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 18px;
}

body {
  font-family: 'LL Circular Book Web', sans-serif;
  font-size: 16px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.container {
  max-width: 1120px;
}

.page-wrapper {
  display: grid;
  grid-template-rows: 130px auto;
  overflow: hidden;
}

.page-headline {
  font-family: 'LL Circular Bold Web', sans-serif;
  font-weight: 400;
  margin-bottom: 26px;
  font-size: 36px;
  line-height: 46px;
  text-shadow: 0 7px 64px rgba(0, 0, 0, 0.03);
  word-break: break-word;
}

@media (min-width: 768px) {
  .page-headline {
    padding-left: 24px;
  }
}

@media (min-width: 992px) {
  .page-headline {
    font-size: 65px;
    line-height: 82px;
    margin-bottom: 66px;
  }
}

.content-main {
  position: relative;
  padding: 39px 0;
  background: var(--gradient);
  color: var(--color-white);
}

.content-main .footer-skew {
  background-color: var(--color-light);
  min-height: 120px;
  position: absolute;
  bottom: -60px;
  left: 0;
  transform: skew(1deg, -3deg);
  z-index: 2;
  width: calc(100% + 1px);
}

.smartphone-image {
  position: relative;
}

.smartphone-image img {
  width: 100%;
  margin-top: 24px;
  position: relative;
  left: 0;
  max-width: 620px;
  height: auto;
  z-index: 9;
  margin-bottom: -50px;
}

@media (min-width: 768px) {
  .smartphone-image img {
    width: 60vw;
    margin-top: 0;
  }
}

.logo {
  position: relative;
  z-index: 3;
}

.main-text {
  color: var(--color-white);
  font-weight: 300;
  margin-bottom: 26px;
  font-size: 20px;
  line-height: 30px;
}

@media (min-width: 992px) {
  .main-text {
    font-size: 30px;
    line-height: 38px;
  }
}

.store-buttons {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  align-items: center;
  max-width: 100%;
  position: relative;
  z-index: 9;
}

.store-buttons a {
  display: block;
  max-width: 160px;
}

.store-buttons a img {
  width: 100%;
  height: auto;
}

@media (min-width: 576px) {
  .store-buttons {
    max-width: 340px;
    justify-content: space-between;
  }
}
