* {
  margin: 0;
  padding: 0;
}

:root {
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-yellow: #f5d600;
  --color-yellow-2: #efd148;
  --color-grey: #777;
  --color-grey-100: #f5f5f5;
  --color-grey-200: #ebebeb;
  --color-grey-300: #d6d6d6;
  --color-grey-600: #7a7a7a;
  --color-grey-700: #5c5c5c;
  --color-grey-800: #3d3d3d;
  --color-grey-900: #292929;
  --color-light: #efefef;
  --color-secondary: #5f6367;
  --color-box-shadow: #61353526;
  --color-box-shadow-15: rgba(97, 53, 53, 0.15);
  --color-box-shadow-case-study: rgba(9, 6, 6, 0.2);
  --color-text: var(--color-grey-900);
  --color-text-secondary: var(--color-secondary);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey: #cacbd1;
  --color-code-comment: #a9aaad;
  --color-code-white: #c5c9c6;
  --color-code-red: #d16464;
  --color-code-orange: #de935f;
  --color-code-yellow: #f0c674;
  --color-code-green: #a7bd68;
  --color-code-aqua: #8abeb7;
  --color-code-blue: #7e9abf;
  --color-code-purple: #b294bb;
  --color-footer-link-hover: #9a9ba4;
  --color-case-study-list-start: #394348;
  --color-case-study-list-stop: #273035;
  --font-family-sans: Montserrat, "Open Sans", Helvetica, Arial, sans-serif;
  --font-family-mono:
    "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  --max-width: 70rem;
  --h2-big: 79px;
  --h2-big-mobile: 45px;
  --h1-big: 100px;
  --h1-big-tablet: 80px;
  --h1-big-mobile: 60px;
  --grid-gap: 1vw;
  --full-width-margin: 8vw;
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
}

img {
  width: 100%;
}

body {
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}

a.button,
button.button {
  align-items: center;
  background-color: transparent;
  display: flex;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 21px;
  text-transform: uppercase;
}

a.button::before,
button.button::before {
  background: transparent url("../icons/arrow-right-circle.svg") no-repeat left center;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 50px;
  margin-right: 20px;
  width: 50px;
}

a.button.white::before,
button.button.white::before {
  background-image: url("../icons/arrow-right-circle-white.svg");
}

strong,
b {
  font-weight: 600;
}

small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}

.color-grey {
  color: var(--color-text-grey);
}

.header {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: -1rem;
  margin-left: -1rem;
  margin-bottom: 6rem;
  z-index: 30;
  /* was 9 — now above .logoBG (10) */
}

.header,
section,
.section-container,
.module--grid>.section-holder {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: var(--padding) 1.25rem;
}

@media (min-width: 768px) {

  .header,
  section,
  .section-container,
  .module--grid>.section-holder {
    max-width: 100%;
    padding: 0 130px;
  }
}

@media screen and (min-width: 1354px) {

  .header,
  section,
  .section-container,
  .module--grid>.section-holder {
    max-width: var(--max-width);
    padding-left: 0;
    padding-right: 0;
  }
}

.header.full-width,
section.full-width,
.section-container.full-width,
.module--grid>.section-holder.full-width {
  max-width: none;
}

@media (min-width: 768px) {

  .header.full-width,
  section.full-width,
  .section-container.full-width,
  .module--grid>.section-holder.full-width {
    padding-left: 130px;
    padding-right: 130px;
  }
}

@media screen and (min-width: 1354px) {

  .header.full-width,
  section.full-width,
  .section-container.full-width,
  .module--grid>.section-holder.full-width {
    padding-left: 0;
    padding-right: 0;
  }
}

.module--grid>.section-holder>section {
  padding-left: 0;
  padding-right: 0;
}

.logo {
  padding: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.menu {
  display: flex;
}

.menu a {
  padding: 1rem;
  display: block;
}

.menu a[aria-current] {
  text-decoration: underline;
}

.social {
  display: flex;
  padding: 0 0.5rem;
}

.social a {
  padding: 1rem 0.5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}

.grid>.column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

.full-width {
  max-width: none;
}

.max-width-800-text .text {
  max-width: 800px;
}

.container {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: var(--padding) 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.text {
  line-height: 1.5em;
}

.text a {
  text-decoration: underline;
}

.text :first-child {
  margin-top: 0;
}

.text :last-child {
  margin-bottom: 0;
}

.text p,
.text ul,
.text ol,
.text table {
  margin-bottom: 1.5rem;
}

.text ul,
.text ol {
  margin-left: 1rem;
}

.text ul p,
.text ol p {
  margin-bottom: 0;
}

.text ul>li {
  list-style: disc;
}

.text ol>li {
  list-style: decimal;
}

.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}

.text h1,
.h1,
.intro {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.25em;
}

.text h2,
.h2,
h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.h2 h2 {
  text-transform: lowercase;
}

.h2b h2 {
  font-size: var(--h2-big-mobile);
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .h2b h2 {
    font-size: var(--h2-big);
  }
}

.text h3,
.h3 {
  font-weight: 600;
}

h5 {
  font-size: 14px;
  font-weight: 700;
}

.text .codeblock {
  display: grid;
}

.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 0.5rem;
  display: inline-block;
  color: var(--color-black);
}

.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}

.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}

.text hr {
  margin: 6rem 0;
}

.text dt {
  font-weight: 600;
}

.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}

.text blockquote footer {
  font-size: 0.875rem;
  font-style: italic;
}

.text figure {
  margin: 3rem 0;
}

.text figcaption {
  padding-top: 0.75rem;
  color: var(--color-text-secondary);
}

header h1,
.footer h2 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.07;
  margin: 0 0 30px 0;
}

@media (min-width: 768px) {

  header h1,
  .footer h2 {
    font-size: 99px;
  }
}

.text h5 {
  letter-spacing: 2px;
  line-height: 18px;
  margin: 0;
  text-transform: uppercase;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

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

.intro {
  max-width: 40rem;
}

.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}

.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.img[data-contain] img {
  object-fit: contain;
}

.img-caption,
.video-caption {
  padding-top: 0.75rem;
  line-height: 1.5em;
}

.footer {
  overflow: hidden;
  padding: 9rem 1.25rem 6rem;
  position: relative;
}

@media (min-width: 768px) {
  .footer {
    padding-left: 130px;
    padding-right: 130px;
  }
}

@media screen and (min-width: 1354px) {
  .footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.footer::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-black);
  margin-bottom: 1.5rem;
}

.footer .grid {
  line-height: 1.5em;
  grid-gap: 1.5rem;
  margin: 0 auto;
  max-width: var(--max-width);
  position: relative;
}

