html, body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

#app {
  font-family: 'Helvetica', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrapper {
  max-width: 1080px !important;
  margin: auto;
  padding: 0 30px;
}

h1 {
  font-size: 42px;
  font-weight: 100;
  margin-bottom: 20px;
}

h3 {
  font-weight: 200;
  font-size: 20px;
}

a {
  color: #FF5C5E;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.red {
  color: #FF5C5E;
}

.bold {
  font-weight: 600;
}

section {
  margin: 60px 0;
}

.last-section {
  margin-bottom: 0 !important;
}

.header {
  height: 100vh;
  max-height: 1024px;
  background: #F3F3F3;
  margin: 0;
  display: flex;
}

.header-wrapper {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
}

.header-logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 30px;
  width: 40%;
}

.header-logo-container > img {
  /* max-width: 350px; */
  /* height: auto; */
  object-fit: contain;
  margin-left: -30px;
}

#logo {
  display: block;
}

#logo-mobile {
  display: none;
}

.header-copy-container {
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
}

.header-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 92px;
  height: auto;
}

.header-logo:hover {
  cursor: pointer;
}

.videos {
  padding: 40px 30px;
}

.video-row {
  display: flex;
  max-height: 520px;
}

.video-row:not(:last-child) {
  margin-bottom: 40px;
}

.reverse {
  flex-direction: row-reverse;
}

.reverse > .copy-container {
  padding: 0 0 0 40px;
}

.copy-container {
  flex-grow: 1;
  padding: 0 40px 0 0;
}

.video-container {
  padding: 20px 0;
  flex-grow: 1;
  max-width: 60%;
}

video {
  width: 100%;
  height: 100%;
}

.copy-container > h3 {
  font-size: 30px;
}

.copy-container > h3::after {
  content: "";
  display: block;
  border-bottom: 1px solid #FF5C5E;
  height: 20px;
  width: 130px;
  margin-bottom: 50px;
}

.copy-container > p {
  font-size: 20px;
  font-weight: 200;
}

.demo {
  background: #f3f3f3;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.demo-header {
  max-width: 100%;
  display: flex;
  max-height: 600px;
  padding: 0 45px;
}

.demo-header > img {
  display: inline;
  height: auto;
}

.demo-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  margin-top: -60px;
}

#demo-copy {
  width: 46%;
}

#demo-qr {
  max-width: 60%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  margin-right: 50px;
}

#grid-demo-image {
  display: none;
}

.demo-copy-container {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
  justify-content: space-between;
}

.demo-copy-container > h1 {
  margin-top: 0;
}

.demo-copy-container > p {
  font-size: 18px;
  margin-top: 0;
}

.demo-qr {
  width: 230px;
  height: auto;
  border-radius: 20px;
}

.demo-spacer {
  width: 50px;
  border-bottom: 1px solid #FF5C5E;
}

.image-grid {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-top: 20px;
  padding-bottom: 60px;
}

.image-grid > img {
  width: 100%;
  height: auto;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); */
}

.get-in-touch {
  text-align: center;
  margin-bottom: 60px;
}

button {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 18px;
  color: #ffffff;
  background: #FF5C5E;
  transition: background 0.2s;
  outline: none;
  border: none;
}

button:hover {
  background: #CF3A3C;
  cursor: pointer;
}

footer {
  background: #3C3C3B;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#footer-logo {
  width: 121px;
  margin-bottom: 8px;
}

footer > p {
  color: #ffffff;
}

footer > p > a {
  color: #4A90E2;
  text-decoration: none;
}

#fb-link {
  margin-right: 20px;
}

.mobile-content {
  display: none;
}

@media screen and (max-width: 769px) {
  .header-wrapper {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .header-logo-container {
    width: inherit;
  }

  .header-logo-container > img {
    margin-left: -45px;
    width: 300px;
  }

  .header-logo {
    left: auto;
    right: 20px;
    width: 60px;
  }

  .header-copy-container > h1 {
    margin-top: 0;
  }

  .header-copy-container > h3 {
    margin-top: 0;
  }

  #logo {
    display: none;
  }

  #logo-mobile {
    display: block;
    height: 100%;
  }

  .image-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }

  .video-row {
    flex-direction: column-reverse;
    max-height: none;
  }

  .video-container {
    padding: 0 !important;
    height: auto;
    width: 100%;
    max-width: none;
  }

  .copy-container {
    padding: 0 !important;
  }

  .demo-header {
    padding: 0 30px;
    display: block;
  }

  #demo-qr {
    margin-bottom: 20px;
  }

  .desktop-content {
    display: none !important;
  }

  .mobile-content {
    display: block !important;
  }

  #grid-demo-image {
    display: block;
  }
}
