/*
Single Post Specific Styling.	
*/
/*
Global CSS Variables
:root selector holds theme variables for use throughout CSS.
*/
@view-transition {
  navigation: auto;
}
::view-transition-old('.container') {
  -webkit-animation: 250ms ease-in both exit;
          animation: 250ms ease-in both exit;
}

::view-transition-new('.container') {
  -webkit-animation: 400ms ease-out both enter;
          animation: 400ms ease-out both enter;
}

@-webkit-keyframes exit {
  to {
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
}

@keyframes exit {
  to {
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
}
@-webkit-keyframes enter {
  from {
    opacity: 0;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
}
@keyframes enter {
  from {
    opacity: 0;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
}
:root {
  /* Colors */
  --color-primary: #e17341;
  --color-primary-rgb: 225, 115, 65;
  --color-secondary: #122a37;
  --color-secondary-rgb: 18, 42, 55;
  --color-light: #fcf1ec;
  --color-light-rgb: 252, 241, 236;
  --color-peach: #edab8d;
  --color-yellow: #feb74e;
  --color-black: #0D0D0D;
  /* Derivative colors (must manually resolve values) */
  --color-primary-dark: #be5a33;
  /* darken(#e17341, 10%) */
  --color-primary-light: #eb9971;
  /* lighten(#e17341, 10%) */
  --color-secondary-dark: #1E2B33;
  /* darken(#122a37, 10%) */
  --color-secondary-light: #e8e9f14d;
  --color-secondary-lighter: #7b8f9f;
  --color-purple: #9ba3f1;
  --color-green: #325b4d;
  --color-grey: #a6a6a7;
  /* For apps */
  --color-cream: #fff7f0;
  --border-radius-30: 30px;
}
@media screen and (max-width: 600px) {
  :root {
    --border-radius-30: 20px;
  }
}
:root {
  /* Images Path (custom property for future reference; CSS cannot use in url() natively) */
  --path: "/wp-content/themes/foe/images/";
  /* Font Families */
  --font-primary: "Halyard Display", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/*
CSS Transitions

e.g.
.element{
	@include transition( background .2s ease-out )
} 
*/
/*
Truncate text to specific number of lines with an ellipsis

e.g. include up to three lines.
.element{
    @include truncate-text(3);
}
*/
/*
Style placholder text for inputs

e.g.
input, 
textarea { 
    @include placeholder {
        color: #333333;
    }
}
*/
.case-study-scheme-primary {
  background: var(--case-study-primary-background-colour);
  color: var(--case-study-primary-text-colour);
  --bg-color: var(--case-study-primary-background-colour);
  --text-color: var(--case-study-primary-text-colour);
  --accent-color: var(--color-primary-background-colour);
}

.case-study-scheme-secondary {
  background: var(--case-study-secondary-background-colour);
  color: var(--case-study-secondary-text-colour);
  --bg-color: var(--case-study-secondary-background-colour);
  --text-color: var(--case-study-secondary-text-colour);
  --accent-color: var(--color-secondary-background-colour);
}

.case-study-scheme-tertiary {
  background: var(--case-study-tertiary-background-colour);
  color: var(--case-study-tertiary-text-colour);
  --bg-color: var(--case-study-tertiary-background-colour);
  --text-color: var(--case-study-tertiary-text-colour);
  --accent-color: var(--color-tertiary-background-colour);
}

.acf-block-component .case-study-scheme-primary {
  background: var(--color-primary);
  color: white;
}
.acf-block-component .case-study-scheme-secondary {
  background: var(--color-cream);
  color: var(--color-secondary);
}
.acf-block-component .case-study-scheme-tertiary {
  background: var(--color-peach);
  color: white;
}

.single-case-study .single-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-case-study #container {
  padding-top: 0;
}
.single-case-study footer {
  background: #193133;
  padding-top: 0;
  margin-top: -1px;
}
.single-case-study footer .footer-inner-wrapper, .single-case-study footer .footer-top {
  background: #193133;
}
.single-case-study footer .footer-top {
  padding-top: 8%;
}
.single-case-study footer .footer-gradient {
  background: rgba(255, 255, 255, 0.8);
}
.single-case-study footer .footer-gradient-blur {
  background: rgba(255, 255, 255, 0.5);
}

.case-study-wrapper {
  background-color: var(--page-colour);
  color: var(--page-text-colour);
}
.case-study-wrapper .case-study-inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  padding: 0 8% 5%;
  padding-top: calc(var(--header-height) + 5%);
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .case-study-wrapper .case-study-inner-wrapper {
    padding: 0 4% 5%;
    padding-top: calc(var(--header-height) + 5%);
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .case-study-wrapper .case-study-inner-wrapper {
    padding-top: calc(var(--header-height) + 10%);
  }
}

.mobile-sidenav {
  display: none;
  position: fixed;
  z-index: 100;
  padding: 1rem;
  bottom: 2em;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  margin: auto;
  border: solid 1px white;
  border-radius: 1000px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 1024px) {
  .mobile-sidenav {
    display: block;
  }
}
.mobile-sidenav .mobile-sidenav-swiper {
  width: 100%;
}
.mobile-sidenav .mobile-sidenav-swiper .swiper-slide {
  background: transparent;
  color: var(--color-black);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  border-radius: 1000px;
  position: relative;
}
.mobile-sidenav .mobile-sidenav-swiper .swiper-slide.swiper-slide-prev {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.mobile-sidenav .mobile-sidenav-swiper .swiper-slide.swiper-slide-prev .nav-link-icon {
  margin-right: -5px;
}
.mobile-sidenav .mobile-sidenav-swiper .swiper-slide.swiper-slide-active {
  background: var(--page-title-colour);
  width: calc(100% - 40px);
  padding: 0 0.5em;
}
.mobile-sidenav .mobile-sidenav-swiper .swiper-slide.swiper-slide-active .nav-link-icon {
  background: transparent;
}
.mobile-sidenav .mobile-sidenav-swiper .swiper-slide.swiper-slide-active .nav-link-text {
  opacity: 1;
  width: auto;
}
.mobile-sidenav .mobile-sidenav-swiper .swiper-slide .nav-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mobile-sidenav .mobile-sidenav-swiper .swiper-slide .nav-link-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 1rem;
}
.mobile-sidenav .mobile-sidenav-swiper .swiper-slide .nav-link-text {
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  color: inherit;
  font-size: 1rem;
  overflow: hidden;
  opacity: 0;
  width: 0;
  letter-spacing: 1px;
}

.sidenav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sidenav {
    display: none;
    bottom: 2em;
    z-index: 100;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width: 500px;
    padding: 0 4%;
  }
}
.sidenav .sticky-nav {
  position: sticky;
  top: calc(var(--header-height) + 5%);
  left: 0;
  right: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  gap: 1.2em;
  border: solid 1px white;
  border-radius: 1000px;
  padding: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .sidenav .sticky-nav {
    position: relative;
    z-index: 10;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    gap: 0.5em;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: solid 1px rgba(255, 255, 255, 0.2);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    padding: 8px;
  }
}
.sidenav .sticky-nav .nav-item {
  border-radius: 1000px;
  background: transparent;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  color: inherit;
  border-radius: 1000px;
  overflow: hidden;
  color: white;
  position: relative;
  line-height: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sidenav .sticky-nav .nav-item:hover:not(.active) {
  cursor: pointer;
}
.sidenav .sticky-nav .nav-item:hover:not(.active) .nav-link-icon {
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--case-study-primary-colour);
}
.sidenav .sticky-nav .nav-item.active {
  background: var(--page-title-colour);
  color: var(--color-black);
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
@media screen and (max-width: 1024px) {
  .sidenav .sticky-nav .nav-item.active {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media screen and (max-width: 600px) {
  .sidenav .sticky-nav .nav-item.active {
    padding-left: 0.5em;
    padding-right: 0.8em;
  }
}
.sidenav .sticky-nav .nav-item.active .nav-link-icon {
  font-size: 1.25rem;
  background: transparent;
}
@media screen and (max-width: 1024px) {
  .sidenav .sticky-nav .nav-item.active .nav-link-icon {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .sidenav .sticky-nav .nav-item.active .nav-link-icon {
    font-size: 0.875rem;
  }
}
.sidenav .sticky-nav .nav-item.active .nav-link-text {
  opacity: 1;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .sidenav .sticky-nav .nav-item.active .nav-link-text {
    width: auto;
    height: auto;
  }
}
.sidenav .sticky-nav .nav-item .nav-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sidenav .sticky-nav .nav-item .nav-link-icon {
  color: inherit;
  background-color: rgba(255, 255, 255, 0.1);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1024px) {
  .sidenav .sticky-nav .nav-item .nav-link-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    color: var(--color-black);
  }
}
@media screen and (max-width: 600px) {
  .sidenav .sticky-nav .nav-item .nav-link-icon {
    font-size: 0.875rem;
    width: 35px;
    height: 35px;
  }
}
.sidenav .sticky-nav .nav-item .nav-link-text {
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  color: inherit;
  overflow: hidden;
  opacity: 0;
  height: 0;
  font-size: 1.1rem;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 1024px) {
  .sidenav .sticky-nav .nav-item .nav-link-text {
    font-size: 1rem;
    width: 0;
    height: auto;
    margin-top: 1px;
  }
}
@media screen and (max-width: 600px) {
  .sidenav .sticky-nav .nav-item .nav-link-text {
    font-size: 0.875rem;
    letter-spacing: 1px;
  }
}

.case-study-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.case-study-content .block {
  padding-left: 0;
  padding-right: 0;
}
.case-study-content .block.has-padding-top {
  padding-top: 1.25rem;
}
@media screen and (max-width: 600px) {
  .case-study-content .block.has-padding-top {
    padding-top: 1rem;
  }
}
.case-study-content .block.has-padding-bottom {
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 600px) {
  .case-study-content .block.has-padding-bottom {
    padding-bottom: 1rem;
  }
}
.case-study-content .block.no-padding-top {
  padding-top: 0;
}
.case-study-content .block.no-padding-bottom {
  padding-bottom: 0;
}
.case-study-content .block:last-child {
  padding-bottom: 0;
}

.case-study-hero {
  padding-top: 0;
  padding-bottom: 1.25rem;
  background-color: var(--page-colour);
}
@media screen and (max-width: 1024px) {
  .case-study-hero {
    padding-top: 5%;
  }
}
@media screen and (max-width: 600px) {
  .case-study-hero {
    padding-bottom: 0.625rem;
  }
}
.case-study-hero h1 {
  color: var(--page-title-colour);
  font-size: clamp(1.25rem, 1.1563rem + 0.25vw, 1.375rem);
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
}
.case-study-hero .inner {
  display: block;
}
.case-study-hero .intro {
  border-bottom: solid 1px var(--page-text-colour);
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .case-study-hero .intro {
    display: block;
  }
}
.case-study-hero .intro .title-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width: 1024px) {
  .case-study-hero .intro .title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1em;
    margin-bottom: 1em;
  }
}
.case-study-hero .intro .title-wrapper h1,
.case-study-hero .intro .title-wrapper h2 {
  margin-bottom: 0px;
}
.case-study-hero .intro .title-wrapper .tagline {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1em;
}
@media screen and (max-width: 1024px) {
  .case-study-hero .intro .title-wrapper .tagline {
    margin: 0;
  }
}
.case-study-hero .intro .subheading-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: right;
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .case-study-hero .intro .subheading-wrapper {
    text-align: left;
    max-width: 400px;
    text-wrap: balance;
  }
}
.case-study-hero .intro .subheading-wrapper h2 {
  margin: 0;
}
.case-study-hero .image-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius-30);
  position: relative;
  aspect-ratio: 1185/558;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .case-study-hero .image-wrapper {
    aspect-ratio: 12/9;
  }
}
@media screen and (max-width: 600px) {
  .case-study-hero .image-wrapper {
    aspect-ratio: 7/9;
  }
}
.case-study-hero .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 800px) {
  .case-study-hero .image-wrapper img {
    width: 150%;
    height: 150%;
  }
}
@media screen and (max-width: 600px) {
  .case-study-hero .image-wrapper img {
    width: 120%;
    height: 120%;
  }
}
.case-study-hero .markers-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.case-study-hero .markers-wrapper .marker {
  position: absolute;
  width: 100px;
  height: 100%;
  z-index: 2;
}
.case-study-hero .markers-wrapper .marker .line {
  width: 2px;
  height: 100%;
  background-color: var(--page-title-colour);
  margin: auto;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.case-study-hero .markers-wrapper .marker .dot {
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--page-title-colour);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.case-study-hero .markers-wrapper .marker .marker-image-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: solid 1px var(--page-title-colour);
  overflow: hidden;
  margin: auto;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.case-study-hero .markers-wrapper .marker .marker-image-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  border-radius: 50%;
  border: solid 1px var(--page-title-colour);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.case-study-hero .markers-wrapper .marker-1 {
  left: 10%;
  max-height: 30%;
  top: 20%;
}
@media screen and (max-width: 900px) {
  .case-study-hero .markers-wrapper .marker-1 {
    left: 5%;
    top: 30%;
  }
}
.case-study-hero .markers-wrapper .marker-1 .marker-image-wrapper {
  max-height: 60px;
  max-width: 60px;
}
@media screen and (max-width: 900px) {
  .case-study-hero .markers-wrapper .marker-1 .marker-image-wrapper {
    max-height: 50px;
    max-width: 50px;
  }
}
.case-study-hero .markers-wrapper .marker-2 {
  top: 30%;
  left: 20%;
  max-height: 30%;
}
@media screen and (max-width: 900px) {
  .case-study-hero .markers-wrapper .marker-2 {
    top: 50%;
    max-height: 28%;
  }
}
@media screen and (max-width: 900px) {
  .case-study-hero .markers-wrapper .marker-2 .marker-image-wrapper {
    max-height: 60px;
    max-width: 60px;
  }
}
.case-study-hero .markers-wrapper .marker-3 {
  top: 10%;
  left: 40%;
  max-height: 30%;
}
@media screen and (max-width: 900px) {
  .case-study-hero .markers-wrapper .marker-3 {
    top: 25%;
  }
}
.case-study-hero .markers-wrapper .marker-3 .marker-image-wrapper {
  max-height: 60px;
  max-width: 60px;
}
@media screen and (max-width: 900px) {
  .case-study-hero .markers-wrapper .marker-3 .marker-image-wrapper {
    max-height: 40px;
    max-width: 40px;
  }
}
.case-study-hero .markers-wrapper .marker-4 {
  top: 40%;
  right: 30%;
  max-height: 30%;
}
@media screen and (max-width: 900px) {
  .case-study-hero .markers-wrapper .marker-4 {
    top: 50%;
    right: 20%;
    max-height: 20%;
  }
}
@media screen and (max-width: 900px) {
  .case-study-hero .markers-wrapper .marker-4 .marker-image-wrapper {
    max-height: 50px;
    max-width: 50px;
  }
}
.case-study-hero .markers-wrapper .marker-5 {
  top: 30%;
  right: 10%;
  max-height: 30%;
}
@media screen and (max-width: 900px) {
  .case-study-hero .markers-wrapper .marker-5 {
    top: 20%;
    right: 5%;
  }
}
.case-study-hero .markers-wrapper .marker-5 .marker-image-wrapper {
  max-height: 70px;
  max-width: 70px;
}
@media screen and (max-width: 900px) {
  .case-study-hero .markers-wrapper .marker-5 .marker-image-wrapper {
    max-height: 60px;
    max-width: 60px;
  }
}

.case-study-topic {
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 600px) {
  .case-study-topic {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.case-study-topic .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2em;
  border-radius: var(--border-radius-30);
  min-height: 770px;
}
@media screen and (max-width: 1100px) {
  .case-study-topic .inner {
    min-height: 500px;
  }
}
@media screen and (max-width: 600px) {
  .case-study-topic .inner {
    min-height: 350px;
    padding: 1.5em;
  }
}
.case-study-topic h3 {
  margin-top: 0;
  font-size: clamp(2rem, -0.7188rem + 7.25vw, 5.625rem);
  max-width: 65ch;
  text-wrap: balance;
  font-weight: 400;
  font-family: var(--font-secondary);
}
@media screen and (max-width: 600px) {
  .case-study-topic h3 {
    font-weight: 500;
    margin-bottom: 20%;
  }
}
.case-study-topic h4 {
  letter-spacing: 1px;
  font-size: clamp(1.375rem, 0.5313rem + 2.25vw, 2.5rem);
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .case-study-topic h4 {
    font-size: 1rem;
    text-wrap: unset;
  }
}
.case-study-topic .list-wrapper {
  margin-top: auto;
}
.case-study-topic .list-wrapper + .content-wrapper {
  margin-top: 1.5em;
}
.case-study-topic .list-wrapper ul {
  margin: 0;
  padding: 0;
  position: relative;
}
.case-study-topic .list-wrapper ul .line {
  position: absolute;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  top: 0.875rem;
  bottom: 0.875rem;
  left: calc(0.438rem - 1px);
  width: 2px;
  background-color: currentColor;
}
.case-study-topic .list-wrapper li {
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  padding-bottom: 1em;
}
.case-study-topic .list-wrapper li:last-child {
  padding-bottom: 0;
}
.case-study-topic .list-wrapper li::before {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  margin-top: 2px;
  background-color: currentColor;
}
.case-study-topic .content-wrapper {
  margin-top: auto;
  padding-right: 3.5em;
}
@media screen and (max-width: 600px) {
  .case-study-topic .content-wrapper {
    padding-right: 0;
  }
}
.case-study-topic .topic-count {
  position: absolute;
  right: 3.125em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  gap: 5px;
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  letter-spacing: 2px;
}
@media screen and (max-width: 600px) {
  .case-study-topic .topic-count {
    margin-top: 2em;
    position: static;
  }
}
.case-study-topic .topic-count .dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background-color: currentColor;
}

.case-study-highlights {
  padding: 0;
}
.case-study-highlights .inner {
  display: block;
  padding: 2em;
  border-radius: var(--border-radius-30);
}
.case-study-highlights .highlights-container {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
@media screen and (max-width: 600px) {
  .case-study-highlights .highlights-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.case-study-highlights .highlights-container .highlight-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width: 600px) {
  .case-study-highlights .highlights-container .highlight-item {
    width: 100%;
    border-bottom: solid 1px var(--color-grey);
    margin-bottom: 2em;
    padding-bottom: 2em;
  }
  .case-study-highlights .highlights-container .highlight-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.case-study-highlights .highlights-container .highlight-item:nth-child(2) {
  border-left: solid 1px var(--color-grey);
  border-right: solid 1px var(--color-grey);
}
@media screen and (max-width: 600px) {
  .case-study-highlights .highlights-container .highlight-item:nth-child(2) {
    border-left: none;
    border-right: none;
  }
}
.case-study-highlights .highlights-container .highlight-item .highlight-value {
  font-size: clamp(3rem, 2.3438rem + 1.75vw, 3.875rem);
  font-weight: 600;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0px;
  margin: 0;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1px;
}

.case-study-timeline {
  padding: 1.25rem 0;
}
@media screen and (max-width: 600px) {
  .case-study-timeline {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}
.case-study-timeline.no-padding {
  padding: 0;
}
.case-study-timeline .inner {
  border: solid 1px var(--color-grey);
  display: block;
  padding: 5%;
  border-radius: var(--border-radius-30);
}
@media screen and (max-width: 600px) {
  .case-study-timeline .inner {
    padding: 2em;
  }
}
.case-study-timeline .timeline-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  position: relative;
}
@media screen and (max-width: 600px) {
  .case-study-timeline .timeline-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.case-study-timeline .timeline-items .line {
  position: absolute;
  bottom: 10.5px;
  left: calc((100% - (var(--item-count) - 1) * 1em) / (var(--item-count) * 2));
  right: calc((100% - (var(--item-count) - 1) * 1em) / (var(--item-count) * 2));
  height: 2px;
  background: #EBFFF6;
  background: -webkit-gradient(linear, left top, right top, from(rgb(235, 255, 246)), color-stop(33%, rgb(234, 254, 212)), color-stop(66%, rgb(232, 254, 149)), to(rgb(231, 254, 95)));
  background: linear-gradient(90deg, rgb(235, 255, 246) 0%, rgb(234, 254, 212) 33%, rgb(232, 254, 149) 66%, rgb(231, 254, 95) 100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 600px) {
  .case-study-timeline .timeline-items .line {
    left: 4px;
    right: unset;
    width: 1px;
    top: 10px;
    bottom: 10px;
    height: auto;
  }
}
.case-study-timeline .timeline-items .timeline-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .case-study-timeline .timeline-items .timeline-item {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  .case-study-timeline .timeline-items .timeline-item:last-child {
    margin-bottom: 0;
  }
}
.case-study-timeline .timeline-items .timeline-item .dot {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: currentColor;
  margin: 1em auto 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .case-study-timeline .timeline-items .timeline-item .dot {
    margin: 0;
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 600px) {
  .case-study-timeline .timeline-items .timeline-item .timeline-item-content {
    font-size: 1.5rem;
  }
}
.case-study-timeline .timeline-items .timeline-item.timeline-item-1 .dot {
  background-color: #EBFFF6;
}
.case-study-timeline .timeline-items .timeline-item.timeline-item-2 .dot {
  background-color: #EAFED4;
}
.case-study-timeline .timeline-items .timeline-item.timeline-item-3 .dot {
  background-color: #E8FE95;
}
.case-study-timeline .timeline-items .timeline-item.timeline-item-4 .dot {
  background-color: #E7FE5F;
}

.split-panel {
  padding: 1.25rem 0;
}
@media screen and (max-width: 600px) {
  .split-panel {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}
.split-panel.no-padding-top {
  padding-top: 0;
}
.split-panel.no-padding-bottom {
  padding-bottom: 0;
}
.split-panel .inner {
  display: block;
}
.split-panel .split-panel-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 600px) {
  .split-panel .split-panel-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.split-panel .column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 0.625rem);
          flex: 0 0 calc(50% - 0.625rem);
  border-radius: var(--border-radius-30);
  padding: 1.5em;
}
.split-panel .phone-layout {
  position: relativ;
  aspect-ratio: 12/9;
  padding-bottom: 0;
  overflow: hidden;
}
.split-panel .phone-layout .title-wrapper {
  text-align: center;
}
.split-panel .phone-layout .title-wrapper .smaller-heading {
  margin-bottom: 0.5em;
}
.split-panel .phone-layout .image-wrapper {
  position: relative;
  aspect-ratio: 12/9;
  width: 100%;
  height: 100%;
}
.split-panel .phone-layout .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 350px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .split-panel .phone-layout .image {
    max-width: 200px;
  }
}
.split-panel .phone-layout .graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.split-panel .apps-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
}
@media screen and (max-width: 600px) {
  .split-panel .apps-layout {
    min-height: 350px;
  }
}
.split-panel .apps-layout .title-wrapper h3 {
  margin-bottom: 0;
  letter-spacing: 0;
  font-size: clamp(1.375rem, 0.5313rem + 2.25vw, 2.5rem);
}
.split-panel .apps-layout .panel-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  padding-top: 1em;
}
.split-panel .image-layout {
  position: relative;
  aspect-ratio: 12/9;
  border-radius: var(--border-radius-30);
  overflow: hidden;
  padding: 0;
  background: transparent;
}
@media screen and (max-width: 1024px) {
  .split-panel .image-layout {
    aspect-ratio: 4/3;
  }
}
@media screen and (max-width: 900px) {
  .split-panel .image-layout {
    aspect-ratio: 1;
  }
}
.split-panel .image-layout.has-title::after {
  display: block;
}
.split-panel .image-layout::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  z-index: 2;
  display: none;
}
.split-panel .image-layout .img-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.split-panel .image-layout img {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.split-panel .image-layout img.gray-image {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.split-panel .image-layout .title-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5em;
  z-index: 3;
}
.split-panel .image-layout .title-wrapper h3 {
  margin-bottom: 0;
  letter-spacing: 0;
}

.case-study-media {
  padding: 1.25rem 0;
  color: white;
}
@media screen and (max-width: 600px) {
  .case-study-media {
    padding: 0.625rem 0;
  }
}
.case-study-media.has-content {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.case-study-media.has-content .img-container {
  position: relative;
}
.case-study-media.has-content .img-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 800px) {
  .case-study-media.has-content .img-container::after {
    background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  }
}
.case-study-media .inner {
  display: block;
  border-radius: var(--border-radius-30);
  aspect-ratio: 20/9;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1.5em;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 800px) {
  .case-study-media .inner {
    aspect-ratio: 12/9;
  }
}
.case-study-media .inner.tall {
  aspect-ratio: 12/9;
}
@media screen and (max-width: 1024px) {
  .case-study-media .inner.tall {
    aspect-ratio: 16/9;
  }
}
.case-study-media .inner .content-wrapper {
  max-width: 30ch;
  text-wrap: balance;
  text-align: right;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 3;
}
.case-study-media .inner .content-wrapper h4 {
  margin-top: 0;
}
.case-study-media .inner .img-container {
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.case-study-media .inner .img-container img {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.phone-mockups {
  padding: 1.25rem 0;
}
@media screen and (max-width: 600px) {
  .phone-mockups {
    padding: 0.625rem 0;
  }
}
.phone-mockups .inner {
  display: block;
  background: white;
  border-radius: var(--border-radius-30);
  padding-top: 8%;
  overflow: hidden;
  aspect-ratio: 20/9;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .phone-mockups .inner {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 600px) {
  .phone-mockups .inner {
    aspect-ratio: 12/9;
  }
}
.phone-mockups .blur-wrapper {
  position: absolute;
  top: 0;
  left: -10%;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 50%;
  border-radius: 50%;
  background: var(--case-study-primary-background-colour);
  -webkit-filter: blur(100px);
          filter: blur(100px);
  z-index: 1;
}
.phone-mockups .blur-wrapper .blur-inner {
  background: var(--case-study-secondary-background-colour);
  width: 100%;
  height: 100%;
  max-height: 25%;
  max-width: 25%;
  border-radius: 50%;
}
.phone-mockups .mockup-container {
  position: relative;
  z-index: 2;
}
.phone-mockups .mockup-container img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 38vw;
  height: auto;
  -o-object-position: top center;
     object-position: top center;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .phone-mockups .mockup-container img {
    max-width: 500px;
  }
}

.case-study-features {
  padding: 1.25rem 0;
}
@media screen and (max-width: 600px) {
  .case-study-features {
    padding: 0.625rem 0;
  }
}
.case-study-features .inner {
  display: block;
}
.case-study-features .image-section {
  position: relative;
  z-index: 2;
  aspect-ratio: 20/9;
  border-radius: var(--border-radius-30);
  overflow: hidden;
  padding: 0;
  margin-bottom: calc(var(--border-radius-30) * -2);
}
@media screen and (max-width: 900px) {
  .case-study-features .image-section {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 600px) {
  .case-study-features .image-section {
    aspect-ratio: 12/9;
  }
}
.case-study-features .image-section::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--case-study-primary-background-colour);
  max-width: 50%;
  max-height: 50%;
  border-radius: 50%;
  margin: auto;
  -webkit-filter: blur(100px);
          filter: blur(100px);
  opacity: 0.7;
  z-index: 4;
}
.case-study-features .image-section .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  z-index: 5;
}
.case-study-features .image-section .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.case-study-features .image-section .graphic {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  max-width: 60%;
  margin: auto;
  z-index: 3;
}
.case-study-features .features-section {
  padding: 2em;
  padding-top: calc(var(--border-radius-30) * 2.5);
  border-radius: var(--border-radius-30);
  text-align: center;
}
.case-study-features .features-section h4 {
  margin-top: 1em;
  margin-bottom: 1.5em;
}
.case-study-features .features-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
@media screen and (max-width: 900px) {
  .case-study-features .features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .case-study-features .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.case-study-features .features-container .feature {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}
.case-study-features .features-container .feature-icon {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--text-color);
  position: relative;
}
@media screen and (max-width: 900px) {
  .case-study-features .features-container .feature-icon {
    width: 80px;
    height: 80px;
  }
}
.case-study-features .features-container .feature-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-color);
  opacity: 0.4;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-filter: blur(40px);
          filter: blur(40px);
}
.case-study-features .features-container .feature-icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  max-width: 34px;
  max-height: 34px;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .case-study-features .features-container .feature-icon img {
    max-width: 28px;
    max-height: 28px;
  }
}
.case-study-features .features-container .feature-title {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 1em;
  max-width: 10em;
  text-wrap: balance;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .case-study-features .features-container .feature-title {
    font-size: 0.875rem;
  }
}

