@charset "UTF-8";
/*
  Base
*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "SF Pro Text", "SF Pro Icons", -apple-system, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F5F5F7;
}
body.plain {
  background: white;
}
body.plain .footer-element-container {
  border-top: none;
}

p {
  margin-bottom: 1.7em;
}
p:last-child {
  margin-bottom: 0;
}

h5 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 7px;
}

h1 {
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", "SF Pro Text", "SF Pro Icons", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

ul,
ol {
  padding-left: 2em;
  margin-bottom: 18px;
}
ul li,
ol li {
  line-height: 1.5em;
}
ul li::marker,
ol li::marker {
  color: rgba(0, 0, 0, 0.4) !important;
}

a {
  text-decoration: none;
  color: #007aff;
  font-weight: bold;
}
a:hover {
  color: #4da2ff;
}

/*
  Containers
*/
.body-container {
  min-height: calc(100vh - 70px);
}

.section-container {
  padding: 70px 0;
}
.section-container.black {
  background: black;
}
.section-container.dark-gray {
  background: #111;
}
.section-container.white {
  background: white;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.break {
  display: block;
  width: 100%;
  height: 1px;
  margin: 50px auto;
}
.break.xsmall {
  margin: 15px auto;
}
.break.small {
  margin: 25px auto;
}
.break.larger {
  margin: 100px auto;
}
.break.large {
  margin: 200px auto;
}

/*
  Text colors
*/
.text-gradient.blue {
  background: linear-gradient(30deg, #3c7bad, #683d8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient.bright-blue {
  background: linear-gradient(30deg, #98d1ff, #d5a0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient.red {
  background: linear-gradient(30deg, #bf2a2a, #8a3d3d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient.white {
  background: linear-gradient(30deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*
  Types
*/
.type-body-light {
  color: #fff;
}

.type-heading-light {
  color: #eee;
}

.body-xl {
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", "SF Pro Text", "SF Pro Icons", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .body-xl {
    font-size: 44px;
  }
}

.body-l, article h6, article h5, article h4, article h3, article h2, article h1, .fold-container .body h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.body-mplus {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.001em;
}
@media (max-width: 768px) {
  .body-mplus {
    font-size: 22px;
  }
}

.body-m {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0.001em;
}
@media (max-width: 768px) {
  .body-m {
    font-size: 18px;
  }
}

.body-s, article ul li,
article ol li, article p {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.001em;
}

/*
  Hero Container
*/
.hero-container {
  margin: 40px auto;
}

.hero-container .hero-heading {
  max-width: 580px;
  margin: 0 auto;
  text-align: center !important;
}

.hero-container .hero-body {
  text-align: center;
  max-width: 630px;
  margin: 40px auto 0;
  line-height: 1.48;
}

.hero-container .hero-accessory {
  display: block;
  margin: 44px auto 44px auto;
  max-width: 770px;
}

.hero-accessory.intro {
  max-width: 720px;
}

@media (max-width: 767px) {
  .hero-container {
    margin: 24px;
  }
}
/*
  Misc
*/
.center {
  text-align: center;
}

/* Footer */
table.shortcuts {
  padding: 12px 24px;
  margin: 24px auto 50px auto;
  display: inline-block;
  width: auto;
  background: rgb(249, 249, 249);
  border-radius: 6px;
  border-collapse: collapse;
}
table.shortcuts th {
  text-align: left;
  padding-bottom: 24px;
}
table.shortcuts tr {
  border-bottom: thin solid #eee;
}
table.shortcuts tr:last-child {
  border-bottom: none;
}
table.shortcuts tr td {
  padding: 12px 0;
  color: gray;
}
table.shortcuts tr td:nth-child(1) {
  padding-right: 40px;
}
table.shortcuts tr td:nth-child(2) {
  font-weight: bold;
  color: black;
  text-align: right;
  padding-left: 50px;
}

/*
  Scroll Animations
*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-sequence > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.fade-in-sequence > *:nth-child(1) {
  transition-delay: 0.1s;
}
.fade-in-sequence > *:nth-child(2) {
  transition-delay: 0.2s;
}
.fade-in-sequence > *:nth-child(3) {
  transition-delay: 0.3s;
}
.fade-in-sequence > *:nth-child(4) {
  transition-delay: 0.4s;
}
.fade-in-sequence > *:nth-child(5) {
  transition-delay: 0.5s;
}
.fade-in-sequence > *:nth-child(6) {
  transition-delay: 0.6s;
}
.fade-in-sequence > *:nth-child(7) {
  transition-delay: 0.7s;
}
.fade-in-sequence > *:nth-child(8) {
  transition-delay: 0.8s;
}
.fade-in-sequence > *:nth-child(9) {
  transition-delay: 0.9s;
}
.fade-in-sequence > *:nth-child(10) {
  transition-delay: 1s;
}
.fade-in-sequence > *.visible {
  opacity: 1;
  transform: translateY(0);
}

nav {
  position: fixed;
  display: block;
  width: 100%;
  z-index: 9999;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 1.5s;
}

nav .nav-element-container {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
}

nav .nav-element {
  padding: 12px 0;
}

nav .nav-element-header a {
  display: grid;
  grid-template-columns: 32px auto;
  column-gap: 12px;
  align-items: center;
}
nav .nav-element-header a img {
  justify-self: start;
  display: block;
  width: 32px;
  height: 32px;
}
nav .nav-element-header a span {
  display: block;
  justify-self: start;
  font-weight: 500;
  font-size: 15px;
  color: #3d3e3f;
  letter-spacing: -0.005em;
}

nav .nav-element-links {
  place-self: top;
  justify-self: end;
  text-align: right;
}
nav .nav-element-links ul {
  margin: 0;
}
nav .nav-element-links ul li {
  display: inline-block;
  margin-left: 24px;
}
nav .nav-element-links ul li:first-child {
  margin-left: 0;
}
nav .nav-element-links ul li.active a {
  opacity: 0.5;
}
nav .nav-element-links ul li a {
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 13px;
  color: black;
  opacity: 0.9;
  letter-spacing: -0.007em;
  text-align: right;
}
nav .nav-element-links ul li a:hover {
  background: rgba(0, 0, 0, 0.1);
}

/*
	Appearance styles
*/
nav.minimal {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
nav.minimal .nav-element-container .nav-element-header a span {
  color: white;
  opacity: 0.8;
}
nav.minimal .nav-element-container .nav-element-links ul li a {
  color: #eee;
}

/*
	Responsive
*/
@media (max-width: 1024px) {
  nav .nav-element-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  nav .nav-element-container .nav-element-links {
    display: block;
    width: 100%;
  }
  nav .nav-element-container .nav-element-links ul li {
    margin-left: 12px;
  }
  nav .nav-element-container .nav-element-links ul li a {
    font-size: 14px;
    padding: 2px 6px;
  }
}
@media (max-width: 540px) {
  nav .nav-element-header {
    padding: 0 !important;
    vertical-align: center;
    display: block;
    height: 70px;
  }
}

@media (max-width: 540px) {
  nav .nav-element-header a {
    height: 100%;
  }
}

#nav-menu-toggle-button {
  display: block;
  background-image: url("/assets/images/mobile-nav-open.png");
  width: 40px;
  height: 70px;
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: center;
}
#nav-menu-toggle-button.close {
  background-image: url("/assets/images/mobile-nav-close.png");
}

nav.minimal #nav-menu-toggle-button {
  background-image: url("/assets/images/mobile-nav-open-white.png");
}
nav.minimal #nav-menu-toggle-button.close {
  background-image: url("/assets/images/mobile-nav-close-white.png");
}

@media (max-width: 540px) {
  #main-nav {
    transition: all 0.3s;
    height: 70px;
  }
}
#main-nav.menu-visible {
  height: 100vh;
}