.footer .full-screen-image {
  left: 0;
  margin: auto;
  object-fit: cover;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.footer h2 {
  color: var(--color-yellow);
  margin-bottom: 1.75rem;
  text-transform: lowercase;
}

.footer h3 {
  font-size: 24px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .footer h3 {
    font-size: 36px;
  }
}

.footer ul,
.footer p {
  color: var(--color-text-grey);
}

.footer p {
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 0.5rem;
  max-width: 15rem;
}

.footer p.location {
  font-weight: 300;
  margin-bottom: 0;
}

.footer a:hover {
  color: var(--color-footer-link-hover);
}

.footer .socials {
  display: flex;
  margin-top: -40px;
}

.footer .socials p {
  line-height: 1;
  margin: 0;
  padding: 0;
}

.footer .socials a {
  padding: 0 15px 0 0;
}

.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.margin-s {
  margin-bottom: 0.75rem;
}

.margin-m {
  margin-bottom: 1.5rem;
}

.margin-l {
  margin-bottom: 3rem;
}

.margin-xl {
  margin-bottom: 4.5rem;
}

.margin-xxl {
  margin-bottom: 6rem;
}

.margin-t-0 {
  margin-top: 0 !important;
}

.margin-t-s {
  margin-top: 0.75rem;
}

.margin-t-m {
  margin-top: 1.5rem;
}

.margin-t-l {
  margin-top: 3rem;
}

.margin-t-xl {
  margin-top: 4.5rem;
}

.margin-t-xxl {
  margin-top: 6rem;
}

.margin-t-n-s {
  margin-top: -0.75rem;
}

.margin-t-n-m {
  margin-top: -1.5rem;
}

.margin-t-n-l {
  margin-top: -3rem;
}

.margin-t-n-xl {
  margin-top: -4.5rem;
}

.margin-t-n-xxl {
  margin-top: -6rem;
}

.padding-0 {
  padding-bottom: 0 !important;
}

.padding-s {
  padding-bottom: 0.75rem;
}

.padding-m {
  padding-bottom: 1.5rem;
}

.padding-l {
  padding-bottom: 3rem;
}

.padding-xl {
  padding-bottom: 4.5rem;
}

.padding-xxl {
  padding-bottom: 6rem;
}

.padding-7 {
  padding-bottom: 7rem;
}

.padding-8 {
  padding-bottom: 8rem;
}

.padding-9 {
  padding-bottom: 9rem;
}

.padding-10 {
  padding-bottom: 10rem;
}

.padding-m-for-mobile-l-for-desktop {
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .padding-m-for-mobile-l-for-desktop {
    padding-bottom: 3rem;
  }
}

.padding-t-0 {
  padding-top: 0;
}

.padding-t-1 {
  padding-top: 1rem;
}

.padding-t-2 {
  padding-top: 2rem;
}

.padding-t-3 {
  padding-top: 3rem;
}

.padding-t-7 {
  padding-top: 7rem;
}

.padding-t-10 {
  padding-top: 10rem;
}

@media screen and (min-width: 60rem) {

  .header,
  section {
    --padding: 3rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid>.column {
    grid-column: span var(--columns);
  }
}

.pagination {
  display: flex;
  padding-top: 6rem;
}

.pagination>span {
  color: var(--color-text-grey);
}

.pagination>* {
  padding: 0.5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}

.pagination>a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}

.note-excerpt header {
  margin-bottom: 1.5rem;
}

.note-excerpt figure {
  margin-bottom: 0.5rem;
}

.note-excerpt-title {
  font-weight: 600;
}

.note-excerpt-date {
  color: var(--color-text);
}

.note-tags {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.222;
  margin-bottom: 1.5rem;
  text-transform: lowercase;
}

.note-tags li {
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}

.note-tags a {
  background: var(--color-yellow);
  display: block;
  padding: 7px 11px;
}

.note-tags a.show-all-topics {
  background-color: var(--color-grey-700);
  color: var(--color-white);
}

.note-tags a:hover,
.note-tags a.active {
  background: var(--color-black);
  color: var(--color-white);
}

.hide {
  display: none !important;
}

.font-size-12 {
  font-size: 12px;
}

.home *,
.mapping-the-customer-journey *,
.joyful-accessibility * {
  box-sizing: border-box;
}

.home .header,
.home section,
.home .section-container,
.mapping-the-customer-journey .header,
.mapping-the-customer-journey section,
.mapping-the-customer-journey .section-container,
.joyful-accessibility .header,
.joyful-accessibility section,
.joyful-accessibility .section-container {
  max-width: none;
  padding: 0;
}

.home .float-right,
.mapping-the-customer-journey .float-right,
.joyful-accessibility .float-right {
  float: right !important;
}

.home .float-left,
.mapping-the-customer-journey .float-left,
.joyful-accessibility .float-left {
  float: left !important;
}

.home .row,
.mapping-the-customer-journey .row,
.joyful-accessibility .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.home .col,
.home .col-1,
.home .col-10,
.home .col-11,
.home .col-12,
.home .col-2,
.home .col-3,
.home .col-4,
.home .col-5,
.home .col-6,
.home .col-7,
.home .col-8,
.home .col-9,
.home .col-auto,
.home .col-lg,
.home .col-lg-1,
.home .col-lg-10,
.home .col-lg-11,
.home .col-lg-12,
.home .col-lg-2,
.home .col-lg-3,
.home .col-lg-4,
.home .col-lg-5,
.home .col-lg-6,
.home .col-lg-7,
.home .col-lg-8,
.home .col-lg-9,
.home .col-lg-auto,
.home .col-md,
.home .col-md-1,
.home .col-md-10,
.home .col-md-11,
.home .col-md-12,
.home .col-md-2,
.home .col-md-3,
.home .col-md-4,
.home .col-md-5,
.home .col-md-6,
.home .col-md-7,
.home .col-md-8,
.home .col-md-9,
.home .col-md-auto,
.home .col-sm,
.home .col-sm-1,
.home .col-sm-10,
.home .col-sm-11,
.home .col-sm-12,
.home .col-sm-2,
.home .col-sm-3,
.home .col-sm-4,
.home .col-sm-5,
.home .col-sm-6,
.home .col-sm-7,
.home .col-sm-8,
.home .col-sm-9,
.home .col-sm-auto,
.home .col-xl,
.home .col-xl-1,
.home .col-xl-10,
.home .col-xl-11,
.home .col-xl-12,
.home .col-xl-2,
.home .col-xl-3,
.home .col-xl-4,
.home .col-xl-5,
.home .col-xl-6,
.home .col-xl-7,
.home .col-xl-8,
.home .col-xl-9,
.home .col-xl-auto,
.mapping-the-customer-journey .col,
.mapping-the-customer-journey .col-1,
.mapping-the-customer-journey .col-10,
.mapping-the-customer-journey .col-11,
.mapping-the-customer-journey .col-12,
.mapping-the-customer-journey .col-2,
.mapping-the-customer-journey .col-3,
.mapping-the-customer-journey .col-4,
.mapping-the-customer-journey .col-5,
.mapping-the-customer-journey .col-6,
.mapping-the-customer-journey .col-7,
.mapping-the-customer-journey .col-8,
.mapping-the-customer-journey .col-9,
.mapping-the-customer-journey .col-auto,
.mapping-the-customer-journey .col-lg,
.mapping-the-customer-journey .col-lg-1,
.mapping-the-customer-journey .col-lg-10,
.mapping-the-customer-journey .col-lg-11,
.mapping-the-customer-journey .col-lg-12,
.mapping-the-customer-journey .col-lg-2,
.mapping-the-customer-journey .col-lg-3,
.mapping-the-customer-journey .col-lg-4,
.mapping-the-customer-journey .col-lg-5,
.mapping-the-customer-journey .col-lg-6,
.mapping-the-customer-journey .col-lg-7,
.mapping-the-customer-journey .col-lg-8,
.mapping-the-customer-journey .col-lg-9,
.mapping-the-customer-journey .col-lg-auto,
.mapping-the-customer-journey .col-md,
.mapping-the-customer-journey .col-md-1,
.mapping-the-customer-journey .col-md-10,
.mapping-the-customer-journey .col-md-11,
.mapping-the-customer-journey .col-md-12,
.mapping-the-customer-journey .col-md-2,
.mapping-the-customer-journey .col-md-3,
.mapping-the-customer-journey .col-md-4,
.mapping-the-customer-journey .col-md-5,
.mapping-the-customer-journey .col-md-6,
.mapping-the-customer-journey .col-md-7,
.mapping-the-customer-journey .col-md-8,
.mapping-the-customer-journey .col-md-9,
.mapping-the-customer-journey .col-md-auto,
.mapping-the-customer-journey .col-sm,
.mapping-the-customer-journey .col-sm-1,
.mapping-the-customer-journey .col-sm-10,
.mapping-the-customer-journey .col-sm-11,
.mapping-the-customer-journey .col-sm-12,
.mapping-the-customer-journey .col-sm-2,
.mapping-the-customer-journey .col-sm-3,
.mapping-the-customer-journey .col-sm-4,
.mapping-the-customer-journey .col-sm-5,
.mapping-the-customer-journey .col-sm-6,
.mapping-the-customer-journey .col-sm-7,
.mapping-the-customer-journey .col-sm-8,
.mapping-the-customer-journey .col-sm-9,
.mapping-the-customer-journey .col-sm-auto,
.mapping-the-customer-journey .col-xl,
.mapping-the-customer-journey .col-xl-1,
.mapping-the-customer-journey .col-xl-10,
.mapping-the-customer-journey .col-xl-11,
.mapping-the-customer-journey .col-xl-12,
.mapping-the-customer-journey .col-xl-2,
.mapping-the-customer-journey .col-xl-3,
.mapping-the-customer-journey .col-xl-4,
.mapping-the-customer-journey .col-xl-5,
.mapping-the-customer-journey .col-xl-6,
.mapping-the-customer-journey .col-xl-7,
.mapping-the-customer-journey .col-xl-8,
.mapping-the-customer-journey .col-xl-9,
.mapping-the-customer-journey .col-xl-auto,
.joyful-accessibility .col,
.joyful-accessibility .col-1,
.joyful-accessibility .col-10,
.joyful-accessibility .col-11,
.joyful-accessibility .col-12,
.joyful-accessibility .col-2,
.joyful-accessibility .col-3,
.joyful-accessibility .col-4,
.joyful-accessibility .col-5,
.joyful-accessibility .col-6,
.joyful-accessibility .col-7,
.joyful-accessibility .col-8,
.joyful-accessibility .col-9,
.joyful-accessibility .col-auto,
.joyful-accessibility .col-lg,
.joyful-accessibility .col-lg-1,
.joyful-accessibility .col-lg-10,
.joyful-accessibility .col-lg-11,
.joyful-accessibility .col-lg-12,
.joyful-accessibility .col-lg-2,
.joyful-accessibility .col-lg-3,
.joyful-accessibility .col-lg-4,
.joyful-accessibility .col-lg-5,
.joyful-accessibility .col-lg-6,
.joyful-accessibility .col-lg-7,
.joyful-accessibility .col-lg-8,
.joyful-accessibility .col-lg-9,
.joyful-accessibility .col-lg-auto,
.joyful-accessibility .col-md,
.joyful-accessibility .col-md-1,
.joyful-accessibility .col-md-10,
.joyful-accessibility .col-md-11,
.joyful-accessibility .col-md-12,
.joyful-accessibility .col-md-2,
.joyful-accessibility .col-md-3,
.joyful-accessibility .col-md-4,
.joyful-accessibility .col-md-5,
.joyful-accessibility .col-md-6,
.joyful-accessibility .col-md-7,
.joyful-accessibility .col-md-8,
.joyful-accessibility .col-md-9,
.joyful-accessibility .col-md-auto,
.joyful-accessibility .col-sm,
.joyful-accessibility .col-sm-1,
.joyful-accessibility .col-sm-10,
.joyful-accessibility .col-sm-11,
.joyful-accessibility .col-sm-12,
.joyful-accessibility .col-sm-2,
.joyful-accessibility .col-sm-3,
.joyful-accessibility .col-sm-4,
.joyful-accessibility .col-sm-5,
.joyful-accessibility .col-sm-6,
.joyful-accessibility .col-sm-7,
.joyful-accessibility .col-sm-8,
.joyful-accessibility .col-sm-9,
.joyful-accessibility .col-sm-auto,
.joyful-accessibility .col-xl,
.joyful-accessibility .col-xl-1,
.joyful-accessibility .col-xl-10,
.joyful-accessibility .col-xl-11,
.joyful-accessibility .col-xl-12,
.joyful-accessibility .col-xl-2,
.joyful-accessibility .col-xl-3,
.joyful-accessibility .col-xl-4,
.joyful-accessibility .col-xl-5,
.joyful-accessibility .col-xl-6,
.joyful-accessibility .col-xl-7,
.joyful-accessibility .col-xl-8,
.joyful-accessibility .col-xl-9,
.joyful-accessibility .col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.home .col-12,
.mapping-the-customer-journey .col-12,
.joyful-accessibility .col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {

  .home .col-md-10,
  .mapping-the-customer-journey .col-md-10,
  .joyful-accessibility .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}

@media (min-width: 992px) {

  .home .col-lg-8,
  .mapping-the-customer-journey .col-lg-8,
  .joyful-accessibility .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .home .col-lg-7,
  .mapping-the-customer-journey .col-lg-7,
  .joyful-accessibility .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .home .col-lg-6,
  .mapping-the-customer-journey .col-lg-6,
  .joyful-accessibility .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .home .col-lg-5,
  .mapping-the-customer-journey .col-lg-5,
  .joyful-accessibility .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .home .offset-lg-6,
  .mapping-the-customer-journey .offset-lg-6,
  .joyful-accessibility .offset-lg-6 {
    margin-left: 50%;
  }
}

@media (min-width: 1200px) {

  .home .col-xl-5,
  .mapping-the-customer-journey .col-xl-5,
  .joyful-accessibility .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .home .col-xl-6,
  .mapping-the-customer-journey .col-xl-6,
  .joyful-accessibility .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .home .offset-xl-6,
  .mapping-the-customer-journey .offset-xl-6,
  .joyful-accessibility .offset-xl-6 {
    margin-left: 50%;
  }
}

.home .pb-0,
.home .py-0,
.mapping-the-customer-journey .pb-0,
.mapping-the-customer-journey .py-0,
.joyful-accessibility .pb-0,
.joyful-accessibility .py-0 {
  padding-bottom: 0 !important;
}

.home .mt_100,
.mapping-the-customer-journey .mt_100,
.joyful-accessibility .mt_100 {
  margin-top: 100px !important;
}

.home .head-level1,
.mapping-the-customer-journey .head-level1,
.joyful-accessibility .head-level1 {
  color: #282828;
  font-size: 100px;
  line-height: 90px;
  margin: 0 0 30px 0;
  font-weight: 600;
}

@media screen and (max-width: 767px) {

  .home .head-level1,
  .mapping-the-customer-journey .head-level1,
  .joyful-accessibility .head-level1 {
    font-size: 5rem;
    line-height: 4.5rem;
    margin: 0 0 15px;
  }
}

.home .head-level2,
.mapping-the-customer-journey .head-level2,
.joyful-accessibility .head-level2 {
  color: #282828;
  font-size: 36px;
  margin: 20px 0;
  line-height: 52px;
  font-weight: 700;
}

.home .head-level2 .gtm.gtm-right-black-circular,
.mapping-the-customer-journey .head-level2 .gtm.gtm-right-black-circular,
.joyful-accessibility .head-level2 .gtm.gtm-right-black-circular {
  position: absolute !important;
  margin-top: 36px;
  margin-left: 20px;
  vertical-align: sub;
}

.home .head-level5,
.mapping-the-customer-journey .head-level5,
.joyful-accessibility .head-level5 {
  color: #282828;
  font-size: 24px;
  line-height: 38px;
  margin: 0 0 15px;
  font-weight: 500;
}

.home section p,
.mapping-the-customer-journey section p,
.joyful-accessibility section p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.home section strong,
.home section b,
.mapping-the-customer-journey section strong,
.mapping-the-customer-journey section b,
.joyful-accessibility section strong,
.joyful-accessibility section b {
  font-weight: bolder;
}

.home .head-label,
.mapping-the-customer-journey .head-label,
.joyful-accessibility .head-label {
  color: #767676;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0px;
  font-weight: 700;
}

.home {
  /* Project Snapshots CSS */
}

.home #experience,
.home #case-study,
.home #smart-thinking,
.home #our-culture,
.home #our-clients,
.home #section-footer {
  overflow: hidden;
  clear: both;
}

