@font-face {
  font-family: Materialicons;
  src: url('../fonts/MaterialIcons-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --darker-grey: #333;
  --blue: #2196f3;
  --dark-blue: #1565c0;
  --white: white;
  --light-grey: #f1f1f1;
  --black: black;
  --grey: #dbdbdb;
  --green: #4caf50;
  --crimson: #d32f2f;
  --grey-mid: #a8a8a8;
  --white-smoke: #f7f5f3;
  --slate-grey: #607d8b;
  --pink: #d81b60;
  --purple: #673ab7;
  --indigo: #3f51b5;
  --cyan: #00bcd4;
  --teal: #00bfa5;
  --lime: #cddc39;
  --gold: #ffc107;
  --orange: #f45a1e;
  --brown: #795548;
  --dark-grey: #5d5d5d;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--darker-grey);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4em;
}

h1 {
  letter-spacing: -.6px;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6em;
}

h2 {
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4em;
}

h3 {
  letter-spacing: -.6px;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4em;
}

h4 {
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4em;
}

h5, h6 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6em;
}

a {
  color: #1257a5;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
}

li {
  font-family: Inter, sans-serif;
}

img {
  display: inline-block;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 16px;
}

figure {
  margin-bottom: 20px;
}

figcaption {
  color: #3333338f;
  text-align: center;
  margin-top: 7px;
  font-size: 14px;
  line-height: 20px;
}

.button {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 11px 20px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-decoration: none;
  transition: background-color .15s;
  display: inline-block;
}

.button:hover {
  background-color: var(--dark-blue);
}

.button.w--current {
  background-color: #2e80b6;
}