nav .nav-element-mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
}
@media (max-width: 540px) {
  nav .nav-element-mobile-menu-toggle {
    z-index: 10;
    display: block;
  }
}

@media (max-width: 540px) {
  nav .nav-element-links {
    transition: max-height 0.5s ease, opacity 0.5s ease;
    z-index: 5;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 80px 0 0 0;
  }
  nav .nav-element-links.hidden {
    visibility: none;
    display: none;
    height: 0;
  }
  nav .nav-element-links ul {
    padding: 0;
    margin: 0;
  }
  nav .nav-element-links ul li {
    display: block;
    text-align: center;
    padding: 0;
    margin: 0 !important;
  }
  nav .nav-element-links ul li a {
    display: block;
    border-radius: 0;
    text-align: center;
    padding: 20px 20px 20px 30px !important;
    font-size: 18px !important;
    font-weight: 500;
  }
}

.footer-section-container {
  padding-top: 50px;
  border-top: 1px solid #eee;
  background: white;
}

footer {
  font-size: 13px;
  color: #a3a3a3;
}

footer .footer-content-container {
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 40% auto;
}
@media (max-width: 600px) {
  footer .footer-content-container {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

footer .footer-app {
  display: grid;
  grid-template: "icon label";
  grid-template-columns: 47px auto;
  column-gap: 18px;
}
@media (max-width: 600px) {
  footer .footer-app {
    margin-bottom: 24px;
  }
}
footer .footer-app a img {
  width: 47px;
  height: 47px;
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}
footer .footer-app a:hover img {
  opacity: 0.9;
  transform: scale(0.95);
}
footer .footer-app .icon img {
  position: relative;
  top: -4px;
}
footer .footer-app .label span.title {
  display: block;
  font-weight: 500;
  color: black;
  font-size: 14px;
  margin-bottom: 4px;
}

/* Sitemap */
footer .footer-sitemap-container {
  display: block;
  display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 100px;
  align-items: top;
  justify-content: end;
}
@media (max-width: 800px) {
  footer .footer-sitemap-container {
    column-gap: 50px;
  }
}
@media (max-width: 600px) {
  footer .footer-sitemap-container {
    grid-template-columns: repeat(3, 1fr);
    column-gap: normal;
    justify-content: center;
  }
}

.footer-sitemap-col ul {
  padding: 0;
}
.footer-sitemap-col li {
  list-style-type: none;
  margin-bottom: 10px;
}
.footer-sitemap-col li.title {
  font-weight: 500;
  color: black;
  font-size: 14px;
  margin-bottom: 14px;
}
.footer-sitemap-col li a {
  font-weight: 400;
  color: #666;
  font-size: 14px;
}
.footer-sitemap-col li a:hover {
  color: black;
}

footer .footer-copyright {
  display: block;
  padding-top: 100px;
  padding-bottom: 24px;
  margin: 0 auto;
  text-align: center;
  font-family: Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 400;
  color: #6d6d6d;
}
footer .footer-copyright a {
  font-weight: 500;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  footer .footer-copyright {
    font-family: "SF Mono", Menlo, Consolas, monospace;
  }
}

.tiles-container {
  max-width: 720px;
  margin: 0 auto 16px auto;
}
.tiles-container.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 16px;
  align-items: top;
}
.tiles-container.single {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 16px;
}

.tile {
  display: block;
  width: 100%;
  background: white;
  border-radius: 20px;
  position: relative;
}
.tile .separator {
  margin: 12px auto;
  width: 100%;
  height: 1px;
  background-color: #eee;
}
.tile .tile-body {
  padding: 34px;
  position: relative;
}
.tile .tile-body.tile-body-bottom {
  padding-top: 0;
}
.tile .tile-body h5 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 7px;
}
.tile .tile-body p {
  letter-spacing: 0;
}
.tile .tile-footer {
  display: block;
  width: 100%;
}
.tile .tile-footer.tile-footer-push {
  position: absolute;
  bottom: 0;
}
.tile .tile-footer.tile-footer-padding {
  padding: 0 34px 34px 34px;
}
.tile .tile-footer img {
  display: block;
  max-width: 100%;
}
.tile .tile-footer img.rounded {
  border-radius: 10px;
}
.tile.dark, .tile.tile-shelf {
  background: #1A1A1A;
}

/* Custom tiles */
.tile-action-button {
  background-image: url("/assets/images/shelf-action-button.jpg") !important;
  background-size: 403px 289px !important;
  background-position: bottom left !important;
  background-repeat: no-repeat !important;
  min-height: 300px;
}
@media (max-width: 319px) {
  .tile-action-button {
    background-size: 80% !important;
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .tile-action-button {
    min-height: 440px;
  }
}

.tile-shelf {
  background-image: url("/assets/images/shelf-ui-highlighted.png") !important;
  background-size: 490px 399px !important;
  background-position: top right !important;
  background-repeat: no-repeat !important;
  min-height: 300px;
}
.tile-shelf .tile-body {
  max-width: 40%;
}
@media (max-width: 767px) {
  .tile-shelf {
    background-position: right bottom !important;
    background-size: 50% !important;
  }
  .tile-shelf .tile-body {
    max-width: 70%;
  }
}

.tile-shelf-actions .tile-body:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 12px;
  column-gap: 40px;
}
.tile-shelf-actions .tile-body img {
  max-width: 100%;
  border-radius: 10px;
}
.tile-shelf-actions .file-ops-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 14px;
  column-gap: 14px;
  width: 100%;
}
.tile-shelf-actions .file-ops-container ul li {
  font-size: 14px;
  color: #444;
  padding: 0 2px;
}

