/* ==========================================================================
   App Page Template (page-app.php + tmpl/header-app.php)
   ========================================================================== */
/* ------------------------
   Variables
------------------------ */
/* ==========================================================================
   App Page Template (page-app.php + tmpl/header-app.php)
   ========================================================================== */
/* ------------------------
   Mixins
------------------------ */
.app-page {
  padding: unset;
}
.app-page .not--device section {
  width: 100%;
  padding-inline: 0;
}

.app-store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.app-store-badges a {
  display: inline-block;
  line-height: 0;
}
.app-store-badges img {
  height: 44px;
  width: auto;
}

/* ------------------------
	App Header / Nav
------------------------ */
.app-header {
  position: absolute;
  z-index: 20;
  background: transparent;
  width: 100%;
}
.app-header__inner {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
@media only screen and (min-width: 1010px) {
  .not--device .app-header__inner {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

.app-header__logo {
  flex-shrink: 0;
}
.app-header__logo img {
  display: block;
  width: 150px;
  height: auto;
}
@media only screen and (min-width: 1010px) {
  .not--device .app-header__logo img {
    width: 170px;
  }
}

.app-header__nav .menu-wrap {
  display: none;
}
.app-header__nav .mobile-only-navlink {
  text-align: center;
}
.app-header__nav .touch-menu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  max-width: 340px;
  height: auto;
  background: #173752;
  z-index: 100;
  padding: 90px 30px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.app-header__nav .hover-menu {
  display: flex;
  align-items: center;
  font-size: inherit;
}
.app-header__nav .hover-menu .app-header__nav-utility {
  display: none;
}
.app-header__nav .touch-menu .main-menu,
.app-header__nav .hover-menu .main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: none;
  height: auto;
  width: auto;
  overflow-y: visible;
  transform: none;
  transition: none;
  font-size: inherit;
  text-align: left;
}
.app-header__nav .touch-menu .main-menu > li {
  display: block;
  height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.app-header__nav .touch-menu .main-menu > li > a,
.app-header__nav .hover-menu .main-menu > li > a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  letter-spacing: normal;
  text-decoration: none;
}
.app-header__nav .touch-menu .main-menu > li > a:hover, .app-header__nav .touch-menu .main-menu > li > a:focus,
.app-header__nav .hover-menu .main-menu > li > a:hover,
.app-header__nav .hover-menu .main-menu > li > a:focus {
  color: #eaf0fa !important;
  text-decoration: none;
}
.app-header__nav .hover-menu .main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.app-header__nav .hover-menu .main-menu > li {
  display: block;
  height: auto;
}
.app-header__nav .hover-menu .main-menu > li > a {
  padding: 34px 0;
  color: #fff;
  white-space: nowrap;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}
.app-header__nav .touch-menu .close-menu {
  display: block;
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 0;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.app-header__nav .hover-menu .close-menu {
  display: none;
}
.app-header__nav .nav-dropdown-button {
  display: none;
}
.app-header__nav-utility {
  margin-bottom: 30px;
}
.app-header__utility {
  display: none;
  text-align: right;
  flex-shrink: 0;
}
@media only screen and (min-width: 1010px) {
  .not--device .app-header__utility {
    display: block;
  }
}

.app-header__phone {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.app-header__phone:hover, .app-header__phone:focus {
  color: #a3d8f3;
  text-decoration: none;
}
.app-header__cream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.app-header__cream svg {
  width: 12px;
  height: auto;
  fill: rgba(255, 255, 255, 0.85);
}
.app-header__cream:hover, .app-header__cream:focus {
  color: #ffffff;
  text-decoration: none;
}
.app-header__cream:hover svg, .app-header__cream:focus svg {
  fill: #ffffff;
}
.app-header .menu-trigger {
  display: block;
  cursor: pointer;
}
@media only screen and (min-width: 1010px) {
  .not--device .app-header .menu-trigger {
    display: none;
  }
}

.app-header .menu-trigger .touch-button-icon svg {
  width: 26px;
  height: auto;
  fill: #ffffff;
}

body.menu-is-open .app-header__nav .touch-menu {
  transform: translateX(0);
}

body.menu-is-open .app-header__nav .touch-menu .main-menu {
  transform: none;
}

/* ------------------------
	Hero
------------------------ */
.app-hero {
  position: relative;
  background: #fff;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  color: #ffffff;
  height: 100%;
  padding: 150px 20px 0 !important;
}
@media only screen and (min-width: 1010px) {
  .not--device .app-hero {
    border-radius: 0 0 60px 60px;
  }
}

.app-hero__bg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 980px) {
  .app-hero__bg {
    background-position: 40% center;
  }
}
.app-hero__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.89;
  background: radial-gradient(#568abe 0%, #386ea4 41.38%, #0e4276 100%);
}
.app-hero__inner {
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-top: 50px;
  height: 100%;
  text-align: left;
}
@media (max-width: 1010px) {
  .app-hero__inner {
    padding-top: 70px;
    padding-bottom: 0;
    padding-inline: 0;
    flex-wrap: wrap;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .app-hero__inner {
    padding-top: 20px;
  }
}
.app-hero__content {
  padding-bottom: 40px;
}
.app-hero__media {
  max-width: 50%;
  display: flex;
  height: stretch;
  flex-direction: column;
  justify-content: end;
}
@media (max-width: 980px) {
  .app-hero__media {
    margin-top: 40px;
    max-width: 100%;
  }
}
.app-hero__media img {
  max-width: 100%;
  height: auto;
}
.app-hero__eyebrow {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
  margin-bottom: 1em;
}
.app-hero__heading {
  font-size: 38px;
  font-size: 2.375rem;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 30px;
}
@media only screen and (min-width: 768px) {
  .app-hero__heading {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
  }
}
@media only screen and (min-width: 1010px) {
  .not--device .app-hero__heading {
    font-size: 58px;
    font-size: 3.625rem;
    line-height: 1.1;
    font-weight: 700;
  }
}

.app-hero__text {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5em;
}
.app-hero .app-heading {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 1em;
}
.app-hero__badge {
  display: inline-block;
  background: #5fbb52;
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 24px;
  margin-bottom: 2.5em;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .app-hero__badge {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
  }
}
@media only screen and (min-width: 1010px) {
  .not--device .app-hero__badge {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.1;
    font-weight: 600;
  }
}

.app-hero .app-store-badges {
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .app-hero .app-store-badges {
    justify-content: center;
  }
}
@media only screen and (min-width: 1010px) {
  .not--device .app-hero .app-store-badges {
    justify-content: flex-start;
  }
}

.app-hero__download-heading {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 0.75em;
}
@media only screen and (min-width: 768px) {
  .app-hero__download-heading {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.3;
  }
}

/* ------------------------
	App Intro
------------------------ */
.app-section {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(#C0CEDB, #fff);
  padding: unset !important;
}
@media only screen and (min-width: 768px) {
  .app-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.app-intro {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media only screen and (min-width: 1010px) {
  .not--device .app-intro {
    flex-direction: row;
    gap: 80px;
  }
}

.app-intro__media {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}
.app-intro__media img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .app-intro__media {
    max-width: 50%;
  }
}
.app-intro__content {
  text-align: center;
}
@media only screen and (min-width: 1010px) {
  .not--device .app-intro__content {
    text-align: left;
  }
}

.app-intro__heading {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.35;
  font-weight: 400;
  color: #1e70b8;
  margin: 0 0 0.6em;
}
@media only screen and (min-width: 768px) {
  .app-intro__heading {
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 1.3;
  }
}
.app-intro__text {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #4f4f4f;
  margin: 0;
}

.app-section--intro {
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #c0cedb 100%);
  padding-top: 0;
}
@media only screen and (min-width: 768px) {
  .app-section--intro {
    padding-top: 0;
  }
}
.app-section--intro .app-intro {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .app-section--intro .app-intro {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* ------------------------
	Features
------------------------ */
.app-section--features {
  background: #ffffff;
  padding: 60px 40px 150px 40px !important;
}

.app-features {
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .app-features {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}
.app-features__item {
  padding-bottom: 40px;
  border-bottom: 1px solid #d9e4ed;
}
@media only screen and (min-width: 768px) {
  .app-features__item {
    padding-bottom: 0;
    padding-right: 40px;
    border-bottom: 0;
    border-right: 1px solid #d9e4ed;
  }
}
.app-features__item:last-child {
  border: 0;
  padding: 0;
}
.app-features__icon {
  margin-bottom: 20px;
}
.app-features__icon img {
  width: 64px;
  height: 64px;
}
.app-features__heading {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: 400;
  color: #1e70b8;
  margin: 0 0 0.5em;
}
.app-features__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #4f4f4f;
  margin: 0;
}

/* ------------------------
	Availability + Download CTA
------------------------ */
.app-availability {
  background: #ecf2f8;
  text-align: center;
  padding: 60px 40px !important;
}
.app-availability__inner {
  margin: 0 auto;
  padding: 0 20px;
}
.app-availability__icon {
  margin-bottom: 20px;
}
.app-availability__icon img {
  width: 200px;
  height: 200px;
  margin-top: -150px;
}
.app-availability__heading {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
  color: #173752;
  text-transform: uppercase;
  margin: 0 0 0.75em;
}
@media only screen and (min-width: 768px) {
  .app-availability__heading {
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 1.2;
    font-weight: 700;
  }
}
.app-availability__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 3em;
}
@media only screen and (min-width: 768px) {
  .app-availability__stats {
    gap: 0;
  }
}
.app-availability__stat {
  position: relative;
  padding: 0 30px;
}
.app-availability__stat:not(:last-child):after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 0;
  width: 1px;
  background: #a3d8f3;
  display: none;
}
@media only screen and (min-width: 768px) {
  .app-availability__stat:not(:last-child):after {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .app-availability__stat {
    padding: 0 40px;
  }
}
.app-availability__stat-number {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 700;
  color: #1e70b8;
}
@media only screen and (min-width: 768px) {
  .app-availability__stat-number {
    font-size: 64px;
    font-size: 4rem;
    line-height: 1;
    font-weight: 700;
  }
}
.app-availability__stat-label {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
  color: #173752;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.5em;
}
.app-availability__download-heading {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 400;
  color: #1e70b8;
  text-transform: uppercase;
  margin: 0 0 1.25em;
}
@media only screen and (min-width: 768px) {
  .app-availability__download-heading {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.4;
  }
}
.app-availability__download-heading span {
  display: block;
  text-transform: none;
}
.app-availability .app-store-badges {
  justify-content: center;
}
.app-availability .app-store-badges img {
  height: 50px;
}

.site-footer .f-how {
  display: none;
}
.site-footer .f-contact {
  display: none;
}
.site-footer .lower-footer {
  padding: 20px 10px !important;
}
