html {
  box-sizing: border-box; }

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", "helvetica neue", helvetica, ubuntu, roboto, noto, arial, sans-serif;
  margin: 0; }

a {
  color: #0a84ff;
  text-decoration: none; }
  a.underline {
    text-decoration: underline; }

p,
ul,
ol,
blockquote {
  line-height: 1.44em; }

.small {
  font-size: 12px;
  line-height: 16px;
  margin: 5px 0;
  opacity: 0.7; }

.responsive-wrapper {
  margin: 0 auto;
  transform: width 250ms; }
  @media (max-width: 719px) {
    .responsive-wrapper {
      width: 480px; } }
  @media (min-width: 720px) {
    .responsive-wrapper {
      width: 720px; } }
  @media (min-width: 960px) {
    .responsive-wrapper {
      width: 960px; } }
  @media (min-width: 1260px) {
    .responsive-wrapper {
      width: 1260px; } }
  .responsive-wrapper.row-wrap {
    display: flex;
    flex-wrap: wrap; }
  .responsive-wrapper.row-space {
    display: flex;
    justify-content: space-between; }
  .responsive-wrapper.row-center {
    display: flex;
    align-items: center;
    justify-content: center; }
  .responsive-wrapper.row-space-end {
    display: flex;
    align-items: flex-end;
    justify-content: space-between; }

.wrapper {
  width: 100%; }
  .wrapper.row-wrap {
    display: flex;
    flex-wrap: wrap; }
  .wrapper.row-space {
    display: flex;
    justify-content: space-between; }
  .wrapper.row-center {
    display: flex;
    align-items: center;
    justify-content: center; }

.column-space {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.column-center {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center; }

.full-height {
  min-height: 100vh; }

.flex {
  display: flex; }

.flex-1 {
  flex: 1; }

.spacer {
  height: 20px; }

.loader {
  background: rgba(12, 12, 13, 0.2);
  border-radius: 2px;
  height: 4px;
  overflow: hidden;
  position: relative;
  width: 200px; }

.loader-inner {
  animation: bounce infinite alternate 1250ms cubic-bezier(0.7, 0, 0.3, 1);
  background: #45a1ff;
  border-radius: 2px;
  height: 4px;
  transform: translateX(-40px);
  width: 50px; }

@keyframes bounce {
  0% {
    transform: translateX(-40px); }
  100% {
    transform: translate(190px); } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes pop {
  0% {
    transform: scale(1); }
  97% {
    transform: scale(1.04); }
  100% {
    transform: scale(1); } }

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: scale(1); }
  70% {
    opacity: 0.25;
    transform: scale(1.04); }
  100% {
    opacity: 0.3;
    transform: scale(1); } }

@keyframes slide-left {
  0% {
    opacity: 0;
    transform: translate3d(160px, 0, 0); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(1); }
  60% {
    opacity: 1;
    transform: scale(1.02); }
  100% {
    transform: scale(1); } }