.tile-dropover-cloud {
  background: #2F18FF;
  position: relative;
  min-height: 400px;
}
.tile-dropover-cloud .tile-body {
  position: relative;
}
.tile-dropover-cloud .tile-body h5 {
  position: relative;
  color: white;
  top: -6px;
}
@media (max-width: 767px) {
  .tile-dropover-cloud .tile-body h5 {
    position: relative;
    left: 26px;
  }
}
.tile-dropover-cloud img.dropover-cloud-icon {
  position: absolute;
  top: 26px;
  left: 24px;
  width: 24px;
  height: 23px;
}
.tile-dropover-cloud span {
  display: block;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", "SF Pro Text", "SF Pro Icons", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: white;
  text-align: center;
  padding: 0 34px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-wrap: balance;
  transform: translate(-50%, -50%);
}
.tile-dropover-cloud a.more-button {
  position: absolute;
  bottom: 24px;
  right: 24px;
}

@media (max-width: 767px) {
  .tiles-container.two {
    grid-template-columns: 1fr;
    margin: 14px;
  }
  .tiles-container.single {
    margin: 14px;
    max-width: 100%;
  }
  .tile .tile-footer.tile-footer-push {
    position: unset;
    bottom: unset;
  }
  .tile-action-button {
    min-height: 400px;
  }
}
.list-container {
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .list-container.two {
    padding: 24px !important;
  }
  .list-container.one {
    padding: 24px !important;
  }
}
.list-container.two {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  column-gap: 52px;
  row-gap: 32px;
  align-items: top;
}
.list-container.single {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}

.list-element {
  display: block;
  width: 100%;
}

@media (max-width: 1023px) {
  .list-container.two {
    grid-template-columns: 1fr 1fr;
    padding: 0 34px;
  }
  .list-container.faq {
    grid-template-columns: 1fr;
    padding: 0 34px;
  }
}
@media (max-width: 319px) {
  .list-container {
    margin: 44px 24px 44px 24px;
  }
  .list-container.faq {
    grid-template-columns: 1fr;
    padding: 0 14px;
  }
  .list-container.two {
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
    row-gap: 12px;
    padding: 14px;
  }
}
.card {
  position: relative;
  display: block;
  width: 100%;
  background: #FFFFFF;
  border-radius: 33px;
}

.card-break {
  display: block;
  width: 100%;
  height: 30px;
}

.card .content {
  padding: 60px;
}

.card .heading {
  padding: 0;
  margin: 0 0 0.7em 0;
  font-weight: 800;
  font-size: 34px;
  color: #BD2457;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
.card .heading.small {
  font-size: 26px;
}

.card .body {
  font-weight: 600;
  font-size: 20px;
  color: #3A3A3A;
  letter-spacing: -0.01em;
  line-height: 1.5em;
  margin-bottom: 30px;
}
.card .body.small {
  font-size: 18px;
}
.card .body:last-child {
  margin-bottom: 0;
}

.card .separator {
  background-color: #F5F5F7;
  height: 1px;
  margin: 50px auto 50px auto;
}

.card-grid-container {
  width: 100%;
}
.card-grid-container.two-main-leading {
  display: grid;
  grid-template-columns: 60% auto;
  column-gap: 100px;
  align-items: center;
}
.card-grid-container.two-main-trailing {
  display: grid;
  grid-template-columns: auto 60%;
  column-gap: 100px;
  align-items: center;
}

.card-block {
  display: block;
  background: #FFFFFF;
}

/*
	Responsive
*/
@media (max-width: 1024px) {
  .card {
    width: unset;
    margin: 0 32px;
  }
  .card .content {
    padding: 40px;
  }
  .card-grid-container.two-main-leading {
    grid-template-columns: 55% auto;
    column-gap: 60px;
  }
  .card-grid-container.two-main-trailing {
    grid-template-columns: auto 55%;
    column-gap: 60px;
  }
}
@media (max-width: 767px) {
  .card {
    width: unset;
    margin: 0 16px;
    border-radius: 26px;
  }
  .card .content {
    padding: 30px;
  }
  .card .heading {
    font-size: 24px;
  }
  .card .separator {
    margin: 50px auto 38px auto;
  }
  .card .body {
    font-size: 16px;
  }
  .card-grid-container.two-main-leading {
    display: block;
  }
  .card-grid-container.two-main-trailing {
    display: block;
  }
}
.lead {
  display: block;
  margin: 0 auto 100px auto;
  width: 80%;
}
.lead.block {
  width: 100%;
}
.lead.no-margin {
  margin-bottom: 0;
}
.lead .video-container {
  margin-bottom: 2em;
}

.lead h3 {
  font-weight: 800;
  font-size: 40px;
  color: #BD2457;
  letter-spacing: -0.05em;
  line-height: 1.5em;
  margin-bottom: 26px;
}

.lead p {
  font-weight: 500;
  font-size: 22px;
  color: #3A3A3A;
  letter-spacing: -0.02em;
  line-height: 1.5em;
  margin: 0 0 1.7em 0;
}
.lead p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .lead {
    margin-bottom: 70px;
  }
  .lead h3 {
    font-size: 30px;
    margin-bottom: 18px;
  }
  .lead p {
    font-size: 20px;
  }
}
@media (max-width: 320px) {
  .lead {
    margin-bottom: 50px;
  }
  .lead h3 {
    font-size: 26px;
    margin-bottom: 14px;
  }
  .lead p {
    font-size: 20px;
  }
}
.fold-container {
  background: #163D66;
  background-image: url("/assets/images/fold-background-monterey-light.jpg");
  background-size: cover;
  min-height: 100vh;
}

.fold-container .app-icon {
  display: block;
  text-align: center;
  margin: 90px auto 0 auto;
}
.fold-container .app-icon img {
  display: block;
  margin: 0 auto;
  width: 231px;
  height: 220px;
}
.fold-container .app-icon h1 {
  margin-top: 24px;
  font-size: 30px;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.22);
}

.fold-container .body {
  display: block;
  max-width: 600px;
  padding: 0 14px;
  margin: 70px auto 70px auto;
}
.fold-container .body h2 {
  font-size: 34px;
  text-align: center;
  color: white;
  line-height: 1.4em;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.22);
}

@media (min-width: 769px) {
  .fold-container a.producthunt {
    position: absolute;
    bottom: 30px;
    left: calc(50% - 90px);
  }
}
@media (max-width: 768px) {
  .fold-container a.producthunt {
    display: block;
    margin-top: 60px;
  }
}
.fold-container a.producthunt img {
  display: block;
  margin: 0 auto;
}