.home section.main-sec,
.home .section-full {
  width: 100%;
  padding: 0;
  display: table;
  margin: 0;
  max-width: none;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.home section.main-sec.experience-sec{
  height: 80vh;
}

.home .container {
  max-width: 1400px;
  width: 100%;
  padding: 0 15px;
  margin-right: auto;
  margin-left: auto;
}

.home #showcase-sec1,
.home #showcase-sec2,
.home #showcase-sec3,
.home #showcase-sec4 {
  padding: 50px 20px !important;
}

@media screen and (max-width: 767px) {
  .home #experience {
    padding: 150px 0px 50px;
  }
}

.home .experience-sec {
  background-color: #f5d600;
  position: relative;
}

.home .experience-sec .row {
  display: block !important;
}

.home .experience-sec .head-level1 {
  margin-top: 80px;
}

@media screen and (max-width: 480px) {
  .home .head-level1 {
    font-size: 55px;
    line-height: 60px;
  }
}

.home .experience-sec .head-level1 {
  margin-top: 80px;
}

@media screen and (max-width: 1199px) {
  .home .experience-sec .head-level1 {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .home .experience-sec .head-level1 {
    margin-bottom: 30px;
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .home .experience-sec-row .head-level1 br {
    display: none;
  }
}

.home #our-culture,
.home #our-clients {
  position: relative;
  width: 100%;
  float: left;
}

.home .content {
  display: table-cell;
  vertical-align: middle;
}

.home .section-image {
  float: left;
  width: 100%;
}

.home .sc-parallex {
  width: 100%;
  display: table;
  height: 100%;
  z-index: 2;
  position: relative;
  margin: 0 auto;
}

.home .sc-parallex-inner {
  display: table;
  height: 100%;
  z-index: 99;
  position: relative;
  width: 100%;
}

.home .sc-content {
  float: left;
  width: 100%;
  padding-left: 110px;
}

.home .cta {
  margin-top: 50px;
  color: #282828;
}

.home .cta span {
  color: #282828;
  display: inline-block;
  vertical-align: top;
}

.home .cta .gtm {
  font-size: 50px;
  line-height: 50px;
  float: left;
  margin: 22px 15px 0 0;
}

.home .smartthink-content .head-label {
  /* color: #6c5e15; */
  /* Not accessible */
  color: #665D1D;
}

.home .smartthink-content .cta .head-label {
  /* color: #6c5e15; */
  /* Not accessible */
  color: #292929;
}

.home .desktop-block {
  display: block;
}

@media screen and (max-width: 992px) {
  .home .desktop-block {
    display: none;
  }
}

.home .mobile-block {
  display: none;
}

@media screen and (max-width: 992px) {
  .home .mobile-block {
    display: block;
  }
}

.home .smartthink_placeholder,
.home .smartthink_placeholder img {
  width: 100%;
  float: left;
}

.home .white,
.home .white a {
  color: #fff;
}

.home .smartthink-content .mt_10 {
  margin-top: 10px !important;
}

.home .smart-sec-list {
  display: block;
  margin: 0;
  padding: 0;
}

.home .smart-sec-list li {
  color: #000;
  font-size: 16px;
  list-style: none;
  margin: 5px 0;
  padding-left: 25px;
  position: relative;
}

.home .smart-sec-list li span {
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0;
  top: 8px;
}

.home .smartthink-row {
  display: block !important;
}

.home .themission-sec {
  position: relative;
  float: left;
  padding: 0;
  width: 100%;
  overflow: hidden;
  background-color: #f5d600;
  /* mission yellow — matches colorFor() */
}

.home .themission-sec .full-screen-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* fill the section box fully */
  object-fit: cover;
  /* cover without distortion, crop overflow */
  margin: 0;
  /* remove the centering that created the letterbox strips */
  z-index: 0;
}