.footer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px; }
  @media (min-width: 960px) {
    .footer {
      flex-direction: row;
      padding: 30px; } }
  .footer .footer-links {
    display: flex;
    list-style: none;
    margin: 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 0 0 0; }
    @media (min-width: 960px) {
      .footer .footer-links {
        flex-direction: row;
        padding: 0 0; } }
    .footer .footer-links li {
      font-size: 14px;
      margin-right: 16px; }
      .footer .footer-links li a {
        color: #737373; }
  .footer .mozilla-logo {
    background-image: url("../img/mozilla.svg");
    background-repeat: no-repeat;
    background-size: auto 30px;
    display: block;
    height: 30px;
    width: 120px; }

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  height: 40px;
  min-width: 40px;
  outline: none;
  padding: 0 10px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background 150ms cubic-bezier(0.07, 0.95, 0, 1), border 150ms cubic-bezier(0.07, 0.95, 0, 1);
  user-select: none;
  white-space: nowrap; }
  .button.hidden {
    display: none; }
  .button.small {
    height: 32px;
    line-height: 32px;
    padding: 0 8px; }
  .button.active {
    background-color: #dedede; }
  .button.tiny {
    font-size: 14px;
    height: 26px;
    border: 1px solid #c7c7c7; }
    .button.tiny:hover, .button.tiny:focus {
      background: #ededf0;
      border-color: #989898; }
    .button.tiny:active {
      background: #dedede;
      border-color: #989898; }
  .button.block-button {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 0;
    border-right: 1px solid #c7c7c7;
    box-shadow: 0;
    border-radius: 0;
    flex-shrink: 0;
    font-size: 20px;
    height: 100px;
    line-height: 100%;
    overflow: hidden; }
    @media (max-width: 719px) {
      .button.block-button {
        justify-content: flex-start;
        font-size: 16px;
        height: 72px;
        margin-right: 10px;
        padding: 0 5px; } }
    .button.block-button:hover {
      background: #ededf0; }
    .button.block-button:active {
      background: #dedede; }
  .button.download, .button.edit, .button.trash, .button.share, .button.flag {
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    margin-right: 10px;
    transition: background-color 150ms cubic-bezier(0.07, 0.95, 0, 1); }
  .button.download {
    background-image: url("../img/icon-download.svg"); }
    .button.download:hover {
      background-color: #ededf0; }
    .button.download:active {
      background-color: #dedede; }
  .button.share {
    background-image: url("../img/icon-share.svg"); }
    .button.share:hover {
      background-color: #ededf0; }
    .button.share.active, .button.share:active {
      background-color: #dedede; }
  .button.share.newicon {
    background-image: url("../img/icon-share-alternate.svg"); }
  .button.trash {
    background-image: url("../img/icon-trash.svg"); }
    .button.trash:hover {
      background-color: #ededf0; }
    .button.trash:active {
      background-color: #dedede; }
  .button.edit {
    background-image: url("../img/icon-edit.svg"); }
    .button.edit:hover {
      background-color: #ededf0; }
    .button.edit:active {
      background-color: #dedede; }

.alt-content {
  max-width: 520px;
  text-align: center; }
  .alt-content h1 {
    font-size: 26px;
    font-weight: normal;
    margin: 0; }
  .alt-content p {
    margin-top: 0;
    line-height: 1.8em; }
  .alt-content button {
    margin: 10px auto; }

.share-panel {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(12, 12, 13, 0.1), 0 2px 8px rgba(12, 12, 13, 0.1);
  position: absolute;
  right: 10px;
  top: 90px;
  width: 350px;
  z-index: 999; }
  @media (max-width: 719px) {
    .share-panel {
      bottom: 0;
      left: 0;
      margin: 0 auto;
      padding: 10px;
      position: fixed;
      right: 0;
      top: auto;
      width: 100%; } }
  @media (min-width: 720px) {
    .alt-notification + #frame .share-panel {
      top: 150px; } }
  .share-panel .share-buttons {
    padding: 20px;
    border-bottom: 1px solid #c7c7c7; }
    .share-panel .share-buttons > a {
      padding-right: 20px; }
      .share-panel .share-buttons > a:hover {
        cursor: pointer; }
  .share-panel .share-url-box {
    padding: 15px; }
  .share-panel img {
    height: 54px;
    width: 54px; }
  .share-panel p {
    margin: 0; }
  .share-panel .share-visibility-notice {
    color: #858585;
    font-size: 13px;
    margin-top: 10px; }
  .share-panel .copy-shot-link-input {
    border: 1px solid #c7c7c7;
    border-right: 0;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    padding: 5px;
    position: relative;
    flex: 1;
    margin: 0; }
    .share-panel .copy-shot-link-input:hover, .share-panel .copy-shot-link-input:focus {
      border-color: #989898; }
    .share-panel .copy-shot-link-input:active {
      border-color: #989898; }
  .share-panel .copy-toggle {
    flex: 1 0 70px;
    max-width: 120px;
    padding: 0 10px;
    margin: 0;
    border-radius: 0;
    border: 1px solid #c7c7c7; }
    .share-panel .copy-toggle:hover {
      background: #ededf0;
      border-color: #989898; }
    .share-panel .copy-toggle:active {
      background: #dedede;
      border-color: #989898; }

@media (max-width: 768px) {
  #toggle-share {
    display: none; } }

.app-body {
  background: #f9f9fa;
  color: #38383d; }
  .app-body a {
    color: #0a84ff; }

.highlight-color-scheme {
  background: #0a84ff;
  color: #fff; }
  .highlight-color-scheme a {
    color: #fff;
    text-decoration: underline; }

.alt-color-scheme {
  background: #38383d;
  color: #f9f9fa; }
  .alt-color-scheme h1 {
    color: #6f7fb6; }
  .alt-color-scheme a {
    color: #e1e1e6;
    text-decoration: underline; }

.button.primary {
  background-color: #0a84ff;
  color: #fff; }
  .button.primary:hover, .button.primary:focus {
    background-color: #0072e5; }
  .button.primary:active {
    background-color: #0065cc; }

.button.secondary {
  background-color: #f9f9fa;
  color: #38383d; }
  .button.secondary:hover {
    background-color: #ededf0; }
  .button.secondary:active {
    background-color: #dedede; }

.button.transparent {
  background-color: transparent;
  color: #38383d; }
  .button.transparent:hover {
    background-color: #ededf0; }
  .button.transparent:focus, .button.transparent:active {
    background-color: #dedede; }

.button.warning {
  color: #fff;
  background: #d92215; }
  .button.warning:hover, .button.warning:focus {
    background: #b81d12; }
  .button.warning:active {
    background: #a11910; }

.subtitle-link {
  color: #0a84ff; }

.header-panel {
  background-color: #f9f9fa;
  display: flex;
  width: 100%; }
  @media (min-width: 720px) {
    .header-panel {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap; } }
  @media (max-width: 719px) {
    .header-panel {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap; } }
  @media (min-width: 960px) {
    .header-panel {
      display: flex;
      align-items: center;
      justify-content: center; } }
  .header-panel .logo {
    padding: 20px;
    align-items: center;
    display: flex;
    flex: 1;
    height: 70px; }
    @media (min-width: 960px) {
      .header-panel .logo {
        padding: 20px 30px; } }
    @media (min-width: 960px) {
      .header-panel .logo {
        height: 96px; } }
    .header-panel .logo .screenshots-logo {
      background-image: url("../img/landing-Screenshot-logo.svg");
      background-repeat: no-repeat;
      background-size: contain;
      height: 24px;
      position: relative;
      width: 318px; }
      @media (max-width: 719px) {
        .header-panel .logo .screenshots-logo {
          background-position: 0 center;
          width: 100%; } }
      @media (min-width: 960px) {
        .header-panel .logo .screenshots-logo {
          height: 30px; } }
  .header-panel .alt-actions {
    align-items: center;
    display: flex;
    margin-right: 0; }
  .header-panel .fxa-signin {
    position: relative; }
  .header-panel .nav-button {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
    flex-basis: 60px;
    height: 60px;
    width: 60px;
    border: none;
    transition: background 125ms; }
    .header-panel .nav-button img {
      width: 24px;
      height: 24px; }
    @media (min-width: 960px) {
      .header-panel .nav-button {
        flex-basis: 96px;
        width: 96px;
        height: 96px; }
        .header-panel .nav-button img {
          width: 28px;
          height: 28px; } }
    .header-panel .nav-button:hover, .header-panel .nav-button:focus {
      background-color: #ededf0;
      border-radius: 0; }
    .header-panel .nav-button:active {
      background-color: #dedede;
      border-radius: 0; }
    .header-panel .nav-button.icon-shots, .header-panel .nav-button.icon-settings {
      flex-basis: 70px;
      height: 70px;
      width: 70px; }
      @media (min-width: 960px) {
        .header-panel .nav-button.icon-shots, .header-panel .nav-button.icon-settings {
          flex-basis: 96px;
          height: 96px;
          width: 96px; } }
    .header-panel .nav-button.inactive {
      cursor: default;
      display: none; }
    .header-panel .nav-button span {
      margin-top: 30px;
      color: #2a2a2e;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 96px; }
  .header-panel .nav-link {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: #000;
    border-right: 1px solid #c7c7c7;
    height: 70px; }
    .header-panel .nav-link:hover {
      background-color: #ededf0; }
    .header-panel .nav-link:active {
      background-color: #dedede; }

.upsell {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 14px;
  color: #000;
  background: #efeff1;
  width: 100%;
  line-height: 1.6rem; }
  @media (max-width: 719px) {
    .upsell {
      font-size: 13px; } }
  .upsell .message {
    padding-top: 16px;
    padding-right: 5px;
    padding-bottom: 16px;
    padding-left: 32px; }
  .upsell .logo {
    background-position: left center;
    background-image: url("../img/firefox-logo.svg");
    background-repeat: no-repeat;
    background-size: 24px auto;
    margin-left: 16px; }
    [dir="rtl"] .upsell .logo {
      background-position: right center; }
  .upsell p {
    display: inline; }
  .upsell .upsellLink {
    background: #0a84ff;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
    padding-left: 16px;
    padding: 6px;
    transition: background 125ms;
    white-space: nowrap; }
    .upsell .upsellLink:hover, .upsell .upsellLink:focus {
      background: #0060df; }
    .upsell .upsellLink:active {
      background: #003eaa; }
  .upsell .signInLink {
    color: #0a84ff;
    font-weight: bold; }

.onboarding-promo-dialog {
  background: #f7f7f7;
  border: 1px solid #c7c7c7;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(12, 12, 13, 0.1);
  color: #0c0c0d;
  min-height: 200px;
  position: absolute;
  left: 3px;
  top: 47px;
  z-index: 2; }
  .onboarding-promo-dialog .triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 15px solid #c7c7c7;
    top: -15px;
    left: 8px; }
    .onboarding-promo-dialog .triangle .triangle-inner {
      position: absolute;
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 13px solid #fff;
      left: -8px;
      top: 2px; }
  .onboarding-promo-dialog.right-align {
    top: 70px;
    width: 360px;
    left: -300px; }
    @media (min-width: 960px) {
      .onboarding-promo-dialog.right-align {
        top: 85px;
        width: 400px;
        left: -310px; } }
    .onboarding-promo-dialog.right-align .triangle {
      left: 325px; }
      @media (min-width: 960px) {
        .onboarding-promo-dialog.right-align .triangle {
          left: 347px; } }
  .onboarding-promo-dialog .promo-header {
    display: flex;
    align-items: center;
    height: 60px;
    background: #fff; }
    .onboarding-promo-dialog .promo-header .promo-logo {
      background-position: center;
      background-image: url("../img/icon-promo.svg");
      background-repeat: no-repeat;
      background-size: 30px auto;
      background-color: #0684ff;
      width: 60px;
      height: 100%;
      display: block; }
    .onboarding-promo-dialog .promo-header .promo-title {
      display: block;
      font-size: 16px;
      font-weight: bold;
      padding: 0 16px; }
  .onboarding-promo-dialog .promo-message {
    padding: 0 16px;
    font-size: 14px; }
    .onboarding-promo-dialog .promo-message ul {
      padding-left: 16px; }
  .onboarding-promo-dialog .promo-footer {
    height: 70px;
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    .onboarding-promo-dialog .promo-footer a {
      font-weight: bold;
      cursor: pointer; }
      .onboarding-promo-dialog .promo-footer a:hover {
        text-decoration: underline; }
    .onboarding-promo-dialog .promo-footer button {
      margin: 0 16px;
      width: 120px;
      height: 40px; }

html,
body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", "helvetica neue", helvetica, ubuntu, roboto, noto, arial, sans-serif;
  font-size: 12pt; }

.container {
  -ms-flex-align: center;
  -ms-flex-pack: end;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  flex-basis: auto;
  flex-grow: 1;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1160px;
  min-width: 0;
  padding: 40px 33px;
  position: relative; }

/* Header Banner */
.banner {
  align-items: center;
  background-color: #04d1e6;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  min-height: 587px;
  position: relative; }

.banner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1160px;
  min-width: 960px;
  margin: 0 auto;
  position: relative; }

.banner-image-front {
  background-image: url("../img/banner-front.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 400px auto;
  flex: 0 0 420px;
  height: 440px; }

.banner-image-back {
  background-image: url("../img/banner-back.svg");
  background-position: center 25%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0; }

.banner-content {
  min-width: 430px;
  padding: 10px; }

.banner-content h1 {
  color: #fff;
  font-size: 3em;
  font-weight: 400;
  margin: 0 0 20px; }

.banner-content p {
  color: #fff;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.61;
  margin: 0;
  padding-right: 30px; }

h2 {
  color: #004c66;
  font-size: 2.3em;
  font-weight: 600;
  line-height: 55px;
  margin: 29px 20px 22px;
  text-align: center; }

.button {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  border-radius: 3px;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(12, 12, 13, 0.1);
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  outline: none;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s, width 0.15s;
  user-select: none;
  white-space: nowrap; }

.download-firefox {
  -moz-user-select: none;
  -ms-flex-align: center;
  -ms-flex-direction: row;
  -ms-flex-pack: center;
  -ms-user-select: none;
  -webkit-user-select: none;
  align-items: center;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  font-weight: 500;
  height: 80px;
  justify-content: center;
  margin-top: 30px;
  transition-duration: 0.25s;
  transition-property: box-shadow, border;
  user-select: none;
  width: 260px; }

.button.primary.download-firefox {
  background: #30e60b;
  color: #fff;
  text-align: left; }
  .button.primary.download-firefox:hover, .button.primary.download-firefox:focus {
    background: #20c60b; }
  .button.primary.download-firefox:active {
    background: #10b60b;
    box-shadow: 0 1px 4px rgba(12, 12, 13, 0.1); }

.download-firefox .button-icon {
  -ms-flex: 0 0 57px;
  background-image: url("../img/landing-small-firefox-logo@2x.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 57px 59px;
  flex: 0 0 57px;
  height: 59px;
  margin-right: 16px;
  position: relative; }

.download-firefox .button-icon-badge {
  background-color: #fff;
  background-image: url("../img/landing-download-icon@2x.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border-radius: 50%;
  bottom: 4px;
  box-shadow: 0 1px 4px rgba(12, 12, 13, 0.1);
  height: 16px;
  padding: 6px;
  position: absolute;
  right: 2px;
  transition-duration: 0.15s;
  width: 16px; }

.download-firefox .button-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 0.25em; }

.download-firefox .button-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1em; }

/* Instruction Sections */
section {
  align-items: center;
  display: flex;
  min-height: 600px; }

section:nth-child(even) {
  background-color: #f7fdfe; }

section .container {
  max-width: 1100px;
  padding: 40px 63px; }

.section-content h3 {
  font-size: 2.2em;
  font-weight: 400;
  margin: 0; }

.section-content .bold {
  font-weight: 500; }

.section-content {
  color: #4a4a4a;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  line-height: 1.61;
  width: 36%; }

.section-image {
  background-size: contain;
  display: flex;
  height: auto;
  justify-content: flex-end;
  width: 50%; }

#section-1 .section-image {
  background-image: url("../img/landing-screenshots_image_01.svg");
  background-position: 100% center;
  background-repeat: no-repeat;
  height: 476px; }

#section-1 .section-image.page-action {
  background-image: url("../img/landing-screenshots_image_01_57.svg"); }

#section-2 .section-image {
  background-image: url("../img/landing-screenshots_image_02.svg");
  background-position: 0% center;
  background-repeat: no-repeat;
  height: 500px; }

#section-3 .section-image {
  background-image: url("../img/landing-screenshots_image_03.svg");
  background-position: 100% center;
  background-repeat: no-repeat;
  height: 519px; }

#section-4 .section-image {
  background-image: url("../img/landing-screenshots_image_04.svg");
  background-position: 100% center;
  background-repeat: no-repeat;
  height: 533px; }

#section-5 .section-image {
  background-image: url("../img/landing-screenshots_image_05.svg");
  background-position: 100% center;
  background-repeat: no-repeat;
  height: 533px; }

/* These align-* layout styles are used for the onboarding tour sections */
.align-left {
  order: 1; }

.align-right {
  order: 2; }

/* Coming Soon Section */
#coming {
  min-height: 350px; }

#coming .container {
  max-width: 840px;
  padding: 40px 100px; }

.coming-content {
  color: #4a4a4a;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 45%; }

.coming-content h3 {
  font-size: 2em;
  font-weight: 100;
  margin: 0; }

.coming-content p {
  font-size: 0.9em;
  line-height: 1.61;
  margin-bottom: 0; }

.coming-icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start; }

.coming-icons span {
  color: #4a4a4a;
  font-size: 2em;
  margin: 0 33px;
  position: relative;
  top: 16px; }

.coming-icons div {
  background-repeat: no-repeat;
  background-size: contain;
  height: 80px;
  width: 80px; }

/* Responsive */
@media (max-width: 1120px) and (min-width: 769px) {
  .banner {
    min-height: 500px; }
  .banner-container {
    max-width: 750px;
    min-width: 750px; }
  .banner-content {
    min-width: 320px;
    width: 350px; }
  .banner-image-front {
    background-size: 360px auto;
    flex: 0 0 400px;
    height: 420px; }
  .banner-image-back {
    background-size: 90% auto;
    background-position: 300px center; }
  section {
    min-height: 500px; } }

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    justify-content: center;
    text-align: center; }
  .banner {
    background-image: url("../img/landing-screenshots_mobile.svg");
    background-repeat: no-repeat;
    background-position: 100% 20%;
    height: 320px; }
  .banner-image-back,
  .banner-image-front {
    display: none; }
  .banner-spacer {
    height: 74px; }
  .banner-container {
    min-width: 0; }
  .banner-content {
    margin-top: 80px;
    max-width: 500px;
    min-width: 0;
    text-align: center; }
  .banner-content p {
    font-size: 1.2em;
    padding-right: 0; }
  .button {
    margin-right: auto;
    margin-left: auto; }
  h2 {
    font-size: 1.6em; }
  section {
    min-height: 550px; }
  section .container {
    padding: 40px 33px; }
  .section-content h3 {
    font-size: 2em; }
  .section-content {
    max-width: 500px;
    order: 1 !important;
    width: 100%; }
  .section-image {
    background-position: center center !important;
    height: 90vw !important;
    margin-top: 33px;
    max-height: 500px;
    max-width: 500px;
    order: 2 !important;
    width: 90vw !important; }
  #coming .container {
    padding: 40px 33px; }
  .coming-content {
    margin-top: 40px;
    max-width: 300px;
    width: 100%; }
  .coming-icons div {
    height: 50px;
    width: 50px; }
  .coming-icons span {
    margin: 0 16px;
    top: 3px; } }