.fold-container a.app-store {
  display: block;
  margin: 20px auto 0 auto;
  text-align: center;
  width: 157px;
  height: 40px;
  background-image: url("/assets/images/appstore-badge.png");
  background-size: 157px 40px;
}
.fold-container a.app-store:hover {
  opacity: 0.8;
}

.fold-container .download-container {
  margin-top: 26vh;
}

.fold-container a.whats-new {
  display: inline-block;
  text-align: center;
  margin: 26px auto 0 auto;
  padding: 8px 10px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.1s;
}
.fold-container a.whats-new:hover {
  background: rgba(0, 0, 0, 0.1);
}

.fold-container span.app-store-notice {
  display: block;
  margin-top: 14px;
  font-weight: 500;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.46px;
  text-align: center;
}

@media (max-width: 1024px) {
  .fold-container .body {
    max-width: 540px;
    margin-top: 46px;
  }
  .fold-container .body h2 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .fold-container .app-icon {
    margin: 40px auto 0 auto;
  }
  .fold-container .app-icon img {
    width: 200px;
    height: 193px;
  }
  .fold-container .app-icon h1 {
    font-size: 40px;
  }
  .fold-container .body {
    max-width: 500px;
    margin-top: 36px;
  }
  .fold-container .body h2 {
    font-size: 26px;
  }
}
@media (max-width: 320px) {
  .fold-container .app-icon img {
    width: 145px;
    height: 138px;
  }
  .fold-container .app-icon h1 {
    font-size: 34px;
  }
  .fold-container .body {
    max-width: 500px;
    margin-top: 26px;
  }
  .fold-container .body h2 {
    font-size: 20px;
  }
}
/*
	Home specific content
*/
body.home-page .body-xl {
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", "SF Pro Text", "SF Pro Icons", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  line-height: 1.22em;
  text-wrap: balance;
}

.section-container.fold {
  min-height: 100vh;
}

.section-container.fold .hero-fold-footer-container {
  display: block;
  width: 100%;
  color: white;
  position: absolute;
  bottom: 24px;
}
.section-container.fold .hero-fold-footer-container .hero-fold-footer-content {
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

.hero-fold .hero-heading {
  position: relative;
  z-index: 999 !important;
  max-width: 700px;
}
.hero-fold .hero-accessory {
  max-width: 720px;
  margin-top: -50px;
  z-index: -1;
}

.video-container {
  align-self: center;
}
.video-container video {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 25px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .video-container {
    max-height: 50vh;
  }
  .video-container video {
    display: block;
    margin: 0 auto;
    max-height: 50vh;
    border-radius: 18px;
  }
}
@media (max-width: 768px) {
  .video-container.landscape {
    margin: 30px auto;
    width: 100%;
    max-height: unset;
  }
  .video-container.landscape video {
    display: block;
    margin: 0 auto;
    max-height: unset;
    border-radius: 4px;
  }
}

.card-list-element {
  display: grid;
  grid-template-columns: 30% auto;
  column-gap: 100px;
  align-items: top;
}
.card-list-element .card-list-element-title {
  place-self: top;
  justify-self: end;
  text-align: right;
}
.card-list-element .card-list-element-title h5 {
  margin: 0;
}
@media (max-width: 1023px) {
  .card-list-element {
    column-gap: 70px;
  }
}
@media (max-width: 767px) {
  .card-list-element {
    grid-template-columns: 30% auto;
    column-gap: 30px;
  }
  .card-list-element .card-list-element-title h5.small {
    font-size: 20px;
  }
  .card-list-element .card-list-element-body p.small {
    font-size: 16px;
  }
}

.card-share-extension-footer {
  height: 400px;
  background-image: url("/assets/images/share-extension.jpg");
  background-position: top right;
  background-size: cover;
  border-bottom-right-radius: 33px;
  border-bottom-left-radius: 33px;
}
@media (max-width: 767px) {
  .card-share-extension-footer {
    height: 280px;
    border-bottom-right-radius: 26px;
    border-bottom-left-radius: 26px;
  }
}

.row-copy-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}
@media (min-width: 501px) {
  .row-copy-links .card:first-child {
    margin-right: 0;
  }
  .row-copy-links .card:last-child {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .row-copy-links {
    display: block;
  }
  .row-copy-links .card {
    margin: 0 16px 30px 16px;
  }
}

.card-quick-actions {
  background: #020f18;
  background-image: url("/assets/images/quick-actions-background-regular.jpg");
  background-size: 1225px 825px;
  background-position: 90% -50px;
}
.card-quick-actions .content {
  max-width: 46%;
}
.card-quick-actions .content h4 {
  color: #ffffff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.28);
}
.card-quick-actions .content p {
  color: white;
  opacity: 0.94;
  color: #ffffff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .card-quick-actions {
    background-position: right -50px;
    background-size: 170%;
  }
  .card-quick-actions .content {
    max-width: 40%;
  }
}
@media (max-width: 600px) {
  .card-quick-actions {
    background-image: url("/assets/images/quick-actions-background-mobile.jpg");
    background-size: cover;
    background-position: right top;
  }
  .card-quick-actions .content {
    display: block;
    max-width: 100%;
    padding-top: 300px;
  }
}

.card-dropover-cloud {
  background: #1767ff;
  color: white;
  align-self: stretch;
}
.card-dropover-cloud .icon img {
  width: 27px;
  height: 26px;
  margin-right: 6px;
}
.card-dropover-cloud .icon span {
  line-height: 26px;
  font-size: 23px;
  letter-spacing: -0.82px;
  position: relative;
  top: -4px;
}
.card-dropover-cloud .icon span.emphasized {
  font-weight: 800;
  top: unset;
}
.card-dropover-cloud .tagline {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 800;
  font-size: 38px;
  color: #ffffff;
  letter-spacing: -0.04em;
  text-align: center;
}
.card-dropover-cloud a.explore {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: block;
  width: 45px;
  height: 45px;
  background-image: url("/assets/images/dropover-cloud-explore-button.png");
  background-size: 45px 45px;
}
.card-dropover-cloud a.explore:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .card-dropover-cloud .tagline {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .card-dropover-cloud {
    min-height: 85vh;
    margin: 0 !important;
    border-radius: 0 !important;
  }
  .card-dropover-cloud a.explore {
    bottom: 30px;
    right: 30px;
    width: 32px;
    height: 32px;
    background-image: url("/assets/images/dropover-cloud-explore-button.png");
    background-size: 32px 32px;
  }
}