.home .full-screen-image {
  width: 100%;
  float: left;
}

.home img {
  border: 0;
  vertical-align: middle;
  border-style: none;
}

.home .content-position {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
}

.home .yellow,
.home .yellow a,
.home .title-color1 {
  color: #f5d00d;
}

.home .heading-opacity {
  height: 260px;
}

@media screen and (max-width: 1600px) {
  .home .heading-opacity {
    height: 200px;
  }
}

.home .ourclients-sec {
  background: #fff;
  float: left;
  padding: 0px 0 100px;
  width: 100%;
}

.home [role="tablist"],
.home .taglist {
  padding: 0;
}

.home [role="tablist"] li,
.home [role="tablist"] a,
.home .taglist li,
.home .taglist .tag-button {
  display: inline-block;
}

.home [role="tablist"] a,
.home .taglist .tag-button {
  text-decoration: none;
  padding: 0.5rem 1em;
  background: linear-gradient(to right, #f5d00d 50%, #fff 50%);
  background-size: 300% 100%;
  background-position: right bottom;
  transition:
    background-position 0.5s,
    color 0.5s,
    border-color 0.25s,
    opacity 0.5s;
}

.home [role="tablist"] [aria-selected] {
  background-position: left bottom;
  color: #282828;
}

.home .logo-panel .clients-logos {
  animation-name: appear;
  animation-duration: 0.25s;
  animation-iteration-count: 1;
  border: none;
}

.home .logo-panel li img {
  opacity: 1;
  filter: brightness(50%);
}

.home .taglist .tag-button {
  border: 1px solid #9b9b9b;
  cursor: pointer !important;
  display: inline-block;
}

.home .unselected~.tag-button {
  opacity: 0.25;
}

.home .taglist input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.home .taglist input:enabled:hover~.tag-button {
  border-color: #f5d00d;
  color: #282828;
}

.home .taglist input:checked~.tag-button {
  background-color: #f5d00d;
  background-position: left bottom;
  color: #282828;
  border-color: #f5d00d;
}

.home .project-thumbs {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
}

.home .gallery-grid {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(80px, 1fr));
  grid-template-rows: auto auto;
  grid-gap: 20px;
}

.home .gallery-grid .head-level2 {
  margin: 0;
}

.home .gallery-grid .blocks {
  display: grid;
  grid-template-rows: minmax(1fr, 600px) auto;
  grid-gap: 20px;
  max-height: 800px;
  height: 100%;
}

.home .gallery-grid img {
  width: 100%;
}

.home .gallery-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home .gallery-grid video::-webkit-media-controls,
.home .project-thumbs video::-webkit-media-controls {
  display: none !important;
}

.home .gallery-grid a {
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.home .project-thumbs a {
  float: left;
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.home .project-thumbs li {
  display: block;
  margin-left: 50%;
  transform: translateX(-50%);
}

.home .thumb-tile {
  display: flex;
  transition: opacity 0.5s;
}

.home .thumb-tile.unselected {
  opacity: 0.5;
}

.home .thumb-tile img,
.home .thumb-tile video {
  opacity: 1;
  border: 1px;
  display: flex;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  transition: opacity 0.5s;
}

.home .thumb-tile:hover img,
.home .thumb-tile:hover video {
  opacity: 0.8;
  transition: opacity 0.5s;
}

.home .tile-label {
  position: absolute;
  opacity: 0;
}

.home .task-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(80px, 1fr));
  grid-gap: 20px;
}

.home .task-block {
  display: block;
  padding: 30px;
  background-color: #efefef;
  border-radius: 4px;
}

.home dl,
.home ol,
.home ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

.home .logo-panel {
  border-bottom: 1px solid #ccc;
}

.home .logo-panel .clients-logos {
  animation-name: appear;
  animation-duration: 0.25s;
  animation-iteration-count: 1;
  border: none;
}

.home .clients-logos {
  border-top: 1px solid #ccc;
  float: left;
  list-style: none;
  padding: 50px 0 0;
  width: 100%;
  margin: 30px 0 0;
}

@media screen and (max-width: 1600px) {
  .home .clients-logos {
    margin: 0px;
  }
}

.home .clients-logos li {
  float: left;
  width: 15%;
  margin: 0 2.5%;
  min-height: 100px;
  position: relative;
}

.home .clients-logos li img {
  opacity: 0.5;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 80%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.home .logo-panel li img {
  opacity: 1;
  filter: brightness(50%);
}

@media screen and (max-width: 1399px) {

  .home .have-a-project .heading-opacity .gtm,
  .home .cta .gtm {
    font-size: 30px;
    line-height: 30px;
    margin: 18px 15px 0 0;
  }
}

@media screen and (max-width: 992px) {
  .home a i+.head-label {
    line-height: 8px;
  }
}

@media screen and (max-width: 2199px) {
  .home .cs-banner {
    padding-top: 5%;
  }
}

@media screen and (max-width: 1799px) {
  .home .cs-banner {
    padding-top: 10%;
  }
}

@media screen and (max-width: 1600px) {
  .home {
    /* .head-level1 {
      font-size: 100px;
      line-height: 90px;
    } */
  }

  .home .sc-image .section-inner-image {
    width: 47%;
    float: left;
    height: auto;
    margin: 1.5%;
    padding: 0;
  }

  .home .sc-image .section-inner-image img {
    max-width: 100%;
  }

  .home .sc-content {
    padding-left: 30px;
  }

  .home .sc-content1 {
    padding-right: 30px;
  }

  .home .experience-sec .section-image img {
    margin-right: auto;
    display: block;
    width: 800px;
    max-width: 800px;
    margin-left: -150px;
  }

  .home .login-sec .section-image img {
    margin-right: auto;
    display: block;
    width: 800px;
    max-width: 800px;
    margin-left: -150px;
  }

  .home #showcase-sec1,
  .home #showcase-sec2,
  .home #showcase-sec3,
  .home #showcase-sec4 {
    padding: 30px 50px !important;
  }

  .home .smartthink-content .mt_100 {
    margin-top: 20px !important;
  }

  .home .clients-logos {
    margin: 0px;
  }

  .home .heading-opacity {
    height: 200px;
  }

  .home .heading-opacity1 {
    height: 100px;
  }

  .home .project-block-left .clmn {
    max-width: 610px;
  }
}

@media screen and (max-width: 1599px) {
  .home .container {
    max-width: 1220px;
  }

  .home .menu-list li {
    margin-bottom: 0.9rem;
  }

  .home .menu-footer {
    top: 565px;
  }
}