.case-study-footer-cta {
  background: var(--page-colour);
  color: var(--page-text-colour);
  position: relative;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.case-study-footer-cta .inner {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
  padding: 1.5em;
  padding-top: 10%;
  padding-bottom: 5%;
  border-radius: var(--border-radius-30);
  max-width: 1600px;
  margin: 0 auto;
}
.case-study-footer-cta .cta-heading {
  color: var(--page-title-colour);
  font-weight: 500;
  letter-spacing: 0px;
  font-size: clamp(2.5rem, 1.4688rem + 2.75vw, 3.875rem);
  max-width: 800px;
  text-wrap: balance;
  margin-bottom: 1em;
}
@media screen and (max-width: 800px) {
  .case-study-footer-cta .cta-heading {
    margin-bottom: 0.5em;
  }
}
.case-study-footer-cta .case-study-footer-content {
  position: relative;
  z-index: 2;
}
.case-study-footer-cta .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
.case-study-footer-cta .content-wrapper .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 800px;
  text-wrap: balance;
  margin-bottom: 0;
}
.case-study-footer-cta .content-wrapper .button-container {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 8%;
  margin-bottom: 0;
}
.case-study-footer-cta .content-wrapper .button-container .foe-button.secondary {
  margin: 0;
  background: var(--page-text-colour);
  color: black;
}
.case-study-footer-cta .content-wrapper .button-container .foe-button.secondary::after, .case-study-footer-cta .content-wrapper .button-container .foe-button.secondary::before {
  content: unset;
  display: none;
}
.case-study-footer-cta .bg-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #EBFFF6;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(33%, rgba(0, 0, 0, 0.3)), color-stop(66%, rgba(0, 0, 0, 0.8)), color-stop(95%, rgb(0, 0, 0)));
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 33%, rgba(0, 0, 0, 0.8) 66%, rgb(0, 0, 0) 95%);
          mask-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(33%, rgba(0, 0, 0, 0.3)), color-stop(66%, rgba(0, 0, 0, 0.8)), color-stop(95%, rgb(0, 0, 0)));
          mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 33%, rgba(0, 0, 0, 0.8) 66%, rgb(0, 0, 0) 95%);
}
@media screen and (max-width: 800px) {
  .case-study-footer-cta .bg-container {
    -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.19)), to(rgb(0, 0, 0)));
    -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.19) 50%, rgb(0, 0, 0) 100%);
            mask-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.19)), to(rgb(0, 0, 0)));
            mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.19) 50%, rgb(0, 0, 0) 100%);
  }
}/*# sourceMappingURL=single.css.map */