/*
	Menubar section
*/
.menubar-section-container {
  position: relative;
  min-height: 100vh;
  background: url("/assets/images/menubar-section-background.jpg");
  background-size: cover;
  position: top right;
}

.menubar-section-container .menubar-menu {
  display: block;
  position: absolute;
  top: 25px;
  right: 2px;
  width: 227px;
  height: 199px;
  background: url("/assets/images/menubar_menu.png");
  background-size: 227px 199px;
}
@media (max-width: 400px) {
  .menubar-section-container .menubar-menu {
    visibility: hidden;
  }
}

.menubar-section-container .menubar {
  position: absolute;
  top: 0;
  display: block;
  height: 32px;
  width: 100%;
  background: rgba(0, 0, 0, 0.05);
}

.menubar-section-container .menubar .menubar-item-container {
  padding: 0 20px;
  display: grid;
  height: 32px;
  grid-template-columns: auto auto;
  grid-column-gap: 20px;
  justify-items: end;
  justify-content: end;
}

.menubar-section-container .menubar .menubar-item {
  height: 100%;
}
.menubar-section-container .menubar .menubar-item.time {
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 32px;
}
.menubar-section-container .menubar .menubar-item.dropover {
  margin-top: 2px;
  display: block;
  width: 50px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  background-image: url("/assets/images/menubar-icon.png");
  background-size: 30px 30px;
  background-position: center;
  background-repeat: no-repeat;
}

.menubar-section-container .lead p {
  color: white;
}

/*
	Features list
*/
.features-list-container ul {
  padding: 0 128px;
  column-count: 2;
  column-gap: 30px;
}
@media (max-width: 1024px) {
  .features-list-container ul {
    padding: 0 64px;
  }
}
@media (max-width: 768px) {
  .features-list-container ul {
    padding: 0 16px;
    column-count: 2;
  }
}

.features-list-container ul li {
  font-weight: 600;
  font-size: 20px;
  color: #3a3a3a;
  letter-spacing: -0.01em;
  line-height: 1.5em;
  list-style-type: none;
  margin-bottom: 16px;
  display: inline-block;
}
.features-list-container ul li mark {
  background: none;
  color: #453bd2;
  font-weight: 700;
}
@media (max-width: 768px) {
  .features-list-container ul li {
    font-size: 16px;
  }
}

/*
	Screenshots
*/
.screenshots-section-container {
  background: black;
}

.screenshots-container {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .screenshots-container {
    padding: 0 32px;
  }
}

.screenshots-container-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  margin-bottom: 30px;
  grid-column-gap: 6px;
  margin-bottom: 6px;
}
.screenshots-container-row:nth-child(even) {
  left: -70px;
}
@media (max-width: 768px) {
  .screenshots-container-row {
    min-height: 140px;
    grid-column-gap: 8px;
    margin-bottom: 8px;
  }
  .screenshots-container-row:nth-child(even) {
    left: -30px;
  }
}
@media (max-width: 320px) {
  .screenshots-container-row {
    min-height: 50px;
    grid-column-gap: 8px;
    margin-bottom: 8px;
  }
  .screenshots-container-row:nth-child(even) {
    left: -30px;
  }
}

.screenshots-container .screenshots-container-item {
  position: relative;
  min-height: 330px;
  background: #333;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background-position: center;
  background-size: cover;
}
.screenshots-container .screenshots-container-item a.explore {
  display: block;
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  background-image: url("/assets/images/dropover-cloud-explore-button.png");
  background-size: 30px;
  background-repeat: no-repeat;
}
.screenshots-container .screenshots-container-item a.explore.dark, .screenshots-container .screenshots-container-item a.explore.tile-shelf {
  background-image: url("/assets/images/dropover-cloud-explore-button-dark.png");
  background-size: 30px;
  background-repeat: no-repeat;
}
.screenshots-container .screenshots-container-item a.explore:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .screenshots-container .screenshots-container-item {
    min-height: 180px;
  }
}
@media (max-width: 768px) {
  .screenshots-container .screenshots-container-item {
    min-height: 140px;
  }
  .screenshots-container .screenshots-container-item a.explore {
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background-image: url("/assets/images/dropover-cloud-explore-button.png");
    background-size: 18px;
    background-repeat: no-repeat;
  }
}
@media (max-width: 320px) {
  .screenshots-container .screenshots-container-item {
    min-height: 100px;
  }
  .screenshots-container .screenshots-container-item a.explore {
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background-image: url("/assets/images/dropover-cloud-explore-button.png");
    background-size: 18px;
    background-repeat: no-repeat;
  }
}

.download-section-container {
  position: relative;
  min-height: 100vh;
}
.download-section-container .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.download-section-container .download-container {
  text-align: center;
}
.download-section-container .download-container img.app-icon {
  display: block;
  margin: 0 auto;
  width: 231px;
  height: 220px;
}
.download-section-container .download-container span.title {
  display: block;
  margin-top: 21px;
  font-size: 44px;
  font-weight: 800;
  color: #3d3e3f;
  letter-spacing: -1.57px;
  text-align: center;
}
.download-section-container .download-container a.app-store-badge {
  display: block;
  margin: 100px auto 0 auto;
  text-align: center;
  width: 157px;
  height: 40px;
  background-image: url("/assets/images/appstore-badge.png");
  background-size: 157px 40px;
}
.download-section-container .download-container a.app-store-badge:hover {
  opacity: 0.7;
}
.download-section-container .download-container span.app-store-notice {
  display: block;
  margin-top: 14px;
  font-weight: 500;
  font-size: 11px;
  color: #6d6d6d;
  letter-spacing: -0.46px;
}

/*
	Cloud modal
*/
#dropover-cloud:target {
  display: block;
}

.cloud-modal {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  z-index: 99999;
  background: white;
}

.cloud-modal a.close {
  display: block;
  position: absolute;
  right: 32px;
  top: 32px;
  width: 55px;
  height: 55px;
  background-image: url("/assets/images/modal-close-button.png");
  background-size: 55px;
}
@media (max-width: 400px) {
  .cloud-modal a.close {
    width: 35px;
    height: 35px;
    background-image: url("/assets/images/modal-close-button.png");
    background-size: 35px;
  }
}

.cloud-modal-section-container .container .lead h3 {
  color: #1959ff !important;
}

@media (max-width: 1024px) {
  .cloud-features-container {
    padding: 0 32px;
  }
}

.cloud-features-item {
  display: grid;
  grid-template-columns: auto 30%;
  grid-template-areas: "image body";
  column-gap: 45px;
  align-items: top;
}
.cloud-features-item.reversed {
  grid-template-columns: 30% auto;
  grid-template-areas: "body image";
}
@media (max-width: 768px) {
  .cloud-features-item {
    display: block;
  }
}