@media screen and (max-width: 1400px) {
  .home .container {
    max-width: 100%;
    padding: 0 130px;
  }

  .home .project-block-left .clmn {
    padding-left: 130px;
    max-width: none;
  }
}

@media screen and (max-width: 1399px) {
  .home .cs-banner-img {
    top: auto;
  }

  .home .cs-banner-content .small {
    margin-bottom: 20px;
  }

  .home .user-block {
    margin-top: 0;
  }

  .home .user-growth p {
    margin-bottom: inherit;
    color: inherit;
  }

  .home .quote {
    line-height: inherit;
  }

  .home .have-a-project .heading-opacity .gtm,
  .home .cta .gtm {
    font-size: 30px;
    line-height: 30px;
    margin: 18px 15px 0 0;
  }

  .home .slider-frame .scrollable {
    height: auto;
  }
}

@media screen and (max-width: 1199px) {

  .home .heading-opacity .head-level1,
  .home .heading-opacity1 .head-level1 {
    height: auto;
    overflow: visible;
  }

  .home .nav-logo {
    z-index: 999;
  }

  .home .logo-scroll {
    z-index: 998;
  }

  .home .experience-sec .head-level1 {
    margin-top: 0;
  }

  .home .login-sec .head-level1 {
    margin-top: 0;
  }

  .home .showcase-sec .head-label.mt_50 {
    margin-top: 0 !important;
  }

  .home .login-sec .head-level1 {
    margin-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .home .cs-banner-content {
    padding-top: 30%;
  }

  .home .um-banner-content {
    padding-top: 10%;
  }

  .home .sc-image {
    width: 100%;
  }

  .home .smartthink-row .float-right.desktop-block {
    margin: 150px 0 0;
  }

  .home .smartthink_placeholder {
    margin: 50px 0 0;
  }
}

@media screen and (max-width: 992px) {
  .home {
    /*  .experience-sec-row .head-level1 {
        margin-top: -75px;
      }*/
  }

  .home .menu-button {
    bottom: auto;
    left: auto;
    right: 13px;
    top: 21px;
  }

  .home .menu-button:hover::after {
    content: "";
    opacity: 0;
  }

  .home .menu-button:hover::before {
    opacity: 1;
  }

  .home a i+.head-label {
    line-height: 8px;
  }

  .home .section-img-bg {
    height: 50vh;
  }

  .home .showcase-full-image.showcase-full-right img {
    max-width: 65%;
  }

  .home .smartthink-sec,
  .home .ourclients-secm {
    padding: 100px 0;
  }

  .home .showcase-sec {
    padding: 30px 0;
  }

  .home .head-level2.mt_200 {
    margin-top: 100px !important;
  }

  .home .head-level3 {
    font-size: 30px;
  }

  .home .showcase-content1 {
    padding-right: 0px !important;
  }

  .home .nav-logo {
    opacity: 1;
    transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
  }

  .home .nav-logo.nav-logo-fixed {
    transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    opacity: 0;
  }

  .home .logo-scroll {
    display: none;
  }

  .home .logo-icon {
    background: #fff;
  }

  .home .sc-image {
    width: 70%;
    float: none;
    margin: 50px auto 0;
    display: block;
  }

  .home #sc-parallex1 {
    background-position: 8% 125px !important;
    background-repeat: no-repeat;
  }

  .home #sc-parallex2 {
    background-position: center center !important;
  }

  .home #sc-parallex3 {
    background-position: 95% 125px !important;
    background-repeat: no-repeat;
  }

  .home #sc-parallex4 {
    background-position: center center !important;
  }

  .home #showcase-sec1 {
    background-color: #383a3e;
  }

  .home #showcase-sec3 {
    background: #fff;
  }

  .home #sc-parallex2 .content,
  .home #sc-parallex4 .content {
    vertical-align: bottom;
    padding: 0 0 200px;
  }

  .home #sc-parallex1 .content,
  .home #sc-parallex3 .content {
    display: block;
    vertical-align: top;
    padding: 140px 0 0;
  }

  .home #showcase-sec1,
  .home #showcase-sec2,
  .home #showcase-sec3,
  .home #showcase-sec4 {
    margin: 30px 20px !important;
    padding: 0px !important;
    width: auto;
  }

  .home .sc-content1 {
    padding-right: 0px;
  }

  .home .sc-content {
    padding-left: 0px;
  }

  .home .head-level2 {
    font-size: 30px;
  }

  .home .smartthink_placeholder {
    margin: 50px 0 20px;
  }

  .home .desktop-block {
    display: none;
  }

  .home .mobile-block {
    display: block;
  }

  .home .smartthink-content br+br {
    display: none;
  }

  .home .themission-sec .full-screen-image {
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    bottom: auto;
    overflow: hidden;
    margin: auto;
    height: 100%;
    width: auto !important;
  }

  .home #footer .full-screen-image {
    position: absolute;
    left: auto;
    right: -25%;
    top: 0px;
    bottom: auto;
    overflow: hidden;
    margin: auto;
    z-index: -1;
    height: 100%;
    width: auto !important;
    z-index: 1;
  }

  .home .clients-logos li {
    float: left;
    width: 28%;
  }

  .home .footer-addrs {
    margin: 50px 0 0;
  }

  .home .smartthink-row .float-right.desktop-block {
    margin: 0;
  }

  .home .main-menu-btn {
    width: 60px;
    height: 60px;
  }

  .home #footer {
    background: #282828;
  }

  .home #footer .content-position {
    z-index: 2;
  }

  .home .experience-sec-row .section-image {
    margin: 100px 0 0;
  }

  .home .experience-sec-row .section-image {
    margin: 100px 0 0;
  }

  .home .logo-icon {
    opacity: 1;
  }

  .home .parallaxie {
    background-attachment: initial !important;
  }

  .home .menu-button:hover::before {
    margin-left: 0px;
  }

  .home #header-menu i.gtm-logo,
  .home .casestudy-menu i.gtm-logo {
    font-size: 50px;
    left: 5px;
  }

  .home .close-menu.close-menu-active {
    width: 85px;
  }

  .home .logo-icon {
    width: 85px;
    height: auto;
  }
}

@media screen and (max-width: 991px) {
  .home .project-block-left .clmn {
    padding-left: 50px;
  }

  .home .cs-banner-content {
    padding-top: 32%;
  }

  .home .um-banner-content {
    padding-top: 15%;
  }

  .home .cs-banner-img {
    margin-top: 10%;
  }

  .home .menu-wrap {
    left: 85px;
  }

  .home .img-placeholder {
    margin-top: 40px;
  }

  .home .cs-banner .container,
  .home .case-study .container,
  .home .slider .container,
  .home .carousel .container,
  .home .have-a-project .container,
  .home #footer .container {
    padding: 0 70px;
  }
}

