@charset "UTF-8";
html {
  position: relative;
  z-index: 0;
}
html::before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #f2f2f2;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

body {
  width: 100%;
  position: relative;
  z-index: 2;
  margin: 0;
  overflow-x: hidden;
}

section {
  height: 100vh;
  width: 96%;
  padding: 0 2%;
  background: transparent;
}
@media only screen and (max-width: 767.98px) {
  section {
    width: 92%;
    padding: 0 4%;
  }
}

.button {
  border-radius: 20em;
  display: inline-block;
  padding: 1em 2em;
  min-width: 8em;
  border: #0a0a0a 1px solid;
  background-color: transparent;
  color: #0a0a0a;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  font-size: clamp(0.875em, 1vw, 1.5em);
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out 0s;
}
.button:hover {
  background-color: #0a0a0a;
  color: #f2f2f2;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 666.98px) {
  .button {
    min-width: 50%;
  }
}

#main-nav {
  display: block;
  height: auto;
  width: 96%;
  padding: 0 2%;
  background-color: #f2f2f2;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
}
#main-nav .site-header-menu-wrapper {
  border-bottom: 0.5px solid #0a0a0a;
}
#main-nav .site-header-menu-wrapper ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.875em, 1vw, 1.85em) 0;
  margin: auto;
}
#main-nav .site-header-menu-wrapper ul li {
  display: inline-flex;
  color: #0a0a0a;
  font-weight: 600;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  text-transform: uppercase;
  font-size: clamp(0.875em, 1vw, 1.5em);
}
@media only screen and (max-width: 979.98px) {
  #main-nav .site-header-menu-wrapper ul li.nav-tagline {
    display: none;
    visibility: hidden;
  }
}
#main-nav .site-header-menu-wrapper ul li a {
  color: #0a0a0a;
  text-decoration: none;
}
#main-nav .site-header-menu-wrapper ul li a:hover {
  text-decoration: underline;
}
#main-nav.homepage-nav {
  background-color: transparent;
}
#main-nav.homepage-nav .site-header-menu-wrapper {
  border-bottom: 0.5px solid #0a0a0a;
  transition: all 0.3s ease-in-out 0s;
}
#main-nav.homepage-nav .site-header-menu-wrapper ul li {
  color: #0a0a0a;
}
#main-nav.homepage-nav .site-header-menu-wrapper ul li a {
  color: #0a0a0a;
  text-decoration: none;
}
#main-nav.homepage-nav .site-header-menu-wrapper ul li a:hover {
  text-decoration: underline;
}
#main-nav.homepage-nav.active {
  background-color: #f2f2f2;
}