.cloud-features-item-separator {
  background-color: #d9d9d9;
  height: 1px;
  margin: 50px auto 50px auto;
}

.cloud-features-item-column.item-column-image {
  grid-area: image;
}
.cloud-features-item-column.item-column-image img {
  max-width: 100%;
  border-radius: 18px;
}
.cloud-features-item-column.item-column-body {
  grid-area: body;
}
.cloud-features-item-column.item-column-body h4 {
  font-weight: 700;
  font-size: 19px;
  color: #3a3a3a;
  letter-spacing: -0.01em;
  line-height: 1.5em;
  margin-bottom: 1.5em;
}
.cloud-features-item-column.item-column-body p {
  font-weight: 500;
  font-size: 17px;
  color: #3a3a3a;
  letter-spacing: -0.01em;
  line-height: 1.42em;
}
@media (max-width: 768px) {
  .cloud-features-item-column.item-column-image img {
    margin-top: 24px;
    border-radius: 6px;
  }
  .cloud-features-item-column.item-column-body h4 {
    margin-bottom: 10px;
  }
}

/*
	Ratings
*/
.ratings-section-container {
  background: white;
}

@media (max-width: 768px) {
  #ratings-container-id {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.ratings-summary {
  margin-top: 14px;
  color: #5a5a5a;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.marker-highlight {
  position: relative;
  display: inline-block;
  padding: 0.05em 0.24em;
  font-weight: 700;
  color: #2f2a00;
  z-index: 0;
}

.marker-highlight::before {
  content: "";
  position: absolute;
  left: -0.26em;
  right: -0.26em;
  top: 54%;
  height: 1.46em;
  transform: translateY(-50%) rotate(-1.4deg) scaleX(0.08);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 224, 90, 0.9) 0%, rgba(255, 216, 62, 0.9) 40%, rgba(255, 227, 109, 0.9) 100%);
  border-radius: 58% 42% 52% 46%/44% 56% 42% 58%;
  clip-path: polygon(1% 31%, 8% 20%, 24% 18%, 42% 24%, 63% 18%, 82% 24%, 98% 29%, 99% 75%, 92% 87%, 74% 84%, 56% 89%, 38% 84%, 20% 88%, 4% 83%);
  z-index: -1;
  opacity: 0;
}

.marker-highlight::after {
  content: "";
  position: absolute;
  left: -0.16em;
  right: -0.14em;
  top: 50%;
  height: 0.92em;
  transform: translateY(-50%) rotate(0.9deg) scaleX(0.1);
  transform-origin: left center;
  background: rgba(255, 235, 120, 0.42);
  border-radius: 50% 50% 44% 56%/56% 44% 58% 42%;
  z-index: -1;
  opacity: 0;
}

#ratings-container-id .hero-container.visible .marker-highlight::before {
  animation: marker-reveal-main 680ms cubic-bezier(0.22, 0.9, 0.32, 1) 520ms forwards;
}

#ratings-container-id .hero-container.visible .marker-highlight::after {
  animation: marker-reveal-soft 520ms cubic-bezier(0.2, 0.88, 0.28, 1) 650ms forwards;
}

@keyframes marker-reveal-main {
  0% {
    opacity: 0;
    transform: translateY(-50%) rotate(-1.4deg) scaleX(0.08);
  }
  72% {
    opacity: 1;
    transform: translateY(-50%) rotate(-1.4deg) scaleX(1.06);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) rotate(-1.4deg) scaleX(1);
  }
}
@keyframes marker-reveal-soft {
  0% {
    opacity: 0;
    transform: translateY(-50%) rotate(0.9deg) scaleX(0.1);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) rotate(0.9deg) scaleX(1);
  }
}
.ratings-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin: 84px auto 48px;
}
@media (max-width: 768px) {
  .ratings-carousel {
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .ratings-carousel {
    grid-template-columns: 1fr;
  }
}

.ratings-item {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  border: 1px solid #ececf1;
  padding: 20px 22px;
  background: #f5f5f7;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.ratings-item .ratings-item-body p {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  color: #1d1d1f;
  letter-spacing: -0.012em;
  line-height: 1.45;
  padding-top: 0;
  padding-right: 0;
}
.ratings-item .ratings-item-body p strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.012em;
  line-height: 1.2;
}
.ratings-item .ratings-item-body p strong::after {
  content: "★★★★★";
  display: block;
  margin-top: 4px;
  color: #ff9f0a;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1;
}
.ratings-item .ratings-item-body p br {
  display: none;
}
.ratings-item .ratings-item-footer {
  margin-top: 18px;
  border: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
}
.ratings-item .ratings-item-footer span {
  font-size: 11px;
  color: #6e6e73;
  letter-spacing: -0.012em;
}
.ratings-item .ratings-item-footer span.author {
  font-weight: 500;
  color: #6e6e73;
  overflow-wrap: anywhere;
}
.ratings-item .ratings-item-footer span.date {
  opacity: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  margin-left: auto;
}
@media (max-width: 768px) {
  .ratings-item {
    padding: 20px;
  }
  .ratings-item .ratings-item-body p {
    font-size: 14px;
    padding-top: 0;
    padding-right: 0;
  }
  .ratings-item .ratings-item-body p strong {
    font-size: 15px;
  }
  .ratings-item .ratings-item-body p strong::after {
    font-size: 14px;
  }
  .ratings-item .ratings-item-footer span {
    font-size: 11px;
  }
}
@media (max-width: 400px) {
  .ratings-item {
    padding: 18px;
  }
  .ratings-item .ratings-item-footer {
    margin-top: 16px;
  }
  .ratings-item .ratings-item-footer span {
    width: 100%;
  }
  .ratings-item .ratings-item-body p {
    font-size: 13px;
    padding-top: 0;
    padding-right: 0;
  }
  .ratings-item .ratings-item-body p strong {
    font-size: 15px;
  }
  .ratings-item .ratings-item-body p strong::after {
    font-size: 14px;
  }
}