@media screen and (max-width: 767px) {
  .home {
    /* This area is super messy because fixing larger breakpoints broke these. Clean this up when time is available */
    /* .have-a-project .heading-opacity h2.head-level1 {
      font-size: 44px;
      line-height: 55px;
    } */
    /* -----  Mobile Breakpoint Fixes  ------------------------------------------ */
    /* Homepage */
    /* Case Study */
    /* Menu Footer Resizing */
  }

  .home body,
  .home .smart-sec-list li {
    font-size: 14px;
  }

  .home section.main-sec {
    padding: 100px 0 0;
  }

  .home .nav-logo .nav-logo1 {
    width: 80px;
  }

  .home .nav-logo2 {
    margin-left: 10px;
  }

  .home .project-block-left .clmn {
    left: 0;
    padding: 30px;
  }

  .home .experience-sec .section-image img {
    margin-left: auto;
  }

  .home .login-sec .section-image img {
    margin-left: auto;
  }

  .home .showcase-sec .section-image {
    margin: 40px 0 0;
  }

  .home .showcase-full-image.showcase-full-left img,
  .home .showcase-full-image.showcase-full-right img {
    max-width: 100%;
  }

  .home .showcase-full-image {
    position: relative;
  }

  .home .showcase-full-image:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(255, 255, 255, 0.4);
  }

  .home .showcase-image img {
    margin: 0 auto;
    display: block;
  }

  .home .smartthink-sec,
  .home .showcase-sec {
    padding: 50px 0;
  }

  .home .smartthink-sec a i+.head-label {
    line-height: 18px;
    width: 250px;
    margin-top: -12px;
  }

  .home .head-level2.mt_200 {
    margin-top: 50px !important;
  }

  .home .head-level3 {
    font-size: 24px;
  }

  .home .menu.menu-main,
  .home .menu-footer {
    /* left: 0;
    position:relative; */
    left: 120px;
  }

  .home .menu.menu-main {
    /* top: inherit;
    margin: 90px 0; */
  }

  .home .menu-footer {
    width: 65%;
  }

  .home .main-menu-btn {
    bottom: auto;
    left: auto;
    right: 20px;
    top: 15px;
  }

  .home .close-button {
    bottom: auto;
    top: 30px;
    right: 20px;
    left: auto;
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    position: fixed;
    display: none;
  }

  .home .menu-wrap {
    left: 0;
  }

  .home .menu-wrap.menu-main-active {
    left: 0;
    overflow: auto;
    padding-left: 120px;
    width: 100%;
  }

  .home .close-menu {
    height: 111px;
  }

  .home #menu-nav-logo {
    left: 120px;
  }

  .home .close-menu .close-button {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    background: url(../icons/close.png);
    width: 40px;
    height: 40px;
    background-size: 40px;
  }

  .home .close-menu.close-menu-active .close-button {
    display: block;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
  }

  .home .logo-icon i.gtm-logo {
    left: 25px;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
  }

  .home #header-menu i.gtm-logo,
  .home .casestudy-menu i.gtm-logo {
    left: 12px;
  }

  .home #close-button .gtm.gtm-close {
    color: #282828;
  }

  .home .cs-banner-img {
    margin-top: 0;
  }

  .home .cs-banner-content {
    padding-bottom: 40px;
    padding-top: 45%;
    /*    padding-bottom: 100px;
        padding-top: 100px;*/
  }

  .home .um-banner-content {
    padding-top: 20%;
  }

  .home .container,
  .home .cs-banner .container,
  .home .case-study .container,
  .home .slider .container,
  .home .carousel .container,
  .home .have-a-project .container,
  .home #footer .container {
    padding: 0 30px;
  }

  .home .project-block-bottom .container {
    padding: 0;
  }

  .home .experience-sec-row .head-level1 br {
    display: none;
  }

  .home .experience-sec-row .head-level1 {
    margin-top: 0;
  }

  .home #experience {
    padding: 150px 0 209px;
  }

  .home #case-study {
    padding: 209px 0 0;
  }

  .home section.main-sec,
  .home .section-full {
    display: block;
    height: auto !important;
  }

  .home #sc-parallex1 {
    background-position: left 125px !important;
    background-repeat: no-repeat;
  }

  .home #showcase-sec1 {
    background-color: #383a3e;
    padding: 50px 0 0 !important;
  }

  .home #sc-parallex2 {
    background-position: center center !important;
  }

  .home #sc-parallex3 {
    background-position: right 125px !important;
    /*    background-color: #fff; */
    background-repeat: no-repeat;
  }

  .home #sc-parallex1 .content {
    display: block;
    vertical-align: middle;
    margin: 100px 0 0;
  }

  .home #showcase-sec3 {
    background: #fff;
  }

  .home #sc-parallex2 .content,
  .home #sc-parallex4 .content {
    vertical-align: bottom;
    padding: 0 0 200px;
  }

  .home #showcase-sec1,
  .home #showcase-sec2,
  .home #showcase-sec3,
  .home #showcase-sec4 {
    padding: 30px 20px !important;
  }

  .home #sc-parallex3 .content {
    vertical-align: top;
    padding: 140px 0 0;
  }

  .home #showcase-sec1 {
    background-color: #383a3e;
  }

  .home #showcase-sec1,
  .home #showcase-sec2,
  .home #showcase-sec3,
  .home #showcase-sec4 {
    padding: 0px !important;
    margin-top: -20px;
  }

  .home #sc-parallex1,
  .home #sc-parallex2,
  .home #sc-parallex4,
  .home #sc-parallex3 {
    height: 700px;
  }

  .home #sc-parallex1 {
    background-position: 9% 136px !important;
  }

  .home #sc-parallex3 {
    background-position: 76% 126px !important;
  }

  .home #sc-parallex3 .content {
    vertical-align: top;
    padding: 100px 0 0;
  }

  .home #showcase-sec4 {
    margin-bottom: 259px;
  }

  .home #sc-parallex1 .content,
  .home #sc-parallex2 .content,
  .home #sc-parallex4 .content {
    vertical-align: bottom;
    padding: 0 0 150px;
  }

  .home .smartthink-sec {
    padding: 0;
  }

  .home #smart-thinking {
    padding: 259px 0;
  }

  .home #sc-sec2,
  .home #sc-sec3 {
    padding-top: 150px;
  }

  .home .smartthink-content .mt_100 {
    margin-top: 0px !important;
  }

  .home .themission-sec {
    height: 960px !important;
    padding: 259px 0;
  }

  .home .themission-sec .content-position {
    margin: 0px;
  }

  .home .themission-sec .col-12 {
    padding: 0;
  }

  .home .ourclients-sec .content {
    display: block;
  }

  .home .ourclients-sec {
    padding: 229px 0 259px;
  }

  .home .clients-logos {
    padding: 30px 0 0;
  }

  .home .clients-logos li {
    margin: 0px 2.5%;
  }

  .home #footer {
    padding: 259px 0;
  }

  .home #footer .white {
    margin: 10px 0;
  }

  .home .footer-addrs {
    margin: 0;
    padding-top: 20px;
  }

  .home .heading-opacity {
    height: auto;
  }

  .home .experience-sec .content {
    display: block;
  }

  .home .login-sec .content {
    display: block;
  }

  .home .experience-sec-row .section-image {
    margin: 0;
  }

  .home #sc-parallex4 {
    background-position: center 0 !important;
  }

  .home #footer .content-position {
    position: relative;
  }

  .home .gtm-close:before {
    content: "\e251";
  }

  .home .close-menu.close-menu-active {
    overflow: visible;
  }

  


  .home .head-level1 {
    font-size: 80px;
    line-height: 70px;
  }

  .home .sc-content {
    padding: 0px 10px;
  }

  .home .case-study .sc-content .row {
    margin: 0;
  }

  .home .slider-frame {
    width: 100%;
    margin-left: 0;
  }

  .home .scrollable {
    display: none;
  }

  .home .graphics__item--1 {
    top: -25vh;
    left: -50%;
  }

  .home .logo-casestudy {
    display: none;
  }

  .home .case-study .col-12 {
    padding: 0;
  }

  .home .case-study #sc-parallex4 .content,
  .home .case-study #sc-parallex3 .content {
    padding: 70px 0;
  }

  .home .case-study #sc-parallex4 .content {
    vertical-align: middle;
  }

  .home .cs-banner {
    min-height: 500px;
    padding-top: 15%;
  }

  .home .cs-banner .head-level1 {
    font-size: 5rem;
    line-height: 4.5rem;
    margin: 0 0 15px;
  }

  .home .cs-banner-content-wrap {
    padding: 0 15px !important;
  }

  .home .cs-banner-content .row {
    margin: 0;
  }

  .home .user-growth {
    border: 0;
    border-bottom: 1px solid #ccc;
    padding: 0 0 40px 0;
    margin: 0 0 40px 0;
    float: none;
    width: 100%;
  }

  .home .user-growth+.quote {
    float: none;
    width: 100%;
  }

  .home .have-a-project .section-full {
    height: 600px !important;
  }

  .home .have-a-project .heading-opacity {
    margin-top: 40px;
  }

  .home #experience {
    padding: 150px 0px 50px;
  }

  .home #case-study {
    padding: 40px 0 0 0;
  }

  .home #showcase-sec4 {
    margin-bottom: 0;
  }

  .home #smart-thinking {
    padding: 100px 0px;
  }

  .home #sc-sec2,
  .home #sc-sec3 {
    padding-top: 50px;
  }

  .home .themission-sec {
    padding: 150px 0px;
    height: 800px !important;
  }

  .home .ourclients-sec {
    padding: 150px 0px;
  }

  .home #footer {
    padding: 150px 0px;
  }

  .home .head-level2 {
    line-height: 1.5;
  }

  .home .head-level3 {
    line-height: 1.5;
  }

  .home .research-text.sc-content,
  .home .strategy-text.sc-content,
  .home .ux-text,
  .home .visual-text {
    padding: 100px 0px;
  }

  .home .research-text.sc-content,
  .home .ux-text,
  .home .visual-text {
    min-height: auto;
  }

  .home .strategy-text.sc-content {
    min-height: auto;
  }

  .home .have-a-project .parallaxie {
    height: auto;
    padding: 100px 0px;
  }

  .home .project-block-left,
  .home .project-block-right {
    width: 100%;
    float: left;
    position: relative;
  }

  .home .project-block {
    height: 150px;
  }

  .home .project-block-right .clmn {
    padding: 30px;
  }

  .home .menu-footer {
    width: 55vw;
  }
}

