@charset "UTF-8";
/**
* Theme/Project Name
* ==================
* Design: PROJECT NAME
* Author: True Market
* Version 1.0
*
* Table of Contents
* =================
Custom Properties
Mixins
Fonts
Reset
Pages
Typography
Layouts
Components

*/
:root {
  /** Text Sizes */
  --text-xxs: 0.75rem;
  /* ~12px */
  --text-xs: 0.875rem;
  /* ~14px */
  --text: 1rem;
  /* ~16px */
  --text-sm: 1.125rem;
  /* ~18px */
  --text-md: 1.25rem;
  /* ~20px */
  --text-lg: 1.375rem;
  /* ~22px */
  --text-xl: 1.6rem;
  /* ~28px */
  --text-xxl: 2rem;
  /* ~32px */
  --text-xxxl: 3rem;
  /* ~48px */
  --text-xxxxl: 3.75rem;
  /* ~60px */
  /** Colors */
  --color-white: #fff;
  --color-black: #000;
  --color-grey: #585866;
  --color-red: #df615c;
  --color-red-hover: #e1817e;
  --color-orange: #f8985e;
  --color-light-blue: #575785;
  --color-blue: #08083d;
  /** Gradient */
  --gradient-red-orange: linear-gradient(to right, var(--color-red), var(--color-orange));
  --gradient-white-blue: linear-gradient(to right, var(--color-light-blue), var(--color-blue));
  /** Spacing */
  --spacing-xs: 1rem;
  --spacing-sm: 2rem;
  --spacing-md: 4rem;
  --spacing-lg: 6rem;
  --spacing-xl: 10rem;
  /** Easings */
  --easing-zip: cubic-bezier(0.21, 0.205, 0, 1.455);
  --easing-zip-big: cubic-bezier(0.21, 0.205, 0, 1.755);
  --easing-natural: cubic-bezier(0.5, 0, 0.5, 1);
  --easing-in: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --easing-out: cubic-bezier(0.165, 0.84, 0.44, 1);
  --easing-in-out: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --easing-default: var(--easing-natural);
  /** Transitions */
  --transition-bounce: 0.6s var(--easing-zip);
  --transition-long: 0.5s var(--easing-natural);
  --transition-short: 0.2s var(--easing-natural);
  /** Fonts */
  --font-body: "Mont", "Lato", "Lucida Grande", "Tahoma", sans-serif;
  --font-heading: "Mont Bold", "Lato", "Lucida Grande", "Tahoma", sans-serif;
  --color-body-text: #333;
  /** Border Radius */
  --border-radius: 2rem;
  /** Box Shadow */
  --box-shadow: 0 37.25px 41px rgb(0 0 0 / 15%);
  --main-box-shadow: 0 10px 30px rgb(0 0 0 / 15%);
  --box-shadow-alt: 0px 0px 60px 10px rgba(0,0,0,0.10);
  /** Containers */
  --max-width-small: 1100px;
  --max-width: 1400px;
  --max-width-large: 1800px;
}