.lightbox-container {
  position: relative;
}
@media (max-width: 375px) {
  .lightbox-container {
    padding: 50px 0;
  }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox img {
  max-width: 96%;
  max-height: 96%;
  margin-top: 2%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox .close-button {
  background: url("/assets/images/shelf-close-button.svg");
  background-size: 36px;
  background-repeat: no-repeat;
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  right: 32px;
  top: 32px;
  z-index: 998;
}
.lightbox .close-button:hover {
  opacity: 0.6;
}
.lightbox:target {
  outline: none;
  display: block;
  -webkit-animation: fadeAnimation 0.2s;
  -moz-animation: fadeAnimation 0.2s;
  -o-animation: fadeAnimation 0.2s;
  animation: fadeAnimation 0.2s;
}

@keyframes fadeAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.faq-list-container {
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq-list-container {
    /* padding: 24px; */
  }
}

.faq-list-element {
  display: block;
  width: 100%;
}

.faq-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
.faq-toggle:focus {
  outline: none;
}
.faq-toggle h5 {
  margin: 0;
}

button.faq-toggle {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
button.faq-toggle h5 {
  max-width: unset;
  margin: 0;
  padding: 14px 0;
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 1.4em;
  font-family: "SF Pro Text", "SF Pro Icons", -apple-system, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.1s ease;
}
button.faq-toggle h5:hover {
  opacity: 0.6;
}

.faq-content {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.3s ease;
}
.faq-content p {
  margin-left: 0;
  padding-left: 0;
}
.faq-content ul {
  padding-left: 20px;
  margin-left: 0;
}

.faq-content.open {
  padding-top: 10px;
  opacity: 1;
  transition: height 0.4s ease, opacity 0.3s ease;
}
.faq-content.open::after {
  content: "";
  display: block;
  margin-top: 10px;
}

.section-container.fold {
  padding-top: 120px;
  min-height: 100vh;
}

.section-container.fold .hero-fold-footer-container {
  display: block;
}

.hero-fold .hero-heading {
  position: relative;
  z-index: 999 !important;
  max-width: 700px;
}
.hero-fold .hero-body h2 {
  font-weight: 600;
  font-size: 38px !important;
}
.hero-fold .hero-accessory {
  max-width: 720px;
  margin-top: -50px;
  z-index: -1;
}

.fold-container-footer {
  margin-top: 130px;
  width: 100%;
  display: block;
}
.fold-container-footer .content {
  max-width: 500px;
  margin: 0 auto;
}
.fold-container-footer .content a {
  display: table;
  margin: 0 auto;
  clear: left;
  margin-bottom: 16px;
}
.fold-container-footer .content a.emphasized {
  padding: 14px 20px;
  background: #0279FF;
  color: white;
  border-radius: 99px;
  text-align: center;
  font-size: 18px;
  letter-spacing: -0.3px;
  font-weight: 500;
}
.fold-container-footer .content a.emphasized:hover {
  background: #409AFF;
}
.fold-container-footer .content a.link {
  color: #0279FF;
  padding: 14px 20px;
  border-radius: 99px;
  text-align: center;
  font-size: 16px;
  letter-spacing: -0.3px;
  font-weight: 500;
}
.fold-container-footer .content a.link svg.chevron {
  position: relative;
  top: 1px;
  margin-left: 2px;
  width: 8px;
  height: 14px;
  color: #0279FF;
}
.fold-container-footer .content a.link:hover {
  color: #409AFF;
}
.fold-container-footer .content a.link:hover svg.chevron {
  color: #409AFF;
}

@media (max-width: 768px) {
  .section-container-fold {
    padding-bottom: 20px;
  }
}
.definition-list-item {
  display: grid;
  grid-template-columns: 30% auto;
  column-gap: 30px;
  align-items: top;
  margin-bottom: 60px;
}
.definition-list-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 400px) {
  .definition-list-item {
    display: block;
    margin-bottom: 30px;
  }
}

.definition-list-item-header {
  justify-self: end;
}
.definition-list-item-header h4 {
  font-weight: 700;
  font-size: 1.5em;
  color: #5E5E5E;
  letter-spacing: -0.01em;
  line-height: 1.5em;
  margin-top: 0;
  padding-top: 0;
}

.definition-list-item-body {
  justify-self: start;
  margin-top: 8px;
}
.definition-list-item-body p {
  font-weight: 500;
  font-size: 1em;
  color: #5E5E5E;
  letter-spacing: -0.49px;
  line-height: 24px;
}

.testflight-container {
  position: relative;
  max-width: 740px;
  width: 100%;
  min-height: calc(100vh - 140px);
  margin: 0 auto;
}
.testflight-container .testflight-content-container {
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
}
.testflight-container .testflight-content-container .lead h3 {
  color: #156CD0;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", "SF Pro Text", "SF Pro Icons", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.testflight-container .testflight-content-container img {
  display: block;
  margin: 20px auto 44px;
  width: 250px;
  height: 250px;
}
.testflight-container .testflight-content-container .button-container {
  margin: 100px auto;
  display: block;
  text-align: center;
}
.testflight-container .testflight-content-container .button-container a {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 18px;
  border-radius: 100px;
  background: #156CD0;
  color: white;
  font-size: 18px;
  font-weight: 700;
}
.testflight-container .testflight-content-container .button-container a:hover {
  background: #2e85ea;
}
.testflight-container .testflight-content-container .button-container span.notice {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #333;
  margin-top: 15px;
}

.diagnostics-container {
  display: block;
  position: relative;
  max-width: 700px;
  width: 100%;
  min-height: calc(100vh - 140px);
  margin: 0 auto;
}
.diagnostics-container .diagnostics-content-container {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
  text-align: center;
}
.diagnostics-container .diagnostics-content-container span.notice {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  font-style: normal;
  color: #ccc;
  letter-spacing: -0.49px;
  line-height: 1.7em;
}
.diagnostics-container .diagnostics-content-container .diagnostics-content {
  display: block;
  margin: 6px auto;
  padding: 30px;
  border-radius: 8px;
  background: #F8F8F8;
}
.diagnostics-container .diagnostics-content-container .diagnostics-content span {
  display: block;
}
.diagnostics-container .diagnostics-content-container .diagnostics-content span.title {
  font-weight: 600;
  font-size: 16px;
  font-style: normal;
  color: #0088FF;
  letter-spacing: -0.49px;
  line-height: 1.7em;
}
.diagnostics-container .diagnostics-content-container .diagnostics-content span.value {
  font-size: 0.9rem;
  line-height: 1.66667;
  font-weight: 400;
  letter-spacing: -0.027em;
  font-family: SF Mono, SFMono-Regular, ui-monospace, Menlo, monospace;
}

article {
  padding: 4em 8em;
}
@media (max-width: 1024px) {
  article {
    padding: 24px;
  }
}
@media (max-width: 400px) {
  article {
    padding: 18px;
  }
}

article h1.intro {
  font-weight: 800;
  font-size: 2.7em;
  color: #bd2457;
  line-height: 1.3em;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  article h1.intro {
    font-size: 2em;
    margin-bottom: 0.8em;
  }
}
@media (max-width: 400px) {
  article h1.intro {
    font-size: 1.7em;
    margin-bottom: 0.5em;
  }
}

article p.intro {
  font-weight: 500;
  font-size: 22px;
  color: #3a3a3a;
  letter-spacing: -0.02em;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  article p.intro {
    font-size: 19x;
  }
}
article p.intro:last-child {
  margin-bottom: 0;
}

span.intro-metadata {
  display: block;
  max-width: 600px;
  margin: 0 auto 7px auto;
  color: #888;
  font-size: 14px;
}

article h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  line-height: 1.2em;
  margin-bottom: 0.2em;
  max-width: 600px;
  margin: 0 auto;
}

article h1 {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  article h1 {
    font-size: 1.9em;
  }
}

article h2 {
  margin-bottom: 16px;
  line-height: 1.2em;
}
@media (max-width: 768px) {
  article h2 {
    font-size: 1.8em;
  }
}

article h3 {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.4em;
}
@media (max-width: 768px) {
  article h3 {
    font-size: 20px;
  }
}

article h4 {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1.3em;
}
@media (max-width: 768px) {
  article h4 {
    font-size: 16px;
  }
}

article h5 {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.2em;
}
@media (max-width: 768px) {
  article h5 {
    font-size: 14px;
  }
}

article h6 {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.2em;
}
@media (max-width: 768px) {
  article h6 {
    font-size: 13px;
  }
}

article .content-section {
  background: #f5f5f7;
  padding: 4em;
  max-width: 600px;
  margin: 80px auto 0 auto;
  border-radius: 1em;
}
article .content-section span.title {
  color: #777;
  font-weight: bold;
  display: block;
  margin-bottom: 16px;
}
article .content-section span.subtitle {
  color: #999;
  font-weight: regular;
  font-size: 15px;
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  article .content-section {
    margin: 40px auto 0 auto;
    padding: 2em;
  }
}

article p {
  max-width: 600px;
  margin: 0 auto 24px auto;
  line-height: 1.5em;
  color: #222 !important;
}
article p.muted {
  color: #555;
}

article ul,
article ol {
  max-width: 600px;
  margin: 1.3em auto 1.3em auto;
  margin-top: 1.3em;
  padding-left: 1.5em;
}

article ul li,
article ol li {
  background-color: #fff;
  color: #222;
}

article ol {
  margin-top: 1.3em;
  padding-left: 1.5em;
}

article .separator {
  background-color: #f5f5f7;
  height: 1px;
  margin: 50px auto 50px auto;
  max-width: 600px;
}
article .separator.small {
  margin: 20px auto 20px auto;
}

article img {
  max-width: 100%;
  border-radius: 8px;
}

article img.rounded {
  border-radius: 12px;
  margin-bottom: 1.5em;
  width: 100%;
  box-shadow: 0 6px 25px 0 rgba(0, 0, 0, 0.25);
}

article pre {
  padding: 12px;
  border-radius: 12px;
}

span.note {
  display: block;
  padding: 16px;
  background-color: #edf5ff;
  border-radius: 8px;
  border: 1px solid #cde5ff;
}
span.note.gray {
  background: #e4e4e4;
  border: none;
}
span.note.warning {
  background: #fff4f4;
  border: 1px solid #f5c2c2;
  color: #a94442;
}

article img + em,
article img + br + em {
  display: block;
  max-width: 600px;
  margin: 8px auto 24px auto;
  font-size: 12px;
  color: #333;
  line-height: 1.45;
}

article .button-container {
  margin: 40px auto;
  display: block;
  text-align: center;
}
article .button-container a {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 18px;
  border-radius: 100px;
  background: #156cd0;
  color: white;
  font-size: 18px;
  font-weight: 700;
}
article .button-container a:hover {
  background: #2e85ea;
}

article table {
  width: 100%;
  max-width: 600px;
  margin: 2em auto;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5em;
}
article table th,
article table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e5e5;
}
article table th {
  background-color: #fafafa;
  font-weight: 600;
  color: #333;
}
article table td {
  color: #444;
}
article table tr:last-child td {
  border-bottom: none;
}
article table code {
  font-family: SFMono-Regular, Consolas, monospace;
  background: #f5f5f7;
  padding: 2px 4px;
  border-radius: 4px;
}
@media (max-width: 400px) {
  article table {
    font-size: 14px;
  }
  article table th,
  article table td {
    padding: 10px 12px;
  }
}