@media screen and (max-width: 480px) {
  .home .head-level1 {
    font-size: 55px;
    line-height: 60px;
  }

  .home .head-level2 {
    font-size: 28px;
  }

  .home .head-level3 {
    font-size: 20px;
  }

  .home .showcase-full {
    margin: 50px 0 0;
  }

  .home .showcase-label.mt_100 {
    margin-top: 50px !important;
  }

  .home .themission-sec .content-position {
    float: left;
    margin: 0;
    position: relative;
  }

  .home .themission-sec .col-12 {
    padding: 0;
  }

  .home .clients-logos li {
    width: 28%;
  }

  .home #footer .content-position {
    position: relative;
    /*padding: 50px 15px;*/
  }

  .home #footer .full-screen-image {
    display: none;
  }

  .home .nav-logo2 {
    display: none;
  }

  .home .logo-icon,
  .home .close-menu.close-menu-active {
    width: 80px;
    height: 80px;
  }

  .home .close-menu {
    height: 80px;
  }

  .home .logo-icon i.gtm-logo {
    left: 14px;
    font-size: 50px;
    top: 55px;
  }

  .home #menu-nav-logo {
    display: none;
  }

  .home .main-menu-btn {
    right: 10px;
    top: 5px;
  }

  .home .menu-wrap.menu-main-active {
    padding-left: 0;
    overflow-x: hidden;
    overflow-y: scroll;
  }

  .home #header-menu i.gtm-logo,
  .home .casestudy-menu i.gtm-logo {
    left: 5px;
    top: 55px;
    font-size: 50px;
  }

  .home .close-button {
    bottom: auto;
    top: 15px;
    right: 110%;
    transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    display: block;
  }

  .home .close-menu-active .close-button {
    right: 10px;
    transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
  }

  .home .main-menu-btn {
    width: 60px;
    height: 60px;
  }

  .home .menu-button {
    right: 14px;
    top: 23px;
  }

  .home .experience-sec .content {
    display: block;
  }

  .home .login-sec .content {
    display: block;
  }

  .home .themission-sec .full-screen-image {
    left: -100px;
  }

  .home .sc-image {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .home {
    /*  .menu-footer {
        width: 65%;
      }*/
    /* -----  Mobile Breakpoint Fixes  ------------------------------------------ */
    /* Menu Footer Resizing */
  }

  .home .menu.menu-main,
  .home .menu-footer {
    left: 0%;
    position: absolute;
  }

  .home .menu.menu-main {
    top: 100px;
    margin: 0;
  }

  .home .cs-banner {
    max-height: 66vh;
    padding-top: 22%;
  }

  .home .menu-footer {
    width: 65vw;
  }
}

@media screen and (max-width: 329px) {
  .home .cs-banner {
    max-height: 85vh;
    padding-top: 30%;
  }
}

@media screen and (max-width: 320px) {
  .home {
    /* Adjust Menu Footer Top */
    /* -----  Mobile Breakpoint Fixes  ------------------------------------------ */
    /* Menu Footer Resizing */
  }

  .home .head-level2 {
    font-size: 26px;
  }

  .home #footer .full-screen-image {
    display: none;
  }

  .home #sc-parallex3 {
    background-position: 77% 126px !important;
  }

  .home .menu-list a span {
    font-size: 18px;
    line-height: 18px;
  }

  .home .menu-list>li {
    margin: 0 0 0.5rem 0;
  }

  .home .menu-footer {
    top: 490px;
  }

  .home .menu-footer {
    width: 65vw;
  }
}

@media screen and (max-width: 767px) {

  body.home,
  .smart-sec-list li {
    font-size: 14px;
  }
}

.mapping-the-customer-journey .container,
.joyful-accessibility .container {
  width: 100%;
  padding: 0 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1400px;
  /*    @media (min-width: 576px) {
        max-width: 540px;
      }
      @media (min-width: 768px) {
        max-width: 720px;
      }
      @media (min-width: 992px) {
        max-width: 960px;
      }
      @media (min-width: 1200px) {
        max-width: 1140px;
      }*/
}

@media screen and (max-width: 1599px) {

  .mapping-the-customer-journey .container,
  .joyful-accessibility .container {
    max-width: 1220px;
  }
}

@media screen and (max-width: 1400px) {

  .mapping-the-customer-journey .container,
  .joyful-accessibility .container {
    max-width: 100%;
    padding: 0 130px;
  }
}

@media screen and (max-width: 991px) {

  .mapping-the-customer-journey .container,
  .joyful-accessibility .container {
    padding: 0 70px;
  }
}

@media screen and (max-width: 767px) {

  .mapping-the-customer-journey .container,
  .joyful-accessibility .container {
    padding: 0 30px;
  }
}

.mapping-the-customer-journey .cs-banner,
.joyful-accessibility .cs-banner {
  background-size: cover !important;
  min-height: 800px;
  max-height: 60vh;
  padding-top: 10%;
  position: relative;
  overflow: hidden;
  z-index: -1;
}

@media screen and (max-width: 2199px) {

  .mapping-the-customer-journey .cs-banner,
  .joyful-accessibility .cs-banner {
    padding-top: 5%;
  }
}

@media screen and (max-width: 1799px) {

  .mapping-the-customer-journey .cs-banner,
  .joyful-accessibility .cs-banner {
    padding-top: 10%;
  }
}

@media screen and (max-width: 992px) {

  .mapping-the-customer-journey .cs-banner.parallaxie,
  .joyful-accessibility .cs-banner.parallaxie {
    background-attachment: initial !important;
  }
}

@media screen and (max-width: 767px) {

  .mapping-the-customer-journey .cs-banner,
  .joyful-accessibility .cs-banner {
    min-height: 500px;
    padding-top: 15%;
  }
}

.mapping-the-customer-journey .cs-banner .head-level1,
.joyful-accessibility .cs-banner .head-level1 {
  margin: 0 0 40px 0;
}

@media screen and (max-width: 767px) {

  .mapping-the-customer-journey .cs-banner .head-level1,
  .joyful-accessibility .cs-banner .head-level1 {
    margin: 0 0 15px;
  }
}

.mapping-the-customer-journey .casestudy-module,
.joyful-accessibility .casestudy-module {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 80px 0;
}

@media screen and (min-width: 768px) {

  .mapping-the-customer-journey .casestudy-module,
  .joyful-accessibility .casestudy-module {
    padding: 100px 0;
  }
}

.mapping-the-customer-journey .casestudy-module .h1,
.mapping-the-customer-journey .casestudy-module .h2,
.mapping-the-customer-journey .casestudy-module .h3,
.mapping-the-customer-journey .casestudy-module .h4,
.mapping-the-customer-journey .casestudy-module .h5,
.mapping-the-customer-journey .casestudy-module .h6,
.mapping-the-customer-journey .casestudy-module h1,
.mapping-the-customer-journey .casestudy-module h2,
.mapping-the-customer-journey .casestudy-module h3,
.mapping-the-customer-journey .casestudy-module h4,
.mapping-the-customer-journey .casestudy-module h5,
.mapping-the-customer-journey .casestudy-module h6,
.joyful-accessibility .casestudy-module .h1,
.joyful-accessibility .casestudy-module .h2,
.joyful-accessibility .casestudy-module .h3,
.joyful-accessibility .casestudy-module .h4,
.joyful-accessibility .casestudy-module .h5,
.joyful-accessibility .casestudy-module .h6,
.joyful-accessibility .casestudy-module h1,
.joyful-accessibility .casestudy-module h2,
.joyful-accessibility .casestudy-module h3,
.joyful-accessibility .casestudy-module h4,
.joyful-accessibility .casestudy-module h5,
.joyful-accessibility .casestudy-module h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

.mapping-the-customer-journey .casestudy-module .h1,
.joyful-accessibility .casestudy-module .h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {

  .mapping-the-customer-journey .casestudy-module .h1,
  .joyful-accessibility .casestudy-module .h1 {
    font-size: 70px;
  }
}