footer {
  position: relative;
  z-index: 0;
  height: 90vh;
  padding: 2.5em 0;
  background-color: #f2f2f2;
}
footer.homepage-footer::before {
  content: "";
  width: 100%;
  height: 10em;
  filter: blur(15px);
  background-color: #f2f2f2;
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 666.98px) {
  footer {
    height: 87.5vh;
    padding: 1.5em 0;
  }
}
footer .footer-contents {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100% - 1em);
}
footer .footer-contents .wave-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a0a0a;
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  margin-bottom: 2em;
}
@keyframes hand-wave {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-15deg);
  }
  60% {
    transform: rotate(7deg);
  }
  80% {
    transform: rotate(-7deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media only screen and (max-width: 666.98px) {
  footer .footer-contents .wave-icon {
    width: 30vw;
    height: 30vw;
    margin-bottom: 1em;
  }
}
footer .footer-contents .wave-icon svg {
  display: flex;
  height: auto;
  width: 60%;
  animation: hand-wave 4s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
footer .footer-contents .wave-icon svg path {
  fill: #f2f2f2 !important;
}
footer .footer-contents .footer-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}
@media only screen and (max-width: 666.98px) {
  footer .footer-contents .footer-heading {
    width: 90%;
    margin: 3em 0 70%;
  }
}
@media only screen and (max-width: 575.98px) {
  footer .footer-contents .footer-heading {
    width: 90%;
    margin: 3em 0 40%;
  }
}
footer .footer-contents .footer-heading h2 {
  display: flex;
  font-family: "Caudex", helvetica, arial, lucida, sans-serif;
  font-size: clamp(5em, 8.5vw, 10em);
  font-weight: normal;
  font-style: italic;
  line-height: 1.25em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
footer .footer-contents .footer-heading h2 a {
  color: #0a0a0a;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out 0s;
}
footer .footer-contents .footer-heading h2 a:hover {
  border-bottom: 1px solid rgb(0, 0, 0);
}
@media only screen and (max-width: 979.98px) {
  footer .footer-contents .footer-heading h2 {
    font-size: clamp(2.75em, 10vw, 10em);
  }
}
footer .footer-contents .footer-heading h2:last-of-type {
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 666.98px) {
  footer .footer-contents .footer-heading h2:last-of-type {
    margin-bottom: 1em;
  }
}
footer .footer-copyright-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 1em;
  width: 100%;
}
footer .footer-copyright-bar h4 {
  display: flex;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  color: #0a0a0a;
  font-size: clamp(0.875em, 1vw, 1.5em);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25em;
}

.section--homepage-hero {
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  width: 100%;
  margin: auto;
  padding: 0;
  color: #0a0a0a;
  background-color: rgba(242, 242, 242, 0.35);
  visibility: visible;
}
@media only screen and (max-width: 979.98px) {
  .section--homepage-hero {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 767.98px) {
  .section--homepage-hero {
    width: 96%;
    padding: 0 2%;
    background-color: rgba(242, 242, 242, 0.5);
  }
}
.section--homepage-hero.hidden {
  visibility: hidden;
}
.section--homepage-hero .row {
  display: flex;
  width: 100%;
  height: 100%;
}
.section--homepage-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 1;
}
@media only screen and (max-width: 979.98px) {
  .section--homepage-hero .hero-content {
    margin-top: 10em;
    height: 80vh;
    margin-bottom: 2.5em;
  }
}
@media only screen and (max-width: 375px) {
  .section--homepage-hero .hero-content {
    margin-top: 7.5em;
  }
}
.section--homepage-hero .hero-content .text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15%;
}
.section--homepage-hero .hero-content .text-content h1 {
  display: flex;
  font-family: "Caudex", helvetica, arial, lucida, sans-serif;
  font-size: clamp(5em, 10vw, 12em);
  font-weight: normal;
  font-style: italic;
  text-align: center;
  line-height: 1em;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (max-width: 979.98px) {
  .section--homepage-hero .hero-content .text-content h1 {
    font-size: clamp(3.25em, 16vw, 10em);
  }
}
.section--homepage-hero .hero-content .text-content .mobile-tagline {
  display: flex;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  padding: 0 20%;
  line-height: 1.5em;
  font-size: clamp(0.875em, 1vw, 1.5em);
}
@media only screen and (max-width: 979.98px) {
  .section--homepage-hero .hero-content .text-content .mobile-tagline {
    display: flex;
    padding: 0 15%;
  }
}
.section--homepage-hero .hero-content .text-content .scroll-line {
  width: 1px;
  height: 50px;
  margin-top: 5em;
  background-color: #ccc;
  display: flex;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .section--homepage-hero .hero-content .text-content .scroll-line {
    margin-top: 30vh;
  }
}
.section--homepage-hero .hero-content .text-content .scroll-line::after {
  content: "";
  width: 1px;
  height: 50%;
  top: 0;
  background-color: #333;
  display: block;
  animation: down-wipe 2s ease-in-out infinite;
}
@keyframes down-wipe {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
  }
  70% {
    height: 100%;
    transform: scaleY(0.5);
    transform-origin: bottom;
  }
  100% {
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.section--homepage-hero .hero-content a {
  display: inline-flex;
  align-self: flex-end;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #f2f2f2;
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  margin-bottom: 1.5em;
}
@keyframes bounce-hand {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.section--homepage-hero .hero-content a svg {
  display: flex;
  height: auto;
  width: 35%;
  animation: bounce-hand 2s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 979.98px) {
  .section--homepage-hero .hero-content a {
    display: flex;
    align-self: center;
    position: relative;
    right: unset;
    bottom: unset;
    width: 20vw;
    height: 20vw;
  }
}
@media only screen and (max-width: 667px) {
  .section--homepage-hero .hero-content a {
    width: 30vw;
    height: 30vw;
  }
}
@media only screen and (max-width: 375px) {
  .section--homepage-hero .hero-content a {
    width: 30vw;
    height: 30vw;
  }
}
.section--homepage-hero .hero-content-background {
  position: fixed;
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  z-index: -2;
  background-color: #f2f2f2;
  opacity: 0;
}

.section--homepage-case-studies {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  margin: 100vh auto 0;
  position: relative;
  z-index: 0;
  background-color: #f2f2f2;
}
.section--homepage-case-studies::before {
  content: "";
  width: 100%;
  height: 20em;
  border-radius: 50%;
  filter: blur(25px);
  background-color: #f2f2f2;
  position: absolute;
  top: -10em;
  left: 50%;
  transform: translateX(-50%);
}
.section--homepage-case-studies .scroll-line {
  width: 1px;
  height: 50px;
  margin-bottom: 2em;
  background-color: #ccc;
  display: flex;
  position: relative;
}
.section--homepage-case-studies .scroll-line::after {
  content: "";
  width: 1px;
  height: 50%;
  top: 0;
  background-color: #333;
  display: block;
  animation: down-wipe 2s ease-in-out infinite;
}
@keyframes down-wipe {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
  }
  70% {
    height: 100%;
    transform: scaleY(0.5);
    transform-origin: bottom;
  }
  100% {
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.section--homepage-case-studies .row {
  display: flex;
  width: 100%;
}
.section--homepage-case-studies .section-label {
  display: flex;
  position: relative;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  color: #0a0a0a;
  font-size: clamp(0.875em, 1vw, 1.5em);
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  padding: 8em 0 4em;
  line-height: 1.25em;
  width: 100%;
}
@media only screen and (max-width: 666.98px) {
  .section--homepage-case-studies .section-label {
    padding: 3em 0;
  }
}
.section--homepage-case-studies .cs-links {
  padding-bottom: 7em;
}
@media only screen and (max-width: 979.98px) {
  .section--homepage-case-studies .cs-links {
    padding-bottom: 4em;
  }
}
@media only screen and (max-width: 666.98px) {
  .section--homepage-case-studies .cs-links {
    padding-bottom: unset;
  }
}
.section--homepage-case-studies .cs-links .cs-link-wrapper {
  z-index: 1;
}
.section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #0a0a0a;
  width: 100%;
  padding: 2.5% 0 1em;
  opacity: 1;
  transition: all 0.3s ease-in-out 0s;
}
.section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-mobile-img {
  display: none;
  width: 100%;
  padding-bottom: 66%;
  position: relative;
  margin-bottom: 2em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}
@media only screen and (max-width: 979.98px) {
  .section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-mobile-img {
    display: block;
  }
}
.section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-mobile-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}
.section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link h2 {
  display: inline-flex;
  font-family: "Caudex", helvetica, arial, lucida, sans-serif;
  font-size: clamp(1.5em, 4vw, 8em);
  font-weight: normal;
  font-style: italic;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}
@media only screen and (max-width: 767.98px) {
  .section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link h2 {
    margin: 0;
  }
}
.section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-descriptor {
  display: inline-flex;
  flex-direction: row;
  margin-bottom: 2em;
}
@media only screen and (max-width: 767.98px) {
  .section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-descriptor {
    flex-direction: column;
    text-align: center;
  }
}
.section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-descriptor h4 {
  display: inline-block;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  font-size: clamp(0.875em, 1vw, 1.5em);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25em;
}
@media only screen and (max-width: 767.98px) {
  .section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-descriptor h4 {
    display: none;
  }
}
@media only screen and (max-width: 767.98px) {
  .section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-descriptor .separator {
    margin-bottom: 0.5em;
  }
}
.section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-descriptor ul {
  display: inline-block;
  list-style-type: none;
  text-transform: uppercase;
  font-size: clamp(0.875em, 1vw, 1.5em);
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  line-height: 1.25em;
}
@media only screen and (max-width: 767.98px) {
  .section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-descriptor ul {
    width: 100%;
  }
}
.section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-descriptor ul .cs-category {
  list-style: unset;
  display: inline-flex;
}
.section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-descriptor ul .cs-category:not(:last-of-type) {
  margin-right: 5px;
}
.section--homepage-case-studies .cs-links .cs-link-wrapper .cs-link .cs-descriptor ul .cs-category:not(:last-of-type)::after {
  content: ",";
  display: inline-flex;
}
.section--homepage-case-studies .cs-links #pointer-holder {
  height: 100%;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none; /* Allow pointer events to pass through */
}
@media only screen and (max-width: 979.98px) {
  .section--homepage-case-studies .cs-links #pointer-holder {
    display: none;
  }
}
.section--homepage-case-studies .cs-links #pointer {
  display: none !important;
  background: transparent;
  width: 22.5vw;
  padding-top: 15%;
  margin-top: 180px;
  margin-left: 280px;
  position: absolute;
  z-index: 3;
  opacity: 0;
  box-shadow: 40px 40px 85px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out 0s;
  pointer-events: none; /* Allow pointer events to pass through */
  transition: 0.3s ease-in-out;
}
.section--homepage-case-studies .cs-links #pointer #pointer-bg-img {
  opacity: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}