.button.full-width {
  background-color: var(--darker-grey);
  color: var(--white);
  letter-spacing: .4px;
  cursor: pointer;
  border: 1px #000;
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;
  padding-top: .75em;
  padding-bottom: .75em;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

.button.full-width:hover {
  background-color: #5d5d5dcc;
}

.button.full-width:active {
  background-color: var(--darker-grey);
}

.navigation-link {
  height: 45px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: Roboto;
  line-height: 16px;
}

.navigation-link:hover {
  color: var(--blue);
}

.navigation-bar {
  background-color: var(--light-grey);
}

.hamburger-button {
  padding-top: 24px;
  padding-bottom: 24px;
}

.brand-link {
  height: 60px;
  transition: opacity .2s;
}

.brand-link:hover {
  opacity: .66;
}

.brand-link.left-spacing {
  color: #fff;
  margin-left: 15px;
}

.brand-link.left-spacing.w--current {
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.section {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 0;
  display: block;
  position: relative;
}

.section.accent {
  background-color: var(--black);
  background-image: url('../images/new-bg.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
  padding: 100px 40px 80px;
}

.section.nopaddingtop {
  padding-top: 0;
}

.section.projects-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 200px;
}

.hero-section {
  text-align: center;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-section.global-header {
  z-index: 1;
  border-bottom: 1px none var(--light-grey);
  background-color: var(--white);
  padding: 20px 24px 0;
}

.hero-heading {
  letter-spacing: -.8px;
  font-size: 36px;
  line-height: 1.4em;
}

.hero-heading.reset-heading-margin {
  margin-bottom: 20px;
}

.hero-heading.reset-heading-margin.white-heading {
  color: var(--light-grey);
  font-weight: 300;
}

.hero-subheading {
  flex: 0 auto;
  justify-content: flex-end;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2em;
}

.hero-subheading.global-nav {
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  padding-top: 0;
  padding-right: 20px;
  font-family: Poppins, sans-serif;
  display: flex;
}

.section-heading {
  margin-bottom: 20px;
  font-size: 21px;
}

.section-heading.centered {
  color: var(--darker-grey);
  text-align: center;
  letter-spacing: -.6px;
  text-transform: none;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4em;
}

.section-heading.centered.whitetxt {
  font-weight: 500;
}

.section-heading.centered.h2white {
  color: var(--light-grey);
}

.form-label {
  text-transform: none;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 300;
}

.section-subheading {
  color: var(--light-grey);
  margin: 0;
  padding-bottom: 20px;
}

.section-subheading.center {
  color: var(--darker-grey);
  text-align: center;
  margin-top: 8px;
  display: none;
}

.section-subheading.darker {
  color: var(--darker-grey);
}

.section-subheading.darker.left {
  text-align: left;
  max-width: 564px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6em;
}

.section-subheading.darker.left.whitetxt {
  color: var(--light-grey);
}

.form-field {
  border-style: none;
  border-radius: 3px;
  min-height: 41px;
  margin-bottom: 17px;
  margin-right: 1px;
  transition: box-shadow .15s;
  box-shadow: 0 0 0 1px #00000017;
}

.form-field:focus {
  box-shadow: 0 0 0 2px var(--blue);
}

.form-field.text-area {
  min-height: 110px;
}

.form-wrapper.squeezed {
  max-width: 564px;
  margin-left: auto;
  margin-right: auto;
}

.social-button {
  background-color: var(--darker-grey);
  cursor: pointer;
  border-radius: 100px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 8px;
  transition: background-color .15s;
}

.social-button:hover {
  opacity: 1;
  background-color: #333c;
}

.social-icon-link {
  opacity: 1;
  padding: 3px 3px 3px 10px;
  transition: opacity .15s;
}

.social-icon-link:hover {
  opacity: .5;
}

.profile-image {
  border-radius: 0;
}

.profile-image.top {
  width: 400px;
}

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer.accent {
  background-color: var(--light-grey);
  padding-top: 20px;
  padding-bottom: 20px;
}

.float-right {
  float: right;
}

.float-right.float-disable {
  text-align: right;
}

.footer-text {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 300;
}

.grid-image {
  opacity: 1;
  max-width: 80px;
  margin-bottom: 20px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 320px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.success-wrapper {
  color: #fff;
  background-color: #0000;
  border-radius: 5px;
  padding: 31px;
}

.success-message {
  color: var(--green);
  margin-bottom: 0;
}

.error-wrapper {
  color: #fff;
  background-color: #0000;
  border-radius: 5px;
}

.error-message {
  color: var(--crimson);
  margin-bottom: 0;
}

.feature-column {
  text-align: center;
}

.column, .column-2 {
  padding-left: 0;
  padding-right: 0;
}

.column-3 {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.column-4 {
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.link-2 {
  color: #1257a5;
}

.link-2.sideproject-link {
  font-family: Roboto;
  font-weight: 300;
}

.whitetxt {
  color: var(--light-grey);
  text-align: left;
  white-space: pre-wrap;
  font-weight: 300;
}

.whitetxt.centered {
  text-align: center;
}

.portfolio-hover-colour {
  width: 100%;
  height: 100%;
  position: absolute;
}

.colour {
  opacity: 0;
  text-align: center;
  background-color: #fffc;
  width: 100%;
  height: 100%;
  padding: 20px;
  transition: all .5s;
}

.colour:hover {
  opacity: 1;
  background-color: #ffffffe6;
}

.portfolio-inner {
  border: 1px #fff;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  display: flex;
}

.lightgrey {
  color: var(--darker-grey);
  font-size: 16px;
  font-weight: 300;
  display: block;
}

.lightgrey.open-link {
  font-family: Materialicons, sans-serif;
}

.worktitle {
  color: var(--darker-grey);
  letter-spacing: -.4px;
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.h3white {
  color: var(--light-grey);
  font-size: 22px;
  font-weight: 100;
}

.container-profile {
  max-width: 900px;
  margin-top: 40px;
}

.thumbnails {
  width: 100%;
  height: auto;
  display: inline-block;
  position: static;
}

.lightbox-link {
  cursor: pointer;
  width: 100%;
  position: relative;
}

.lightbox-link.hidden {
  display: none;
}

.row {
  margin-top: 8px;
}

.recaptcha {
  float: none;
  margin-bottom: 20px;
  position: static;
}

.form {
  text-align: left;
}

.div-block {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heading {
  margin-top: 16px;
  margin-bottom: 16px;
}

.main-content {
  padding-top: 2em;
}

.note {
  color: var(--grey-mid);
  margin-bottom: 20px;
  font-family: Roboto;
  font-size: .9em;
  font-weight: 300;
  line-height: 1.2em;
}

.front-end img {
  max-width: 680px;
}

.conclusion {
  text-align: left;
}

.simple-map {
  width: auto;
  max-width: 940px;
  margin-bottom: 20px;
}

.logo {
  display: inline-block;
}

.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.img-caption {
  color: var(--darker-grey);
  text-align: center;
  padding-top: .75em;
  font-family: Roboto;
  font-size: .8em;
  font-weight: 300;
  line-height: 1.2em;
}

.heading-2 {
  text-align: center;
  padding-top: 20px;
  font-weight: 700;
}

.heading-2.whitetxt {
  font-size: 28px;
  font-weight: 400;
}

.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: minmax(0, 420px);
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  grid-auto-flow: row;
  margin-bottom: 20px;
}

.image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.grid-full-img {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.lightbox-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: minmax(auto, 408px);
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}

.lined-image {
  cursor: pointer;
  object-fit: cover;
  border: 1px solid #f6f6f6;
  border-radius: 1px;
  width: 100%;
  height: 100%;
}

.comp-lightbox {
  cursor: pointer;
  margin-bottom: 20px;
}

.body-mobile {
  background-color: #fff0;
}

.grid-outcome {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

.kd-mobile {
  width: 400px;
  padding-bottom: 40px;
}

.hidden-columns {
  display: none;
}

.header-nav {
  flex-direction: row-reverse;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.link-block {
  text-align: left;
  cursor: pointer;
  flex: 0 auto;
  max-width: 260px;
}

.contact-container {
  margin-bottom: 40px;
}

.container {
  max-width: 900px;
}

.hero {
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: block;
}

.hero.hero-bg.scout-hero {
  background-image: url('../images/scout-hero01.png');
  background-position: 90% 100%;
  background-repeat: no-repeat;
  background-size: auto 86%;
  background-attachment: scroll;
  position: relative;
}

.hero.hero-bg.relative {
  position: relative;
}

.hero-overlay {
  color: #fff;
  background-image: url('../images/maven-laptop-flip_1.png'), url('../images/maven01.png'), linear-gradient(#f7f5f3, #f7f5f3);
  background-position: 70%, 90% 0, 0 0;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: auto 90%, contain, auto;
  background-attachment: scroll, scroll, scroll;
  justify-content: center;
  align-items: center;
  height: 90vh;
  max-height: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.hero-overlay.margin-project {
  margin-bottom: 40px;
}

.hero-overlay.margin-project.position {
  background-image: url('../images/maven-laptop-flip.png'), url('../images/maven01.png');
  background-position: 50% 100%, 85% 0;
  max-height: 90vh;
  margin-bottom: 0;
}

.hero-overlay.margin-project.position.kindle-dp {
  background-image: url('../images/JP-KA-DP-shorter.png');
  background-position: 50% 0;
  background-size: contain;
  height: 224vh;
  max-height: none;
}

.centered-container {
  flex: 1;
}

.flex-container-hero {
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.flex-container-hero.maven-logo-hero {
  justify-content: space-around;
}

.flex-container-hero.scout-hero {
  justify-content: flex-start;
}

.flex-container-hero.amazon-device-hero {
  justify-content: space-around;
}

.flex-container-hero.movie-promotions {
  justify-content: center;
}

.flex-container-hero.kindle-launch {
  flex-flow: column;
  justify-content: space-between;
}

.hero-image-mask-2 {
  flex: 0 auto;
  max-width: 100%;
  margin-left: 40px;
}

.hero-image-mask-2.gen5-launch {
  margin-left: auto;
}

.div-block-5 {
  flex: 0 auto;
  max-width: 380px;
}

.cards-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.cards-section.bg-cream {
  border-top: 1px solid var(--light-grey);
  background-color: var(--white-smoke);
  color: var(--darker-grey);
  font-size: 17px;
  display: block;
}

.cards-section.bg-cream.hidden {
  display: none;
}

.cards-section.bg-cream.relative-postion {
  position: relative;
}

.cards-section.bg-cream.gazo {
  padding-bottom: 40px;
}

.cards-section.kdp-icons {
  background-image: url('../images/kdp-illustrations-flowers-horizontal.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  height: 84vh;
  position: relative;
}

.cards-section.no-padding {
  padding-bottom: 0;
}

.cards-grid-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template: "."
  / 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cards-grid-container.align-top {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.cards-grid-container.logo-process {
  grid-template-columns: minmax(auto, 380px) 1fr;
  align-items: center;
}

.cards-grid-container.logo-process.upshift {
  grid-template-columns: minmax(auto, 539px) 1fr;
}

.cards-grid-container.kindle-content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr;
}

.cards-image {
  object-fit: contain;
  object-position: 50% 50%;
  width: 360px;
  max-width: none;
  position: static;
  inset: 0%;
}

.list {
  padding-left: 0;
  font-family: Roboto;
  font-weight: 300;
  list-style-type: none;
}

.list.margin-border {
  border-bottom: 1px solid var(--grey);
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.heading-3 {
  line-height: 1.3em;
}

.role-list {
  text-align: left;
  font-size: 14px;
  font-weight: 300;
}

.role-list.text-right {
  text-align: right;
}

.feature-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.feature-section.bg-cream {
  background-color: #f7f5f3;
}

.feature-section.bg-cream.app-icon {
  padding-top: 0;
  padding-bottom: 0;
}

.feature-section.bg-cream.amazon-tablet-jp {
  margin-bottom: 0;
  padding-top: 80px;
  padding-bottom: 60px;
}

.feature-section.bg-cream.no-padding, .feature-section.bg-cream.no-padding-btm {
  padding-bottom: 0;
}

.feature-section.bg-cream.kindle-approaches {
  padding-bottom: 40px;
}

.feature-section.scout-nav-slider {
  background-color: var(--white-smoke);
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.feature-section.upshift {
  padding-top: 0;
  padding-bottom: 0;
}

.feature-section.mockup-caption {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.feature-section.title-for-bg {
  padding-bottom: 10px;
}

.grid-maven {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  flex: 1;
  grid-template: "Area"
  / 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: center;
  place-items: stretch stretch;
  display: grid;
}

.grid-maven.conclusion {
  grid-template-columns: 1fr;
}

.grid-maven.grid-kindle {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  display: block;
}

.grid-maven.myrole {
  grid-template-columns: 1fr;
}

.feature-image-mask {
  display: block;
}

.feature-txt-block.center {
  text-align: center;
}

.feature-txt-block.wider-width {
  max-width: 560px;
}

.feature-txt-block.scout {
  max-width: 48%;
}

.feature-txt-block.amazon-device {
  max-width: 45%;
  position: relative;
}

.heading-5 {
  font-weight: 500;
}

.heading-h3 {
  text-align: center;
  line-height: 1.3em;
}

.heading-h3.center {
  text-align: center;
  line-height: 2em;
}

.heading-7 {
  font-weight: 400;
}

.heading-8 {
  margin-bottom: 10px;
}

.heading-8.center {
  text-align: center;
}

.small-text {
  padding-top: .75em;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2em;
}

.small-text.padding-bottom {
  padding-bottom: 100px;
}

.small-text.padding-bottom.center.padding-top {
  padding-top: 2em;
}

.small-text.float-caption {
  float: right;
  position: absolute;
  inset: auto 4vw 1em auto;
}

.small-text.mansory-txt {
  text-align: right;
  padding-top: 0;
  padding-bottom: .5em;
  padding-right: 2em;
  position: static;
}

.small-text.position-ab {
  position: absolute;
  inset: auto 2em 2em auto;
}

.small-text.upshift {
  position: absolute;
}

.small-text.left {
  text-align: left;
}

.small-text.inspiraion-txt {
  float: right;
  position: absolute;
  inset: auto 3% 5% auto;
}

.screens-bg {
  background-image: url('../images/maven-mocks.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 100vh;
}

.screens-bg.kindle-assets {
  background-image: url('../images/banners-min.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
  height: 80vh;
}

.list-padding {
  padding-bottom: 1em;
  line-height: 1.6em;
}

.heading-h3-no-bottom {
  margin-bottom: 0;
  line-height: 2em;
}

.paragraph {
  font-weight: 400;
}

.text-block {
  text-align: right;
}

.text-block.txt-height {
  line-height: 2em;
}

.paragraph-2 {
  text-align: left;
}

.top-link-btn {
  z-index: 1;
  float: right;
  background-color: #000000b3;
  font-family: Materialicons, sans-serif;
  font-size: 20px;
  position: sticky;
  bottom: 20px;
}

.list-item {
  margin-left: 20px;
  line-height: 1.6em;
  list-style-type: square;
}

.list-item.list-padding {
  padding-bottom: .5em;
}

.logo-hero-img {
  margin-left: 4rem;
  margin-right: 4rem;
}

.logo-hero-img.upshift {
  min-width: 150px;
}

.logo-hero-img.maven {
  margin-left: auto;
  margin-right: auto;
}

.float-txt {
  float: right;
  font-family: Roboto;
  font-size: 13px;
  font-weight: 300;
  display: block;
  position: relative;
  top: 66vh;
  right: 2vh;
}

.roboto-text {
  font-weight: 300;
}

.roboto-text.no-margin {
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
}

.roboto-title-s {
  font-size: 14px;
  font-weight: 500;
}

.margin-b {
  margin-bottom: 20px;
}

.margin-b.float-left {
  float: left;
  padding-right: 3em;
}

.inspiration-img {
  background-image: url('../images/Color-Simulator-b.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
  height: 78vh;
}

.inspiration-img.upshift {
  height: 60vh;
}

.inspiration-img.maven {
  background-image: url('../images/inspiration-min.png');
  background-size: cover;
  position: relative;
}

.bcard-photo {
  background-image: url('../images/Load-Coverage-Comparison.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  height: 90vh;
  max-height: 90vh;
}

.bcard-photo.maven {
  background-image: url('../images/bcard-maven.png');
  background-size: cover;
}

.bcard-photo.upshift {
  background-color: #f7f5f3;
  background-image: url('../images/Load-Coverage-Comparison-b.png');
  height: 82vh;
}

.hero-image-logo.margin-right {
  min-width: 200px;
  margin-right: 40px;
}

.hero-image-logo.margin-right.maven {
  min-width: 356px;
}

.hero-image-logo.margin-left {
  width: 512px;
  margin-left: 40px;
}

.hero-image-logo.margin-left.scout {
  width: auto;
  margin-left: 0;
}

.project-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.sketch {
  border: 1px solid var(--grey);
  object-fit: contain;
  width: 100%;
}

.image-5.upshift {
  max-width: 540px;
  position: static;
  inset: auto auto 0% 10%;
}

.image-6 {
  z-index: 1;
  max-width: 600px;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  overflow: visible;
}

.image-6.upshift {
  width: 230px;
  max-width: 346px;
}

.image-7 {
  display: none;
}

.icon-font {
  color: var(--darker-grey);
  text-align: left;
  font-family: Materialicons, sans-serif;
  font-size: 20px;
}

.no-padding {
  text-align: center;
  margin-bottom: 0;
}

.small-titile {
  color: var(--darker-grey);
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
}

.small-titile.no-margin-b {
  margin-bottom: 0;
  text-decoration: underline;
}

.small-titile.left {
  text-align: left;
}

.small-titile.left.padding-top {
  margin-top: .5em;
}

.scout-filter-bg {
  background-image: url('../images/scout-filter-ipad.png'), url('../images/scout-recruiting-filter.png');
  background-position: 0 100%, 22vw 0;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 90vh, contain;
  background-attachment: scroll, scroll;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  max-height: 100vh;
  display: flex;
}

.with-shadow {
  text-shadow: 1px 1px #ffffff80;
}

.with-shadow.p-bg {
  background-color: #ffffffbd;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 11px;
}

.slider {
  background-color: var(--black);
  color: var(--white-smoke);
  width: 87vw;
  height: auto;
}

.slide {
  text-align: center;
}

.slider-block {
  justify-content: center;
  display: flex;
}

.slide-2, .slide-3, .slide-4 {
  text-align: center;
}

.left-arrow {
  cursor: pointer;
}

.left-arrow:focus {
  border: 2px solid #1257a5;
  border-radius: 2px;
}

.right-arrow {
  cursor: pointer;
}

.right-arrow:focus {
  border: 2px solid #1257a5;
  border-radius: 2px;
}

.icon {
  text-shadow: 1px 1px 1px #000;
}

.icon-2 {
  text-shadow: 1px 1px 6px #000;
}

.scout-nav-grid {
  display: none;
}

.workflow-2nd {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template: "arrow-down1 . arrow-down2"
                 "me arrow-2icons dev"
                 / 1fr auto 1fr;
}

.me, .dev {
  text-align: center;
}

.amazon-hero-img {
  z-index: 0;
  max-width: 41svw;
  max-height: 89svh;
  position: absolute;
  inset: 0% auto auto 10svw;
}

.amazon-hero-block {
  min-width: 344px;
}

.amazongwsection {
  background-color: var(--grey);
}

.amazon-gw {
  z-index: -1;
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

.amazonjpsection {
  background-color: var(--white-smoke);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: block;
}

.amazon-gw-laptop {
  background-image: url('../images/NRM-01.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
  height: 80vh;
}

.amazon-process {
  justify-content: center;
  display: flex;
}

.masonry-3 {
  column-count: 3;
  column-gap: 10px;
  padding-top: 10px;
}

.img-block-masonry {
  margin-bottom: 10px;
}

.movie-secttion.bg-cream {
  background-color: var(--white-smoke);
  padding-bottom: 10px;
}

.photocontest-icon {
  max-width: 65vw;
}

.photo-contest {
  flex-flow: column wrap;
  align-items: center;
  display: flex;
}

.illustration-hero {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  position: relative;
}

.illustration-hero.bg-cream {
  background-color: var(--white-smoke);
  background-image: none;
}

.ew-img {
  max-width: 60vw;
  position: absolute;
  inset: -20% 0% 0% 38vh;
}

.ew-blcok {
  min-height: 80vh;
}

.sideproject {
  text-align: right;
  padding-top: 20px;
}

.retired-portfolio-link {
  display: none;
}

.no-padding-btm {
  margin-bottom: 0;
}

.no-padding-btm.width-56ch {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.no-padding-btm.bold {
  font-weight: 600;
}

.text-block-2, .button-2 {
  font-family: Materialicons, sans-serif;
}

.upshift-logo {
  min-width: 36%;
}

.upshift-landing {
  position: static;
}

.link-3 {
  font-weight: 500;
}

.upshift-lined-logo {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4.6rem;
}

.open-link-block {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-8 {
  flex: 0 auto;
  align-self: center;
  width: 3rem;
  margin-bottom: 1rem;
}

.image-9 {
  width: 80svw;
  max-width: 564px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.container-2 {
  text-align: center;
  position: relative;
}

.image-10 {
  max-width: 600px;
  position: absolute;
  inset: -320px 0 auto;
}

.kids-visual {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  width: 86svw;
  max-width: 360px;
  margin-top: 40px;
  transform: rotate(0);
}

.kids-visual.rotate {
  transform: rotate(-90deg);
}

.paragraph-5 {
  text-align: left;
}

.paragraph-6 {
  text-align: left;
  max-width: 60vw;
}

.video {
  width: 100%;
  margin: 40px auto 20px;
}

.flex-block {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.grid-box {
  grid-row-gap: 1px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.center {
  text-align: center;
}

.gen5-devices {
  margin-top: 40px;
  margin-bottom: 40px;
}

.h1-center, .heading-9 {
  text-align: center;
}

.width-56ch {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.font-img-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.image-11 {
  padding-top: 10px;
}

.container-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.overflow {
  overflow: hidden;
}

.email-redesign {
  padding: 0;
}

.cell-2 {
  justify-content: flex-end;
}

.tablet-dp {
  grid-row-gap: 20px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.fs-images {
  border-radius: 8px;
  margin-top: 40px;
}

.email-img, .border-8 {
  border-radius: 8px;
}

.image-12 {
  filter: invert();
}

html.w-mod-js [data-ix="fade-in-bottom-page-loads"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="fade-in-left-scroll-in"] {
  opacity: 0;
  transform: translate(-50px);
}

html.w-mod-js [data-ix="fade-in-right-scroll-in"] {
  opacity: 0;
  transform: translate(50px);
}

html.w-mod-js [data-ix="fade-in-top-scroll-in"] {
  opacity: 0;
  transform: translate(0, -50px);
}

html.w-mod-js [data-ix="fade-in-bottom-scroll-in"] {
  opacity: 0;
  transform: translate(0, 50px);
}

html.w-mod-js [data-ix="bounce-in-scroll-in"] {
  opacity: 0;
  transform: scale(.6);
}

html.w-mod-js [data-ix="scale-on-scroll"] {
  opacity: 0;
  transform: scale(.01);
}

html.w-mod-js [data-ix="title-slide-in-1"] {
  opacity: 0;
}

@media screen and (max-width: 991px) {
  .navigation-link {
    display: inline-block;
  }

  .hamburger-button {
    padding: 12px 16px;
  }

  .hamburger-button:hover {
    color: var(--blue);
  }

  .hamburger-button.w--open {
    background-color: var(--darker-grey);
  }

  .hero-section {
    margin-left: 20px;
    margin-right: 20px;
  }

  .hero-section.global-header {
    margin-left: auto;
    margin-right: auto;
  }

  .form-wrapper.squeezed {
    padding-left: 10%;
    padding-right: 10%;
  }

  .portfolio-hover-colour {
    margin-bottom: 16px;
    position: static;
  }

  .colour {
    opacity: 1;
    padding: 10px;
  }

  .portfolio-inner {
    padding-top: 0%;
  }

  .lightgrey {
    line-height: 1.2em;
    display: block;
  }

  .worktitle {
    text-decoration: underline;
  }

  .lightbox-link {
    flex-direction: column-reverse;
    text-decoration: none;
    display: flex;
  }

  .simple-map {
    width: 100%;
  }

  .hidden-columns {
    display: none;
  }

  .hero.hero-bg.scout-hero {
    background-position: 58vh 0;
    background-size: contain;
  }

  .hero-overlay {
    background-image: url('../images/maven-laptop-flip_1.png'), linear-gradient(#f7f5f3, #f7f5f3);
    background-position: 70%, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: auto 90%, auto;
    background-attachment: scroll, scroll;
    height: 40vh;
  }

  .hero-overlay.margin-project.position {
    background-image: url('../images/maven-laptop-flip_1.png');
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: auto 90%;
    background-attachment: scroll;
  }

  .flex-container-hero.upshift {
    flex-direction: column-reverse;
  }

  .cards-section.kdp-icons {
    background-image: url('../images/kdp-illustrations-flowers-01.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    height: 180vh;
  }

  .cards-grid-container {
    grid-column-gap: 20px;
  }

  .cards-grid-container.logo-process.upshift {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .cards-image {
    object-fit: cover;
  }

  .feature-section.bg-cream.amazon-tablet-jp {
    padding-top: 60px;
  }

  .screens-bg {
    height: 60vh;
  }

  .screens-bg.kindle-assets {
    background-size: contain;
    height: 50vh;
  }

  .inspiration-img {
    background-image: url('../images/Color-Simulator.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
    height: 40vh;
  }

  .inspiration-img.upshift {
    background-image: url('../images/Color-Simulator-b.png');
    height: 50vh;
  }

  .inspiration-img.maven {
    height: 34vh;
  }

  .bcard-photo, .bcard-photo.maven {
    height: 50vh;
  }

  .bcard-photo.upshift {
    height: 56vh;
  }

  .hero-image-logo.margin-left.scout {
    width: auto;
  }

  .project-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
  }

  .image-5.upshift {
    inset: auto auto 15% 5%;
  }

  .scout-filter-bg {
    background-position: 0 100%, 100% 0;
  }

  .slider {
    width: 100%;
    height: auto;
  }

  .amazon-hero-img {
    max-width: 100%;
    max-height: none;
    position: static;
  }

  .amazon-hero-block {
    min-width: auto;
  }

  .amazon-gw {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    display: grid;
  }

  .img-gw.img-hidden-mobile {
    display: none;
  }

  .amazon-gw-laptop {
    background-size: cover;
    background-attachment: scroll;
    height: 72vh;
  }

  .img-jp.img-hidden-mobile {
    display: none;
  }

  .masonry-3 {
    column-count: 2;
  }

  .img-movie.img-hidden-mobile {
    display: none;
  }

  .photocontest-icon {
    max-width: 100%;
  }

  .illustration-hero {
    background-image: none;
  }

  .ew-img {
    max-width: 80vw;
    left: 10vw;
  }

  .ew-blcok {
    min-height: 70vh;
  }

  .sideproject {
    padding-right: 20px;
  }

  .upshift-logo {
    min-width: 43%;
  }

  .image-10 {
    width: 90vw;
    top: -319px;
  }

  .paragraph-6 {
    max-width: none;
  }

  .email-redesign {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .brand-link.left-spacing {
    padding-left: 0;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.nopaddingtop {
    padding-left: 0;
    padding-right: 0;
  }

  .section.projects-container {
    padding-bottom: 140px;
  }

  .hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-subheading {
    text-align: left;
  }

  .form-field {
    border: 1px solid var(--grey);
    font-size: 16px;
  }

  .form-wrapper.squeezed {
    padding-left: 0;
    padding-right: 0;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .whitetxt {
    text-align: center;
  }

  .portfolio-hover-colour {
    display: block;
  }

  .colour {
    opacity: 1;
    border-bottom: 1px solid #fff;
    padding: 10px;
  }

  .portfolio-inner {
    padding-top: 0%;
  }

  .container-profile {
    padding-left: 16px;
    padding-right: 16px;
  }

  .main-content {
    padding: 2em 0;
  }

  .logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .img-caption {
    color: #8d8d8d;
    margin-bottom: 20px;
    font-size: .9em;
  }

  .grid-2 {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
  }

  .container-showcase {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lightbox-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: minmax(auto, 468px) minmax(auto, 468px);
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .lined-image {
    object-fit: scale-down;
  }

  .header-nav {
    justify-content: space-between;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero.hero-bg.scout-hero {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .hero-overlay {
    padding: 40px 20px;
  }

  .flex-container-hero {
    flex-direction: column-reverse;
  }

  .flex-container-hero.scout-hero {
    flex-direction: column;
  }

  .hero-image-mask-2 {
    order: -1;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-image-mask-2.gen5-launch {
    order: 0;
  }

  .cards-section {
    padding: 40px 20px;
  }

  .cards-section.kdp-icons {
    background-image: url('../images/kdp-illustrations-flowers-01.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    height: 138vh;
  }

  .cards-grid-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    align-self: stretch;
    max-width: none;
  }

  .cards-grid-container.align-top, .cards-grid-container.logo-process {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .heading-3.with-shadow {
    text-align: center;
  }

  .feature-section {
    padding: 40px 20px;
  }

  .feature-section.feature-bg {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .feature-section.bg-cream.amazon-tablet-jp {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .feature-section.scout-nav-slider {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-maven {
    grid-row-gap: 30px;
    flex-direction: column;
    grid-template: "Area"
                   "."
                   / 1fr;
  }

  .grid-maven.conclusion {
    grid-template-rows: auto;
  }

  .grid-maven.myrole {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .feature-image-mask {
    margin-left: 20px;
    margin-right: 20px;
  }

  .feature-txt-block, .feature-txt-block.scout, .feature-txt-block.amazon-device {
    max-width: 100%;
  }

  .image {
    width: auto;
    max-width: 100%;
  }

  .screens-bg.kindle-assets {
    height: 40vh;
  }

  .image-2 {
    width: auto;
    max-width: 100%;
  }

  .div-block-8 {
    display: none;
  }

  .inspiration-img {
    background-size: cover;
    display: block;
  }

  .inspiration-img.upshift {
    height: 45vh;
  }

  .inspiration-img.maven {
    height: 26vh;
  }

  .bcard-photo {
    height: 40vh;
  }

  .bcard-photo.upshift {
    height: 41vh;
  }

  .hero-image-logo {
    margin-top: 1em;
    margin-right: 0;
  }

  .hero-image-logo.margin-right {
    margin-right: 0;
  }

  .hero-image-logo.margin-right.maven {
    min-width: 0;
  }

  .hero-image-logo.margin-left {
    width: auto;
    height: auto;
    margin-left: 0;
  }

  .image-5.upshift {
    width: 100%;
    margin-bottom: 40px;
    position: static;
  }

  .image-6 {
    max-width: 100%;
  }

  .image-7 {
    max-width: 100vw;
    display: block;
  }

  .scout-filter-bg {
    background-image: url('../images/scout-filter-ipad.png'), url('../images/scout-recruiting-filter.png');
    background-position: 0 100%, 100% 0;
    background-repeat: no-repeat, no-repeat;
    background-size: auto 80vh, contain;
    background-attachment: scroll, scroll;
  }

  .slider {
    width: 100vw;
    height: auto;
  }

  .workflow-2nd {
    margin-bottom: 40px;
  }

  .amazon-hero-img {
    margin-top: 20px;
  }

  .amazon-gw-laptop {
    background-size: cover;
    background-attachment: scroll;
    height: 54vh;
  }

  .masonry-3 {
    column-count: 2;
  }

  .ew-img {
    max-width: 100vw;
    top: -15%;
    left: auto;
  }

  .sideproject {
    padding-right: 0;
  }

  .hidden {
    display: none;
  }

  .upshift-logo {
    min-width: 55%;
    margin-bottom: 20px;
  }

  .upshift-landing {
    width: 100%;
  }

  .image-9 {
    width: 85svw;
  }

  .image-10 {
    width: 86vw;
    top: -279px;
  }

  .kids-visual {
    max-width: 49svw;
  }

  .grid-box {
    align-items: start;
  }

  .font-img-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .tablet-dp {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}

@media screen and (max-width: 479px) {
  .section.accent {
    padding: 60px 16px;
  }

  .section.nopaddingtop {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.projects-container {
    padding-bottom: 80px;
  }

  .hero-section.global-header {
    border-bottom-color: var(--grey);
    padding-bottom: 12px;
  }

  .hero-heading {
    margin-left: 8px;
    margin-right: 8px;
    font-size: 30px;
  }

  .hero-subheading {
    margin-left: 8px;
    margin-right: 8px;
  }

  .hero-subheading.global-nav {
    order: -1;
    margin-bottom: 8px;
    padding-right: 0;
    display: block;
  }

  .section-subheading {
    text-align: left;
  }

  .form-field {
    border: 1px solid var(--grey);
    font-size: 16px;
  }

  .form-field.text-area {
    border: 1px solid var(--grey);
  }

  .social-button {
    padding-top: 5px;
    padding-bottom: 8px;
  }

  .profile-image {
    width: 58vw;
    padding-left: 8px;
    padding-right: 8px;
  }

  .float-right.float-disable {
    float: none;
    position: static;
  }

  .colour {
    opacity: 1;
    border-style: none none solid;
    border-bottom-width: 1px;
    border-bottom-color: #fff;
    padding: 10px;
  }

  .portfolio-inner {
    padding-top: 0%;
  }

  .container-profile {
    padding-left: 16px;
    padding-right: 16px;
  }

  .simple-map {
    width: 100%;
    margin-bottom: 20px;
  }

  .logo {
    width: auto;
  }

  .grid-2 {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .grid-full-img {
    grid-template-rows: auto;
  }

  .lightbox-grid {
    grid-template-rows: minmax(auto, 300px) minmax(auto, 300px);
  }

  .lined-image {
    object-fit: cover;
  }

  .body-mobile {
    font-size: 18px;
    line-height: 1.4em;
  }

  .header-nav {
    flex-flow: wrap;
    justify-content: center;
  }

  .link-block {
    flex: none;
    max-width: 300px;
  }

  .centered-container {
    text-align: left;
  }

  .cards-section.kdp-icons {
    height: 78vh;
  }

  .cards-grid-container {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cards-grid-container.logo-process.upshift {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-3 {
    text-align: center;
  }

  .feature-txt-block.center {
    text-align: left;
  }

  .heading-5 {
    text-align: center;
  }

  .small-text.position-ab {
    left: 2em;
  }

  .screens-bg.kindle-assets {
    background-size: cover;
    background-attachment: scroll;
  }

  .logo-hero-img {
    max-width: 100%;
  }

  .margin-b.float-left {
    float: none;
  }

  .inspiration-img.upshift {
    background-position: -1% 0;
    background-size: cover;
    height: 33vh;
  }

  .inspiration-img.maven {
    display: none;
  }

  .bcard-photo {
    background-position: 0 0;
    background-size: cover;
  }

  .bcard-photo.maven {
    background-position: 50% 0;
    background-size: cover;
    height: 28vh;
  }

  .project-grid {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .image-7 {
    max-width: 100vw;
  }

  .small-titile.left {
    text-align: left;
  }

  .scout-filter-bg {
    background-image: url('../images/scout-filter-ipad.png');
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: auto 60vh;
    background-attachment: scroll;
    height: 60vh;
  }

  .slider {
    display: none;
  }

  .scout-nav-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .amazon-gw {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .img-gw.img-hidden-mobile {
    display: none;
  }

  .amazon-gw-laptop {
    height: 35vh;
  }

  .img-jp.img-hidden-mobile {
    display: none;
  }

  .masonry-3 {
    column-count: 1;
  }

  .ew-blcok {
    min-height: 48vh;
  }

  .mobile-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-10 {
    width: 90vw;
    display: block;
    top: -165px;
  }

  .kids-visual.rotate {
    max-width: 49svw;
  }

  .grid-box {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .gen5-devices {
    position: static;
    inset: auto 0% 0%;
  }
}

#w-node-_3e3174a3-6e04-756a-420d-1eed1617a440-eaf5b685 {
  grid-area: Area;
  place-self: auto center;
}

#w-node-_6e259c8e-fa28-891e-13e9-a6e5eeb8d901-eaf5b685, #w-node-e85a425b-0f3e-6198-69dc-c886fbf72a91-eaf5b685 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e85a425b-0f3e-6198-69dc-c886fbf72a9c-eaf5b685 {
  grid-area: Area;
}

#w-node-_0b6b3c25-51ca-e0c3-b5b3-8fa5ce00c281-eaf5b685 {
  grid-area: Area;
  place-self: auto center;
}

#w-node-_1eac6374-aa7f-f1f8-b41c-8461a3f13235-bf601d2e, #w-node-_9aa60587-7d97-5ab2-4625-93be0d0c4d55-bf601d2e, #w-node-_73f4552b-9e77-618b-8d46-997156d1b7f4-bf601d2e, #w-node-c6085a6c-ddaa-dba3-1c78-1310a493cd61-bf601d2e, #w-node-_562c79f1-d77c-fecf-edc1-3c652e60c8b6-bf601d2e, #w-node-b04a3228-b040-5828-f72e-6c9846d6e192-bf601d2e, #w-node-_343bdafc-3460-368c-5a9a-2e2d5ec936d4-bf601d2e, #w-node-_1259cbb9-d1d7-5ae8-20fe-c5bea70509b6-bf601d2e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_210b9e4c-15e1-02ad-b123-0be7f21cdfda-b5f5b686 {
  place-self: auto center;
}

#w-node-_8363319d-e30c-55c3-ab41-7580c430551c-b5f5b686 {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: center;
}

#w-node-_126f51ad-2995-78d9-6c6e-b86ce3e50a4b-b5f5b686 {
  place-self: center;
}

#w-node-c54f5f16-2c92-d255-4322-6b9ff94769a2-b5f5b686, #w-node-dfcacf1f-aec7-e57b-f566-c8784320354b-b5f5b686 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b6d909d1-2743-6f26-a614-3658bedc855f-b5f5b686 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-_0b9e5681-9757-6100-94f4-921720ad208e-b5f5b686 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1ff7ce7-be11-06a4-7fdf-da1b258a2044-b5f5b686 {
  place-self: center;
}

#w-node-e862b833-e708-d6c4-f293-308361b663e5-ddf5b688, #w-node-_65281a04-500d-508f-e63b-0dc111deb106-ddf5b688, #w-node-ca374559-a081-98d1-8880-d5f4f440d9b7-ddf5b688 {
  align-self: center;
}

#w-node-_6407903f-1951-79f5-d807-769438f9290a-ddf5b688 {
  grid-area: 2 / 2 / 3 / 4;
  align-self: center;
}

#w-node-_714d1191-33a6-8a38-0718-cbeceee674b9-ddf5b688 {
  align-self: center;
}

#w-node-eb0d8ed5-597e-c354-b1f7-6b2a894a7a36-ddf5b688 {
  grid-area: 4 / 1 / 5 / 3;
  align-self: center;
}

#w-node-ba2092eb-5bcb-d3c3-1b75-31eaa16f7f42-ddf5b688 {
  align-self: center;
}

#w-node-_1465df0c-1c2c-380b-06d9-78c7dc9a707a-ddf5b688 {
  grid-area: 6 / 1 / 7 / 3;
  align-self: center;
}

#w-node-_60a39a29-cbbb-0d09-175a-a6dd46170832-ddf5b688 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_57dc9cff-6c04-7f43-67b9-075a2cafabc6-ddf5b688 {
  grid-area: 8 / 1 / 9 / 3;
  align-self: center;
}

#w-node-_7b9cac06-f220-78ca-e6b0-a038ddd4f5d3-ddf5b688 {
  align-self: center;
}

#w-node-_410cc9bb-a44d-8be2-8363-cf1c59364609-ddf5b688 {
  grid-area: 10 / 1 / 11 / 3;
  align-self: center;
}

#w-node-_3ff3a5dd-f0da-e53d-7250-eb57efe95ca8-ddf5b688, #w-node-_6c660d5e-5246-d734-9357-8998e62f5da7-ddf5b688 {
  align-self: center;
}

#w-node-d07855ac-e8db-fa37-691e-612090c1270a-47f5b68c {
  grid-area: 1 / 1 / 2 / 3;
  place-self: center stretch;
}

#w-node-d07855ac-e8db-fa37-691e-612090c1270d-47f5b68c, #w-node-d07855ac-e8db-fa37-691e-612090c1270e-47f5b68c {
  align-self: center;
}

#w-node-d07855ac-e8db-fa37-691e-612090c12709-47f5b68c {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-d07855ac-e8db-fa37-691e-612090c12713-47f5b68c, #w-node-d07855ac-e8db-fa37-691e-612090c12710-47f5b68c, #w-node-d07855ac-e8db-fa37-691e-612090c1270c-47f5b68c {
  align-self: center;
}

#w-node-d07855ac-e8db-fa37-691e-612090c12717-47f5b68c {
  grid-area: 7 / 1 / 8 / 3;
  place-self: center stretch;
}

#w-node-d07855ac-e8db-fa37-691e-612090c12719-47f5b68c {
  align-self: center;
}

#w-node-ca194006-9ed8-0918-34ff-24f3119d3864-47f5b68c {
  grid-area: 5 / 1 / 6 / 3;
  place-self: center stretch;
}

#w-node-_6b7f920f-fccb-05a1-c7dd-745f10db6ed0-0ef5b68d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4b0f8778-9aad-4e4e-c3e7-96fc8f520796-f9f5b68e {
  grid-area: arrow-down1;
  justify-self: center;
}

#w-node-_91db5131-42a9-7668-30c9-ae7ca6f7eefe-f9f5b68e {
  grid-area: arrow-down2;
  justify-self: center;
}

#w-node-d9efe389-c1ab-19ca-f83f-b691aec97ee2-f9f5b68e {
  grid-area: me;
}

#w-node-_5d6d7283-04fd-c3dc-d725-77060ebb0913-f9f5b68e {
  grid-area: arrow-2icons;
  justify-self: center;
}

#w-node-_11ebc3ce-34ff-1948-eaba-8f104b322953-f9f5b68e {
  grid-area: dev;
}

#w-node-_6b7f920f-fccb-05a1-c7dd-745f10db6ed0-f9f5b68e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_316ec47c-ba16-cdf3-4778-2e285d55486b-a6c3a57d {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_47257d26-5df8-773b-66ca-7a9289740ed5-a6c3a57d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-dfcacf1f-aec7-e57b-f566-c8784320354b-a6c3a57d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b6d909d1-2743-6f26-a614-3658bedc855f-a6c3a57d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-_6b7f920f-fccb-05a1-c7dd-745f10db6ed0-e6757ec0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6308b01c-a4bb-b8db-6d6e-8b16290cabb3-4c2cbbfa {
  grid-area: Area;
}

#w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd8334-4c2cbbfa, #w-node-_8e9f0245-926a-fbc0-12c1-97cb6ea2c6eb-4c2cbbfa {
  align-self: center;
}

#w-node-e6ba717e-1b5a-af49-a6f9-b5950c0c48ed-4c2cbbfa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_099e1837-abb5-156b-d4fb-a4b3dab25300-4c2cbbfa {
  align-self: center;
}

#w-node-_099e1837-abb5-156b-d4fb-a4b3dab25305-4c2cbbfa, #w-node-_099e1837-abb5-156b-d4fb-a4b3dab25306-4c2cbbfa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_099e1837-abb5-156b-d4fb-a4b3dab25308-4c2cbbfa {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_3fc30c5b-25a7-fb60-ab8f-aab0d9edc41d-4c2cbbfa {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-cb947211-c84d-caba-003e-c9a24d163f98-4c2cbbfa {
  grid-template-rows: auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-b3ac15cd-ab71-2c82-c7e0-54b449c22e36-4c2cbbfa, #w-node-_02271c24-f317-8030-c42f-b31dca0131c9-4c2cbbfa, #w-node-_3c378071-63c8-6338-317e-48fb38a3a625-4c2cbbfa, #w-node-b1a167cd-02ab-9c56-df1d-825c52736df3-4c2cbbfa, #w-node-_62562788-69cd-73ac-0b34-7715f22fe9e7-4c2cbbfa {
  grid-column: span 2 / span 2;
}

#w-node-_6b7f920f-fccb-05a1-c7dd-745f10db6ed0-63ba44fd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6308b01c-a4bb-b8db-6d6e-8b16290cabb3-0e9a8e16 {
  grid-area: Area;
}

#w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd8334-0e9a8e16 {
  align-self: center;
}

#w-node-_316ec47c-ba16-cdf3-4778-2e285d55486b-0e9a8e16 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_47257d26-5df8-773b-66ca-7a9289740ed5-0e9a8e16 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-dfcacf1f-aec7-e57b-f566-c8784320354b-0e9a8e16 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b6d909d1-2743-6f26-a614-3658bedc855f-0e9a8e16 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-e85a425b-0f3e-6198-69dc-c886fbf72a91-0e9a8e16, #w-node-a9238309-e885-8e4c-fbb7-a77eafd57c05-0e9a8e16 {
  grid-area: Area;
}

#w-node-_0b6b3c25-51ca-e0c3-b5b3-8fa5ce00c281-0e9a8e16 {
  grid-area: Area;
  place-self: auto center;
}

@media screen and (max-width: 991px) {
  #w-node-c6085a6c-ddaa-dba3-1c78-1310a493cd61-bf601d2e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d07855ac-e8db-fa37-691e-612090c1270a-47f5b68c, #w-node-d07855ac-e8db-fa37-691e-612090c12717-47f5b68c, #w-node-ca194006-9ed8-0918-34ff-24f3119d3864-47f5b68c {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: stretch;
  }

  #w-node-fb80410d-4805-c59f-b4c9-f4f524398b75-e6757ec0 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-fb80410d-4805-c59f-b4c9-f4f524398b78-eaf5b685, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b7a-eaf5b685 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e85a425b-0f3e-6198-69dc-c886fbf72a91-eaf5b685 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-e85a425b-0f3e-6198-69dc-c886fbf72a9c-eaf5b685 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_210b9e4c-15e1-02ad-b123-0be7f21cdfda-b5f5b686 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-_8363319d-e30c-55c3-ab41-7580c430551c-b5f5b686 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-fb80410d-4805-c59f-b4c9-f4f524398b78-a6c3a57d, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b7a-a6c3a57d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd8334-a6c3a57d {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_316ec47c-ba16-cdf3-4778-2e285d55486e-a6c3a57d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_316ec47c-ba16-cdf3-4778-2e285d55486b-a6c3a57d {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd8335-a6c3a57d, #w-node-_47257d26-5df8-773b-66ca-7a9289740ed5-a6c3a57d, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b78-4c2cbbfa, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b7a-4c2cbbfa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd8334-4c2cbbfa, #w-node-_8e9f0245-926a-fbc0-12c1-97cb6ea2c6eb-4c2cbbfa, #w-node-_099e1837-abb5-156b-d4fb-a4b3dab25300-4c2cbbfa {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-cb947211-c84d-caba-003e-c9a24d163f98-4c2cbbfa {
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-b3ac15cd-ab71-2c82-c7e0-54b449c22e36-4c2cbbfa, #w-node-_02271c24-f317-8030-c42f-b31dca0131c9-4c2cbbfa, #w-node-_3c378071-63c8-6338-317e-48fb38a3a625-4c2cbbfa, #w-node-b1a167cd-02ab-9c56-df1d-825c52736df3-4c2cbbfa, #w-node-_62562788-69cd-73ac-0b34-7715f22fe9e7-4c2cbbfa {
    grid-column: span 1 / span 1;
  }

  #w-node-fb80410d-4805-c59f-b4c9-f4f524398b78-0e9a8e16, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b7a-0e9a8e16 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd8334-0e9a8e16, #w-node-_316ec47c-ba16-cdf3-4778-2e285d55486b-0e9a8e16 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd8335-0e9a8e16, #w-node-_47257d26-5df8-773b-66ca-7a9289740ed5-0e9a8e16 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d07855ac-e8db-fa37-691e-612090c12709-47f5b68c, #w-node-d07855ac-e8db-fa37-691e-612090c12717-47f5b68c, #w-node-ca194006-9ed8-0918-34ff-24f3119d3864-47f5b68c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fb80410d-4805-c59f-b4c9-f4f524398b6e-0ef5b68d, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b75-0ef5b68d, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b6e-f9f5b68e, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b75-f9f5b68e, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b6e-05efe194, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b6e-a6c3a57d, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b75-a6c3a57d, #w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd832c-a6c3a57d, #w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd8334-a6c3a57d, #w-node-_316ec47c-ba16-cdf3-4778-2e285d55486b-a6c3a57d, #w-node-_47257d26-5df8-773b-66ca-7a9289740ed5-a6c3a57d, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b75-e6757ec0, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b6e-e6757ec0, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b75-4c2cbbfa, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b6e-4c2cbbfa, #w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd8334-4c2cbbfa, #w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd832c-4c2cbbfa, #w-node-_8e9f0245-926a-fbc0-12c1-97cb6ea2c6eb-4c2cbbfa, #w-node-_099e1837-abb5-156b-d4fb-a4b3dab25300-4c2cbbfa {
    grid-column: span 1 / span 1;
  }

  #w-node-_3fc30c5b-25a7-fb60-ab8f-aab0d9edc41d-4c2cbbfa {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-c36f8bb8-6f2f-5ad2-dd52-b97135872e89-4c2cbbfa {
    grid-column: span 1 / span 1;
  }

  #w-node-cb947211-c84d-caba-003e-c9a24d163f98-4c2cbbfa {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-fb80410d-4805-c59f-b4c9-f4f524398b6e-63ba44fd, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b75-63ba44fd, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b75-0e9a8e16, #w-node-fb80410d-4805-c59f-b4c9-f4f524398b6e-0e9a8e16, #w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd832c-0e9a8e16, #w-node-_29b8c9c4-9265-500c-d4f3-23b5f3bd8334-0e9a8e16, #w-node-_316ec47c-ba16-cdf3-4778-2e285d55486b-0e9a8e16, #w-node-_47257d26-5df8-773b-66ca-7a9289740ed5-0e9a8e16 {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Materialicons';
  src: url('../fonts/MaterialIcons-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}