/* 
==========
Custom Font Families 
==========

Follow these steps to generate @font-face fonts
1. Go to assets/src/fonts and delete everything in there. Do the same in the dist folder
2. Go to https://www.fontsquirrel.com/tools/webfont-generator and upload the fonts that were provided to you
3. Download the kit
4. Extract the zip and copy the files in assets/src/fonts
5. Delete specimen_files folder, the generator_config.txt and all html files
6. Now simply change the urls and font names (font-family) in this file to match your new fonts. Remove unnecessary ones
7. Update main.scss with the new fonts
*/
@font-face {
  font-family: "Mont";
  src: local("Mont Regular"), local("Mont-Regular"), url("../fonts/Mont-Regular.woff2") format("woff2"), url("../fonts/Mont-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont Bold";
  src: local("Mont Bold"), local("Mont-Bold"), url("../fonts/Mont-Bold.woff2") format("woff2"), url("../fonts/Mont-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* Typography */
h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
  font-family: var(--font-heading);
}

.heading {
  font-weight: bold;
  font-size: var(--text-xxxxl);
  line-height: 1;
  color: var(--color-blue);
  /*@include break('xs') {
    font-size: 2.5rem;
  }*/
}
@media screen and (max-width: 800px) {
  .heading {
    font-size: 2.8rem;
  }
}

.subheading {
  font-weight: normal;
  font-size: var(--text-xl);
  color: var(--color-red);
  font-family: var(--font-body);
}
@media (--break-md) {
  .subheading {
    font-size: var(--text-lg);
  }
}

.bodytext {
  font-size: var(--text-sm);
  line-height: 2;
}
@media (--break-sm) {
  .bodytext {
    font-size: var(--text);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-width: 300px;
  font-family: var(--font-body);
  color: var(--color-grey);
}
@media screen and (max-width: 1100px) {
  html,
body {
    font-size: 87.5%;
  }
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

p {
  line-height: 1.6;
  color: var(--color-black);
}

a {
  text-decoration: none;
  color: var(--red);
}
a:hover, a:visited {
  cursor: pointer;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
}
button:hover, button:active, button:focus {
  cursor: pointer;
}

ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

figure,
video,
iframe,
picture,
img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

input,
button,
textarea,
select {
  font-family: inherit;
}

button:focus {
  outline-width: 0 !important;
}

button:focus:not(:focus-visible) {
  outline-width: 5px !important;
}

button:focus-visible {
  outline-width: 5px !important;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

strong {
  font-family: var(--font-heading);
}

/**
* Remove all animations and transitions for people that prefer not to
* see them
*/
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.performance-container {
  margin-bottom: 8rem;
  position: relative;
}

.performance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1700px;
  margin: 0 auto;
  width: 100%;
  padding: 0 4rem;
}
.performance--space-bottom {
  margin: 0 auto 16rem auto;
}
@media screen and (max-width: 800px) {
  .performance--space-bottom {
    margin: 0 auto 6rem auto;
  }
}
@media screen and (max-width: 1100px) {
  .performance {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .performance {
    padding: 0 2rem;
  }
}

.performance__textbox {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 700px;
  align-items: flex-start;
  margin-left: 8rem;
  padding: 0 2rem;
}
@media screen and (max-width: 1400px) {
  .performance__textbox {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .performance__textbox {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 300px) {
  .performance__textbox {
    padding: 0;
  }
}

.performance__heading {
  margin-bottom: 10px;
  /*@include break('xs') {
    font-size: 2.5rem;
  }*/
}

.performance__subheading {
  max-width: 460px;
  line-height: 1.5;
  font-family: var(--font-body);
  margin: 0;
  /*@media (max-width: 400px) {
    font-size: var(--text-sm);
  }*/
}

.performance__bodytext {
  line-height: 2;
  max-width: 430px;
  margin-bottom: 2rem;
}
.performance__bodytext p {
  margin: 0 0 2rem;
}

.performance__quotebox {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  min-height: 1000px;
  border-radius: 6rem;
  background-color: var(--color-white);
  box-shadow: var(--box-shadow-alt);
  padding: 6rem;
}
@media screen and (max-width: 1300px) {
  .performance__quotebox {
    min-height: auto;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .performance__quotebox {
    border-radius: 3rem;
    padding: 3rem;
    min-height: 450px;
  }
}
@media screen and (max-width: 500px) {
  .performance__quotebox {
    border-radius: 2rem;
    padding: 4rem;
  }
}

.arrow-top {
  position: absolute;
  width: 14px;
  right: 11.7%;
  top: 10.3%;
}
@media screen and (max-width: 1300px) {
  .arrow-top {
    right: 5%;
  }
}
@media screen and (max-width: 800px) {
  .arrow-top {
    right: 10%;
    top: -5%;
  }
}
@media screen and (max-width: 500px) {
  .arrow-top {
    opacity: 0.5;
  }
}

.arrow-bottomleft {
  position: absolute;
  width: 14px;
  left: 15.4%;
  bottom: -9%;
}
@media screen and (max-width: 1300px) {
  .arrow-bottomleft {
    left: 5%;
  }
}
@media screen and (max-width: 800px) {
  .arrow-bottomleft {
    display: none;
  }
}

.arrow-bottomright {
  position: absolute;
  width: 14px;
  left: 19.3%;
  bottom: -20.6%;
}
@media screen and (max-width: 1300px) {
  .arrow-bottomright {
    left: 10%;
  }
}
@media screen and (max-width: 800px) {
  .arrow-bottomright {
    display: none;
  }
}

.performance__quotetextbox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.performance__quote {
  font-size: 3.5rem;
  line-height: 1.3;
  text-align: center;
  max-width: 490px;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1400px) {
  .performance__quote {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1100px) {
  .performance__quote {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .performance__quote {
    font-size: var(--text-xxl);
  }
}
@media screen and (max-width: 500px) {
  .performance__quote {
    font-size: var(--text-xl);
  }
}

.performance__quoteattribution-wrapper {
  position: absolute;
  bottom: 4rem;
  right: 6rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media all and (max-width: 600px) {
  .performance__quoteattribution-wrapper {
    right: 2rem;
  }
}

.performance__quoteattribution {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 2rem;
}
@media screen and (max-width: 500px) {
  .performance__quoteattribution {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 300px) {
  .performance__quoteattribution {
    margin-right: 0;
  }
}

.performance__quotename {
  font-size: var(--text-xl);
  font-family: var(--font-heading);
  color: var(--color-red);
  margin-bottom: 7px;
}
@media screen and (max-width: 500px) {
  .performance__quotename {
    font-size: var(--text-sm);
  }
}

.performance__quotetitle {
  font-size: var(--text-md);
  color: var(--color-blue);
}
@media screen and (max-width: 500px) {
  .performance__quotetitle {
    font-size: var(--text-xs);
  }
}

.quote-icon {
  width: 70px;
  transform: rotate(180deg);
  margin-left: 1rem;
}
@media screen and (max-width: 1100px) {
  .quote-icon {
    width: 65px;
    margin-left: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .quote-icon {
    width: 40px;
    margin-left: 1rem;
  }
}

.steps--home .horizontal-bg-lines {
  top: 18rem;
}
@media screen and (max-width: 1400px) {
  .steps--home .horizontal-bg-lines {
    display: none;
  }
}

.performance__quote--large-quote {
  font-size: 2.4rem;
}
@media screen and (max-width: 800px) {
  .performance__quote--large-quote {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .performance__quote--large-quote {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 300px) {
  .performance__quote--large-quote {
    font-size: 1.25rem;
  }
}

.article__wrapper {
  max-width: 1600px;
  min-height: 600px;
  margin: 10rem 4rem auto auto;
  padding: 0 4rem 8rem 4rem;
}
@media screen and (max-width: 1500px) {
  .article__wrapper {
    margin: 10rem 2rem auto auto;
  }
}
@media screen and (max-width: 1300px) {
  .article__wrapper {
    margin: 6rem auto;
    max-width: 1100px;
  }
}
@media screen and (max-width: 500px) {
  .article__wrapper {
    padding: 0 2rem;
    margin: 0 auto 6rem auto;
  }
}
.article__wrapper--angled-wrapper {
  margin: 10rem auto 0 auto;
}
@media screen and (max-width: 1300px) {
  .article__wrapper--angled-wrapper {
    margin: 4rem auto 0 auto;
  }
}

.article__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1300px) {
  .article__container {
    grid-template-columns: 1fr;
  }
}

.article {
  display: flex;
  justify-content: space-between;
  grid-column-end: span 2;
}
@media (max-width: 1590px) {
  .article {
    justify-content: center;
  }
}
@media screen and (max-width: 1300px) {
  .article {
    flex-direction: column;
    grid-column-end: initital;
  }
}

.article__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 760px;
  max-width: 950px;
  width: 100%;
  padding-right: 3.5rem;
}
@media screen and (max-width: 1300px) {
  .article__body {
    min-width: auto;
    max-width: 100%;
    padding-right: 0;
  }
}

.article__card {
  margin: 0;
  margin-top: 2rem;
}

.article__spacer {
  margin: 2rem 0;
}

.article__heading--h2 {
  font-weight: bold;
  font-size: 36px;
  color: var(--color-blue);
}

.article__heading--h3 {
  font-weight: bold;
  font-size: 26px;
  color: var(--color-blue);
  margin: 1rem 0;
}

.article__paragraph {
  margin-bottom: 2rem;
}

.article__ul {
  font-size: var(--text-sm);
  line-height: 1;
}

.article__ul--listitem {
  position: relative;
  margin-left: 3rem;
  margin-bottom: 1rem;
}

.article__ul--listitem:first-child {
  margin-top: 1.5rem;
}

.article__ul--listitem::before {
  position: absolute;
  content: url("../images/arrow-bullet.svg");
  width: 11px;
  height: 18px;
  left: -1.5rem;
}

.article__ol {
  list-style-position: outside;
  font-size: var(--text-sm);
  line-height: 1;
}

.article__ol--listitem {
  position: relative;
  margin-bottom: 0.75rem;
  margin-left: 1.5rem;
}

.article__ol--listitem:first-child {
  margin-top: 1.5rem;
}

.article__ol--listitem::marker {
  content: counter(list-item);
  color: var(--color-blue);
  font-weight: bold;
  font-size: 23px;
  text-align: center;
}

.article__ol--listitem::before {
  content: "|";
  margin: 0 10px;
  color: var(--color-orange);
  font-size: 27px;
  font-weight: normal;
}

.article__accordian {
  width: 100%;
  margin: 2rem 0;
}

.article__accordianheader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  padding: 0 2rem;
  width: 100%;
  min-width: 290px;
  height: 60px;
  background: var(--gradient-red-orange);
  cursor: pointer;
  margin: 1rem 0;
}

.article__accordianheading {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-white);
}

.article__accordianpanel > .accordian__content {
  display: none;
}

.article__accordianpanel.accordion-expanded > .accordian__content {
  display: block;
}

.article__accordianpanel.accordion-expanded > .accordian__arrow {
  transform: scale(1.2);
}

.accordian__content {
  padding: 1rem 2rem;
  max-width: 95%;
  line-height: 2;
}

.article__image {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}

.blockquote {
  position: relative;
  background-color: var(--color-blue);
  width: 100%;
  padding: 2.5rem 4rem 2.5rem 2rem;
  margin: 4rem 0;
  border-radius: 30px;
  font-size: var(--text-sm);
  font-weight: normal;
  color: var(--color-white);
  letter-spacing: 1px;
  line-height: 1.5;
}

.blockquote::before {
  position: absolute;
  content: url("../images/icon-quote.svg");
  width: 80px;
  height: 60px;
  top: -2.25rem;
}

.blockquote cite {
  font-weight: bold;
  letter-spacing: 0;
}

.blockquote__quote {
  margin-bottom: 2rem;
}

.article__related {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.article__relatedheading {
  margin-top: 6rem;
}

.article__card {
  margin: 0;
  margin-top: 2rem;
}

.article__relatedcard:first-of-type {
  margin-right: 34px;
}

.article__aboutnameplate {
  display: flex;
  align-items: center;
  height: 100px;
  margin-bottom: 1rem;
}

.article__aboutimage {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 1rem;
}

.article__aboutheading {
  margin-top: 6rem;
}

.angled__article {
  margin-top: -8rem;
}

.page-404 {
  display: grid;
  place-content: center;
  padding-block: 6rem;
  padding-inline: 4rem;
  text-align: center;
}
.page-404 .gradientline {
  margin: 1rem auto;
}
.page-404 .vertical-bg-lines {
  right: 25%;
  left: auto;
}

.page-404__title {
  font-size: clamp(6rem, 20vw, 12rem);
  color: var(--color-blue);
}

.blog__title {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}
@media screen and (max-width: 1100px) {
  .blog__title {
    flex-direction: column-reverse;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .blog__title {
    margin-top: 2rem;
  }
}

.blog__headerimg {
  min-width: 300px;
  mask-mode: alpha;
  -webkit-mask-image: url("../images/blog-header-crop.svg");
          mask-image: url("../images/blog-header-crop.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin-right: 5rem;
  flex-shrink: 3;
  max-height: 700px;
  max-width: 960px;
}
.blog__headerimg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  min-height: 450px;
}
@media screen and (max-width: 1300px) {
  .blog__headerimg img {
    min-height: 280px;
  }
}
@media screen and (max-width: 500px) {
  .blog__headerimg img {
    min-height: 200px;
  }
}
@media screen and (max-width: 1100px) {
  .blog__headerimg {
    margin-top: 2rem;
    margin-right: 2rem;
    align-self: flex-start;
    max-width: 700px;
  }
}
@media screen and (max-width: 500px) {
  .blog__headerimg {
    min-width: auto;
  }
}

.blog__titletextbox {
  margin-right: 1rem;
  max-width: 650px;
  padding-right: 3rem;
}
@media screen and (max-width: 800px) {
  .blog__titletextbox {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 500px) {
  .blog__titletextbox {
    margin-top: 4rem;
    margin-right: 0;
  }
}

.blog__titleheading {
  margin-bottom: 20px;
}

.blog__titlesubheading {
  font-weight: normal;
}

.blog__titletextbox--spacer {
  margin: 50px 0;
}

.blog__container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  max-width: 1660px;
  margin: 8rem 8rem 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 1700px) {
  .blog__container {
    margin: 8rem auto 0 auto;
    justify-content: center;
  }
}
@media screen and (max-width: 1300px) {
  .blog__container {
    flex-direction: column;
    justify-content: center;
    max-width: 980px;
  }
}
@media screen and (max-width: 1100px) {
  .blog__container {
    margin: 4rem auto 0 auto;
    padding: 0 4rem;
  }
}
@media screen and (max-width: 500px) {
  .blog__container {
    padding: 0 2rem;
  }
}

.blog__cards-wrapper {
  width: 100%;
}

.blog__categories {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4.125rem;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.15);
  padding: 5rem 3rem;
  width: 100%;
  background-color: var(--color-white);
}

.blog__categories--heading {
  font-size: var(--text-xxl);
  margin-bottom: 1rem;
}

.blog__categories--subheading {
  font-size: var(--text-lg);
  margin-bottom: 1rem;
  cursor: pointer;
}

@media screen and (max-width: 1300px) {
  .blog .blog__categories {
    margin-bottom: 4rem;
  }
}
.blog .blog__card {
  height: 100%;
}

.flexible-blocks {
  margin: 6rem auto;
  max-width: 900px;
}

.hvd-msg {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gradient-red-orange);
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9999;
  animation: signup-response 0.5s 1;
  animation-fill-mode: forwards;
  animation-delay: 7s;
}
.hvd-msg--error {
  background: var(--color-red);
}
.hvd-msg p {
  color: var(--color-white);
  margin-right: 1rem;
}
.hvd-msg button {
  border: 1px solid var(--color-white);
  padding: 1rem;
  color: var(--color-white);
}

.hide-hvd {
  transform: translateY(-10rem);
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0;
}

@keyframes slide-from-top {
  from {
    transform: translateY(-5rem);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10rem);
  }
}
.search-results-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 6rem auto 0 auto;
}

.search-result {
  margin: 0 0 2rem;
}

.search-results-container {
  margin-top: 4rem;
  padding: 0 2rem;
  width: 100%;
}

.search-result__title {
  font-size: var(--text-xxl);
  color: var(--color-blue);
}

.lcp {
  position: relative;
}

.lcp__pill-bg {
  position: absolute;
  right: 0;
  top: 3.5rem;
  min-width: 900px;
  max-width: 1100px;
}
@media screen and (max-width: 1700px) {
  .lcp__pill-bg {
    transform: translateX(20%);
  }
}
@media screen and (max-width: 1400px) {
  .lcp__pill-bg {
    transform: translateX(40%);
  }
}
@media screen and (max-width: 1100px) {
  .lcp__pill-bg {
    transform: translateX(50%);
  }
}
@media screen and (max-width: 800px) {
  .lcp__pill-bg {
    transform: translateX(70%);
  }
}

.lcp__wrapper {
  max-width: 1600px;
  padding: 0 4rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.lcp__wrapper--no-image {
  min-height: auto;
}
@media screen and (max-width: 1300px) {
  .lcp__wrapper {
    align-items: flex-end;
  }
}
@media screen and (max-width: 1100px) {
  .lcp__wrapper {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 800px) {
  .lcp__wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .lcp__wrapper {
    padding: 0 2rem;
  }
}

.lcp__body {
  max-width: 660px;
  margin-top: 10%;
  margin-right: 2rem;
}
@media screen and (max-width: 1100px) {
  .lcp__body {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .lcp__body {
    margin-right: 0;
  }
}

.lcp__title {
  font-size: 4.8rem;
  line-height: 5.1rem;
  color: var(--color-blue);
}
@media screen and (max-width: 1100px) {
  .lcp__title {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 500px) {
  .lcp__title {
    line-height: 3.5rem;
    font-size: var(--text-xxxl);
  }
}

.lcp__text {
  line-height: 2.4;
  font-size: var(--text-sm);
  margin: 0 0 2rem;
}
.lcp__text p {
  color: var(--color-grey);
}

.lcp__visuals {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 8rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1100px) {
  .lcp__visuals {
    min-height: 300px;
    margin-top: 7rem;
  }
}
@media screen and (max-width: 800px) {
  .lcp__visuals {
    margin-right: 0;
  }
}
@media screen and (max-width: 1100px) {
  .lcp__visuals--no-image {
    display: none;
  }
}

.lcp__visuals-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  bottom: 0;
}

.lcp__visual {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.lcp__visual--dotted-arrow {
  top: -3rem;
  left: 1rem;
  width: 15px;
  height: 600px;
}
.lcp__visual--dotted-arrow-2 {
  bottom: -25rem;
  right: 0;
  width: 15px;
  height: 600px;
}
.lcp__visual--straight-arrow {
  bottom: -20.5rem;
  right: 5rem;
  width: 15px;
  height: 600px;
}
.lcp__visual--triangle {
  max-width: 560px;
  top: -5rem;
  right: -2rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1300px) {
  .lcp__visual--triangle {
    right: -16rem;
  }
}
@media screen and (max-width: 1100px) {
  .lcp__visual--triangle {
    right: -2rem;
  }
}

.gradientline--lcp {
  margin: 30px 0;
}
.gradientline--section {
  margin: 40px 0;
}

.lcp__image {
  position: relative;
  z-index: 10;
  max-width: 600px;
  min-width: 400px;
  box-shadow: var(--box-shadow);
  margin-right: 2rem;
}
@media screen and (max-width: 1300px) {
  .lcp__image {
    bottom: -2.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .lcp__image {
    min-width: 320px;
  }
}
@media screen and (max-width: 800px) {
  .lcp__image {
    margin-right: 0;
    min-width: auto;
  }
}
.lcp__image img {
  border-radius: 1rem;
}

.lcp__notice {
  padding: 0 2rem;
}
@media screen and (max-width: 800px) {
  .lcp__notice {
    padding: 0 1rem;
  }
}

.lcp__notice-wrapper {
  max-width: calc( var(--max-width) + 100px );
  margin: -1rem auto 0 auto;
  box-shadow: 5px 15px 40px 5px rgba(0, 0, 0, 0.2);
  border-radius: 4rem;
  background-color: var(--color-white);
  padding: 3.5rem 3rem 2.8rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1300px) {
  .lcp__notice-wrapper {
    margin: 2rem auto 0 auto;
  }
}
@media screen and (max-width: 800px) {
  .lcp__notice-wrapper {
    margin: -2rem auto 0 auto;
    border-radius: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .lcp__notice-wrapper {
    padding: 2rem 1.5rem;
    border-radius: 2rem;
  }
}

.notice__title {
  color: var(--color-blue);
  font-size: var(--text-xxxl);
  margin: 0 0 1rem;
}
@media screen and (max-width: 500px) {
  .notice__title {
    font-size: 2rem;
  }
}

.notice__subtitle {
  color: var(--color-red);
  font-size: var(--text-xl);
  margin: 0;
}
@media screen and (max-width: 500px) {
  .notice__subtitle {
    font-size: 1.2rem;
  }
}

.alternating-sections-wrapper {
  margin: 10rem auto 0 auto;
}
@media screen and (max-width: 800px) {
  .alternating-sections-wrapper {
    margin: 0 auto;
  }
}
.alternating-sections-wrapper .section:nth-child(2n)::after {
  content: url("../../dist/images/bg-asset-pill-left.svg");
  left: auto;
  right: 0;
  width: 1100px;
  transform: scaleX(-1);
}
@media all and (max-height: 850px) and (min-width: 1280px) {
  .alternating-sections-wrapper .section:nth-child(2n)::after {
    width: 890px;
  }
}
@media screen and (max-width: 1400px) {
  .alternating-sections-wrapper .section:nth-child(2n)::after {
    transform: scaleX(-1) translateX(-20%);
  }
}
@media screen and (max-width: 1300px) {
  .alternating-sections-wrapper .section:nth-child(2n)::after {
    bottom: 40rem;
  }
}
@media screen and (max-width: 1100px) {
  .alternating-sections-wrapper .section:nth-child(2n)::after {
    transform: scaleX(-1) translateX(-40%);
  }
}
@media screen and (max-width: 800px) {
  .alternating-sections-wrapper .section:nth-child(2n)::after {
    transform: scaleX(-1) translateX(-60%);
  }
}
@media screen and (max-width: 500px) {
  .alternating-sections-wrapper .section:nth-child(2n)::after {
    transform: scaleX(-1) translateX(-70%);
  }
}
.alternating-sections-wrapper .section:nth-child(2n) .section__container {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1300px) {
  .alternating-sections-wrapper .section:nth-child(2n) .section__container {
    flex-direction: column-reverse;
  }
}
.alternating-sections-wrapper .section:nth-child(2n) .section__body {
  margin-left: 12rem;
  margin-right: 0;
}
@media screen and (max-width: 1700px) {
  .alternating-sections-wrapper .section:nth-child(2n) .section__body {
    margin-left: 4rem;
  }
}
@media screen and (max-width: 1300px) {
  .alternating-sections-wrapper .section:nth-child(2n) .section__body {
    margin-left: 0;
  }
}
.alternating-sections-wrapper .section:nth-child(2n) .section__media::after {
  content: url("../../dist/images/bg-asset-course-02.svg");
  display: none;
  top: 12rem;
  right: 0;
  bottom: 0;
  left: -20rem;
  width: 1000px;
}
.alternating-sections-wrapper .section:nth-child(3) .section__media::after {
  display: none;
  content: url("../../dist/images/bg-asset-course-03.svg");
  top: 4rem;
  right: -12rem;
  bottom: 0;
  left: auto;
  width: 800px;
}

.section {
  margin: 4rem auto;
  padding: 0 4rem;
  position: relative;
}
.section::after {
  content: url("../../dist/images/bg-asset-pill-left.svg");
  position: absolute;
  bottom: -14rem;
  left: 0;
  width: 1100px;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .section::after {
    transform: translateX(-20%);
  }
}
@media screen and (max-width: 1300px) {
  .section::after {
    bottom: 40rem;
  }
}
@media screen and (max-width: 1100px) {
  .section::after {
    transform: translateX(-40%);
  }
}
@media screen and (max-width: 800px) {
  .section::after {
    transform: translateX(-60%);
  }
}
@media screen and (max-width: 500px) {
  .section::after {
    transform: translateX(-70%);
  }
}
@media all and (max-height: 850px) and (min-width: 1280px) {
  .section::after {
    width: 890px;
    bottom: 33rem;
  }
}
@media screen and (max-width: 1300px) {
  .section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .section {
    padding: 0 2rem;
  }
}

.section__container {
  max-width: 1900px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8rem auto;
}
@media screen and (max-width: 1300px) {
  .section__container {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}

.section__body {
  max-width: 800px;
  margin-right: 12rem;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 1700px) {
  .section__body {
    margin-right: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .section__body {
    margin-right: 0;
  }
}

.section__pretitle {
  color: var(--color-red);
  font-family: var(--font-body);
}

.section__title {
  max-width: 520px;
  color: var(--color-blue);
}
@media screen and (max-width: 800px) {
  .section__title {
    font-size: 2.8rem;
  }
}

.section__subtitle {
  margin-top: 1rem;
  font-family: var(--font-body);
  color: var(--color-red);
  font-weight: 100;
}

.section__text {
  max-width: 520px;
}
.section__text p {
  line-height: 2.4;
  margin: 0 0 2rem;
  font-size: var(--text-sm);
}

.section__media {
  position: relative;
  z-index: 10;
  max-width: 650px;
  width: 100%;
}
.section__media::after {
  content: url("../../dist/images/bg-asset-course-01.svg");
  display: none;
  position: absolute;
  top: -2rem;
  right: 0;
  bottom: 0;
  left: -5rem;
  width: 1020px;
  z-index: -1;
}
@media screen and (max-width: 1300px) {
  .section__media::after {
    width: 1000px;
  }
}
@media screen and (max-width: 800px) {
  .section__media::after {
    display: none;
  }
}
@media all and (max-height: 850px) and (min-width: 1280px) {
  .section__media {
    max-width: 415px;
  }
}
@media screen and (max-width: 1300px) {
  .section__media {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 1100px) {
  .section__media {
    max-width: 600px;
  }
}
@media screen and (max-width: 500px) {
  .section__media {
    margin-bottom: 3.5rem;
  }
}

.media__content {
  position: relative;
}

.media__front,
.media__back {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.media__front h2 {
  transform: translateZ(4rem);
}
.media__front .testimonial__wrapper {
  transform: translateZ(2rem);
}

.media__back {
  display: none;
  transform: rotateY(0.5turn);
  background: linear-gradient(180deg, #08083d 0%, #08083d 45%, #030318 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 6rem;
}
.media__back .back__text,
.media__back .back__button {
  transform: translateZ(4rem);
}
.media__back .back__text p,
.media__back .back__text h2,
.media__back .back__text h3,
.media__back .back__text h4,
.media__back .back__button p,
.media__back .back__button h2,
.media__back .back__button h3,
.media__back .back__button h4 {
  color: var(--color-white);
}
.media__back .back__text h2,
.media__back .back__button h2 {
  font-size: var(--text-xxxl);
}
.media__back .back__text h3,
.media__back .back__button h3 {
  font-size: var(--text-xxl);
}
.media__back .back__text h4,
.media__back .back__button h4 {
  font-size: var(--text-xl);
}
.media__back .back__text p,
.media__back .back__button p {
  font-size: var(--text-sm);
}

.section__image img {
  border-radius: 6rem;
  width: 100%;
  height: 100%;
  min-height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: relative;
  box-shadow: var(--box-shadow-alt);
}
@media screen and (max-width: 1300px) {
  .section__image img {
    min-height: auto;
  }
}
@media screen and (max-width: 800px) {
  .section__image img {
    border-radius: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .section__image img {
    border-radius: 2rem;
  }
}

.section__button-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.page-template-case-studies .vertical-bg-lines--lcp {
  top: 56rem;
  left: 0;
  width: 500px;
}
@media screen and (max-width: 1300px) {
  .page-template-case-studies .vertical-bg-lines--lcp {
    top: 50rem;
    width: 400px;
  }
}
@media screen and (max-width: 1100px) {
  .page-template-case-studies .vertical-bg-lines--lcp {
    display: none;
  }
}

.main.case-studies::after {
  bottom: -45rem;
}
@media screen and (max-width: 800px) {
  .main.case-studies::after {
    bottom: -48rem;
    max-width: unset;
    width: 800px;
  }
}
@media screen and (max-width: 500px) {
  .main.case-studies::after {
    bottom: -74rem;
    width: 400px;
  }
}

.case-studies .blog__headerimg {
  max-width: 1150px;
}
@media screen and (max-width: 1100px) {
  .case-studies .blog__headerimg {
    max-width: 700px;
  }
}
.case-studies .blog__titletextbox {
  max-width: 450px;
}
@media screen and (max-width: 1100px) {
  .case-studies .blog__titletextbox {
    max-width: 750px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .case-studies .blog__titletextbox {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.case-studies .blog__titletextbox .blog__titlesubheading {
  margin-bottom: 0.5rem;
}
.case-studies .blog__titletextbox .gradientline {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.steps--case-studies .horizontal-bg-lines {
  display: none;
}
.steps--case-studies::after {
  display: none;
}
.steps--case-studies .steps__container {
  margin: -5.9rem auto 0 auto;
  max-width: 1350px;
}
@media all and (min-width: 1940px) {
  .steps--case-studies .steps__container {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 1300px) {
  .steps--case-studies .steps__container {
    margin-top: 6rem;
  }
}
@media all and (max-width: 400px) {
  .steps--case-studies .steps__container {
    margin-top: 4rem;
  }
}
.steps--case-studies .steps__container .steps__title {
  display: none;
}
.steps--case-studies .steps__container .steps__subtitle {
  display: none;
}
.steps--case-studies .steps__container .steps__repeater {
  flex-direction: row;
  justify-content: space-between;
  max-width: 650px;
  margin: 0;
}
@media all and (min-width: 1940px) {
  .steps--case-studies .steps__container .steps__repeater {
    justify-content: center;
    max-width: 100%;
    gap: 40px;
  }
}
@media screen and (max-width: 1300px) {
  .steps--case-studies .steps__container .steps__repeater {
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 650px) {
  .steps--case-studies .steps__container .steps__repeater {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media all and (max-width: 400px) {
  .steps--case-studies .steps__container .steps__repeater {
    flex-direction: column;
  }
}
.steps--case-studies .steps__container .steps__repeater .step {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
}
@media all and (max-width: 650px) {
  .steps--case-studies .steps__container .steps__repeater .step {
    width: 50%;
  }
}
@media all and (max-width: 400px) {
  .steps--case-studies .steps__container .steps__repeater .step {
    width: 100%;
  }
}
.steps--case-studies .steps__container .steps__repeater .step .step__title {
  margin-top: 2rem;
}
@media all and (max-width: 650px) {
  .steps--case-studies .steps__container .steps__repeater .step .step__title {
    margin-bottom: 4rem;
  }
}
.steps--case-studies .steps__container .steps__repeater .step .step__number-wrapper {
  margin-left: auto;
  margin-right: auto;
}
.steps--case-studies .steps__container .steps__repeater .step-1::after {
  display: none;
}
.steps--case-studies .steps__container .steps__repeater .step-2 {
  align-self: flex-start;
}
@media screen and (max-width: 800px) {
  .steps--case-studies .steps__container .steps__repeater .step-2 {
    margin-left: 0;
  }
}
.steps--case-studies .steps__container .steps__repeater .step-2::after {
  display: none;
}
.steps--case-studies .steps__container .steps__repeater .step-3::after {
  display: none;
}

.clients {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-gap: 45px;
  max-width: 1350px;
  margin: 0 auto;
  padding-top: 7rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 1500px) {
  .clients {
    max-width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .clients {
    grid-template-columns: repeat(1, auto);
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .clients {
    padding-top: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.clients .clients__card {
  position: relative;
  height: 800px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-alt);
  overflow: hidden;
  /* ANIMATED HOVER EFFECT ON SCREENSHOTS 
  @keyframes animatedScreenshotHover {
     0% {
       top: 0;
     }      
     100% {  
       top: -100px;  
     }
   }

   img:hover {
     animation-name: animatedScreenshotHover;
     animation-delay: 0;
     animation-duration: 3.5s;
     animation-timing-function: ease-out;  
     animation-iteration-count: infinite;
   }*/
}
@media screen and (max-width: 1500px) {
  .clients .clients__card {
    height: 700px;
  }
}
@media screen and (max-width: 800px) {
  .clients .clients__card {
    height: 600px;
  }
}
.clients .clients__card img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}
.clients .clients__card .clients__bottom {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: black;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, #070734 33%, rgba(8, 8, 61, 0.9) 100%);
}
@media screen and (max-width: 1100px) {
  .clients .clients__card .clients__bottom {
    flex-direction: column;
  }
}
.clients .clients__card .clients__bottom .clients__text {
  padding: 3.2rem;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .clients .clients__card .clients__bottom .clients__text {
    padding-bottom: 1.5rem;
  }
}
.clients .clients__card .clients__bottom .clients__text h2 {
  font-size: var(--text-xxl);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 1300px) {
  .clients .clients__card .clients__bottom .clients__text h2 {
    font-size: var(--text-xl);
  }
}
.clients .clients__card .clients__bottom .clients__text p {
  font-weight: bold;
  font-size: var(--text-md);
  color: var(--color-red);
  margin: 0;
  line-height: 1.2;
}
.clients .clients__card .clients__bottom .clients__link {
  position: relative;
  padding: 3.6rem 3.2rem 3.2rem 0;
}
@media screen and (max-width: 1300px) {
  .clients .clients__card .clients__bottom .clients__link {
    padding-top: 3.2rem;
  }
}
@media screen and (max-width: 1100px) {
  .clients .clients__card .clients__bottom .clients__link {
    padding-top: 0;
    padding-left: 3.2rem;
  }
}
.clients .clients__card .clients__bottom .clients__link a.button {
  position: relative;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .clients .clients__card .clients__bottom .clients__link a.button {
    font-size: var(--text);
  }
}

.client-logos__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 2rem;
}
@media screen and (max-width: 800px) {
  .client-logos__container {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    padding: 0 4rem;
  }
}
@media all and (max-width: 600px) {
  .client-logos__container {
    padding: 0;
  }
}
@media screen and (max-width: 300px) {
  .client-logos__container {
    grid-template-columns: 1fr;
  }
}

.client-logo {
  background-color: var(--color-white);
  box-shadow: var(--main-box-shadow);
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.client-logo img {
  max-height: 150px;
  max-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 800px) {
  .page-template-reputation .client-logo:first-child {
    grid-column: span 2;
  }
}
@media screen and (max-width: 300px) {
  .page-template-reputation .client-logo:first-child {
    grid-column: span 1;
  }
}

.client-names-wrapper {
  padding-left: 4rem;
}
@media screen and (max-width: 800px) {
  .client-names-wrapper {
    padding-left: 6rem;
  }
}
@media all and (max-width: 600px) {
  .client-names-wrapper {
    padding-left: 2rem;
  }
}

.client-names {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 2em;
  grid-row-gap: 1.5rem;
}
.client-names:nth-col(2) {
  margin: 0 1rem;
}
@media screen and (max-width: 800px) {
  .client-names {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .client-names {
    grid-template-columns: 1fr;
  }
}

.client-name {
  line-height: 1.6;
  color: var(--color-blue);
}
@media screen and (max-width: 500px) {
  .client-name {
    line-height: 1;
  }
  .client-name--case-studies:nth-child(odd) {
    display: none;
  }
}

.testimonial-section {
  margin-top: 8rem;
}

.single-case-study .header {
  padding-bottom: 0;
}
.single-case-study .vertical-bg-lines--lcp {
  top: 25rem;
  left: 0;
  transform: initial;
  width: 350px;
}
@media screen and (max-width: 1300px) {
  .single-case-study .vertical-bg-lines--lcp {
    width: 250px;
  }
}
.single-case-study .lcp__wrapper {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 300px;
}
@media (max-width: 1800px) {
  .single-case-study .lcp__wrapper {
    padding-left: 3rem;
  }
}
@media screen and (max-width: 1700px) {
  .single-case-study .lcp__wrapper {
    padding-left: 7rem;
    padding-right: 5rem;
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 1300px) {
  .single-case-study .lcp__wrapper {
    flex-direction: column;
    padding-left: 5rem;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1100px) {
  .single-case-study .lcp__wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .single-case-study .lcp__wrapper {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.single-case-study .lcp__wrapper .floating-socials {
  display: none;
}
.single-case-study .lcp__wrapper::after {
  content: url(../../dist/images/bg-asset-pill-right.svg);
  position: absolute;
  bottom: -200px;
  right: 0;
  width: 78%;
  z-index: -1;
}
@media screen and (max-width: 1700px) {
  .single-case-study .lcp__wrapper::after {
    width: 70%;
    bottom: -120px;
  }
}
@media screen and (max-width: 1300px) {
  .single-case-study .lcp__wrapper::after {
    width: 100%;
    bottom: -50px;
    right: -50%;
  }
}
@media screen and (max-width: 800px) {
  .single-case-study .lcp__wrapper::after {
    width: 150%;
    right: -75%;
  }
}
.single-case-study .lcp__body {
  max-width: none;
  width: 25%;
  margin-top: 15%;
  margin-right: 0;
}
@media (max-width: 1800px) {
  .single-case-study .lcp__body {
    width: 27%;
  }
}
@media screen and (max-width: 1400px) {
  .single-case-study .lcp__body {
    width: 24%;
  }
}
@media screen and (max-width: 1300px) {
  .single-case-study .lcp__body {
    order: 2;
    width: 100%;
    max-width: 520px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 800px) {
  .single-case-study .lcp__body {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1300px) {
  .single-case-study .lcp__body .gradientline {
    margin-left: auto;
    margin-right: auto;
  }
}
.single-case-study .lcp__title {
  font-size: 4.4rem;
  line-height: 1;
}
@media screen and (max-width: 1700px) {
  .single-case-study .lcp__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1500px) {
  .single-case-study .lcp__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1300px) {
  .single-case-study .lcp__title {
    font-size: 3.75rem;
  }
}
.single-case-study .lcp__showcase {
  position: relative;
  width: 75%;
}
@media (max-width: 1800px) {
  .single-case-study .lcp__showcase {
    width: 73%;
  }
}
@media screen and (max-width: 1400px) {
  .single-case-study .lcp__showcase {
    width: 76%;
  }
}
@media screen and (max-width: 1300px) {
  .single-case-study .lcp__showcase {
    order: 1;
    width: 100%;
  }
}
.single-case-study .lcp__showcase .lcp__showcase__graphics-above {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 540px;
  height: auto;
  pointer-events: none;
}
@media screen and (max-width: 1700px) {
  .single-case-study .lcp__showcase .lcp__showcase__graphics-above {
    width: 440px;
  }
}
@media screen and (max-width: 1300px) {
  .single-case-study .lcp__showcase .lcp__showcase__graphics-above {
    top: 10px;
    left: -95px;
  }
}
@media screen and (max-width: 800px) {
  .single-case-study .lcp__showcase .lcp__showcase__graphics-above {
    width: 340px;
    top: 20px;
    left: -60px;
  }
}
@media screen and (max-width: 500px) {
  .single-case-study .lcp__showcase .lcp__showcase__graphics-above {
    width: 240px;
    top: 20px;
    left: -50px;
  }
}
.single-case-study .lcp__showcase .lcp__showcase__graphics-below {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: 116px;
  width: 420px;
  height: auto;
}
@media screen and (max-width: 1700px) {
  .single-case-study .lcp__showcase .lcp__showcase__graphics-below {
    top: 20px;
    width: 320px;
    left: 94px;
  }
}
@media screen and (max-width: 1300px) {
  .single-case-study .lcp__showcase .lcp__showcase__graphics-below {
    top: 35px;
    left: 0;
  }
}
@media screen and (max-width: 800px) {
  .single-case-study .lcp__showcase .lcp__showcase__graphics-below {
    top: 59px;
    left: 13px;
    width: 220px;
  }
}
@media screen and (max-width: 500px) {
  .single-case-study .lcp__showcase .lcp__showcase__graphics-below {
    top: 39px;
    left: 2px;
    width: 170px;
  }
}
.single-case-study .lcp__showcase .lcp__showcase__visual-indicator {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 190px;
  width: 40px;
  height: 110px;
  border-radius: 200px;
  background: #de615c;
  background: linear-gradient(0deg, #de615c 0%, rgba(247, 151, 94, 0.6) 100%);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  -moz-user-select: none;
  overflow: hidden;
  transform-origin: bottom left;
}
@media screen and (max-width: 1700px) {
  .single-case-study .lcp__showcase .lcp__showcase__visual-indicator {
    left: 160px;
  }
}
@media screen and (max-width: 1300px) {
  .single-case-study .lcp__showcase .lcp__showcase__visual-indicator {
    left: 60px;
  }
}
@media screen and (max-width: 800px) {
  .single-case-study .lcp__showcase .lcp__showcase__visual-indicator {
    transform: scale(0.75);
  }
}
@media screen and (max-width: 500px) {
  .single-case-study .lcp__showcase .lcp__showcase__visual-indicator {
    left: 40px;
    bottom: 20px;
  }
}
.single-case-study .lcp__showcase .lcp__showcase__visual-indicator img {
  position: absolute;
}
@keyframes animatedArrow {
  0% {
    opacity: 0;
    top: 15px;
  }
  10% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    top: 15px;
  }
  45% {
    opacity: 1;
    top: 15px;
  }
  66% {
    opacity: 1;
    top: -45px;
  }
  90% {
    opacity: 1;
    top: -45px;
  }
  100% {
    opacity: 1;
    top: -45px;
  }
}
@keyframes animatedActionFirst {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes animatedActionSecond {
  0% {
    opacity: 0;
    bottom: 15px;
  }
  30% {
    opacity: 0;
    bottom: 15px;
  }
  33% {
    opacity: 1;
    bottom: 15px;
  }
  45% {
    opacity: 1;
    bottom: 15px;
  }
  66% {
    opacity: 1;
    bottom: 75px;
  }
  90% {
    opacity: 0;
    bottom: 75px;
  }
  100% {
    opacity: 0;
    bottom: 15px;
  }
}
.single-case-study .lcp__showcase .lcp__showcase__visual-indicator img.arrow {
  top: 15px;
  left: 0;
  right: 0;
  width: 9px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation-name: animatedArrow;
  animation-delay: 0;
  animation-duration: 3.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.single-case-study .lcp__showcase .lcp__showcase__visual-indicator img.action-first {
  bottom: 15px;
  left: 0;
  right: 0;
  width: 20px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  animation-name: animatedActionFirst;
  animation-delay: 0;
  animation-duration: 3.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 1100px) {
  .single-case-study .lcp__showcase .lcp__showcase__visual-indicator img.action-first {
    display: none;
  }
}
.single-case-study .lcp__showcase .lcp__showcase__visual-indicator img.action-first.mobile {
  display: none;
}
@media screen and (max-width: 1100px) {
  .single-case-study .lcp__showcase .lcp__showcase__visual-indicator img.action-first.mobile {
    display: block;
  }
}
.single-case-study .lcp__showcase .lcp__showcase__visual-indicator img.action-second {
  bottom: 15px;
  left: 0;
  right: 0;
  width: 20px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation-name: animatedActionSecond;
  animation-delay: 0;
  animation-duration: 3.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 1100px) {
  .single-case-study .lcp__showcase .lcp__showcase__visual-indicator img.action-second {
    display: none;
  }
}
.single-case-study .lcp__showcase .lcp__showcase__visual-indicator img.action-second.mobile {
  display: none;
}
@media screen and (max-width: 1100px) {
  .single-case-study .lcp__showcase .lcp__showcase__visual-indicator img.action-second.mobile {
    display: block;
  }
}
.single-case-study .lcp__showcase .lcp__showcase__image-desktop {
  position: relative;
  z-index: 0;
  margin-top: 160px;
  margin-left: 160px;
  width: calc(100% - (160px + 40px));
  height: 900px;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--main-box-shadow);
  overflow: hidden;
  cursor: grab;
}
@media screen and (max-width: 1700px) {
  .single-case-study .lcp__showcase .lcp__showcase__image-desktop {
    height: 700px;
    margin-top: 130px;
    margin-left: 130px;
    width: calc(100% - (130px + 40px));
  }
}
@media screen and (max-width: 1500px) {
  .single-case-study .lcp__showcase .lcp__showcase__image-desktop {
    height: 600px;
  }
}
@media screen and (max-width: 1300px) {
  .single-case-study .lcp__showcase .lcp__showcase__image-desktop {
    height: 700px;
    margin-left: 30px;
    width: calc(100% - (50px + 40px));
  }
}
@media screen and (max-width: 1100px) {
  .single-case-study .lcp__showcase .lcp__showcase__image-desktop {
    overflow-x: hidden;
    overflow-y: scroll;
    cursor: default;
  }
}
@media screen and (max-width: 800px) {
  .single-case-study .lcp__showcase .lcp__showcase__image-desktop {
    width: calc(100% - 40px);
    height: 550px;
    margin-top: 125px;
  }
}
@media screen and (max-width: 500px) {
  .single-case-study .lcp__showcase .lcp__showcase__image-desktop {
    width: calc(100% - 40px);
    height: 350px;
    margin-top: 90px;
    margin-left: 20px;
  }
}
.single-case-study .lcp__showcase .lcp__showcase__image-desktop img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  left: 0;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  -moz-user-select: none;
}
.single-case-study .lcp__showcase .lcp__showcase__image-mobile {
  position: absolute;
  z-index: 2;
  bottom: -40px;
  right: 0;
  width: 340px;
  height: 650px;
  border-radius: 30px;
  border: 10px solid #fff;
  background: #fff;
  box-shadow: var(--main-box-shadow);
  overflow: hidden;
  pointer-events: none;
  transform-origin: bottom right;
}
@media screen and (max-width: 1700px) {
  .single-case-study .lcp__showcase .lcp__showcase__image-mobile {
    transform: scale(0.7);
  }
}
@media screen and (max-width: 1500px) {
  .single-case-study .lcp__showcase .lcp__showcase__image-mobile {
    transform: scale(0.6);
    bottom: -20px;
  }
}
@media screen and (max-width: 1300px) {
  .single-case-study .lcp__showcase .lcp__showcase__image-mobile {
    transform: scale(0.7);
    bottom: -40px;
  }
}
@media screen and (max-width: 1100px) {
  .single-case-study .lcp__showcase .lcp__showcase__image-mobile {
    transform: scale(0.6);
    bottom: -20px;
  }
}
@media screen and (max-width: 800px) {
  .single-case-study .lcp__showcase .lcp__showcase__image-mobile {
    display: none;
  }
}
.single-case-study .lcp__showcase .lcp__showcase__image-mobile img {
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  -moz-user-select: none;
}
.single-case-study .page-intro h2.heading {
  text-align: center;
  margin-bottom: 4.5rem;
}
.single-case-study .outcome-wrapper {
  position: relative;
}
.single-case-study .outcome-wrapper::before {
  content: url("../../dist/images/lines-horizontal.svg");
  position: absolute;
  z-index: -1;
  top: 85px;
  right: 0;
  width: 30%;
  height: auto;
}
@media screen and (max-width: 800px) {
  .single-case-study .outcome-wrapper::before {
    top: -5%;
    right: -15%;
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .single-case-study .outcome-wrapper::before {
    top: -7%;
    right: -30%;
    width: 80%;
  }
}
.single-case-study .outcome-wrapper::after {
  content: url("../../dist/images/lines-horizontal.svg");
  position: absolute;
  z-index: -1;
  bottom: 200px;
  left: 0;
  width: 30%;
  height: auto;
  transform: rotate(180deg);
}
@media screen and (max-width: 800px) {
  .single-case-study .outcome-wrapper::after {
    display: none;
  }
}
.single-case-study .outcome-wrapper .outcome {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .single-case-study .outcome-wrapper .outcome {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .single-case-study .outcome-wrapper .outcome {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .single-case-study .outcome-wrapper .outcome {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.single-case-study .outcome-wrapper .outcome .award-icon {
  width: 10.5rem;
  height: auto;
  margin: 0 auto 3rem auto;
}
@media screen and (max-width: 1500px) {
  .single-case-study .outcome-wrapper .outcome .award-icon {
    width: 8rem;
  }
}
.single-case-study .outcome-wrapper .outcome .heading {
  margin-bottom: 1rem;
}
.single-case-study .outcome-wrapper .outcome .gradientline--section {
  margin-left: auto;
  margin-right: auto;
}
.single-case-study .outcome-wrapper .outcome .text-block p {
  margin: 0 0 6rem 0;
  font-size: var(--text-sm);
  line-height: 2;
  color: var(--black);
}
.single-case-study .outcome-wrapper .outcome .performance__quotebox {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  margin-top: 4rem;
  padding: 10rem 10rem 13rem 10rem;
}
@media screen and (max-width: 1100px) {
  .single-case-study .outcome-wrapper .outcome .performance__quotebox {
    padding-top: 8rem;
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .single-case-study .outcome-wrapper .outcome .performance__quotebox {
    padding-top: 5rem;
    padding-left: 5rem;
    padding-right: 5rem;
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .single-case-study .outcome-wrapper .outcome .performance__quotebox {
    padding-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.single-case-study .outcome-wrapper .outcome .performance__quotebox .performance__quotetextbox p {
  font-size: var(--text-sm);
  line-height: 2;
  color: var(--black);
}
.single-case-study .outcome-wrapper .outcome .performance__quotebox .arrow-top {
  right: 8%;
}
.single-case-study .outcome-wrapper .outcome .performance__quotebox .arrow-bottomleft {
  left: 6%;
  bottom: -16%;
}
.single-case-study .outcome-wrapper .outcome .performance__quotebox .arrow-bottomright {
  left: 10%;
  bottom: -26.6%;
}

.section-container {
  max-width: calc( var(--max-width));
  margin: 2rem auto;
  padding: 0 4rem;
}
@media screen and (max-width: 1300px) {
  .section-container {
    padding: 0 2rem;
  }
}

.section-title {
  font-size: var(--text-xxxxl);
  color: var(--color-blue);
  line-height: 1.2;
}
.section-title--center {
  text-align: center;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background-image: var(--gradient-red-orange);
  margin-top: 1rem;
  border-radius: 3px;
}
@media screen and (max-width: 800px) {
  .section-title {
    font-size: 2.8rem;
  }
}

.why-we-do-it {
  margin: 6rem 0;
}

.support {
  margin-top: 8rem;
  position: relative;
  z-index: 100;
}

.section-container__title {
  margin-bottom: 2rem;
  padding-left: 3rem;
}
@media all and (max-width: 600px) {
  .section-container__title {
    padding-left: 1rem;
  }
}

.small-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}

.small-logo {
  margin: 1rem 0.5rem;
}
.small-logo:first-child {
  margin: 1rem 0.5rem 1rem 0;
}

.support__heading {
  color: var(--color-blue);
  margin-top: 3rem;
  text-align: center;
}

/* landing Section */
.landing {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1600px;
  min-height: 645px;
  padding: 0 4rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .hero {
    padding: 0 0 0 4rem;
  }
}
@media all and (max-width: 890px) {
  .hero {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 800px) {
  .hero {
    padding: 0 3rem;
  }
}

.hero__backgroundsvgs {
  width: 100vw;
  position: absolute;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 650px) {
  .hero__backgroundsvgs {
    justify-content: center;
  }
}

.hero__textbox {
  position: relative;
  margin-top: 183px;
}
@media screen and (max-width: 1100px) {
  .hero__textbox {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .hero__textbox {
    margin-top: 4rem;
  }
}

.hero__heading {
  margin: 0 0 1rem;
  font-size: 5rem;
  line-height: 1.1;
  max-width: 800px;
}
@media screen and (max-width: 1700px) {
  .hero__heading {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 1400px) {
  .hero__heading {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1300px) {
  .hero__heading {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .hero__heading {
    font-size: 5rem;
  }
}
@media screen and (max-width: 800px) {
  .hero__heading {
    font-size: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .hero__heading {
    font-size: 3rem;
  }
}

.hero__subheading {
  margin: 0 0 1rem;
}
@media screen and (max-width: 1300px) {
  .hero__subheading {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1100px) {
  .hero__subheading {
    font-size: var(--text-xl);
  }
}
@media screen and (max-width: 1100px) {
  .hero__subheading {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 800px) {
  .hero__subheading {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 500px) {
  .hero__subheading {
    font-size: 1rem;
  }
}

.hero__subtitle {
  font-size: var(--text-lg);
  margin: 0 0 1rem;
  color: var(--color-grey);
}
@media screen and (max-width: 1100px) {
  .hero__subtitle {
    font-size: var(--text-md);
  }
}
@media screen and (max-width: 500px) {
  .hero__subtitle {
    font-size: var(--text-sm);
  }
}

.hero__bodytext p {
  color: var(--color-grey);
}
.hero__bodytext p a {
  color: var(--color-red);
}

.hero__image {
  position: relative;
  max-width: 100%;
  margin-right: 2.5rem;
  width: 780px;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1100px) {
  .hero__image {
    max-width: 600px;
    margin: 2rem 2.5rem -2rem auto;
  }
}
@media screen and (max-width: 800px) {
  .hero__image {
    margin: 4rem auto -2rem auto;
    width: 100%;
  }
}

.landing__notice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 8rem;
}
.landing__notice--quote::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 79.41 58.54"><defs><linearGradient id="a" y1="29.27" x2="79.41" y2="29.27" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="%23df615c"/><stop offset="1" stop-color="%23f8985e"/></linearGradient></defs><g data-name="Layer 2"><path d="M0 34C0 10 12 .36 33.63 0L36 11.45c-12.55 1.28-18.73 7.64-17.82 18h11.27v29.09H0Zm43.42 0c0-24 12-33.64 33.63-34l2.36 11.45c-12.54 1.28-18.72 7.64-17.81 18h11.27v29.09H43.42Z" style="fill:url(%23a)" data-name="Layer 1"/></g></svg>');
  display: block;
  position: absolute;
  top: 0;
  width: 80px;
  opacity: 0.5;
}
.landing__notice--home {
  margin-top: -0.5rem;
}
@media screen and (max-width: 800px) {
  .landing__notice--home {
    margin-top: 1rem;
  }
}

.landing__noticeheadings {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 95%;
  max-width: 1550px;
  border-radius: 62px;
  background-color: var(--color-white);
  box-shadow: 5px 15px 40px 5px rgba(0, 0, 0, 0.2);
  padding: 4rem;
}
@media screen and (max-width: 800px) {
  .landing__noticeheadings {
    border-radius: 48px;
  }
}
@media screen and (max-width: 500px) {
  .landing__noticeheadings {
    padding: 3rem 2rem;
    border-radius: 34px;
  }
}

.landing__notice--heading {
  font-size: var(--text-xxxl);
  margin-bottom: 18px;
}
@media screen and (max-width: 1100px) {
  .landing__notice--heading {
    font-size: var(--text-xxl);
  }
}
@media (max-width: 600px) {
  .landing__notice--heading {
    font-size: var(--text-xl);
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 1100px) {
  .landing__notice--subheading {
    font-size: var(--text-md);
  }
}
@media (max-width: 600px) {
  .landing__notice--subheading {
    font-size: var(--text-sm);
  }
}

.landing__noticetextbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 4rem 0 4rem;
  margin: 4rem 0;
  max-width: 840px;
  position: relative;
}
.landing__noticetextbox--reverse {
  flex-direction: column-reverse;
}
@media screen and (max-width: 500px) {
  .landing__noticetextbox {
    padding: 2rem 2rem 0 2rem;
  }
}

.landing__notice-spacer {
  width: 90px;
  height: 5px;
  margin: 1.8rem 0 2rem 0;
}

.landing__notice--bodytext {
  line-height: 43px;
  margin: 0;
  color: var(--color-grey);
}
@media screen and (max-width: 800px) {
  .landing__notice--bodytext {
    line-height: 2;
  }
}

.landing__subheading--notice {
  color: var(--color-blue);
}

.footer {
  position: relative;
  z-index: 100;
  background-image: url("../images/footer-hump.png");
  background-repeat: no-repeat;
  background-position: bottom;
  margin-top: 3rem;
  padding-bottom: 8rem;
  bottom: -5px;
}
@media screen and (max-width: 1100px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 25%;
  }
}
@media screen and (max-width: 1100px) {
  .footer-container {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .footer-container {
    justify-content: center;
    align-items: center;
  }
}

.footer__coreservices {
  padding: 0 2rem;
  min-width: 350px;
  position: relative;
}
@media screen and (max-width: 1700px) {
  .footer__coreservices {
    margin-bottom: 6rem;
    padding-left: 5rem;
  }
}
@media screen and (max-width: 1400px) {
  .footer__coreservices {
    margin-left: 5%;
  }
}
@media screen and (max-width: 1300px) {
  .footer__coreservices {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 1100px) {
  .footer__coreservices {
    left: 20%;
    min-width: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 800px) {
  .footer__coreservices {
    left: 10%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .footer__coreservices {
    left: auto;
    margin-bottom: 2rem;
  }
}

.footer__list {
  margin-top: 42px;
}
@media screen and (max-width: 800px) {
  .footer__list {
    margin-top: 34px;
  }
}

.footer__listheading {
  font-size: 30px;
}

.footer__listitem {
  display: flex;
  align-items: center;
  font-size: var(--text-md);
  letter-spacing: 2px;
  margin-bottom: 35px;
}
@media screen and (max-width: 800px) {
  .footer__listitem {
    font-size: var(--text-sm);
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 500px) {
  .footer__listitem {
    font-size: var(--text-xs);
    letter-spacing: 0;
    margin-bottom: 24px;
  }
}

.footer__icon {
  min-width: 3rem;
  width: 3rem;
  margin-right: 2rem;
}
@media screen and (max-width: 500px) {
  .footer__icon {
    min-width: 2rem;
    width: 2rem;
    margin-right: 1rem;
  }
}

.footer__listitem:last-child {
  margin-bottom: 150px;
}
@media screen and (max-width: 1700px) {
  .footer__listitem:last-child {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 800px) {
  .footer__listitem:last-child {
    margin-bottom: 50px;
  }
}

.services__button {
  font-size: var(--text-md);
}

.footer__copyright {
  position: relative;
  flex-wrap: wrap;
  z-index: 999;
  width: 100%;
  background-color: #030333;
  font-size: var(--text-xs);
  padding: 2rem 4rem;
}
@media screen and (max-width: 1100px) {
  .footer__copyright {
    padding: 2rem;
  }
}

.footer__copyright-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copyright-wrapper p {
  color: var(--color-white);
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .footer__copyright-wrapper p {
    margin: 0.5rem 0;
  }
}
@media screen and (max-width: 800px) {
  .footer__copyright-wrapper {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}

.footer__copyright-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
@media screen and (max-width: 800px) {
  .footer__copyright-left {
    padding-right: 0;
  }
}
@media (max-width: 680px) {
  .footer__copyright-left {
    flex-direction: column;
    justify-items: center;
    align-items: center;
  }
}

.footer__link {
  text-decoration: none;
  margin: 0;
}
.footer__link span {
  opacity: 0.4;
}
.footer__link a {
  opacity: 0.6;
  transition: all 0.3s ease;
}
.footer__link a:hover {
  color: var(--color-orange);
  opacity: 1;
}

.footer__copyright-text {
  padding-right: 4rem;
  opacity: 0.4;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .footer__copyright-text {
    padding-right: 2rem;
  }
}
@media (max-width: 680px) {
  .footer__copyright-text {
    order: 2;
    padding-right: 0;
  }
}

.home .footer {
  margin-top: 6.5rem;
}

.footer__service-link {
  display: flex;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: var(--text-md);
  font-family: var(--font-body);
  color: var(--color-white);
  text-decoration: none;
  background: #f8985e;
  background: linear-gradient(90deg, #f8985e 0%, #df615c 50%, #f8985e 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  border: none;
  border-radius: 3rem;
  transition: all 0.3s ease;
  box-shadow: var(--main-box-shadow);
  -webkit-tap-highlight-color: transparent;
}
.button::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28.53 9.11"><g data-name="Layer 2"><path d="M28.53 4.56 24 0v4.06H.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5H24v4.05Z" style="fill:%23fff" data-name="Layer 1"/></g></svg>');
  display: block;
  width: 28px;
  margin-left: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  bottom: 1px;
  transform: scaleX(0.8);
}
.button:hover {
  background-position: 0 0;
}
.button:hover::after {
  transform: translateX(0.3rem);
}
.button--secondary {
  background: none;
  color: var(--color-orange);
  font-family: var(--font-body);
  padding: 0;
  margin: 2rem 1rem;
  box-shadow: none;
}
.button--secondary:hover {
  color: var(--color-red);
}
.button--secondary::before, .button--secondary::after {
  display: none;
}

.button-wrapper {
  display: flex;
}

.button-wrapper--center {
  justify-content: center;
}

.button-wrapper--right {
  justify-content: flex-end;
}

.dropdown-group {
  margin: 0 0 2rem;
}

.dropdown {
  width: 100%;
  margin: 0 0 0.5rem;
  position: relative;
  background-image: none;
  background-color: var(--color-white);
  color: var(--color-blue);
  box-shadow: 3px 7px 15px #0000001A;
  position: relative;
  padding: 1rem 3rem 1rem 2rem;
  border-radius: 30px;
}

.dropdown__label {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  .dropdown__label {
    gap: 1rem;
  }
}
.dropdown__label::after {
  content: url("../../src/images/plus.svg");
  min-width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
  position: relative;
}
@media screen and (max-width: 800px) {
  .dropdown__label::after {
    min-width: 22px;
  }
}
@media screen and (max-width: 500px) {
  .dropdown__label::after {
    margin-right: -1rem;
  }
}

.dropdown__box {
  transition: max-height 0.3s ease-out;
  overflow: hidden;
  max-height: 0;
}

.dropdown__content {
  padding: 1rem 2rem 1rem 0;
}
.dropdown__content p:last-child {
  margin-bottom: 0;
}

.is-dropdown-active .dropdown__label::after {
  transform: rotate(135deg);
}

.quote {
  position: relative;
  border-radius: 30px;
  padding: 4rem 8rem;
  margin: 6rem 0 3rem;
  background-color: var(--color-blue);
}
@media screen and (max-width: 1300px) {
  .quote {
    padding: 4rem 6rem;
  }
}
@media screen and (max-width: 800px) {
  .quote {
    padding: 4rem 4rem;
    border-radius: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .quote {
    padding-inline: 3rem;
    border-radius: 0;
    width: 100vw;
    margin-left: -3rem;
  }
}

.quote__icon {
  position: absolute;
  width: 80px;
  height: 60px;
  top: -2.25rem;
}

.quote__content p {
  color: var(--color-white);
  font-size: clamp(1.5rem, 1.25vw, 4rem);
  font-family: var(--font-body);
  margin: 0 0 1rem;
}
.quote__content p:last-child {
  margin: 0;
}

.quote__attribution {
  display: block;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1vw, 2.5rem);
  font-weight: 200;
  font-style: normal;
  color: var(--color-red);
  margin-block-start: 2rem;
}

.button-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-block-end: var(--bottom-spacing);
}

.button-group--align-center {
  justify-content: center;
}

.button-group--align-right {
  justify-content: flex-end;
}

.text-block {
  width: 100%;
}
.text-block ul,
.text-block ol {
  list-style: none;
  padding: 0;
  padding-left: 3.5rem;
  margin: 0 0 3rem;
  font-size: var(--text-sm);
  line-height: 1;
}
@media screen and (max-width: 500px) {
  .text-block ul,
.text-block ol {
    padding-left: 2.8rem;
  }
}
.text-block ul > li,
.text-block ol > li {
  position: relative;
  margin: 1rem 0;
  line-height: 1.6;
}
.text-block ul > li + li,
.text-block ol > li + li {
  margin-top: 1rem;
}
.text-block ul ul > li::before,
.text-block ol ul > li::before {
  position: absolute;
  content: url("../images/arrow-bullet.svg");
  width: 8px;
  height: 18px;
  left: -1.5rem;
}
.text-block ul > li::before {
  position: absolute;
  content: url("../images/arrow-bullet.svg");
  width: 11px;
  height: 16px;
  left: -1.5rem;
}
.text-block ol {
  counter-reset: item;
}
.text-block ol > li {
  counter-increment: item;
  margin: 0 0 2rem;
}
.text-block ol > li::before {
  content: counter(item);
  display: block;
  position: absolute;
  left: -4rem;
  top: -0.4rem;
  margin-bottom: 0.75rem;
  margin-left: 1.5rem;
  border-right: 2px solid var(--color-orange);
  padding-right: 1rem;
  padding-top: 0.2rem;
  font-size: 22px;
  width: 25px;
  color: var(--color-blue);
  font-family: var(--font-heading);
}
.text-block h1,
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6 {
  color: var(--color-blue);
}
.text-block h1,
.text-block h2 {
  margin: 0 0 2rem;
}
.text-block h1::after,
.text-block h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 90px;
  background-color: var(--colour-primary);
  margin: 1rem 0 0;
}
.text-block h2 {
  font-size: 36px;
  position: relative;
}
.text-block h2::after {
  content: "";
  height: 5px;
  width: 90px;
  background-image: linear-gradient(to right, #df615c, #f8985e);
  background-image: var(--gradient-red-orange);
  border-radius: 5px;
}
.text-block h3,
.text-block h4 {
  font-family: var(--font-heading);
  text-transform: initial;
  letter-spacing: initial;
  margin: 1rem 0 2rem 0;
}
.text-block h3 {
  font-size: 26px;
}
.text-block h4 {
  font-size: var(--text-size-xl);
}
.text-block p {
  font-size: var(--text-sm);
  line-height: 2;
  color: var(--black);
  margin: 0 0 2rem;
}
.text-block p:last-child {
  margin: 0;
}
.text-block a {
  color: var(--color-red);
  transition: color 0.3s ease;
}
.text-block a:hover {
  color: var(--color-red-hover);
}
.text-block img {
  border-radius: 50px;
}
.text-block pre {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-family: inherit;
  white-space: normal;
  font-size: var(--text-xxl);
  font-family: var(--font-heading);
  line-height: 2.5rem;
}

.block-align-center {
  max-width: 800px;
  margin: 0 auto 2rem auto !important;
}

.embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: unset;
}

.media {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  box-shadow: var(--main-box-shadow);
  padding: 3rem;
  border-radius: 2rem;
  cursor: pointer;
  margin-block-end: 3rem;
}
@media screen and (max-width: 500px) {
  .media {
    padding: 3rem;
    gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.media:hover .media__icon {
  transform: scale(1.05);
}

.media__icon {
  transition: all 0.3s ease;
}

.media--pdf .media__icon {
  width: 75px;
}
@media screen and (max-width: 500px) {
  .media--pdf .media__icon {
    width: 50px;
  }
}

.media--video .media__icon {
  width: 90px;
}
@media screen and (max-width: 500px) {
  .media--video .media__icon {
    width: 60px;
  }
}
@media screen and (max-width: 300px) {
  .media--video .media__icon {
    width: 40px;
  }
}

.media__header {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.media__pretitle {
  margin-block-end: 1rem;
  color: var(--color-red);
  text-transform: uppercase;
  font-size: var(--text);
  letter-spacing: 2.4px;
}
@media screen and (max-width: 500px) {
  .media__pretitle {
    display: none;
  }
}

.media__pretitle--mobile {
  display: none;
  margin-block-end: 0;
}
@media screen and (max-width: 500px) {
  .media__pretitle--mobile {
    display: block;
  }
}

.media__title {
  margin: 0;
  font-size: var(--text-xxl);
}

.bti {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  align-items: flex-start;
  margin-block-end: 3rem;
}
@media screen and (max-width: 800px) {
  .bti {
    flex-direction: column;
  }
}

.bti__text {
  flex: 50%;
}
.bti__text p:first-child {
  margin-top: 0;
}
.bti__text h2:first-child,
.bti__text h3:first-child,
.bti__text h4:first-child {
  margin-top: 0;
}

.bti__image {
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
}

.image-block {
  margin-block-end: 3rem;
  position: relative;
  z-index: 1;
}
.image-block a {
  display: inline-block;
}
.image-block img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-block--ratio-default img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-block--ratio-landscape img {
  aspect-ratio: 4/3;
}

.image-block--ratio-wide-landscape img {
  aspect-ratio: 16/9;
}

.image-block--ratio-square img {
  aspect-ratio: 1/1;
}

.image-block--center {
  margin: 0 auto;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 700px), 1fr));
  grid-auto-rows: min-content;
  gap: clamp(1rem, 2vw, 2rem);
  margin-block-end: 3rem;
}
@media screen and (max-width: 500px) {
  .post-list {
    grid-template-columns: 1fr;
  }
}

.spacer {
  display: block;
  clear: both;
}

/* Header */
.header {
  position: relative;
  z-index: 999;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 4rem;
}
@media screen and (max-width: 800px) {
  .header {
    padding: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .header {
    padding: 2rem;
  }
}

.is-open {
  z-index: 99999;
}

.header__wrapper {
  position: relative;
  display: flex;
  z-index: 999;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.header__menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .header__menu {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}

.header__logo {
  width: 220px;
  margin-left: 2.75rem;
  transition: opacity 0.3s ease;
}
.header__logo .cls-1 {
  fill: #000;
  stroke: none;
}
@media screen and (max-width: 1100px) {
  .header__logo {
    width: 170px;
  }
}
@media screen and (max-width: 800px) {
  .header__logo {
    margin-left: 0;
  }
}

@media all and (max-height: 650px) {
  .is-open .header__logo {
    opacity: 0;
  }
}

.header__navigation {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .header__navigation {
    display: none;
  }
}

.header__navigation--item:last-child {
  margin-left: 1.75rem;
}
@media screen and (max-width: 1100px) {
  .header__navigation--item:last-child {
    margin-left: 1rem;
  }
}

.header__navigation--link {
  font-size: var(--text-lg);
  color: var(--color-blue);
  transition: 0.3s var(--easing-in-out);
  text-decoration: none;
}
.header__navigation--link:hover {
  transition: 0.3s var(--easing-in-out);
  color: var(--color-red);
}
@media screen and (max-width: 1100px) {
  .header__navigation--link {
    font-size: var(--text-md);
  }
}

.navigation-button {
  position: fixed;
  top: 2.5rem;
  left: 1rem;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--color-white);
  border-radius: 50%;
  border: none;
  z-index: 101;
  transition: transform 0.3s ease;
}
.navigation-button::after {
  /* Add shadow to button (shadow not a great animation target) */
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
.navigation-button:hover {
  cursor: pointer;
}
.navigation-button:hover::after {
  /* Depress button shadow */
  opacity: 0.4;
}
.navigation-button:hover .navigation-button__inner:nth-child(2) {
  transform: translate3d(-50%, 0, 0) scaleX(1);
}
@media screen and (max-width: 800px) {
  .navigation-button {
    right: 2rem;
    left: auto;
    top: 1.5rem;
  }
}

.navigation-button__outer {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.navigation-button__inner {
  position: absolute;
  display: block;
  width: 1.5rem;
  height: 3px;
  left: 50%;
  border-radius: 2px;
  background-color: var(--color-blue);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.navigation-button__inner:nth-child(1) {
  top: calc(50% - 5px);
  transform-origin: center;
  transform: translate3d(-50%, 0, 0);
}
.navigation-button__inner:nth-child(2) {
  top: calc(50% + 5px);
  transform: translate3d(-50%, 0, 0) scaleX(0.6);
}

.is-open.navigation-button::after {
  opacity: 0;
}

.is-open.navigation-button .navigation-button__outer {
  transform-origin: center;
  transform: rotate(-315deg);
  transition: transform 0.5s ease 0.3s;
}

.is-open.navigation-button .navigation-button__inner:nth-child(1),
.is-open.navigation-button:hover .navigation-button__inner:nth-child(1),
.is-open.navigation-button:active .navigation-button__inner:nth-child(1) {
  animation: button-inner-first 0.5s ease 1 forwards;
}

.is-open.navigation-button .navigation-button__inner:nth-child(2),
.is-open.navigation-button:hover .navigation-button__inner:nth-child(2),
.is-open.navigation-button:active .navigation-button__inner:nth-child(2) {
  animation: button-inner-second 0.5s ease 1 forwards;
}

@keyframes button-inner-first {
  0% {
    transform: translate3d(-50%, 0, 0) rotate(0);
  }
  70% {
    transform: translate3d(-50%, 3.5px, 0) rotate(0);
  }
  100% {
    transform: translate3d(-50%, 3.5px, 0) rotate(90deg);
  }
}
@keyframes button-inner-second {
  0% {
    transform: translate3d(-50%, 0, 0) scaleX(1) rotate(0);
  }
  70% {
    transform: translate3d(-50%, -6.5px, 0) scaleX(1) rotate(0);
  }
  100% {
    transform: translate3d(-50%, -6.5px, 0) scaleX(1) rotate(0);
  }
}
/* ================ */
/* Navigation Block */
/* ================ */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 110vh;
  padding-left: 6.8rem;
  padding-right: 6.8rem;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  pointer-events: none;
  transition: opacity var(--transition-long);
  opacity: 0;
  z-index: 9999;
}
@media screen and (max-width: 800px) {
  .navigation {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.is-open.navigation {
  /* STATE: reveal navigation and allow clicking elements/links */
  opacity: 1;
  pointer-events: auto;
  transition: opacity var(--transition-long) 0.25s;
}

/* Navigation List Element */
.navigation__list {
  --header-height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-height: 550px) {
  .navigation__list {
    position: relative;
    overflow: scroll;
  }
}

@media all and (max-height: 850px) and (min-width: 1280px) {
  .navigation__list.stack > * + * {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .navigation__list.stack > * + * {
    margin-top: 1.5rem;
  }
}

/* Navigation Item Element */
.navigation__item {
  opacity: 0;
  transform: translate3d(-6rem, 0, 0);
  display: flex;
  align-items: flex-end;
}
.navigation__item.home a {
  width: 45px;
  height: 55px;
}
.navigation__item.home a svg {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: all 0.3s ease-out;
}
.navigation__item.home a:hover svg {
  transform: scale(1.2);
}
@media all and (max-height: 850px) {
  .navigation__item.home a {
    width: 35px;
    height: 35px;
  }
}
.navigation__item.home a::after {
  display: none;
}
@media screen and (max-width: 800px) {
  .navigation__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media all and (max-height: 375px) {
  .navigation__item {
    margin: 0 0 1rem !important;
  }
}

.is-open .navigation__item {
  /* STATE: Stagger in navigation items */
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: var(--transition-bounce);
  transition-delay: var(--delay, 0.5s);
}

/* Navigation Submenu */
.navigation__submenu {
  display: flex;
  align-items: center;
  margin-left: 2rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.2s ease;
}
.navigation__submenu a {
  color: var(--color-red);
  font-size: var(--text-md);
}
@media screen and (max-width: 800px) {
  .navigation__submenu {
    max-height: 0;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 500px) {
  .navigation__submenu {
    transform: translateX(-15px);
  }
}

.submenu__item {
  margin: 0 1.5rem 0.8rem 1.5rem;
  transition: all 0.3s ease;
}
.submenu__item:hover {
  transform: translateX(3px);
}

.is-submenu-open .navigation__submenu {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 800px) {
  .is-submenu-open .navigation__submenu {
    max-height: initial;
    transform: translateX(0) translateY(20px);
  }
}

.has-submenu .navigation__link::after {
  display: none;
}

/* Navigation Link Element */
.navigation__link {
  display: inline-block;
  position: relative;
  color: var(--color-blue);
  font-size: 3.5rem;
  font-family: var(--font-heading);
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  transition: all var(--transition-short);
  /* Current Page Override
   * =====================
   * Current page is marked by `aria-current` attribute. Current page
   * has a blue parallelogram, instead of a gradient and no transition
   */
}
@media screen and (max-width: 1700px) {
  .navigation__link {
    font-size: 3rem;
  }
}
@media all and (max-height: 850px) and (min-width: 1280px) {
  .navigation__link {
    font-size: 1.7rem;
  }
}
@media all and (max-height: 375px) {
  .navigation__link {
    font-size: 1.375rem !important;
  }
}
@media screen and (max-width: 1100px) {
  .navigation__link {
    font-size: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .navigation__link {
    font-size: var(--text-xxl);
  }
}
.navigation__link::after {
  /* NOTE: arallelogram shape to indicate hover */
  content: "";
  display: block;
  position: absolute;
  top: -10%;
  right: -5rem;
  width: 300px;
  min-width: 150px;
  height: 120%;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  background-color: var(--color-red);
  background-image: var(--gradient-red-orange);
  opacity: 0;
  transform: translate3d(-1rem, 0, 0);
  transition: all var(--transition-long);
  z-index: -1;
}
@media all and (max-height: 680px) and (max-width: 1100px) {
  .navigation__link::after {
    width: 150px;
  }
}
@media all and (max-height: 800px) {
  .navigation__link::after {
    width: 180px;
    left: 55%;
  }
}
@media screen and (max-width: 800px) {
  .navigation__link::after {
    min-width: auto;
    width: 100px;
    left: 60%;
    clip-path: polygon(2rem 0, 100% 0, calc(100% - 2rem) 100%, 0 100%);
  }
}
.navigation__link:hover {
  letter-spacing: 1px;
}
.navigation__link:hover::after {
  /* STATE: reveal parallelogram */
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.navigation__link[aria-current]::after {
  opacity: 0.1;
  transform: translate3d(0, 0, 0);
  background-color: #b4b4b4;
  background-image: unset;
  width: 215px;
  left: 75%;
}
@media screen and (max-width: 1100px) {
  .navigation__link[aria-current]::after {
    width: 120px;
  }
}
@media all and (max-height: 680px) and (max-width: 1100px) {
  .navigation__link[aria-current]::after {
    width: 150px;
  }
}
.navigation__link[aria-current]:hover::after {
  opacity: 0.1;
}

.social__items {
  display: none;
}
@media screen and (max-width: 1700px) {
  .social__items {
    display: flex;
  }
}

.navigation__social {
  position: relative;
  top: 4rem;
  display: flex;
}
.navigation__social .social__item {
  margin-right: 2rem;
  width: 40px;
}
@media screen and (max-width: 500px) {
  .navigation__social .social__item {
    width: 25px;
  }
}
@media all and (max-height: 500px) {
  .navigation__social .social__item {
    width: 20px;
  }
}
@media all and (max-height: 500px) {
  .navigation__social {
    top: 2rem;
  }
}

.no-scroll {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

.page-scrolled {
  transform: translateY(-1rem);
}
@media screen and (max-width: 800px) {
  .page-scrolled {
    transform: initial;
  }
}

.blog__search {
  height: 8rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
  border-radius: 4rem;
  padding: 0 4rem 0 4rem;
  margin-bottom: 2rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 500px) {
  .blog__search {
    display: none;
  }
}

.blog__searchinput {
  font-size: 26px;
  outline: none;
  border: none;
  width: 100%;
}
.blog__searchinput::-moz-placeholder {
  opacity: 0.3;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.blog__searchinput::placeholder {
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.blog__searchinput:focus::-moz-placeholder {
  opacity: 0.1;
}
.blog__searchinput:focus::placeholder {
  opacity: 0.1;
}

.searchButton {
  width: 50px;
  height: 50px;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}

.searchButton svg {
  width: 37px;
  height: 37px;
}

.article__sidebar {
  margin-top: 6rem;
  order: 0;
}
@media (max-width: 1590px) {
  .article__sidebar {
    margin-right: 0;
  }
}

.default-sidebar {
  max-width: 450px;
}
@media screen and (max-width: 1300px) {
  .default-sidebar {
    max-width: 100%;
  }
}
.default-sidebar .blog__cardbodytext {
  overflow: initial;
  text-overflow: initial;
  display: block;
}

.sidebar__wrapper {
  grid-column-end: 4;
}
@media screen and (max-width: 1300px) {
  .sidebar__wrapper {
    order: 3;
    grid-column-end: initital;
  }
}

.card {
  border-radius: 3rem;
  background-color: var(--color-white);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.15);
  margin: 4rem 2rem;
}
@media screen and (max-width: 1300px) {
  .card--sidebar {
    max-width: 400px;
  }
}
@media screen and (max-width: 500px) {
  .card {
    margin: 4rem 0;
  }
}

.card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 2rem 3rem 2rem;
}
@media screen and (max-width: 500px) {
  .card__body {
    padding: 2rem;
  }
}

@media screen and (max-width: 1300px) {
  .sidebar__blog-default {
    min-width: 400px;
  }
}
@media screen and (max-width: 500px) {
  .sidebar__blog-default {
    min-width: auto;
  }
}

.sidebar-item {
  margin-bottom: 2rem;
  width: 100%;
  min-width: 380px;
  position: relative;
}
.sidebar-item::after {
  content: "";
  border-radius: 3rem;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: all 0.3s ease;
  z-index: -1;
}
@media screen and (max-width: 1300px) {
  .sidebar-item {
    margin-right: 2rem;
    flex-grow: 1;
    max-width: 45%;
    min-width: auto;
  }
}
@media screen and (max-width: 800px) {
  .sidebar-item {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .sidebar-item {
    min-width: auto;
  }
}

@media screen and (max-width: 1300px) {
  .sidebar__meta {
    display: none;
  }
}

.blog__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 1rem;
  max-width: 450px;
}
@media screen and (max-width: 1400px) {
  .blog__sidebar {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 1300px) {
  .blog__sidebar {
    margin-top: 4rem;
    margin-left: 0;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 300px) {
  .blog__sidebar {
    max-width: 250px;
  }
}

.blog .blog__sidebar {
  max-width: 600px;
}
@media screen and (max-width: 1300px) {
  .blog .blog__sidebar {
    margin-top: 0;
    max-width: 100%;
  }
}

.blog__cards {
  width: 100%;
  max-width: 920px;
  min-width: 680px;
  margin: 0 4rem auto auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
@media screen and (max-width: 1300px) {
  .blog__cards {
    grid-gap: 2rem;
    margin: 0 auto;
    min-width: auto;
  }
}
@media all and (max-width: 600px) {
  .blog__cards {
    grid-template-columns: 1fr;
  }
}

.blog__card {
  width: 100%;
  border-radius: 3rem;
  background-color: var(--color-white);
  transition: all 0.3s ease;
  position: relative;
}
.blog__card:hover .blog__button::after {
  transform: translateX(0.3rem);
}
.blog__card::after {
  content: "";
  border-radius: 3rem;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: all 0.3s ease;
  z-index: -1;
}

.blog__cardimage {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 50%;
  border-radius: 3rem 3rem 0 0;
}
.blog__cardimage img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -o-object-position: center 35%;
     object-position: center 35%;
}

.blog__cardtextbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 2rem 3rem 2rem;
  background-color: var(--color-white);
  border-radius: 0 0 3rem 3rem;
}
.blog__cardtextbox--no-image {
  border-radius: 3rem;
  padding: 3rem;
}
@media screen and (max-width: 800px) {
  .blog__cardtextbox--no-image {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .blog__cardtextbox--no-image {
    padding: 2rem;
  }
}

.blog__cardtitle {
  font-size: var(--text-xxl);
  color: var(--color-blue);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.blog__cardbodytext {
  color: var(--color-grey);
  margin: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}
.blog__cardbodytext p:last-child {
  margin-bottom: 0;
}
.blog__cardbodytext a {
  color: var(--color-red);
  word-break: break-all;
}
.blog__cardbodytext .blog__button {
  color: var(--color-white);
}

.blog__button {
  margin-top: 2rem;
  box-shadow: none;
}

.blog__cards .blog__card:hover::after {
  opacity: 0.5;
}

.contact-form {
  margin: 0 0 2rem;
  font-size: 1.5rem;
  background-color: var(--color-white);
  padding: 4rem;
  border-radius: 3rem;
  box-shadow: var(--main-box-shadow);
  position: relative;
}
@media screen and (max-width: 500px) {
  .contact-form {
    padding: 4rem 2rem;
  }
}
.contact-form input:not(input[type=submit]),
.contact-form textarea {
  border: none;
  border-bottom: 2px solid var(--color-red);
  line-height: 1;
  padding: 1rem 1rem 0.3rem 1rem;
  font-size: 1.5rem;
  outline: thin;
  background: none;
}
@media screen and (max-width: 500px) {
  .contact-form input:not(input[type=submit]),
.contact-form textarea {
    width: 95%;
  }
}
.contact-form input:not(input[type=submit]):focus::-moz-placeholder, .contact-form textarea:focus::-moz-placeholder {
  opacity: 0.1;
}
.contact-form input:not(input[type=submit]):focus::placeholder,
.contact-form textarea:focus::placeholder {
  opacity: 0.1;
}
.contact-form input:not(input[type=submit])::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0.3;
}
.contact-form input:not(input[type=submit])::placeholder,
.contact-form textarea::placeholder {
  transition: opacity 0.3s ease;
  opacity: 0.3;
}
.contact-form label {
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1rem;
}

.contact-form__hello {
  display: block;
  margin-bottom: 1.5rem;
}

.contact-form__textarea {
  margin-top: 2rem;
  position: relative;
  width: 100%;
}
.contact-form__textarea textarea {
  display: block;
  padding: 1rem 1rem 0.3rem 0;
  width: 100%;
  height: 11rem;
  line-height: 2rem;
  resize: none;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.contact-form__line {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--color-red);
  bottom: 8rem;
  box-shadow: 0 2rem var(--color-red), 0 4rem var(--color-red), 0 6rem var(--color-red);
}

.contact-form__thankyou {
  display: block;
  margin-top: 2rem;
}

.contact-form__submit {
  margin-top: 2rem;
  cursor: pointer;
  box-shadow: none;
}

.punctuation {
  position: relative;
  top: 0.3rem;
}

.contact-form__message {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  font-size: var(--text-md);
  position: fixed;
  top: 40%;
  left: 0;
  right: 0;
  z-index: 999;
  max-width: 900px;
  margin: 0 auto;
  pointer-events: none;
  animation: signup-response 0.5s 1;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.contact-form__message::before {
  content: "✓";
  margin-right: 0.5rem;
  color: #0ab50a;
}

@keyframes signup-response {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.author-bio {
  max-width: 960px;
  margin-top: 6rem;
  grid-column-end: span 2;
}
@media screen and (max-width: 1300px) {
  .author-bio {
    order: 2;
    margin-bottom: 2rem;
    grid-column-end: initital;
  }
}

.author-bio__meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.author-bio__image {
  margin-right: 1rem;
  max-width: 100px;
}
.author-bio__image img {
  border-radius: 50%;
}

.gradientline {
  height: 5px;
  width: 90px;
  border-radius: 5px;
  background-image: var(--gradient-red-orange);
}

.iconbox {
  position: relative;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  border-radius: 53px;
  background-color: var(--color-white);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 500px) {
  .iconbox {
    width: 130px;
    height: 130px;
    border-radius: 43px;
  }
}

.iconbox__icon {
  width: 55px;
  height: 55px;
}

.angled-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 20;
  min-height: 1100px;
  margin: -12rem 0 -10rem;
}
.angled-wrapper--no-faq {
  margin: -10rem 0 0 0;
}
@media screen and (max-width: 1100px) {
  .angled-wrapper {
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .angled-wrapper {
    margin: -12rem 0 -6rem;
  }
}

.angledbg {
  width: 381px;
  height: 1016px;
  position: absolute;
  z-index: 20;
}
.angledbg--right {
  right: 0;
}
@media screen and (max-width: 1400px) {
  .angledbg--right {
    right: -4rem;
  }
}
@media screen and (max-width: 1100px) {
  .angledbg--right {
    transform: scaleX(-1) rotate(405deg);
    right: -14rem;
    top: -6rem;
  }
}
@media screen and (max-width: 800px) {
  .angledbg--right {
    transform: scaleX(-1) rotate(405deg) scale(0.8);
    top: -10rem;
  }
}
@media screen and (max-width: 500px) {
  .angledbg--right {
    top: -14rem;
  }
}
.angledbg--left {
  left: 0;
}
@media screen and (max-width: 1400px) {
  .angledbg--left {
    left: -4rem;
  }
}
@media screen and (max-width: 1100px) {
  .angledbg--left {
    transform: rotate(135deg);
    left: -14rem;
    bottom: -6rem;
  }
}
@media screen and (max-width: 800px) {
  .angledbg--left {
    transform: rotate(135deg) scale(0.8);
    bottom: -10rem;
  }
}
@media screen and (max-width: 500px) {
  .angledbg--left {
    bottom: -14rem;
  }
}
@media screen and (max-width: 1500px) {
  .angledbg {
    width: 300px;
  }
}
@media screen and (max-width: 1300px) {
  .angledbg {
    width: 280px;
  }
}
@media screen and (max-width: 1100px) {
  .angledbg {
    width: initial;
  }
}
@media all and (max-width: 980px) {
  .angledbg {
    width: 280px;
  }
}

.angledtextbox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  z-index: 9999;
  padding: 0 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 1100px) {
  .angledtextbox {
    max-width: 600px;
    margin-top: 0;
  }
}

.angledheading {
  margin: 0 0 1rem;
}
@media screen and (max-width: 500px) {
  .angledheading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 300px) {
  .angledheading {
    font-size: 2rem;
  }
}

.angledsubheading {
  margin: 0 0 2rem;
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 100;
  color: var(--color-red);
}
@media screen and (max-width: 300px) {
  .angledsubheading {
    font-size: 1rem;
  }
}

.text__arrow {
  height: 9px;
  width: 29px;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faqtext__wrapper {
  width: 100%;
  position: relative;
  display: flex;
  z-index: 80;
}
.faqtext__wrapper::after {
  content: url("../../dist/images/bg-asset-pill-right.svg");
  position: absolute;
  bottom: -20rem;
  right: 0;
  width: 1000px;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .faqtext__wrapper::after {
    transform: translateX(40%);
  }
}
@media screen and (max-width: 800px) {
  .faqtext__wrapper::after {
    transform: translateX(70%);
  }
}

.faqtext {
  display: flex;
  flex-direction: column;
  margin-top: 12rem;
  align-items: flex-end;
  position: relative;
  max-width: 800px;
  margin: 0 auto 12rem auto;
  padding: 0 2rem;
}
@media screen and (max-width: 1100px) {
  .faqtext {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 800px) {
  .faqtext {
    margin: 0 auto 6rem auto;
  }
}

.faqtext__heading {
  font-size: 2.625rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 500px) {
  .faqtext__heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 300px) {
  .faqtext__heading {
    font-size: 1.8rem;
  }
}

.faqtext__subheading {
  font-size: var(--text-lg);
  transform: translateX(13%);
  font-family: var(--font-body);
}
.faqtext__subheading:hover .text__arrow {
  transform: translateX(0.5rem);
}
@media screen and (max-width: 800px) {
  .faqtext__subheading {
    transform: translateX(0);
    line-height: 1.2;
  }
}

.related-articles {
  margin-top: 4rem;
}
@media screen and (max-width: 800px) {
  .related-articles h2 {
    text-align: center;
  }
  .related-articles h2::after {
    margin: 2rem auto;
  }
}

.related-articles__container {
  display: flex;
}
.related-articles__container .blog__card {
  max-width: 400px;
  margin: 0 2rem 2rem 0;
}
.related-articles__container .blog__card img {
  border-radius: 0;
}
@media screen and (max-width: 800px) {
  .related-articles__container {
    flex-direction: column;
    align-items: center;
  }
}

.section__testimonial {
  min-height: 900px;
  min-width: 600px;
  background: #08083d;
  background: linear-gradient(180deg, #08083d 0%, #08083d 45%, #030318 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 10rem;
  border-radius: 6rem;
  position: relative;
  transform-style: preserve-3d;
}
.section__testimonial--large-quote {
  padding-bottom: 10rem;
}
@media screen and (max-width: 1300px) {
  .section__testimonial {
    padding-top: 7rem;
    padding-bottom: 13rem;
    min-height: auto;
  }
}
@media screen and (max-width: 800px) {
  .section__testimonial {
    min-width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
    border-radius: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .section__testimonial {
    border-radius: 2rem;
    padding: 4rem 4rem 12rem 4rem;
  }
}
@media all and (max-height: 850px) and (min-width: 1280px) {
  .section__testimonial {
    min-width: 490px;
  }
}

.testimonial__title {
  color: var(--color-white);
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 420px;
  position: relative;
}
@media screen and (max-width: 500px) {
  .testimonial__title {
    font-size: var(--text-lg);
  }
}

.testimonial__wrapper {
  position: absolute;
  bottom: 5rem;
  right: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .testimonial__wrapper {
    right: 2rem;
  }
}

.testimonial__attribution {
  display: flex;
  flex-direction: column;
  margin-right: 2rem;
}
@media screen and (max-width: 500px) {
  .testimonial__attribution {
    margin-right: 1rem;
  }
}

.testimonial__name {
  color: var(--color-white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.6rem;
  text-align: right;
}
.testimonial__name cite {
  font-style: normal;
}

.testimonial__company {
  color: var(--color-red);
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}
@media screen and (max-width: 500px) {
  .testimonial__company {
    text-align: right;
  }
}

.steps {
  position: relative;
  padding: 0 4rem;
}
.steps::after {
  content: url("../../dist/images/bg-asset-pill-right.svg");
  position: absolute;
  bottom: -20rem;
  right: 0;
  width: 1040px;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .steps::after {
    transform: translateX(40%);
  }
}
@media screen and (max-width: 800px) {
  .steps::after {
    transform: translateX(70%);
  }
}
@media screen and (max-width: 500px) {
  .steps::after {
    bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .steps {
    padding: 0 2rem;
  }
}

.steps__container {
  max-width: var(--max-width-small);
  margin: 20rem auto 0 auto;
}
@media screen and (max-width: 1100px) {
  .steps__container {
    margin: 10rem auto 0 auto;
  }
}
@media screen and (max-width: 800px) {
  .steps__container {
    margin: 0 auto;
  }
}

.steps__title {
  text-align: center;
  color: var(--color-blue);
  font-size: var(--text-xxxxl);
  margin: 0 0 1rem;
  padding: 0 2rem;
  /*@include break('xs') {
    padding: 0;
    font-size: 2.5rem;
  }*/
}
@media screen and (max-width: 800px) {
  .steps__title {
    padding: 0;
    font-size: 2.8rem;
  }
}

.steps__subtitle {
  text-align: center;
  color: var(--color-red);
  margin: 0;
}

.steps__repeater {
  display: flex;
  flex-direction: column;
  max-width: 1015px;
  margin: 4rem auto 0 auto;
}
@media screen and (max-width: 800px) {
  .steps__repeater {
    max-width: 400px;
  }
}
.steps__repeater--front-page .step-1::after {
  top: 70%;
  left: 25%;
  width: 625px;
  min-height: 150px;
}
@media all and (max-width: 960px) {
  .steps__repeater--front-page .step-1::after {
    width: 460px;
  }
}
.steps__repeater--front-page .step-3::after {
  top: -6.5rem;
  left: 3.8rem;
  width: 320px;
  min-height: 200px;
}
@media all and (max-width: 920px) {
  .steps__repeater--front-page .step-3::after {
    width: 250px;
    min-height: 235px;
  }
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .step {
    width: 100%;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .step {
    justify-content: flex-start;
    align-items: center;
  }
}
.step::before, .step::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
}
@media screen and (max-width: 800px) {
  .step::before, .step::after {
    display: none;
  }
}
.step::before {
  width: 450px;
  height: 140px;
  z-index: -1;
}

.step__text {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  background: linear-gradient(45deg, #f88741, #DC615C);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 800px) {
  .step__text {
    font-size: 1.8rem;
  }
}

.step-1 {
  align-self: flex-start;
}
.step-1::after {
  top: 70%;
  left: 25%;
  background: transparent url("../../dist/images/step-line-02.svg") 0 0 no-repeat;
  width: 625px;
  min-height: 150px;
  background-size: cover;
}
@media all and (max-width: 1100px) {
  .step-1::after {
    width: 500px;
  }
}
@media all and (max-width: 940px) {
  .step-1::after {
    width: 425px;
  }
}
@media all and (max-width: 860px) {
  .step-1::after {
    width: 360px;
  }
}

.step-2 {
  align-self: flex-end;
}
@media screen and (max-width: 800px) {
  .step-2 {
    margin-left: 14rem;
  }
}
@media screen and (max-width: 500px) {
  .step-2 {
    margin-left: 0;
  }
}

.step-3 {
  align-self: center;
}
.step-3::after {
  top: -6.5rem;
  left: 3.8rem;
  background: transparent url("../../dist/images/step-line-01.svg") 0 0 no-repeat;
  width: 320px;
  min-height: 200px;
  background-size: cover;
}
@media screen and (max-width: 1100px) {
  .step-3::after {
    right: 75%;
  }
}
@media all and (max-width: 1060px) {
  .step-3::after {
    width: 280px;
    min-height: 235px;
  }
}
@media all and (max-width: 955px) {
  .step-3::after {
    width: 190px;
  }
}

@media screen and (max-width: 800px) {
  .step-1,
.step-2,
.step-3 {
    align-self: center;
  }
}

.step__number-wrapper {
  background-color: var(--color-white);
  box-shadow: 0px 6px 15px 5px rgba(0, 0, 0, 0.1);
  border-radius: 2.5rem;
  min-width: 160px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-right: 2rem;
}
@media screen and (max-width: 800px) {
  .step__number-wrapper {
    min-width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 500px) {
  .step__number-wrapper {
    margin-right: 1rem;
    min-width: 95px;
    height: 95px;
  }
}

.step__number {
  max-width: 60px;
}
@media screen and (max-width: 500px) {
  .step__number {
    max-width: 50px;
  }
}

.step__title {
  max-width: 225px;
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: var(--color-blue);
}

.step__subtitle {
  font-size: var(--text-xs);
  display: block;
  color: var(--color-red);
  margin-top: 0.5rem;
}

.page-intro {
  max-width: 960px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.page-intro__text {
  text-align: center;
  line-height: 2.4;
  font-size: var(--text-sm);
}

.services {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 1260px;
  padding: 0 2rem;
  position: relative;
  z-index: 100;
  margin-top: 2rem;
}
@media screen and (max-width: 800px) {
  .services {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 500px) {
  .services {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    max-width: 500px;
    margin: 2rem auto 0 auto;
  }
}
@media screen and (max-width: 300px) {
  .services {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}
.services .service,
.services .service__separator {
  align-self: center;
  justify-self: center;
}
@media screen and (max-width: 500px) {
  .services .service,
.services .service__separator {
    align-self: flex-start;
  }
}
@media screen and (max-width: 800px) {
  .services .service__separator {
    display: none;
  }
}

.service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .service {
    width: 45%;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .service {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 1rem;
  }
}

.service__icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 160px;
  height: 160px;
  border-radius: 53px;
  background-color: var(--color-white);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
}
.service__icon img {
  max-width: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .service__icon {
    width: 100px;
    height: 100px;
    border-radius: 2rem;
    margin-right: 2rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 300px) {
  .service__icon {
    margin-right: 1rem;
  }
}

.service__name {
  color: var(--color-blue);
  margin: 0;
  letter-spacing: 2px;
  font-size: var(--text-sm);
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 500px) {
  .service__name {
    text-align: left;
    line-height: 1.6;
  }
}

.service__separator {
  min-width: 80px;
  max-width: 80px;
  margin-bottom: 4rem;
}
.service__separator:last-child {
  display: none;
}
@media screen and (max-width: 800px) {
  .service__separator {
    max-width: 100px;
  }
  .service__separator:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .service__separator {
    display: none;
  }
}

.pagination {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 2rem;
  margin: 6rem auto 0 auto;
  letter-spacing: 1px;
  position: relative;
  z-index: 30;
}
.pagination span {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--color-black);
}

.pagination__separator {
  margin: 0 0.5rem;
}

.pagination-arrow {
  border: 2px solid var(--color-red);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 10px;
  margin: 0 1rem;
  transition: transform 0.3s ease;
}
.pagination-arrow--next {
  transform: scaleX(-1);
}
.pagination-arrow--disabled {
  pointer-events: none;
  opacity: 0.4;
}

.pagination__next:hover .pagination-arrow {
  transform: scale(0.95);
}
.pagination__next:hover .pagination-arrow--prev .arrow {
  animation-name: arrow-loop-right;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}

.pagination__prev:hover .pagination-arrow {
  transform: scaleX(-1) scale(0.95);
}
.pagination__prev:hover .pagination-arrow--next .arrow {
  animation-name: arrow-loop-left;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}

@media all and (max-width: 400px) {
  .current-text {
    display: none;
  }
}

@keyframes arrow-loop-right {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(3rem);
    opacity: 0;
  }
  75% {
    transform: translateX(-3rem);
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrow-loop-left {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(3rem);
    opacity: 0;
  }
  75% {
    transform: translateX(-3rem);
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.floating-socials {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
}
@media screen and (max-width: 1700px) {
  .floating-socials {
    display: none;
  }
}

.social__item {
  margin: 0.5rem 0;
  width: 30px;
  opacity: 0.3;
  transition: all 0.3s ease;
  transform: scale(1);
}
.social__item:hover {
  opacity: 1;
  transform: scale(1.2);
}
.social__item:hover svg path,
.social__item:hover svg circle {
  fill: var(--color-red);
}
.social__item svg path,
.social__item svg circle {
  fill: var(--color-blue);
  transition: fill 0.3s ease;
}

.pillbg {
  position: absolute;
  max-width: 1100px;
}
.pillbg--landing {
  top: 7rem;
  right: 0;
  min-width: 900px;
  max-width: 1100px;
}
@media screen and (max-width: 1700px) {
  .pillbg--landing {
    transform: translateX(20%);
  }
}
@media screen and (max-width: 1400px) {
  .pillbg--landing {
    transform: translateX(40%);
  }
}
@media screen and (max-width: 1100px) {
  .pillbg--landing {
    transform: translateX(50%);
  }
}
@media screen and (max-width: 800px) {
  .pillbg--landing {
    transform: translateX(70%);
  }
}
.pillbg--performance {
  left: -3rem;
  top: 518px;
  transform: scaleX(1.3);
}
@media screen and (max-width: 1400px) {
  .pillbg--performance {
    transform: translateX(-30%);
  }
}
@media screen and (max-width: 1100px) {
  .pillbg--performance {
    top: 100px;
    transform: translateX(-60%);
  }
}

.linesbg {
  position: absolute;
  z-index: -1;
  max-width: 500px;
}

.linesbg--landing {
  top: 14rem;
  left: 7rem;
  transform: scaleY(1.2);
}
@media screen and (max-width: 1300px) {
  .linesbg--landing {
    top: 18rem;
    left: -4rem;
    transform: scaleY(1.3);
  }
}
@media screen and (max-width: 1100px) {
  .linesbg--landing {
    transform: initial;
    top: 26rem;
    left: 4rem;
    transform: scaleY(1.32);
  }
}
@media screen and (max-width: 800px) {
  .linesbg--landing {
    top: 20rem;
    left: -16rem;
  }
}
@media screen and (max-width: 500px) {
  .linesbg--landing {
    display: none;
  }
}

.linesbg--performance {
  top: -18rem;
  right: 6rem;
  transform: scaleY(0.95);
}
@media screen and (max-width: 1100px) {
  .linesbg--performance {
    top: 0;
    right: -10rem;
    max-width: 400px;
  }
}
@media screen and (max-width: 800px) {
  .linesbg--performance {
    right: -12rem;
  }
}
@media screen and (max-width: 500px) {
  .linesbg--performance {
    display: none;
  }
}

.horizontal-bg-lines {
  position: absolute;
  width: 500px;
  z-index: -1;
}
.horizontal-bg-lines--steps {
  top: 6rem;
  left: 0;
  width: 800px;
}
@media screen and (max-width: 1100px) {
  .horizontal-bg-lines {
    display: none;
  }
}

.vertical-bg-lines {
  position: absolute;
  z-index: -1;
  left: 21rem;
  top: -12rem;
  width: 550px;
  transform: scaleX(-1);
}
@media screen and (max-width: 800px) {
  .vertical-bg-lines {
    width: 400px;
    left: 0;
    transform: scaleX(-1);
  }
}
.vertical-bg-lines--lcp {
  top: 2rem;
  left: 6rem;
  transform: initial;
  width: 500px;
  transform: initial;
}
@media all and (max-width: 650px) {
  .vertical-bg-lines--lcp {
    left: 4rem;
  }
}
@media all and (max-width: 600px) {
  .vertical-bg-lines--lcp {
    left: 0;
  }
}
@media screen and (max-width: 500px) {
  .vertical-bg-lines {
    display: none;
  }
}
.vertical-bg-lines--short {
  top: -30rem;
  transform: scaleX(-1) scaleY(0.6);
}

/*.page-template-case-studies .vertical-bg-lines {
  display: none;
}*/
.footer__form {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 830px;
  margin-right: 14%;
}
@media screen and (max-width: 1100px) {
  .footer__form {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .footer__form {
    margin: 120px 1rem 0 1rem;
  }
}

.footer__formheading {
  font-size: var(--text-xxl);
  color: var(--color-white);
  margin-top: 25px;
  margin-bottom: 90px;
  padding: 0 1rem;
}
@media (max-width: 546px) {
  .footer__formheading {
    font-size: var(--text-xl);
  }
}
@media screen and (max-width: 300px) {
  .footer__formheading {
    padding: 0;
  }
}

.footer__formsubheading {
  font-size: var(--text-xl);
  font-family: var(--font-body);
}
@media (max-width: 546px) {
  .footer__formsubheading {
    font-size: var(--text-md);
  }
}

.footer__forminput {
  display: flex;
  width: 100%;
  justify-content: center;
}
@media (max-width: 864px) {
  .footer__forminput {
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
  }
}

.footer__input {
  font-size: 20px;
  color: var(--color-white);
  max-width: 492px;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-grey);
  margin-right: 14px;
  padding: 10px;
}
@media (max-width: 864px) {
  .footer__input {
    margin: 0 2rem;
  }
}
.footer__input:active, .footer__input:focus {
  transition: all 0.3s ease;
  outline: thin;
  border-color: var(--color-orange);
}
.footer__input::-moz-placeholder {
  letter-spacing: 2px;
  color: var(--color-white);
  opacity: 0.5;
}
.footer__input::placeholder {
  letter-spacing: 2px;
  color: var(--color-white);
  opacity: 0.5;
}
.footer__input:focus::-moz-placeholder {
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.2;
}
.footer__input:focus::placeholder {
  transition: all 0.3s ease-in-out;
  opacity: 0.2;
}

.footer__inputbutton {
  min-width: 295px;
}
@media screen and (max-width: 1100px) {
  .footer__inputbutton {
    min-width: auto;
  }
}
@media (max-width: 864px) {
  .footer__inputbutton {
    margin-top: 2rem;
  }
}

.footer__button {
  cursor: pointer;
}
@media (max-width: 864px) {
  .footer__button {
    font-size: var(--text-sm);
  }
}

.footer__coreservices .footer__button {
  margin-bottom: 1rem;
}

.mc-msg {
  opacity: 0;
  transform: translateY(-5rem);
  visibility: hidden;
  transition: all 0.3s ease;
  background: var(--gradient-red-orange);
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.mc-msg p {
  color: var(--color-white);
  margin-right: 1rem;
}
.mc-msg button {
  border: 1px solid var(--color-white);
  padding: 1rem;
  color: var(--color-white);
}

.mc-msg-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

#subscribe-result {
  color: var(--color-white);
  margin-top: 1rem;
  margin-left: 1rem;
  text-align: left;
}

.mobile-sidebar {
  display: none;
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
  max-width: 920px;
}
@media screen and (max-width: 1300px) {
  .mobile-sidebar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media all and (max-width: 600px) {
  .mobile-sidebar {
    flex-direction: column-reverse;
  }
}
.mobile-sidebar .blog__categories {
  max-width: 400px;
}
.mobile-sidebar .dropdown {
  margin: 0;
}
.mobile-sidebar .dropdown__label {
  background: var(--color-white);
  color: var(--color-black);
  padding: 2rem;
  border-radius: 4rem;
  box-shadow: var(--main-box-shadow);
  margin-right: 2rem;
}
.mobile-sidebar .dropdown__label::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26.37 16.1"><g data-name="Layer 2"><path style="fill:%23000" d="M23.23 0 12.98 9.77 3.19.12 0 3.36 12.93 16.1 26.37 3.29 23.23 0z" data-name="Layer 1"/></g></svg>');
  margin-left: 1rem;
}
@media all and (max-width: 600px) {
  .mobile-sidebar .dropdown__label {
    margin-right: 0;
  }
}
.mobile-sidebar .dropdown__content ul {
  list-style: none;
  padding-left: 0;
}
.mobile-sidebar .dropdown__content ul li {
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media screen and (max-width: 500px) {
  .mobile-sidebar .blog__search {
    display: none;
  }
}

.mobile-sidebar__categories {
  width: 100%;
  max-width: 350px;
}
@media all and (max-width: 600px) {
  .mobile-sidebar__categories {
    max-width: 100%;
  }
}

.mobile__search {
  position: relative;
  bottom: 0;
  display: none;
  flex-direction: row-reverse;
  align-items: center;
  width: 420px;
}
@media all and (max-width: 600px) {
  .mobile__search {
    display: none;
  }
}

.mobile-search-toggle {
  position: relative;
  width: 85px;
  height: 85px;
  background-color: var(--color-white);
  box-shadow: var(--main-box-shadow);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-search-toggle svg {
  width: 40px;
  position: absolute;
  transition: all 0.3s ease;
}
.mobile-search-toggle .close-icon {
  opacity: 0;
  visibility: hidden;
}

.mobile__searchinput-wrapper {
  border-radius: 3rem;
  background-color: var(--color-white);
  box-shadow: var(--main-box-shadow);
  position: absolute;
  bottom: 0.25rem;
  right: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 0;
  transition: all 0.3s ease;
}
.mobile__searchinput-wrapper input {
  border: none;
  width: 100%;
  padding: 2rem 8rem 2rem 2rem;
  outline: thin;
}
@media screen and (max-width: 1100px) {
  .mobile__searchinput-wrapper {
    bottom: 0.5rem;
  }
}
@media all and (max-width: 600px) {
  .mobile__searchinput-wrapper {
    left: auto;
    right: auto;
    transform: scaleX(0);
  }
}

.mobile__search-button {
  width: 40px;
  position: relative;
  right: 7rem;
}

.is-searchbar-active {
  width: 100%;
}
@media all and (max-width: 600px) {
  .is-searchbar-active {
    transform: scaleX(1);
  }
}

.is-icon-active .search-icon {
  opacity: 0;
}
.is-icon-active .close-icon {
  opacity: 1;
  visibility: visible;
  transform: rotate(90deg);
}
@media all and (max-width: 600px) {
  .is-icon-active {
    transform: translateX(15rem);
  }
}

.blog .mobile-sidebar {
  margin: 3rem auto;
}

.hvd-form {
  margin: 1rem 0;
}
.hvd-form input {
  border: none;
  border-bottom: 1px solid #b1b1b1;
  line-height: 1;
  padding: 1rem 1rem 0.3rem 1rem;
  font-size: 1.2rem;
  outline: thin;
  background: none;
  width: 100%;
}
.hvd-form input:focus {
  border-color: var(--color-orange);
}
.hvd-form input:focus::-moz-placeholder {
  opacity: 0.1;
}
.hvd-form input:focus::placeholder {
  opacity: 0.1;
}
.hvd-form input::-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0.3;
}
.hvd-form input::placeholder {
  transition: opacity 0.3s ease;
  opacity: 0.3;
}

.hvd-form__button {
  margin-top: 2rem;
}

.high-value-download__title {
  font-size: var(--text-xl);
  margin: 0;
}

.high-value-download__text {
  margin: 1rem 0 0;
}

.team_container {
  max-width: calc( var(--max-width) - 200px );
  margin: 6rem auto 0 auto;
}
@media screen and (max-width: 500px) {
  .team_container {
    margin: 0 auto;
  }
}

.team__title {
  font-family: var(--font-heading);
  color: var(--color-blue);
  font-size: var(--text-xxxxl);
  margin: 4rem 0 1rem 0;
  padding: 0 4rem;
}
.team__title::after {
  content: "";
  display: block;
  height: 5px;
  width: 90px;
  border-radius: 5px;
  background-image: var(--gradient-red-orange);
  margin-top: 1rem;
}
@media screen and (max-width: 800px) {
  .team__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 500px) {
  .team__title {
    padding: 0 2rem;
    font-size: var(--text-xxxl);
  }
}

.team__subtitle {
  font-family: var(--font-body);
  color: var(--color-blue);
  font-size: var(--text-lg);
  margin: 2rem 0 0;
  padding: 0 4rem;
}

.team__grid {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  padding: 0 4rem;
}
@media screen and (max-width: 800px) {
  .team__grid {
    grid-gap: 2rem;
    padding: 0 2rem;
  }
}
@media all and (max-width: 560px) {
  .team__grid {
    margin-top: 4rem;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}
@media screen and (max-width: 300px) {
  .team__grid {
    padding: 0 2rem;
  }
}

.team-member {
  position: relative;
  background-color: var(--color-white);
  box-shadow: var(--main-box-shadow);
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  padding: 3rem;
}
@media screen and (max-width: 800px) {
  .team-member {
    padding: 2rem;
  }
}
.team-member .expand-link {
  display: none;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 2.5rem;
  height: auto;
  transform: rotate(0);
  transition: all 0.25s ease-out;
}
.team-member .expand-link.active {
  transform: rotate(135deg);
}
@media all and (max-width: 560px) {
  .team-member .expand-link {
    display: block;
  }
}
@media screen and (max-width: 300px) {
  .team-member .expand-link {
    width: 1.5rem;
    right: 20px;
  }
}

.team-member__photo img {
  width: 200px;
  height: auto;
  border-radius: 50%;
  margin-bottom: -20px;
  margin-left: auto;
  margin-top: -130px;
}
@media screen and (max-width: 1100px) {
  .team-member__photo img {
    width: 150px;
    margin-top: -100px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 800px) {
  .team-member__photo img {
    width: 100px;
    margin-top: -60px;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 560px) {
  .team-member__photo img {
    width: 180px;
    margin-left: 0;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 20px;
    border-radius: 20px;
  }
}

.team-member__name {
  font-family: var(--font-heading);
  color: var(--color-blue);
  font-size: var(--text-xl);
  margin: 0;
}

.team-member__position {
  margin: 0.5rem 0 0 0;
  font-family: var(--font-body);
  color: var(--color-orange);
}

.team-member__text {
  opacity: 1;
  max-height: 500px;
  transition: all 0.5s ease-out;
}
.team-member__text.active {
  opacity: 1;
  max-height: 500px;
}
@media all and (max-width: 560px) {
  .team-member__text {
    opacity: 0;
    max-height: 0;
  }
}

.awards {
  margin-top: 8rem;
  position: relative;
  z-index: 100;
}
.awards--cta-section {
  margin-top: 0;
}

.awards__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .awards__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    padding: 1rem;
  }
}

.awards__wrapper {
  max-width: 1300px;
  margin: 6rem auto 0 auto;
}

.awards__title {
  text-align: center;
}
.awards__title::after {
  margin: 1rem auto;
}

.award {
  margin: 1rem;
  max-width: 350px;
  width: 100%;
  height: 240px;
  background-color: var(--color-white);
  box-shadow: var(--main-box-shadow);
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
}
.award img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .award {
    margin: 0;
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  .award {
    padding: 1rem;
  }
}
@media screen and (max-width: 300px) {
  .award {
    padding: 0.5rem;
  }
}

.keep-reading {
  margin-top: 4rem;
}
.keep-reading .blog__card {
  height: 100%;
}
.keep-reading .blog__cardtitle {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.keep-reading__posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  max-width: 950px;
}
@media screen and (max-width: 800px) {
  .keep-reading__posts {
    grid-template-columns: 1fr;
  }
}

.keep-reading__title {
  font-size: 36px;
  position: relative;
  margin: 0 0 2rem;
  color: var(--color-blue);
}
.keep-reading__title::after {
  content: "";
  display: block;
  height: 5px;
  width: 90px;
  background-image: var(--gradient-red-orange);
  border-radius: 5px;
  margin-top: 2rem;
}

.slider {
  position: relative;
  height: 913px;
  /*background: var(--color-blue);*/
  /*border-radius: 6rem;*/
}
@media all and (max-height: 850px) and (min-width: 1280px) {
  .slider {
    height: 582px;
  }
}
@media screen and (max-width: 1100px) {
  .slider {
    height: 842px;
  }
}
@media screen and (max-width: 800px) {
  .slider {
    height: 120vw;
  }
}
@media screen and (max-width: 500px) {
  .slider {
    height: 130vw;
  }
}

.slider__nav {
  position: absolute;
  z-index: 2;
  top: 50px;
  left: 0;
  right: 0;
  width: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .slider__nav {
    top: 30px;
  }
}
.slider__nav .slider__arrow {
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 40px;
  transition: all 0.25s ease-out;
}
@media screen and (max-width: 500px) {
  .slider__nav .slider__arrow {
    width: 40px;
    height: 30px;
  }
}
.slider__nav .slider__arrow svg {
  width: 100%;
}
.slider__nav .slider__arrow svg .cls-1 {
  fill: var(--color-white);
}
.slider__nav .slider__arrow--prev svg {
  transform: rotate(180deg);
}
.slider__nav .slider__arrow--prev:hover {
  transform: translateX(-5px);
}
.slider__nav .slider__arrow--next:hover {
  transform: translateX(5px);
}
.slider__nav .first-slide {
  opacity: 0.3;
  pointer-events: none;
}
.slider__nav .last-slide {
  opacity: 0.3;
  pointer-events: none;
}

.slider__container {
  position: relative;
}
.slider__container .slider__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.slider__container .slider__list .slider__slide {
  position: absolute;
  z-index: 1;
  top: 0;
  /* NOTES: 
  Transition length: 
  - length must match delays set in slider JS
  - main.js (find "delay")
  Transition ease:
  - must be set to "linear" as technically the rotations are two separate animations. 
  - ease-out looks ok.
  */
  transition: transform 0.5s linear;
  transform-style: preserve-3d;
  transform: perspective(1500px) rotateY(0);
  visibility: hidden;
}
.slider__container .slider__list .slider__slide img {
  border-radius: 6rem;
}
@media screen and (max-width: 800px) {
  .slider__container .slider__list .slider__slide img {
    border-radius: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .slider__container .slider__list .slider__slide img {
    border-radius: 2rem;
  }
}
.slider__container .slider__list .slider__slide.visible {
  visibility: visible;
}
.slider__container .slider__list .slider__slide.rotateCounterClockwise {
  transform: perspective(1500px) rotateY(-90deg);
}
.slider__container .slider__list .slider__slide.rotateClockwise {
  transform: perspective(1500px) rotateY(90deg);
}

/* ROTATE WITH BOUNCEBACK

.slider {
  position: relative;
  height: 913px;

  @include break('md') {
    height: 842px;
  }

  @include break('sm') {
    height: 120vw;
  }

  @include break('xs') {
    height: 130vw;
  }

}

.slider__nav {
  position: absolute;
  z-index: 2;
  top: 50px;
  left: 0;
  right: 0;
  width: auto;
  margin: 0 auto;  
  display: flex;
  justify-content: center;
  align-items: center;

  @include break('xs') {
    top: 30px;
  }

  .slider__arrow {    
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 40px;

    @include break('xs') {
      width: 40px;
      height: 30px;
    }

    svg {
      width: 100%;

      .cls-1 {
        fill: var(--color-white);      
      }

    }

    &--prev svg {
      transform: rotate(180deg);
    }    

  }

  .first-slide {
    opacity: 0.3;
    pointer-events: none;
  }

  .last-slide {
    opacity: 0.3;
    pointer-events: none;
  }  

}

.slider__container {
  position: relative;

  .slider__list {
    list-style: none;
    padding: 0;
    margin: 0;

    .slider__slide {
      position: absolute;
      z-index: 1;
      top: 0;
      opacity: 1;      
      transition: all 0.5s ease-out;
      transform-style: preserve-3d;
      transform: perspective(1500px) rotateY(90deg);

      img {      
        border-radius: 6rem;
      }

      &.active {
        opacity: 1;
        transform: perspective(1500px) rotateY(0deg);
      }

    }


  }

}

*/
/* SIMPLE FADER

.slider {
  position: relative;
  height: 913px;
  border-radius: 6rem;

  @include break('md') {
    height: 842px;
  }

  @include break('sm') {
    height: 120vw;
  }

  @include break('xs') {
    height: 130vw;
  }

}

.slider__nav {
  position: absolute;
  z-index: 2;
  top: 50px;
  left: 0;
  right: 0;
  width: auto;
  margin: 0 auto;  
  display: flex;
  justify-content: center;
  align-items: center;

  @include break('xs') {
    top: 30px;
  }

  .slider__arrow {    
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 40px;

    @include break('xs') {
      width: 40px;
      height: 30px;
    }

    svg {
      width: 100%;

      .cls-1 {
        fill: var(--color-white);      
      }

    }

    &--prev svg {
      transform: rotate(180deg);
    }    

  }

  .first-slide {
    opacity: 0.3;
    pointer-events: none;
  }

  .last-slide {
    opacity: 0.3;
    pointer-events: none;
  }  

}

.slider__container {
  position: relative;

  .slider__list {
    list-style: none;
    padding: 0;
    margin: 0;

    .slider__slide {
      position: absolute;
      z-index: 1;
      top: 0;
      opacity: 0;      
      transition: all 0.75s ease-out;

      img {      
        border-radius: 6rem;
      }

      &.active {
        opacity: 1;
      }

    }


  }

}

*/
.flexible-layout-wrapper {
  position: relative;
}

.flexible-layout-container {
  padding-inline: 3rem;
}
@media screen and (max-width: 800px) {
  .flexible-layout-container {
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .flexible-layout-container {
    padding-inline: 0;
  }
}

.flexible-section {
  position: relative;
  padding: 6rem;
  max-width: 1620px;
  margin: 0 auto 2rem auto;
  position: relative;
  /* Remove bottom margin from last block in a column */
}
@media screen and (max-width: 800px) {
  .flexible-section {
    padding: 4rem 2rem;
  }
}
.flexible-section .block-wrapper:last-of-type {
  margin-bottom: 0;
  /* Remove bottom margin from last element in last block in a column */
}
.flexible-section .block-wrapper:last-of-type *:last-child {
  margin-bottom: 0;
}
.flexible-section .post-list {
  margin-block-end: 4rem;
}
.flexible-section .image-block {
  margin-block-end: 0;
}

.flexible-section--remove-vertical-padding {
  padding-block: 0;
}

.flexible-section--remove-bottom-margin {
  margin-block-end: 0;
}

.flexible-section--reduce-width {
  max-width: 900px;
}
@media screen and (max-width: 1100px) {
  .flexible-section--reduce-width {
    max-width: 100%;
  }
}

/* LIGHT --------------------------------------------------------------------------------------------------------------------- */
.flexible-section--light {
  background-image: var(--gradient-red-orange);
  position: relative;
  z-index: 1;
  color: var(--color-white);
  overflow: clip;
}
.flexible-section--light::before {
  content: url("../../dist/images/angle-element-orange-bg.svg");
  position: absolute;
  width: 20rem;
  height: 30rem;
  top: 0;
  left: 0;
  z-index: -1;
  mix-blend-mode: soft-light;
  opacity: 0.5;
}
.flexible-section--light .media {
  background: var(--color-white);
}
.flexible-section--light h2::after {
  background-image: var(--gradient-white-blue);
}
.flexible-section--light h2,
.flexible-section--light h3,
.flexible-section--light h4,
.flexible-section--light p,
.flexible-section--light ul,
.flexible-section--light ol {
  color: inherit;
}

/* LIGHT & DARK --------------------------------------------------------------------------------------------------------------- */
.flexible-section--light,
.flexible-section--dark {
  border-radius: 4rem;
}
@media screen and (max-width: 800px) {
  .flexible-section--light,
.flexible-section--dark {
    border-radius: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .flexible-section--light,
.flexible-section--dark {
    border-radius: 0;
  }
}
.flexible-section--light .dropdown,
.flexible-section--dark .dropdown {
  background-color: var(--color-white);
}

/* DARK --------------------------------------------------------------------------------------------------------------------- */
.flexible-section--dark {
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 8rem 6rem 6rem;
}
@media screen and (max-width: 800px) {
  .flexible-section--dark {
    padding: 8rem 4rem 4rem;
  }
}
@media screen and (max-width: 500px) {
  .flexible-section--dark {
    padding: 8rem 3rem 3rem;
  }
}
.flexible-section--dark::before {
  content: url("../../dist/images/angle-element.svg");
  width: 90.25px;
  position: absolute;
  top: -22.5px;
  left: 6rem;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .flexible-section--dark::before {
    left: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .flexible-section--dark::before {
    left: 3rem;
  }
}
.flexible-section--dark .quote,
.flexible-section--dark .media {
  background-color: var(--color-white);
  color: var(--color-black);
}
.flexible-section--dark .button:not(.article .button, .dropdown__label, .dropdown__inner) {
  border-color: var(--color-white);
  color: var(--color-white);
}
.flexible-section--dark .dropdown__label,
.flexible-section--dark .dropdown__inner {
  color: var(--color-black);
}
.flexible-section--dark h2,
.flexible-section--dark h3,
.flexible-section--dark h4,
.flexible-section--dark p,
.flexible-section--dark ul,
.flexible-section--dark ol {
  color: inherit;
}

.flexible-section__container {
  display: grid;
  gap: clamp(2rem, 3vw, 6rem);
}

@media screen and (max-width: 800px) {
  .flexible-section__container--reverse .flexbile-section__column:first-child {
    order: 2;
  }
  .flexible-section__container--reverse .flexbile-section__column:last-child {
    order: 1;
  }
}

.flexible-section__container--center {
  align-items: center;
}

.flexible-section__container--flex-end {
  align-items: flex-end;
}

.flexible-section__container--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 960px) {
  .flexible-section__container--2-cols {
    grid-template-columns: 1fr;
  }
}

.flexible-section__container--3-cols {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 960px) {
  .flexible-section__container--3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .flexible-section__container--3-cols {
    grid-template-columns: 1fr;
  }
}

.flexible-section__container--2-thirds-1-third,
.flexible-section__container--1-third-2-thirds {
  grid-template-columns: repeat(3, 1fr);
}

.flexible-section__container--4-cols {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 800px) {
  .flexible-section__container--4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 300px) {
  .flexible-section__container--4-cols {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 800px) {
  .flexible-section__container--2-thirds-1-third,
.flexible-section__container--1-third-2-thirds {
    grid-template-columns: 1fr;
  }
}
.flexible-section__container--2-thirds-1-third .post-list,
.flexible-section__container--1-third-2-thirds .post-list {
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 700px), 1fr));
}
.flexible-section__container--2-thirds-1-third .quote,
.flexible-section__container--1-third-2-thirds .quote {
  margin: 0 0 3rem;
}

.flexible-section__container--2-thirds-1-third .flexbile-section__column:nth-child(1) {
  grid-column: span 2;
}

.flexible-section__container--1-third-2-thirds .flexbile-section__column:nth-child(2) {
  grid-column: span 2;
}

.modal {
  display: block;
  /** <-- Required to make the animation work */
  max-width: 1400px;
  width: 90%;
  opacity: 0;
  transform: translateY(15%);
  transition: transform 0.4s ease, opacity 0.2s ease;
  border: none;
  visibility: hidden;
}
@media screen and (max-width: 500px) {
  .modal {
    width: 94%;
  }
}

.modal::backdrop {
  background: rgba(30, 68, 103, 0.8);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.modal[open] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  width: 25px;
}

.modal--video {
  padding: 0;
}
.modal--video .modal__content {
  aspect-ratio: 16/9;
}
.modal--video iframe {
  width: 100%;
  height: 100%;
}

/**
 * Utility Classes
 */
/** Color */
.text-white {
  color: var(--color-white, #fff);
}

.text-black {
  color: var(--color-black, #000);
}

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

.text-red {
  color: var(--color-red, #df615c);
}

.text-orange {
  color: var(--color-orange, #f8985e);
}

.text-blue {
  color: var(--color-blue, #08083d);
}

/** Background Color */
.bg-white {
  background-color: var(--color-white, #fff);
}

.bg-black {
  background-color: var(--color-black, #000);
}

.bg-grey {
  background-color: var(--color-grey, #585866);
}

.bg-red {
  background-color: var(--color-red, #df615c);
}

.bg-orange {
  background-color: var(--color-orange, #f8985e);
}

.bg-blue {
  background-color: var(--color-blue, #08083d);
}

/** Text Sizes */
.size-xs {
  font-size: var(--text-xs, 0.75rem);
  /* ~12px */
}

.size-sm {
  font-size: var(--text-sm, 0.875rem);
  /* ~14px */
}

.size-text {
  font-size: var(--text, 1rem);
  /* ~16px */
}

.size-md {
  font-size: var(--text-md, 1.325rem);
  /* ~20px */
}

.size-lg {
  font-size: var(--text-lg, 1.5rem);
  /* ~22px */
}

.size-xl {
  font-size: var(--text-xl, 1.75rem);
  /* ~28px */
}

.size-xxl {
  font-size: var(--text-xxl, 2rem);
  /* ~32px */
}

.size-xxxl {
  font-size: var(--text-xxxl, 3rem);
  /* ~48px */
}

.size-xxxxl {
  font-size: var(--text-xxxxl, 4rem);
  /* ~64px */
}

/**
 * Stack Block
 * ===========
 * Consistent spacing between elements
 *
 * Example: each article gets 4rem of space between
 *  <div class="stack stack--md" />
 *    <Article />
 *    --> Adds space
 *    <Article />
 *    --> Adds space
 *    <Article />
 *  </div& >
 */
.stack > * {
  margin-top: 0;
  margin-bottom: 0;
}
.stack > * + * {
  margin-top: var(--spacing-sm, 2rem);
}

.stack--xxs > * + * {
  margin-top: 0.5rem;
}

.stack--xs > * + * {
  margin-top: var(--spacing-xs, 1rem);
}

.stack--md > * + * {
  margin-top: var(--spacing-md, 4rem);
}

.stack--lg > * + * {
  margin-top: var(--spacing-lg, 6rem);
}

.stack--xl > * + * {
  margin-top: var(--spacing-xl, 10rem);
}

@media screen and (max-width: 800px) {
  .main.stack--xl > * + * {
    margin-top: var(--spacing-lg);
  }
}

.row {
  display: flex;
}

/**
 * Hidden - classes to hide, both from screen readers and from the DOM
 */
[hidden],
.hidden {
  /* Completely hidden from the DOM */
  display: none;
}

/* Hide @md and above */
.hidden--on-desktop {
  display: none;
}
@media screen and (max-width: 800px) {
  .hidden--on-desktop {
    display: block;
  }
}

@media (--break-sm) {
  .hidden--on-desktop-flex {
    display: flex;
  }
}

/* Hide @sm and below */
.hidden--on-mobile {
  display: block;
}
@media screen and (max-width: 800px) {
  .hidden--on-mobile {
    display: none;
  }
}

.hidden--on-mobile-flex {
  display: flex;
}
@media screen and (max-width: 800px) {
  .hidden--on-mobile-flex {
    display: none;
  }
}

.hidden--visually,
.hidden--sr {
  /* Visually hidden, but accessible to screen and braille readers */
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.pretitle,
.subtitle {
  font-size: var(--text-xl);
  color: var(--color-red);
  margin: 0 0 0.5rem;
  /*&--small {
    font-size: 1.4rem;
  }*/
}
@media screen and (max-width: 500px) {
  .pretitle,
.subtitle {
    font-size: 1.2rem;
  }
}

.title {
  font-size: 5.5rem;
  color: var(--color-blue);
  margin: 0;
}
.title--small {
  font-size: 4rem;
}
@media screen and (max-width: 800px) {
  .title--small {
    font-size: 3.5rem;
  }
}

.main {
  position: relative;
}
.main::after {
  content: url("../../dist/images/bg-asset-pill-right.svg");
  position: absolute;
  bottom: -11rem;
  right: -17rem;
  width: 1100px;
  max-width: 70%;
  z-index: -1;
}

.page-wrapper {
  min-height: 600px;
}

.non-breaking {
  white-space: nowrap;
}

.large-feature-text {
  font-size: var(--text-xl);
  font-family: var(--font-heading);
  line-height: 1.4;
}
.large-feature-text::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: 0.25rem;
}

.text-align-center::after {
  margin: 1rem auto !important;
}

.text-align-right::after {
  margin: 1rem 1rem 1rem auto !important;
}

.block-wrapper {
  width: 100%;
}

.hidden {
  display: none;
}

.hidden--visually {
  clip-path: inset(100%);
  clip: rect(1px 1px 1px 1px);
  /* IE 6/7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  /* added line */
  width: 1px;
}

.aligncenter {
  margin: 0 auto;
  text-align: center;
}

html.touch *:hover {
  all: unset !important;
}