.section--homepage-case-studies .cs-links #pointer #pointer-bg-img img {
  mix-blend-mode: difference;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}
@media only screen and (max-width: 979.98px) {
  .section--homepage-case-studies .cs-links #pointer {
    display: none;
  }
}
.section--homepage-case-studies .cs-links:hover #pointer {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
.section--homepage-case-studies .cs-links:hover #pointer #pointer-bg-img {
  opacity: 1;
}
.section--homepage-case-studies .cs-links:hover #pointer #pointer-bg-img img {
  opacity: 1;
}

.section--homepage-fixed-background {
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  padding: 0;
  background-color: #f2f2f2;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  scale: 1;
}
@media only screen and (max-width: 767.98px) {
  .section--homepage-fixed-background {
    top: 69%;
    scale: 1.125;
  }
}
.section--homepage-fixed-background .fixed-background {
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  position: relative;
}
.section--homepage-fixed-background .fixed-background .media-wrapper {
  height: 100%;
  width: 100%;
  padding: 0;
}
.section--homepage-fixed-background .fixed-background .media-wrapper .hero-full-width-background-element {
  height: 100%;
  width: 100%;
  scale: 1.125;
  background-color: transparent;
  position: relative;
  z-index: 0;
  display: flex;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}
.section--homepage-fixed-background .fixed-background .media-wrapper .hero-full-width-background-element::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(242, 242, 242, 0.3);
  z-index: 1;
}
.section--homepage-fixed-background .fixed-background .media-wrapper .hero-full-width-background-element img,
.section--homepage-fixed-background .fixed-background .media-wrapper .hero-full-width-background-element video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}