.highlight table td {
  padding: 5px;
}

.highlight table pre {
  margin: 0;
}

.highlight, .highlight .w {
  color: #24292f;
  background-color: #f6f8fa;
}

.highlight .k, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt, .highlight .kv {
  color: #cf222e;
}

.highlight .gr {
  color: #f6f8fa;
}

.highlight .gd {
  color: #82071e;
  background-color: #ffebe9;
}

.highlight .nb {
  color: #953800;
}

.highlight .nc {
  color: #953800;
}

.highlight .no {
  color: #953800;
}

.highlight .nn {
  color: #953800;
}

.highlight .sr {
  color: #116329;
}

.highlight .na {
  color: #116329;
}

.highlight .nt {
  color: #116329;
}

.highlight .gi {
  color: #116329;
  background-color: #dafbe1;
}

.highlight .kc {
  color: #0550ae;
}

.highlight .l, .highlight .ld, .highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
  color: #0550ae;
}

.highlight .sb {
  color: #0550ae;
}

.highlight .bp {
  color: #0550ae;
}

.highlight .ne {
  color: #0550ae;
}

.highlight .nl {
  color: #0550ae;
}

.highlight .py {
  color: #0550ae;
}

.highlight .nv, .highlight .vc, .highlight .vg, .highlight .vi, .highlight .vm {
  color: #0550ae;
}

.highlight .o, .highlight .ow {
  color: #0550ae;
}

.highlight .gh {
  color: #0550ae;
  font-weight: bold;
}

.highlight .gu {
  color: #0550ae;
  font-weight: bold;
}

.highlight .s, .highlight .sa, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .sx, .highlight .s1, .highlight .ss {
  color: #0a3069;
}

.highlight .nd {
  color: #8250df;
}

.highlight .nf, .highlight .fm {
  color: #8250df;
}

.highlight .err {
  color: #f6f8fa;
  background-color: #82071e;
}

.highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cp, .highlight .cpf, .highlight .c1, .highlight .cs {
  color: #6e7781;
}

.highlight .gl {
  color: #6e7781;
}

.highlight .gt {
  color: #6e7781;
}

.highlight .ni {
  color: #24292f;
}

.highlight .si {
  color: #24292f;
}

.highlight .ge {
  color: #24292f;
  font-style: italic;
}

.highlight .gs {
  color: #24292f;
  font-weight: bold;
}

/*# sourceMappingURL=application.css.map */