.mapping-the-customer-journey .casestudy-module .h1 strong,
.joyful-accessibility .casestudy-module .h1 strong {
  font-weight: 700;
}

.mapping-the-customer-journey .casestudy-module h2,
.joyful-accessibility .casestudy-module h2 {
  font-size: 36px;
  line-height: 1.4;
}

.mapping-the-customer-journey .casestudy-module h6,
.joyful-accessibility .casestudy-module h6 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
}

.mapping-the-customer-journey .casestudy-module dl,
.mapping-the-customer-journey .casestudy-module ol,
.mapping-the-customer-journey .casestudy-module ul,
.joyful-accessibility .casestudy-module dl,
.joyful-accessibility .casestudy-module ol,
.joyful-accessibility .casestudy-module ul {
  margin-left: 40px;
  margin-top: 0;
  margin-bottom: 1rem;
}

.mapping-the-customer-journey .casestudy-module dl li,
.mapping-the-customer-journey .casestudy-module ol li,
.mapping-the-customer-journey .casestudy-module ul li,
.joyful-accessibility .casestudy-module dl li,
.joyful-accessibility .casestudy-module ol li,
.joyful-accessibility .casestudy-module ul li {
  list-style: disc;
}

@media screen and (min-width: 768px) {

  .mapping-the-customer-journey .casestudy-module ul,
  .joyful-accessibility .casestudy-module ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 10%;
  }
}

.mapping-the-customer-journey .casestudy-module figure,
.joyful-accessibility .casestudy-module figure {
  margin: 0 0 1rem;
}

.mapping-the-customer-journey .casestudy-module img,
.mapping-the-customer-journey .casestudy-module video,
.joyful-accessibility .casestudy-module img,
.joyful-accessibility .casestudy-module video {
  max-width: 100%;
  vertical-align: middle;
  width: auto;
}

.mapping-the-customer-journey .have-a-project,
.joyful-accessibility .have-a-project {
  position: relative;
  background-color: #efefef;
}

.mapping-the-customer-journey .have-a-project .container,
.joyful-accessibility .have-a-project .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.mapping-the-customer-journey .have-a-project .heading-opacity,
.joyful-accessibility .have-a-project .heading-opacity {
  height: auto;
}

@media screen and (max-width: 1600px) {

  .mapping-the-customer-journey .have-a-project .heading-opacity,
  .joyful-accessibility .have-a-project .heading-opacity {
    height: 200px;
  }
}

.mapping-the-customer-journey .have-a-project .heading-opacity h2.head-level1,
.joyful-accessibility .have-a-project .heading-opacity h2.head-level1 {
  color: #383a3e;
  font-size: 100px;
  font-weight: 700;
  line-height: 90px;
  height: auto;
  margin: 0;
  overflow: hidden;
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {

  .mapping-the-customer-journey .have-a-project .heading-opacity h2.head-level1,
  .joyful-accessibility .have-a-project .heading-opacity h2.head-level1 {
    font-size: 80px;
    line-height: 70px;
  }
}

.mapping-the-customer-journey .have-a-project .heading-opacity .lets-chat,
.joyful-accessibility .have-a-project .heading-opacity .lets-chat {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.mapping-the-customer-journey .have-a-project .heading-opacity span,
.joyful-accessibility .have-a-project .heading-opacity span {
  letter-spacing: 3px;
  /* color: #9b9b9b; */
  color: #292929;
  font-size: 17px;
  display: inline-block;
  vertical-align: top;
}

.mapping-the-customer-journey .have-a-project .heading-opacity a:hover,
.joyful-accessibility .have-a-project .heading-opacity a:hover {
  text-decoration: none;
  color: #67666d;
}

.mapping-the-customer-journey .have-a-project .heading-opacity .gtm,
.joyful-accessibility .have-a-project .heading-opacity .gtm {
  font-size: 50px;
  line-height: 50px;
  margin: 22px 15px 0 0;
  float: left;
}

.mapping-the-customer-journey .graphics,
.joyful-accessibility .graphics {
  height: 105%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.mapping-the-customer-journey .section-img-bg,
.joyful-accessibility .section-img-bg {
  height: 70vh;
}

.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10000;
  /* above the fixed header (30) and logoBG (10) */
  padding: 0.75rem 1.25rem;
  background: #282828;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  /* hidden off-screen by default */
  transition: transform 0.15s ease-in-out;
}

.skip-link:focus {
  transform: translateY(0);
  /* slides into view on keyboard focus */
  outline: 2px solid #f5d600;
  outline-offset: 2px;
}

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

/* ----- Text animation classes ----- */
.line-mask {
   background: rgba(0, 0, 0, 0);
   padding-bottom: 15px;
   margin-bottom: -15px;
   width: max-content;
}

  h1 .line-mask {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .line{
    overflow: hidden;
    padding-bottom: 15px;
    margin-bottom: -15px;
  }

  .word{
    padding-bottom: 15px;
    margin-bottom: -15px;
  }

  h1 .word {
    margin-bottom: -30px;
    padding-bottom: 0;
  }

  .home .head-level1{
    line-height: 90px;
  }

  @media screen and (max-width: 480px) {
    .home .head-level1{
      line-height: 60px;
    }
  }
/*------------------------*/

/* ----- Parallax classes ----- */
.home .bg {
  display: float;
  z-index: -1;
  width: 100%;
  height: 160%;
  object-fit: cover;
}

.home .parallax.dot {
  background-size: 200% 200%;
  background-repeat: repeat-y;
}
/*------------------------*/

/* ----- Services Section classes ----- */
.home section.services-sec{
  max-height: 60vh;
  min-height: auto;
  background-color: #282828;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.home .services-sec-row{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1em;
}

.services-sec-row .service-head{
  grid-column-start: 1;
  grid-column-end: span 2;
  grid-row-start: 1;
  grid-row-end: span 1;
}

.services-sec-row .services{
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(5, 1fr);
  grid-row-start: 2;
  grid-row-end: span 1;
  grid-column-start: 2;
  grid-column-end: span 5;
  border-top: 1px solid #5F5F5F;
  padding: 4em 0;
}


.services-sec-row .services .service{
  grid-column-end: span 1;
  grid-row-start: 1;
  grid-row-end: span 1;
}

.service .service-icon{
  height: 4em;
  width: 4em;
  margin-bottom: 1em;
}

.service .head-level5{
  line-height: 120%;
}

.home .serv-cta.cta{
  color: #f5d600;
  grid-column-start: 2;
  grid-column-end: span 5;
  margin: 0;
}

.home .serv-cta.cta span{
  color: #f5d600;
}

@media screen and (max-width: 1300px) {
  
  .services-sec-row .services{
    grid-column-start: 1;
    grid-column-end: span 6;
  }
  .home .serv-cta.cta{
    grid-column-start: 1;
    grid-column-end: span 6;
  }

  .services-sec-row .service-head{
    grid-column-end: span 4;
  }

}

@media screen and (max-width: 1090px) {
  
  .services-sec-row .services{
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .services-sec-row .services .service{
    grid-column-end: span 1;
    grid-row-start: auto;
    grid-row-end: span 1;
  }

}

@media screen and (max-width: 767px) {
  .home section.services-sec{
    max-height: fit-content;
    padding-bottom: 50px;
  }

  .home .services-sec-row{
    grid-template-columns: repeat(2, 1fr);
  }

  .services-sec-row .service-head{
    grid-column-end: span 2;
  }

  .home .serv-cta.cta .head-label{
    line-height: 18px;
    width: 250px;
    margin-top: -12px;
  }
}

@media screen and (max-width: 510px) {
  .services-sec-row .services{
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(5, auto);
    gap: 2em;
  }
  .services-sec-row .services .service{
    display: grid;
    grid-template-columns: 4em 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 2em;
    row-gap: 1em;
  }
  .service .service-icon{
    grid-column-start: 1;
    grid-column-end: span 1;
    grid-row-start: 1;
    grid-row-end: span 2;
  }

  .service .head-level5{
    grid-column-start: 2;
    grid-column-end: span 1;
    grid-row-start: 1;
    grid-row-end: span 1;
    margin: 0;
  }
}

/* ----- Logo Section classes ----- */
.home section.logos-sec{
  height: auto;
  background-color: #efefef;
  color: #282828;
  padding-top: 100px;
}

.home .logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 80px;
  align-items: center;
  justify-content: center;
  width: 100%;
  filter: brightness(70%);
}