.section--case-study-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: auto;
  width: 100%;
  padding: 0;
  color: #0a0a0a;
}
.section--case-study-hero .row {
  display: flex;
  flex-direction: column;
  padding: 15vh 7.5%;
}
@media only screen and (max-width: 979.98px) {
  .section--case-study-hero .row {
    padding: 10vh 0;
  }
}
.section--case-study-hero .hero-content {
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
@media only screen and (max-width: 666.98px) {
  .section--case-study-hero .hero-content {
    width: 95%;
  }
}
.section--case-study-hero .hero-content .hero-heading {
  width: 100%;
}
@media only screen and (max-width: 979.98px) {
  .section--case-study-hero .hero-content .hero-heading {
    width: 100%;
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 767.98px) {
  .section--case-study-hero .hero-content .hero-heading {
    margin-bottom: 0.5em;
  }
}
.section--case-study-hero .hero-content .hero-heading h1 {
  font-family: "Caudex", helvetica, arial, lucida, sans-serif;
  font-size: clamp(2.5em, 6.25vw, 10em);
  font-weight: normal;
  font-style: italic;
  line-height: 1.125em;
  text-transform: uppercase;
  width: 100%;
  margin: 0 0 0.5em;
}
@media only screen and (max-width: 979.98px) {
  .section--case-study-hero .hero-content .hero-heading h1 {
    width: auto;
    margin: 0;
  }
}
.section--case-study-hero .hero-content .hero-body {
  width: 90%;
}
.section--case-study-hero .hero-content .hero-body .cs-descriptor {
  display: inline-flex;
  flex-direction: row;
  width: auto;
  margin-bottom: 2em;
}
@media only screen and (max-width: 767.98px) {
  .section--case-study-hero .hero-content .hero-body .cs-descriptor {
    flex-direction: column;
    text-align: center;
  }
}
.section--case-study-hero .hero-content .hero-body .cs-descriptor h4 {
  display: inline-block;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  font-size: clamp(0.875em, 1vw, 1.5em);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25em;
}
@media only screen and (max-width: 767.98px) {
  .section--case-study-hero .hero-content .hero-body .cs-descriptor h4 {
    display: none;
  }
}
@media only screen and (max-width: 767.98px) {
  .section--case-study-hero .hero-content .hero-body .cs-descriptor .separator {
    margin-bottom: 0.5em;
  }
}
.section--case-study-hero .hero-content .hero-body .cs-descriptor ul {
  display: inline-block;
  list-style-type: none;
  text-transform: uppercase;
  font-size: clamp(0.875em, 1vw, 1.5em);
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  line-height: 1.25em;
}
@media only screen and (max-width: 767.98px) {
  .section--case-study-hero .hero-content .hero-body .cs-descriptor ul {
    width: 100%;
    margin: 1em 0 0;
  }
}
.section--case-study-hero .hero-content .hero-body .cs-descriptor ul .cs-category {
  list-style: unset;
  display: inline-flex;
}
.section--case-study-hero .hero-content .hero-body .cs-descriptor ul .cs-category:not(:last-of-type) {
  margin-right: 5px;
}
.section--case-study-hero .hero-content .hero-body .cs-descriptor ul .cs-category:not(:last-of-type)::after {
  content: ",";
  display: inline-flex;
}
.section--case-study-hero .hero-content .hero-body p {
  display: flex;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  width: 70%;
  font-size: clamp(0.875em, 1vw, 1.5em);
  line-height: 2em;
  padding: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 1439.98px) {
  .section--case-study-hero .hero-content .hero-body p {
    width: 85%;
  }
}
@media only screen and (max-width: 979.98px) {
  .section--case-study-hero .hero-content .hero-body p {
    width: 100%;
  }
}
.section--case-study-hero .hero-featured-media {
  width: 100%;
  position: relative;
  background-color: #f2f2f2;
  margin-bottom: 15vh;
}
@media only screen and (max-width: 768px) {
  .section--case-study-hero .hero-featured-media {
    margin-bottom: 3em;
  }
}
.section--case-study-hero .hero-featured-media .media-wrapper {
  width: 100%;
  padding: 0;
}
.section--case-study-hero .hero-featured-media .media-wrapper .hero-full-width-background-element {
  width: 100%;
  padding-bottom: 50%;
  background-color: #fafafa;
  position: relative;
  z-index: 0;
  display: flex;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}
.section--case-study-hero .hero-featured-media .media-wrapper .hero-full-width-background-element img,
.section--case-study-hero .hero-featured-media .media-wrapper .hero-full-width-background-element video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}

.cf-content-builder-wrapper section:last-of-type .row {
  margin-bottom: 0;
  padding-bottom: 0;
}

.cb-row {
  display: flex;
  width: 90%;
  padding: 0 0 15vh;
  justify-content: center;
}
@media only screen and (max-width: 666.98px) {
  .cb-row {
    padding: 0 0 3em;
    width: 95%;
  }
}

.section--cb-full-width-background {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: auto;
  color: #0a0a0a;
}
.section--cb-full-width-background .cb-full-width-background-element {
  width: 100%;
  padding-bottom: 50%;
  background-color: transparent;
  position: relative;
  z-index: 0;
  display: flex;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}
.section--cb-full-width-background .cb-full-width-background-element img,
.section--cb-full-width-background .cb-full-width-background-element video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}

.section--cb-big-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: auto;
  color: #0a0a0a;
}
.section--cb-big-text .cb-row {
  width: 90%;
}
@media only screen and (max-width: 1439.98px) {
  .section--cb-big-text .cb-row {
    width: 90%;
  }
}
@media only screen and (max-width: 979.98px) {
  .section--cb-big-text .cb-row {
    width: 95%;
  }
}
.section--cb-big-text .section-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.section--cb-big-text .section-text label {
  display: inline-flex;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  font-size: clamp(0.875em, 1vw, 1.5em);
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 5em;
  line-height: 1.25em;
}
@media only screen and (max-width: 1439.98px) {
  .section--cb-big-text .section-text label {
    margin-bottom: 4.5em;
  }
}
@media only screen and (max-width: 979.98px) {
  .section--cb-big-text .section-text label {
    margin-bottom: 3.5em;
  }
}
@media only screen and (max-width: 666.98px) {
  .section--cb-big-text .section-text label {
    margin-bottom: 2em;
  }
}
.section--cb-big-text .section-text label.center-aligned {
  align-self: center;
  text-align: center;
}
.section--cb-big-text .section-text label.left-aligned {
  align-self: flex-start;
  text-align: left;
}
.section--cb-big-text .section-text label.right-aligned {
  align-self: flex-end;
  text-align: right;
}
.section--cb-big-text .section-text h2 {
  display: inline-flex;
  font-family: "Caudex", helvetica, arial, lucida, sans-serif;
  font-size: clamp(1.75em, 6.25vw, 10em);
  font-weight: normal;
  font-style: italic;
  line-height: 1.25em;
  text-transform: uppercase;
  margin: 0;
}
.section--cb-big-text .section-text h2.center-aligned {
  align-self: center;
  text-align: center;
}
.section--cb-big-text .section-text h2.left-aligned {
  align-self: flex-start;
  text-align: left;
}
.section--cb-big-text .section-text h2.right-aligned {
  align-self: flex-end;
  text-align: right;
}

.section--cb-skills-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  height: auto;
  color: #0a0a0a;
}
.section--cb-skills-list .cb-row {
  width: 80%;
  justify-content: space-between;
  flex-direction: row;
}
@media only screen and (max-width: 1439.98px) {
  .section--cb-skills-list .cb-row {
    width: 90%;
  }
}
@media only screen and (max-width: 979.98px) {
  .section--cb-skills-list .cb-row {
    width: 95%;
  }
}
.section--cb-skills-list .section-list {
  width: 100%;
}
.section--cb-skills-list .section-list label {
  display: block;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  font-size: clamp(0.875em, 1vw, 1.5em);
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 1em;
  line-height: 1.25em;
}
.section--cb-skills-list .section-list label.center-aligned {
  align-self: center;
  text-align: center;
}
.section--cb-skills-list .section-list label.left-aligned {
  align-self: flex-start;
  text-align: left;
}
.section--cb-skills-list .section-list label.right-aligned {
  align-self: flex-end;
  text-align: right;
}
.section--cb-skills-list .section-list ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 1.5em;
}
@media only screen and (max-width: 1439.98px) {
  .section--cb-skills-list .section-list ul {
    padding: 0 1em;
  }
}
@media only screen and (max-width: 979.98px) {
  .section--cb-skills-list .section-list ul {
    padding: 0 0.5em;
  }
}
.section--cb-skills-list .section-list ul li {
  display: flex;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  width: auto;
  font-size: clamp(0.875em, 1vw, 1.5em);
  line-height: 2em;
  flex-basis: 30%;
  margin-bottom: 10px;
  padding-right: 3.25%;
}
.section--cb-skills-list .section-list ul li::before {
  content: "•"; /* Unicode character for bullet point */
  font-size: 1.5em;
  margin-right: 25px;
}
@media only screen and (max-width: 979.98px) {
  .section--cb-skills-list .section-list ul li {
    flex-basis: 47%;
    padding-right: 3%;
  }
}
@media only screen and (max-width: 767.98px) {
  .section--cb-skills-list .section-list ul li {
    flex-basis: 97%;
  }
}

.section--cb-text-columns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  height: auto;
  color: #0a0a0a;
}
.section--cb-text-columns .cb-row {
  width: 80%;
  justify-content: space-between;
  flex-direction: row;
}
@media only screen and (max-width: 1439.98px) {
  .section--cb-text-columns .cb-row {
    width: 90%;
  }
}
@media only screen and (max-width: 979.98px) {
  .section--cb-text-columns .cb-row {
    width: 95%;
  }
}
@media only screen and (max-width: 767.98px) {
  .section--cb-text-columns .cb-row {
    flex-direction: column;
  }
}
.section--cb-text-columns .section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  .section--cb-text-columns .section-content {
    flex-direction: column;
  }
}
.section--cb-text-columns .section-content.right-aligned {
  flex-direction: row-reverse;
}
.section--cb-text-columns .section-text {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 70%;
  margin-bottom: 1.5em;
}
.section--cb-text-columns .section-text:last-of-type, .section--cb-text-columns .section-text:only-of-type {
  margin-bottom: unset;
}
@media only screen and (max-width: 767.98px) {
  .section--cb-text-columns .section-text {
    width: 100%;
  }
}
.section--cb-text-columns .section-text label {
  display: inline-flex;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  font-size: clamp(0.875em, 1vw, 1.5em);
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 1em;
  line-height: 1.25em;
  width: 100%;
}
.section--cb-text-columns .section-text .section-paragraph {
  display: flex;
  flex-direction: column;
  width: auto;
}
.section--cb-text-columns .section-text .section-paragraph p {
  display: flex;
  font-family: "Roboto", helvetica, arial, lucida, sans-serif;
  font-size: clamp(0.875em, 1vw, 1.5em);
  line-height: 2em;
  padding: 0;
}
@media only screen and (max-width: 767.98px) {
  .section--cb-text-columns .section-text {
    width: 100%;
    margin-bottom: 3em;
  }
  .section--cb-text-columns .section-text:last-of-type, .section--cb-text-columns .section-text:only-of-type {
    margin-bottom: unset;
  }
}
.section--cb-text-columns .section-text.left-aligned {
  align-self: flex-start;
}
.section--cb-text-columns .section-text.right-aligned {
  align-self: flex-end;
}

.section--cb-mobile-designs-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: auto;
  color: #0a0a0a;
}
.section--cb-mobile-designs-gallery .cb-full-width-background-element {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #fafafa;
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}
.section--cb-mobile-designs-gallery .cb-full-width-background-element img,
.section--cb-mobile-designs-gallery .cb-full-width-background-element video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}
.section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track {
  display: flex;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track ul,
.section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track ol,
.section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track li {
  list-style: none;
}
.section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track .image-ticker {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track .image-ticker ul {
  display: flex;
  padding: 12.5% 0;
  opacity: 0;
  animation: scroll-infinite 100s linear infinite;
  transition: all 0.3s ease-in-out 0s;
}
.section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track .image-ticker ul li {
  padding: 10px;
  width: 15.25%;
  height: 422px;
  border-radius: 20px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  flex-shrink: 0;
  margin: 0 100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
}
.section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track .image-ticker ul li img,
.section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track .image-ticker ul li video {
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}
@media only screen and (max-width: 1439.98px) {
  .section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track .image-ticker ul li {
    height: 400px;
  }
}
@media only screen and (max-width: 1023.98px) {
  .section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track .image-ticker ul li {
    height: 360px;
  }
}
@media only screen and (max-width: 979.98px) {
  .section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track .image-ticker ul li {
    width: 7%;
    height: 260px;
    border-radius: 10px;
    margin: 0 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track .image-ticker ul li {
    height: 170px;
    margin: 0 40px;
  }
}
@media only screen and (max-width: 666.98px) {
  .section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track .image-ticker ul li {
    height: 140px;
    border-radius: 7px;
    margin: 0 30px;
  }
  .section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track .image-ticker ul li img,
  .section--cb-mobile-designs-gallery .cb-full-width-background-element .section-image-track .image-ticker ul li video {
    border-radius: 7px;
  }
}
@keyframes scroll-infinite {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  2% {
    opacity: 1;
  }
  98% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

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