/**
* 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 {
  font-size: 62.5%;
  --white: #fff;
  --rust: #FF523A;
  --charcoal: #1e1e28;
  --ivory: #F2F0E7;
  --white: #FFFFFF;
  --cream: #FFDAB1;
  --salmon: #FFB482;
  --caramel: #FAE5B6;
  --sunshine: #F5C86E;
  --stone: #DFDBD0;
  --slate: #CBC4BC;
  --light-green: #98C778;
  --green: #5F9B5F;
  --deep-green: #326441;
  --light-blue: #6EB9F0;
  --blue: #3791CD;
  --deep-blue: #05589D;
  --light-purple: #AFAAE6;
  --purple: #8080CE;
  --deep-purple: #5C4E91;
  --text-size-xxs: 1.4rem;
  --text-size-xs: 1.7rem;
  --text-size-sm: 2rem;
  --text-size-sm-plus: 2.5rem;
  --text-size-md: 3.5rem;
  --text-size-md-plus: 4rem;
  --text-size-lg: 4.5rem;
  --text-size-lg-plus: 5rem;
  --text-size-xl: 7rem;
  --text-size-xxl: 8.5rem;
  --font-thin: "Roboto-Light", sans-serif;
  --font-thin-italic: "Roboto-Light-Italic", sans-serif;
  --font-light: "Roboto", sans-serif;
  --font-heavy: "Roboto-Bold", sans-serif;
  --font-medium: "Roboto-Medium", sans-serif;
  --font-medium-italic: "Roboto-Medium-Italic", sans-serif;
  --font-italic: "Roboto-Italic", sans-serif;
  --font-heading: "Ivar Display", "Lato", serif;
  --font-heading-italic: "Ivar-Italic", serif;
  --color-body-text: var(--charcoal);
  --box-shadow: 0 0 40px rgb(0 0 0 / 10%);
  --max-width: 1765px;
}

@media all and (max-width: 1100px) {
  :root {
    font-size: 50%;
  }
}
@media all and (max-width: 960px) {
  :root {
    --text-size-xxl: 6rem;
    --text-size-xl: 5rem;
    --text-size-lg-plus: 4rem;
    --text-size-lg: 3.5rem;
    --text-size-md: 2.5rem;
  }
}
@media all and (max-width: 500px) {
  :root {
    --text-size-xl: 3.5rem;
  }
}
/* 
==========
Custom Font Families 
==========

Follow these steps to generate @font-face fonts (if they were not provided for you)
1. Go to assets/fonts and delete everything in there.
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: "Ivar Display";
  src: local("Ivar Display"), local("IvarDisplay-Regular"), url("../../fonts/IvarDisplay-Regular.woff2") format("woff2"), url("../../fonts/IvarDisplay-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ivar-Italic";
  src: local("Ivar Display Italic"), local("IvarDisplay-Italic"), url("../../fonts/IvarDisplay-Italic.woff2") format("woff2"), url("../../fonts/IvarDisplay-Italic.woff") format("woff");
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Bold";
  src: local("Mont Bold"), local("Roboto-Bold"), url("../../fonts/Roboto-Bold.woff2") format("woff2"), url("../../fonts/Roboto-Bold.woff") format("woff");
  font-style: bold;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Italic";
  src: local("Roboto Italic"), local("Roboto-Italic"), url("../../fonts/Roboto-Italic.woff2") format("woff2"), url("../../fonts/Roboto-Italic.woff") format("woff");
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto-Regular"), local("Roboto-Regular"), url("../../fonts/Roboto-Regular.woff2") format("woff2"), url("../../fonts/Roboto-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Light";
  src: local("Roboto-Light"), local("Roboto-Light"), url("../../fonts/Roboto-Light.woff2") format("woff2"), url("../../fonts/Roboto-Light.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Light-Italic";
  src: local("Roboto Italic Italic"), local("Roboto-Light-Italic"), url("../../fonts/Roboto-LightItalic.woff2") format("woff2"), url("../../fonts/Roboto-LightItalic.woff") format("woff");
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Medium";
  src: local("Roboto Medium"), local("Roboto-Medium"), url("../../fonts/Roboto-Medium.woff2") format("woff2"), url("../../fonts/Roboto-Medium.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Medium-Italic";
  src: local("Roboto Medium Italic"), local("Roboto-Medium-Italic"), url("../../fonts/Roboto-MediumItalic.woff2") format("woff2"), url("../../fonts/Roboto-MediumItalic.woff") format("woff");
  font-style: italic;
  font-display: swap;
}
.typography {
  font-family: var(--font-light);
  font-size: var(--text-size-sm);
  font-weight: normal;
  color: var(--color-body-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  overflow-wrap: break-word;
  font-weight: 100;
  letter-spacing: 0;
  line-height: 1.1;
}
h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
  font-family: var(--font-heading-italic);
}
h1 strong,
h1 b,
h2 strong,
h2 b,
h3 strong,
h3 b,
h4 strong,
h4 b,
h5 strong,
h5 b,
h6 strong,
h6 b {
  font-weight: 100;
  font-family: var(--font-heading);
}

h1 {
  font-size: var(--text-size-xxl);
}

h2 {
  font-size: var(--text-size-xl);
  line-height: 1.2;
}

h3 {
  font-size: var(--text-size-lg);
}

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

h5 {
  font-size: var(--text-size-sm);
}

h6 {
  font-size: var(--text-size-sm);
}

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

::-moz-selection {
  color: var(--white);
  background-color: var(--charcoal);
}

::selection {
  color: var(--white);
  background-color: var(--charcoal);
}

*:not(dialog) {
  margin: 0;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 12rem;
  min-width: 300px;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

p {
  line-height: 1.5;
  margin: 0 0 3.45rem;
}
p em {
  font-family: var(--font-italic);
}

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

sup {
  font-size: var(--text-size-xxs);
}

a {
  text-decoration: none;
  color: var(--rust);
}
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;
}

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

img,
picture,
video,
canvas,
iframe,
svg {
  display: block;
  max-width: 100%;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#root, #__next {
  isolation: isolate;
}

@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (display: flow-root) {
    .pf-section1__title {
      min-width: 35vw;
      padding-right: 6rem;
    }

    .nav-item__link--has-submenu {
      display: -webkit-box !important;
    }

    .nav-item__link {
      margin: 0 2rem;
    }

    .nav-item__link .chevron {
      position: relative;
      left: 1rem;
    }
  }
}
.home {
  --left-margin: 15rem;
}
.home section h2 strong {
  font-weight: 100;
  color: var(--rust);
}
@media screen and (max-width: 1700px) {
  .home {
    --left-margin: 10rem;
  }
}

.home-section-1 {
  padding-bottom: 12rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .home-section-1 {
    padding-bottom: 0;
  }
}

.home-section-1__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .home-section-1__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background: var(--charcoal);
  }
}

.home-section-1__content {
  max-width: 730px;
  padding-left: 6rem;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .home-section-1__content {
    padding-left: 0;
    padding-bottom: 6rem;
    background: var(--charcoal);
  }
}

.home-section-1__title {
  margin: 0 0 18.5rem;
  position: relative;
  color: var(--white);
}
@media screen and (max-width: 800px) {
  .home-section-1__title {
    max-width: 500px;
    text-align: center;
    margin-bottom: 6rem;
  }
  .home-section-1__title::after {
    content: "";
    display: block;
    width: 200px;
    height: 2px;
    margin: 3rem auto 0;
    background-color: var(--rust);
  }
}
.home-section-1__title::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 1072.7 442.7" viewBox="0 0 1072.7 442.7"><path d="M475.3 0H-199c-6 0-11.3 3.6-13.5 9.2L-375 422.9c-2.9 7.5.7 15.9 8.2 18.8 1.7.7 3.5 1 5.3 1h836.8c122.2 0 221.4-99.1 221.4-221.4C696.6 99.1 597.5 0 475.3 0z" style="fill:%231e1e28" transform="translate(376)"/></svg>');
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-left: -5rem;
  width: 1072px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .home-section-1__title::before {
    width: 800px;
  }
}
@media screen and (max-width: 800px) {
  .home-section-1__title::before {
    display: none;
  }
}

.home-section-1__text {
  max-width: 480px;
}
@media screen and (max-width: 800px) {
  .home-section-1__text {
    color: var(--white);
    text-align: center;
  }
  .home-section-1__text .text-left-border {
    border: none;
  }
}

@media screen and (max-width: 800px) {
  .home-section-1__text.text-left-border {
    border: none;
    padding-left: 0;
  }
}

.home-section-2 {
  padding-bottom: 30rem;
  overflow-x: hidden;
}
@media screen and (max-width: 1500px) {
  .home-section-2 {
    padding-bottom: 15rem;
  }
}
@media screen and (max-width: 800px) {
  .home-section-2 {
    padding-top: 10rem;
    padding-bottom: 0;
    margin-bottom: 10rem;
    background: var(--ivory);
  }
}
@media screen and (max-width: 680px) {
  .home-section-2 {
    margin-bottom: 6rem;
  }
}

.home-section-2__title {
  margin-left: calc(var(--left-margin) + 14rem);
  margin-bottom: 7rem;
}
@media screen and (max-width: 800px) {
  .home-section-2__title {
    margin-left: 0;
    margin-bottom: 0;
    text-align: center;
  }
}

.home-section-3 {
  padding-bottom: 18rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .home-section-3 {
    padding-bottom: 10rem;
  }
}

.home-section-3__media {
  position: relative;
}
.home-section-3__media .dashboard {
  border-radius: 2.5rem;
  position: relative;
  border-radius: 2.5rem;
  border: 10px solid var(--white);
  background-color: var(--white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1500px) {
  .home-section-3__media .dashboard {
    max-width: 400px;
    z-index: 5;
  }
}
@media screen and (max-width: 1100px) {
  .home-section-3__media .dashboard {
    -webkit-transform: translate(4rem, -9rem) scale(0.9);
            transform: translate(4rem, -9rem) scale(0.9);
  }
}
@media screen and (max-width: 800px) {
  .home-section-3__media .dashboard {
    -webkit-transform: initial;
            transform: initial;
    width: 100%;
    max-width: 345px;
    justify-self: flex-end;
    margin-top: 20rem;
  }
}
@media screen and (max-width: 500px) {
  .home-section-3__media .dashboard {
    max-width: 250px;
  }
}
@media screen and (max-width: 360px) {
  .home-section-3__media .dashboard {
    max-width: 200px;
  }
}
@media screen and (max-width: 1100px) {
  .home-section-3__media {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 800px) {
  .home-section-3__media {
    width: 100%;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.dashboard-img {
  border-radius: 2.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 345px;
  height: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 800px) {
  .dashboard-img {
    min-width: auto;
    width: 100%;
  }
}

.home-section-3__parallelogram {
  -webkit-mask-image: url("../../images/svgs/shape-parallelogram.svg");
          mask-image: url("../../images/svgs/shape-parallelogram.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: -9rem;
  right: -16rem;
  width: 80vw;
  max-width: 1276px;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 1700px) {
  .home-section-3__parallelogram {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
}
@media screen and (max-width: 1500px) {
  .home-section-3__parallelogram {
    display: none;
  }
}

.home-section-3__parallelogram--mobile {
  display: none;
  border-radius: 2.5rem;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  max-width: 465px;
  top: auto;
  right: 20%;
  bottom: -1rem;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1500px) {
  .home-section-3__parallelogram--mobile {
    -webkit-transform: translate(-14rem, 18rem) scaleX(-1);
            transform: translate(-14rem, 18rem) scaleX(-1);
    display: block;
  }
}
@media screen and (max-width: 1280px) {
  .home-section-3__parallelogram--mobile {
    -webkit-transform: translate(-14rem, 22rem) scaleX(-1);
            transform: translate(-14rem, 22rem) scaleX(-1);
    right: 15%;
  }
}
@media screen and (max-width: 1100px) {
  .home-section-3__parallelogram--mobile {
    -webkit-transform: translate(0, 0) scaleX(1);
            transform: translate(0, 0) scaleX(1);
    position: static;
    max-width: 360px;
  }
}
@media screen and (max-width: 800px) {
  .home-section-3__parallelogram--mobile {
    -webkit-transform: translate(0, 0) scaleX(1);
            transform: translate(0, 0) scaleX(1);
    max-width: 400px;
    width: 100%;
    height: 335px;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 500px) {
  .home-section-3__parallelogram--mobile {
    max-width: 300px;
  }
}
@media screen and (max-width: 360px) {
  .home-section-3__parallelogram--mobile {
    max-width: 250px;
  }
}

.home-section-3__container {
  margin-left: var(--left-margin);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1065px;
}
@media screen and (max-width: 1500px) {
  .home-section-3__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 8rem;
  }
}
@media screen and (max-width: 1280px) {
  .home-section-3__container {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 800px) {
  .home-section-3__container {
    padding: 0 8rem;
  }
}
@media screen and (max-width: 680px) {
  .home-section-3__container {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 375px) {
  .home-section-3__container {
    padding: 0;
  }
}

.home-section-3__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 16rem;
  position: relative;
  z-index: 5;
  width: 100%;
}
@media screen and (max-width: 1500px) {
  .home-section-3__top {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1280px) {
  .home-section-3__top {
    margin: 0 0 12rem;
  }
}
@media screen and (max-width: 1100px) {
  .home-section-3__top {
    margin: 0 0 8rem;
  }
}
@media screen and (max-width: 800px) {
  .home-section-3__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 18rem;
  }
}
@media screen and (max-width: 800px) {
  .home-section-3__top {
    margin: 0 0 13rem;
  }
}
@media screen and (max-width: 375px) {
  .home-section-3__top {
    padding: 0 4rem;
  }
}

.home-section-3__content {
  padding-right: 12rem;
  max-width: 650px;
}
@media screen and (max-width: 1500px) {
  .home-section-3__content {
    max-width: 800px;
    padding-right: 8rem;
  }
}
@media screen and (max-width: 960px) {
  .home-section-3__content {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .home-section-3__content {
    padding-right: 0;
    margin: 0 0 6rem;
  }
}

.home-section-3__text {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1500px) {
  .home-section-3__text {
    max-width: 380px;
  }
}
@media screen and (max-width: 800px) {
  .home-section-3__text {
    max-width: 100%;
  }
}

.home-section-3__title {
  margin: 0 0 7.5rem;
}
@media screen and (max-width: 800px) {
  .home-section-3__title {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 1500px) {
  .home-section-3__title br {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .section-4 .container {
    padding: 0;
  }
}

.blog .default-landing__container {
  margin-bottom: 4rem;
}
.blog .articles {
  margin-top: 12rem;
}

.error404 h1 {
  margin-top: 6rem;
}

.text-left-border {
  padding-left: 5rem;
  border-left: 2px solid var(--rust);
}
@media screen and (max-width: 680px) {
  .text-left-border {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .text-left-border {
    padding-left: 3.5rem;
  }
}

.underline {
  position: relative;
}
.underline::after {
  content: "";
  display: block;
  width: 57px;
  height: 2px;
  margin-top: 1.6rem;
  background-color: var(--rust);
}

.underline--center::after {
  margin: 1.6rem auto 0;
}

.underline--longer::after {
  width: 220px;
  max-width: 100%;
}

.section-title {
  font-size: var(--text-size-lg-plus);
  margin: 0 0 5.5rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 800px) {
  .section-title br {
    display: none;
  }
}

.small-title {
  font-family: var(--font-body);
  font-size: var(--text-size-sm);
}

.clean-title strong {
  font-weight: 100;
  color: var(--rust);
}

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

.border-radius-1 {
  border-radius: 1rem;
}
.border-radius-1 img {
  border-radius: 1rem;
}

.page-title {
  font-size: clamp(3rem, 9vw, 6rem);
  letter-spacing: 0px;
  max-width: 920px;
  line-height: 1.05;
  margin: 0 0 6rem;
  padding-bottom: 20rem;
}
.page-title::after {
  width: 192px;
  margin-top: 2.1rem;
}
.page-title strong {
  color: var(--rust);
}

.block-wrapper {
  margin: 0 0 6rem;
}
@media screen and (max-width: 680px) {
  .block-wrapper {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .block-wrapper {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 1280px) {
  .block-wrapper .cards {
    gap: 4rem;
  }
}
@media screen and (max-width: 680px) {
  .block-wrapper .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.reading-time {
  display: block;
  margin: 0 0 4rem;
  font-family: var(--font-italic);
}

.page-template-default .multiple-testimonials {
  margin-top: 10rem;
  margin-bottom: 6rem;
}

.flexible-content .page-title {
  padding-bottom: 0;
}

.row-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.row-flex div {
  -webkit-box-flex: 30%;
  -webkit-flex: 30%;
      -ms-flex: 30%;
          flex: 30%;
}
.row-flex .small-title {
  display: block;
  color: var(--charcoal);
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: var(--text-size-md);
}
.row-flex br {
  display: none;
}
@media screen and (max-width: 500px) {
  .row-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.event-date-time {
  display: block;
  margin: 0 0 3rem;
}

.platform-landing {
  padding-top: 18rem;
  position: relative;
  background-color: var(--ivory);
  margin: 0 0 21rem;
}
@media screen and (max-width: 800px) {
  .platform-landing {
    margin-bottom: 14rem;
  }
}
@media screen and (max-width: 680px) {
  .platform-landing {
    padding-top: 14rem;
  }
}
@media screen and (max-width: 680px) {
  .platform-landing {
    margin-bottom: 12rem;
  }
}

.platform-landing__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}
@media screen and (max-width: 960px) {
  .platform-landing__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.platform-landing__content {
  max-width: 650px;
  padding-right: 12rem;
  padding-top: 3rem;
  padding-bottom: 10%;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .platform-landing__content {
    padding-right: 6rem;
    padding-bottom: 15%;
  }
}
@media screen and (max-width: 960px) {
  .platform-landing__content {
    margin: 0 auto;
    padding-bottom: 4rem;
    padding-right: 0;
  }
}
.platform-landing__content::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 120.2 104.9" viewBox="0 0 120.2 104.9"><path d="M50.8 0c-1.7 0-3.2 1-3.8 2.6L14.1 86.5C10.6 95 7 98.9 1.6 99.9l-1.6.3v4.6h31.9v-4.6l-1.9-.3c-7.5-1.2-11.1-3.6-7.8-12.1l5.1-13.5h37L69.4 88c2.8 7.6.1 10.8-8.4 12l-2.1.3v4.6h57.2c2.3 0 4.1-1.8 4.1-4.1 0-.5-.1-1-.3-1.5L82.3 2.6C81.7 1 80.2 0 78.5 0H50.8zm-21 67.8 15.7-41.6 16.2 41.6H29.8z" style="fill:%231e1e28"/></svg>');
  display: block;
  width: 120px;
  position: absolute;
  bottom: -4.2rem;
  left: 0;
}
@media screen and (max-width: 960px) {
  .platform-landing__content::after {
    display: none;
  }
}

.platform-landing__title {
  margin: 0 0 3rem;
}

.landing__large-text {
  font-size: 5rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 1280px) {
  .landing__large-text {
    font-size: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .landing__large-text br {
    display: none;
  }
}

.platform-landing__media {
  position: relative;
  width: 100%;
  padding-bottom: 28%;
  margin-bottom: -4rem;
}
@media screen and (max-width: 1400px) {
  .platform-landing__media {
    min-width: 600px;
  }
}
@media screen and (max-width: 960px) {
  .platform-landing__media {
    padding-bottom: 50%;
    min-width: auto;
  }
}
@media screen and (max-width: 500px) {
  .platform-landing__media {
    padding-bottom: 60%;
  }
}

.platform-landing-media__img {
  width: 100%;
  height: 100%;
  border-radius: 15rem 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 680px) {
  .platform-landing-media__img {
    border-radius: 8rem 1rem;
  }
}
@media screen and (max-width: 500px) {
  .platform-landing-media__img {
    border-radius: 8rem 1rem;
  }
}
@media screen and (max-width: 360px) {
  .platform-landing-media__img {
    border-radius: 4rem 1rem;
  }
}

.laptop-section {
  margin: 0 0 36rem;
}
@media screen and (max-width: 1600px) {
  .laptop-section {
    margin-bottom: 28rem;
  }
}
@media screen and (max-width: 800px) {
  .laptop-section {
    margin-bottom: 23rem;
  }
}
@media screen and (max-width: 500px) {
  .laptop-section {
    margin-bottom: 18rem;
  }
}

.laptop-section__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
}
@media screen and (max-width: 800px) {
  .laptop-section__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 7rem;
  }
}

.laptop-section__image {
  max-width: 811px;
  position: -webkit-sticky;
  position: sticky;
  top: 15rem;
}
@media screen and (max-width: 800px) {
  .laptop-section__image {
    position: relative;
    top: auto;
  }
}

.laptop-image-screen {
  position: absolute;
  top: -1rem;
  right: 2rem;
  bottom: 1rem;
  left: 2rem;
  z-index: -1;
  overflow: hidden;
}
.laptop-image-screen img {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.laptop-section__content {
  max-width: 640px;
  margin-right: 2rem;
}
@media screen and (max-width: 800px) {
  .laptop-section__content {
    margin-right: 0;
  }
}

.laptop-section__text {
  margin: 0 0 6rem;
}
.laptop-section__text p {
  line-height: 1.5;
  margin: 0 0 3rem;
}

.platform-section3 {
  margin: 0 0 21rem;
}
@media screen and (max-width: 800px) {
  .platform-section3 {
    margin-bottom: 14rem;
  }
}
@media screen and (max-width: 500px) {
  .platform-section3 {
    margin-bottom: 11rem;
  }
}

.platform-section3__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8rem;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 8rem;
}
@media screen and (max-width: 1280px) {
  .platform-section3__container {
    gap: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .platform-section3__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8rem;
  }
}
@media screen and (max-width: 680px) {
  .platform-section3__container {
    padding: 0 6rem;
  }
}
@media screen and (max-width: 500px) {
  .platform-section3__container {
    padding: 0 4rem;
  }
}

.platform-section3__left {
  max-width: 380px;
}
@media screen and (max-width: 800px) {
  .platform-section3__left {
    max-width: none;
  }
}

.platform-section3__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .platform-section3__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.platform-section3__right img {
  border-radius: 30rem;
  width: 60%;
  height: 720px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1100px) {
  .platform-section3__right img {
    width: 70%;
    max-height: 400px;
    border-radius: 30rem 30rem 3rem 3rem;
  }
}
@media screen and (max-width: 500px) {
  .platform-section3__right img {
    width: 80%;
  }
}

.platform-section3__secondary-text {
  background-color: var(--charcoal);
  padding: 10rem 6rem;
  border-radius: 13rem 1rem;
  color: var(--white);
  width: 463px;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: -8rem;
}
.platform-section3__secondary-text p {
  max-width: 250px;
  margin: 0;
}
@media screen and (max-width: 1100px) {
  .platform-section3__secondary-text p {
    max-width: none;
  }
}
@media screen and (max-width: 1400px) {
  .platform-section3__secondary-text {
    margin-left: -8rem;
    padding: 10rem 6rem;
  }
}
@media screen and (max-width: 1100px) {
  .platform-section3__secondary-text {
    margin-top: -10rem;
    margin-left: 0;
    padding: 8rem;
    border-radius: 10rem 1rem;
  }
}
@media screen and (max-width: 800px) {
  .platform-section3__secondary-text {
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  .platform-section3__secondary-text {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .platform-section3__secondary-text {
    padding: 5rem;
    border-radius: 6rem 1rem;
  }
}

.platform__testimonial {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 8rem;
}
@media screen and (max-width: 1280px) {
  .platform__testimonial {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 360px) {
  .platform__testimonial {
    padding: 0 3rem;
  }
}

:root {
  --small-max-width: 1460px;
}

.pf-landing {
  padding-top: 20rem;
  position: relative;
  background-color: var(--ivory);
  margin: 0 0 25rem;
}
@media screen and (max-width: 960px) {
  .pf-landing {
    padding-top: 17rem;
    margin-bottom: 18rem;
  }
}
@media screen and (max-width: 800px) {
  .pf-landing {
    margin-bottom: 22rem;
  }
}
@media screen and (max-width: 680px) {
  .pf-landing {
    padding-top: 15rem;
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 500px) {
  .pf-landing {
    padding-top: 14rem;
  }
}

.pf-landing__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}
@media screen and (max-width: 960px) {
  .pf-landing__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product-feature-landing__page-title-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin: 0 0 3rem;
}

.product-feature-landing__icon {
  width: 55px;
}
.product-feature-landing__icon img {
  width: 100%;
}

.prodcut-feature-landing__content {
  max-width: 600px;
  padding-right: 12rem;
  padding-top: 3rem;
  padding-bottom: 10%;
  position: relative;
}
.prodcut-feature-landing__content::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 120.2 104.9" viewBox="0 0 120.2 104.9"><path d="M50.8 0c-1.7 0-3.2 1-3.8 2.6L14.1 86.5C10.6 95 7 98.9 1.6 99.9l-1.6.3v4.6h31.9v-4.6l-1.9-.3c-7.5-1.2-11.1-3.6-7.8-12.1l5.1-13.5h37L69.4 88c2.8 7.6.1 10.8-8.4 12l-2.1.3v4.6h57.2c2.3 0 4.1-1.8 4.1-4.1 0-.5-.1-1-.3-1.5L82.3 2.6C81.7 1 80.2 0 78.5 0H50.8zm-21 67.8 15.7-41.6 16.2 41.6H29.8z" style="fill:%231e1e28"/></svg>');
  display: block;
  width: 120px;
  position: absolute;
  bottom: -4.2rem;
  left: 0;
}
@media screen and (max-width: 960px) {
  .prodcut-feature-landing__content::after {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  .prodcut-feature-landing__content {
    padding-right: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .prodcut-feature-landing__content {
    margin: 0 auto;
    padding-bottom: 6rem;
    padding-right: 0;
  }
}

.pf-landing__media {
  position: relative;
  margin-bottom: -12rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .pf-landing__media {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 680px) {
  .pf-landing__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.pf-landing__media--has-screenshot .pf-landing__mask {
  padding-left: 20rem;
  min-width: 945px;
}
@media screen and (max-width: 960px) {
  .pf-landing__media--has-screenshot .pf-landing__mask {
    min-width: 600px;
    padding-left: 0;
    margin-left: -16rem;
  }
}
@media screen and (max-width: 680px) {
  .pf-landing__media--has-screenshot .pf-landing__mask {
    min-width: 500px;
    margin-left: 0;
    margin-bottom: -12rem;
  }
}
@media screen and (max-width: 500px) {
  .pf-landing__media--has-screenshot .pf-landing__mask {
    margin-bottom: -6rem;
    min-width: auto;
  }
}

.pf-landing__mask {
  -webkit-mask-image: url("../../images/svgs/shape-sliced-pill-thin.svg");
          mask-image: url("../../images/svgs/shape-sliced-pill-thin.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 100%;
  height: 100%;
  -webkit-mask-position: right;
          mask-position: right;
}

.pill-shape-thin-mask__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 540px;
}
@media screen and (max-width: 800px) {
  .pill-shape-thin-mask__img {
    min-height: auto;
  }
}

.pf-landing__screenshot {
  position: absolute;
  top: 2rem;
  left: 2rem;
  max-width: 340px;
  z-index: 5;
  border-radius: 2.5rem;
}
.pf-landing__screenshot img {
  height: auto;
}
@media screen and (max-width: 1100px) {
  .pf-landing__screenshot {
    max-width: 300px;
    top: 6rem;
    left: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .pf-landing__screenshot {
    position: static;
    min-width: 240px;
  }
}
@media screen and (max-width: 680px) {
  .pf-landing__screenshot {
    min-width: auto;
    max-width: 300px;
  }
}
@media screen and (max-width: 500px) {
  .pf-landing__screenshot {
    max-width: 200px;
  }
}
@media screen and (max-width: 360px) {
  .pf-landing__screenshot {
    max-width: 150px;
  }
}

.pf-screenshot__img {
  border-radius: 2.5rem;
  border: 1rem solid var(--white);
}

.pf-section1 {
  margin: 0 0 13rem;
}

.pf-section1__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8rem;
}
@media screen and (max-width: 1100px) {
  .pf-section1__container {
    gap: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .pf-section1__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.pf-section1__title {
  -webkit-box-flex: 45%;
  -webkit-flex: 45%;
      -ms-flex: 45%;
          flex: 45%;
}

.pf-section1__content {
  -webkit-box-flex: 55%;
  -webkit-flex: 55%;
      -ms-flex: 55%;
          flex: 55%;
}

.pf-section1__text {
  margin: 0 0 5rem;
}

.pf-section-3 {
  max-width: var(--small-max-width);
  margin: 0 auto 24rem;
}
@media screen and (max-width: 1100px) {
  .pf-section-3 {
    margin-bottom: 15rem;
  }
}

.pf-section-3__container {
  position: relative;
}

.pf-section-3__title {
  position: relative;
  background-color: var(--charcoal);
  padding: 10rem 30rem 10rem 10rem;
  border-radius: 10rem 1rem;
  max-width: 990px;
  color: var(--white);
  z-index: 5;
}
@media screen and (max-width: 1280px) {
  .pf-section-3__title {
    max-width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .pf-section-3__title {
    padding: 10rem;
  }
  .pf-section-3__title br {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .pf-section-3__title {
    padding: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .pf-section-3__title {
    border-radius: 5rem 1rem;
  }
}
@media screen and (max-width: 360px) {
  .pf-section-3__title {
    border-radius: 4rem 1rem;
    padding: 3rem;
  }
}

.pf-section-3__content {
  margin-left: 10rem;
}
@media screen and (max-width: 1280px) {
  .pf-section-3__content {
    margin-left: 0;
  }
}
@media screen and (max-width: 680px) {
  .pf-section-3__content {
    margin-left: 0;
    margin-right: 0;
  }
}

.pf-section-3__text {
  margin: 6rem 0;
  padding-left: 6rem;
  max-width: 500px;
}
.pf-section-3__text p {
  margin: 0;
}
@media screen and (max-width: 1100px) {
  .pf-section-3__text {
    margin: 3rem 0 6rem;
  }
}
@media screen and (max-width: 800px) {
  .pf-section-3__text {
    max-width: 100%;
  }
}

.pf-section-3__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12rem;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .pf-section-3__flex {
    gap: 6rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 1280px) {
  .pf-section-3__flex {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 1100px) {
  .pf-section-3__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 680px) {
  .pf-section-3__flex {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.stat-bubble {
  background-color: var(--rust);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 580px;
  height: 580px;
  padding: 16rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 1400px) {
  .stat-bubble {
    width: 500px;
    height: 500px;
    padding: 8rem;
    position: static;
    -webkit-transform: translateY(-6rem);
            transform: translateY(-6rem);
  }
}
@media screen and (max-width: 1100px) {
  .stat-bubble {
    width: 100%;
    height: auto;
    padding: 8rem;
    border-radius: 10rem 1rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 500px) {
  .stat-bubble {
    min-height: 400px;
    border-radius: 100rem 100rem 100rem 3rem;
  }
}
@media screen and (max-width: 360px) {
  .stat-bubble {
    min-height: auto;
    padding: 10rem 4rem;
  }
}
@media screen and (max-width: 300px) {
  .stat-bubble {
    padding: 6rem 3rem;
  }
}

.stat-bubble__stat {
  font-size: 12.5rem;
}
@media screen and (max-width: 1100px) {
  .stat-bubble__stat {
    font-size: clamp(4rem, 20vw, 12.5rem);
  }
}

.stat-bubble__text p {
  font-size: clamp(1rem, 15vw, 2rem);
  margin: 0;
}

.stat-bubble__image-fallback {
  aspect-ratio: 4/3;
  background: url("../../images/photo-header-landing-shapes.png") no-repeat;
  background-size: contain;
  background-position: bottom;
  width: 500px;
  height: 540px;
  max-width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 1400px) {
  .stat-bubble__image-fallback {
    width: 460px;
    height: 580px;
  }
}
@media screen and (max-width: 1280px) {
  .stat-bubble__image-fallback {
    width: 440px;
    height: 530px;
    position: static;
    -webkit-transform: translateY(-6rem);
            transform: translateY(-6rem);
  }
}
@media screen and (max-width: 1100px) {
  .stat-bubble__image-fallback {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
    height: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.pf-section-4 {
  max-width: var(--small-max-width);
  margin: 0 auto 16rem;
}

.explore {
  max-width: var(--small-max-width);
  margin: 0 auto;
  padding: 0 8rem;
}
@media screen and (max-width: 1280px) {
  .explore {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 360px) {
  .explore {
    padding: 0 3rem;
  }
}

.explore__title {
  font-size: var(--text-size-lg);
  margin: 0 0 5rem;
}

.explore__nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 1100px) {
  .explore__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 680px) {
  .explore__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 360px) {
  .explore__nav {
    grid-template-columns: 1fr;
  }
}

.explore-nav__item {
  padding: 5rem 1rem;
  text-align: center;
  border-radius: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.explore-nav__item:hover {
  background-color: var(--white);
  -webkit-box-shadow: 5px 5px 20px #1E1E2833;
          box-shadow: 5px 5px 20px #1E1E2833;
}
.explore-nav__item:hover circle {
  fill: var(--rust);
}
.explore-nav__item:active, .explore-nav__item:focus {
  color: var(--charcoal);
}

.explore-nav__item--active {
  background-color: var(--ivory);
  pointer-events: none;
  color: var(--charcoal);
}

.explore-nav__icon {
  margin: 0 0 3rem;
  width: 113px;
}
.explore-nav__icon circle {
  fill: var(--charcoal);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 500px) {
  .explore-nav__icon {
    width: 80px;
  }
}

.explore-nav__label {
  padding: 0 1.2rem;
}

.single-landing-page .header__logo svg {
  fill: var(--rust);
}
.single-landing-page .hamburger {
  display: block;
}
.single-landing-page .hamburger__line {
  background-color: var(--rust);
}
.single-landing-page .laptop-section {
  margin: 0 0 26rem;
}

.landing-page-menu__label {
  color: var(--white);
}

.landing-page-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1100px) {
  .landing-page-menu {
    display: none;
  }
  .landing-page-menu .nav-item__link {
    display: none;
  }
}

.mobile-landing-page-menu {
  display: none;
}
@media screen and (max-width: 1100px) {
  .mobile-landing-page-menu {
    display: block;
  }
}

.landing-page-nav {
  margin-left: 2rem;
  width: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.landing-page-nav .nav-item__link {
  color: var(--white);
}

.is-landing-page-nav-open {
  width: auto;
  opacity: 1;
  visibility: visible;
}

.dark-landing {
  padding-top: 23rem;
  padding-bottom: 4rem;
  position: relative;
  background-color: var(--charcoal);
  color: var(--white);
  margin: 0 0 25rem;
}
@media screen and (max-width: 800px) {
  .dark-landing {
    margin-bottom: 18rem;
  }
}
@media screen and (max-width: 680px) {
  .dark-landing {
    padding-top: 20rem;
    margin-bottom: 15rem;
  }
}

.dark-landing__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20rem;
}
@media screen and (max-width: 1600px) {
  .dark-landing__container {
    gap: 12rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 1280px) {
  .dark-landing__container {
    gap: 6rem;
  }
}
@media screen and (max-width: 960px) {
  .dark-landing__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.dark-landing__content {
  max-width: 700px;
  position: relative;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
}
.dark-landing__content::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 120.2 104.9" viewBox="0 0 120.2 104.9"><path d="M50.8 0c-1.7 0-3.2 1-3.8 2.6L14.1 86.5C10.6 95 7 98.9 1.6 99.9l-1.6.3v4.6h31.9v-4.6l-1.9-.3c-7.5-1.2-11.1-3.6-7.8-12.1l5.1-13.5h37L69.4 88c2.8 7.6.1 10.8-8.4 12l-2.1.3v4.6h57.2c2.3 0 4.1-1.8 4.1-4.1 0-.5-.1-1-.3-1.5L82.3 2.6C81.7 1 80.2 0 78.5 0H50.8zm-21 67.8 15.7-41.6 16.2 41.6H29.8z" style="fill:%23fff"/></svg>');
  display: block;
  width: 120px;
  margin-top: 12rem;
}
@media screen and (max-width: 960px) {
  .dark-landing__content::after {
    display: none;
  }
}

.dark-landing__title {
  margin: 0 0 2.5rem;
}

.dark-landing__subtitle {
  line-height: 1.2;
  letter-spacing: 1px;
  margin: 0 0 3rem;
}

.dark-landing__media {
  margin-bottom: -10rem;
  width: 100%;
  max-width: 720px;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  position: relative;
}

.dark-landing__media--styled-border .dark-landing__image {
  border-radius: 10rem 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.dark-landing__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

.lp-section2 {
  margin: 0 0 20rem;
  padding: 0 4rem;
}
@media screen and (max-width: 1280px) {
  .lp-section2 {
    padding: 0;
  }
}
@media screen and (max-width: 1100px) {
  .lp-section2 {
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 680px) {
  .lp-section2 {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .lp-section2 {
    margin-bottom: 6rem;
  }
}

.lp-section3 {
  margin: 0 0 17rem;
}
@media screen and (max-width: 800px) {
  .lp-section3 {
    margin: 0 0 8rem;
  }
}

.lp-section3__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .lp-section3__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.lp-section3__content {
  position: relative;
  z-index: 5;
}

.lp-section3__title {
  border-radius: 13rem 1rem;
  background-color: var(--charcoal);
  color: var(--white);
  font-size: var(--text-size-xl);
  padding: 8.5rem 12rem;
  margin: 0 0 5.5rem;
  max-width: 870px;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 680px) {
  .lp-section3__title {
    padding: 8rem 4rem;
    border-radius: 7rem 1rem;
  }
}
@media screen and (max-width: 500px) {
  .lp-section3__title {
    padding: 6rem 4rem;
    border-radius: 7rem 1rem;
  }
}

.lp-section3__text {
  max-width: 380px;
  margin: 0 0 6rem;
}

.lp-section3__translate-x {
  -webkit-transform: translateX(11rem);
          transform: translateX(11rem);
}
@media screen and (max-width: 1700px) {
  .lp-section3__translate-x {
    -webkit-transform: translateX(4rem);
            transform: translateX(4rem);
  }
}
@media screen and (max-width: 500px) {
  .lp-section3__translate-x {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.lp-section3__image {
  margin-left: -40rem;
  position: relative;
  width: 1100px;
  min-height: 820px;
  height: 100%;
  -webkit-mask-image: url("../../images/svgs/shape-parallelogram-small.svg");
          mask-image: url("../../images/svgs/shape-parallelogram-small.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1700px) {
  .lp-section3__image {
    margin-left: -30rem;
  }
}
@media screen and (max-width: 1600px) {
  .lp-section3__image {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
}
@media screen and (max-width: 1100px) {
  .lp-section3__image {
    position: static;
    margin: 8rem auto;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    min-height: auto;
  }
}

.lp-section4 {
  text-align: center;
  margin: 0 0 16rem;
}

.lp-section4__container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 8rem;
}

.lp-section4__title {
  font-size: var(--text-size-lg-plus);
  letter-spacing: 1px;
  margin: 0 0 6rem;
}

.lp-section4__text {
  padding: 0 1.5rem;
}

.container--simple .cards {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 500px) {
  .container--simple .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.container--simple .cards .card__image {
  height: 300px;
}
@media screen and (max-width: 960px) {
  .container--simple .cards .card__image {
    height: 200px;
  }
}
@media screen and (max-width: 680px) {
  .container--simple .cards .card__image {
    height: 150px;
  }
}
@media screen and (max-width: 500px) {
  .container--simple .cards .card__image {
    height: 200px;
  }
}
.container--simple .team-member-block .card__body {
  background-color: var(--ivory);
}

@media screen and (max-width: 1700px) {
  .flexible-sections-wrapper .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .flexible-sections-wrapper .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 680px) {
  .flexible-sections-wrapper .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.flexible-sections-wrapper .flexible-section--halves .cards {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1400px) {
  .flexible-sections-wrapper .flexible-section--halves .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.team-member-block .card__title {
  margin-bottom: 1rem;
}
.team-member-block .card__image {
  pointer-events: auto;
  cursor: default;
}

.flexible-section .flexible-section__column .team-member-block {
  max-width: 380px;
  width: 100%;
  justify-self: flex-end;
}
@media screen and (max-width: 680px) {
  .flexible-section .flexible-section__column .team-member-block {
    max-width: 100%;
  }
}

.team-member {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 5rem;
}
@media screen and (max-width: 960px) {
  .team-member {
    gap: 8rem;
  }
}
@media screen and (max-width: 800px) {
  .team-member {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 680px) {
  .team-member {
    gap: 4rem;
    padding-top: 2rem;
  }
}

.team-member__bio {
  -webkit-box-flex: 70%;
  -webkit-flex: 70%;
      -ms-flex: 70%;
          flex: 70%;
}
@media screen and (max-width: 1500px) {
  .team-member__bio {
    -webkit-box-flex: 60%;
    -webkit-flex: 60%;
        -ms-flex: 60%;
            flex: 60%;
  }
}
@media screen and (max-width: 800px) {
  .team-member__bio {
    width: 100%;
  }
}
.team-member__bio .team-member__title {
  font-size: var(--text-size-xl);
  margin: 0 0 3rem;
}
.team-member__bio .pronouns {
  display: block;
  font-size: var(--text-size-sm);
  margin-top: 0.5rem;
  text-transform: lowercase;
  color: var(--charcoal);
}

.team-member__sidebar {
  -webkit-box-flex: 30%;
  -webkit-flex: 30%;
      -ms-flex: 30%;
          flex: 30%;
}
@media screen and (max-width: 1500px) {
  .team-member__sidebar {
    -webkit-box-flex: 40%;
    -webkit-flex: 40%;
        -ms-flex: 40%;
            flex: 40%;
  }
}
@media screen and (max-width: 800px) {
  .team-member__sidebar {
    width: 100%;
  }
}
.team-member__sidebar .card__image--single-team-member {
  margin: 0;
  border-radius: 100rem 100rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .team-member__sidebar .card__image--single-team-member {
    border-radius: 15rem 1rem 0 0;
  }
}
.team-member__sidebar .team-member-sidebar__items__container {
  padding: 5rem 5rem 1rem 5rem;
  border-radius: 0 0 1rem 1rem;
  background: var(--ivory);
}
.team-member__sidebar .text-left-border {
  padding-left: 4rem;
}
.team-member__sidebar .team-member-sidebar__item {
  margin: 0 0 4rem;
}
.team-member__sidebar .team-member-sidebar__item h2 {
  font-size: var(--text-size-md);
  margin-bottom: 1rem;
}
.team-member__sidebar .team-member-sidebar__item span {
  font-size: var(--text-size-sm);
}

.container {
  max-width: var(--max-width);
  padding: 0 8rem;
}
@media screen and (max-width: 680px) {
  .container {
    padding: 0 6rem;
  }
}
@media screen and (max-width: 500px) {
  .container {
    padding: 0 4rem;
  }
}

.container--center {
  margin: 0 auto;
}

.container--small {
  max-width: 1460px;
}

.container--simple {
  max-width: 1200px;
  margin: 2.5rem auto 0;
}

.dropdown-group {
  margin: 6rem 0 10rem;
  clear: both;
}

.dropdown {
  width: 100%;
  margin: 0 0 1rem;
  position: relative;
}

.dropdown__label {
  padding: 2.1rem 8rem 1.9rem 3rem;
  border-radius: 1rem;
  font-family: var(--font-heading);
  font-size: var(--text-size-sm-plus);
  letter-spacing: 0.5px;
  cursor: pointer;
  background-color: var(--charcoal);
  color: var(--white);
}
.dropdown__label::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 20 37.6" viewBox="0 0 20 37.6"><path d="M1.8 1.4 19 18.6 1.4 36.2" style="fill:none;stroke:%23ff523a;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" vector-effect="non-scaling-stroke"/></svg>');
  width: 16px;
  position: absolute;
  top: 1.8rem;
  right: 3.4rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 1100px) {
  .dropdown__label::after {
    width: 12px;
  }
}
.dropdown__label:hover::after {
  -webkit-transform: translateY(0.3rem) rotate(90deg);
          transform: translateY(0.3rem) rotate(90deg);
}

.dropdown__box {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
  max-height: 0;
  background-color: var(--charcoal);
  border-radius: 0 0 1rem 1rem;
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.dropdown__content {
  color: var(--white);
  font-family: var(--font-thin);
  font-size: var(--text-size-sm);
  position: relative;
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 4rem;
}
.dropdown__content p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 500px) {
  .dropdown__content {
    border-left: none;
    padding-left: 0;
  }
}

.is-dropdown-active .dropdown__label::after {
  -webkit-transform: translate3d(0, 5%, 0.3rem) scaleY(-1) rotate(90deg);
          transform: translate3d(0, 5%, 0.3rem) scaleY(-1) rotate(90deg);
}
.is-dropdown-active .dropdown__box {
  max-height: 9999px;
  margin-top: -0.5rem;
  margin-bottom: -1rem;
}
.is-dropdown-active .dropdown__content {
  opacity: 1;
}

.embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

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

.wistia-embed {
  position: relative;
  margin: 0 auto 10rem;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-height: 480px;
}
.wistia-embed div {
  border-radius: 1rem;
}

.wistia-embed--left {
  margin: 0 auto 10rem 0;
}

.wistia-embed--right {
  margin: 0 0 10rem auto;
}

.wistia-embed__container {
  cursor: pointer;
}

.wistia-image-thumbnail {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  z-index: 10;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  pointer-events: none;
}

.is-embed-clicked .wistia-image-thumbnail {
  opacity: 0;
  visibility: hidden;
}

.hubspot-embed {
  margin: 0 auto;
}

.testimonial {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .testimonial {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.testimonial__icon {
  width: 140px;
  max-width: 100%;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 5;
}
@media screen and (max-width: 500px) {
  .testimonial__icon {
    width: 100px;
  }
}

.testimonial__icon--larger {
  width: 160px;
  top: -4rem;
}
@media screen and (max-width: 960px) {
  .testimonial__icon--larger {
    width: 120px;
  }
}
@media screen and (max-width: 680px) {
  .testimonial__icon--larger {
    width: 100px;
  }
}

.testimonial__image {
  max-width: 450px;
  margin-right: -4rem;
  position: relative;
  z-index: 5;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.testimonial__image img {
  border-radius: 30rem 30rem 1rem 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1600px) {
  .testimonial__image {
    margin-right: 0;
  }
}
@media screen and (max-width: 960px) {
  .testimonial__image {
    margin-top: -6rem;
    margin-bottom: 5rem;
    max-width: 350px;
  }
}
@media screen and (max-width: 500px) {
  .testimonial__image {
    padding: 0 2rem;
  }
}

.testimonial__content {
  background-color: var(--ivory);
  padding: 13rem 10rem 6rem;
  border-radius: 1rem;
  position: relative;
  width: 100%;
  margin-left: -4rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .testimonial__content {
    margin-left: 0;
    padding: 13rem 6rem;
  }
}
@media screen and (max-width: 500px) {
  .testimonial__content {
    padding-top: 10rem;
  }
}

@media screen and (max-width: 800px) {
  .flexible-section--full-width .testimonial__content {
    border-radius: 0;
  }
}
@media screen and (max-width: 800px) {
  .flexible-section--full-width .multiple-testimonials {
    border-radius: 0;
  }
}

.testimonial__content--no-image {
  margin-left: 0;
}
@media screen and (max-width: 960px) {
  .testimonial__content--no-image {
    margin-left: 0;
    padding: 13rem 6rem 8rem 6rem;
  }
}
@media screen and (max-width: 500px) {
  .testimonial__content--no-image {
    padding-top: 10rem;
  }
}
.testimonial__content--no-image .testimonial__text {
  max-width: 1030px;
}

.testimonial__content--alt {
  margin-left: 0;
  padding: 13rem 10rem 5rem;
}
@media screen and (max-width: 680px) {
  .testimonial__content--alt {
    padding: 9rem 4rem 5rem;
  }
}
@media screen and (max-width: 360px) {
  .testimonial__content--alt {
    padding: 9rem 3rem 5rem;
  }
}

.testimonial__text {
  font-family: var(--font-heading);
  font-size: var(--text-size-lg);
  max-width: 875px;
  margin: 0 auto 6rem auto;
}
.testimonial__text p {
  line-height: 1.22;
  margin: 0;
}
@media screen and (max-width: 1600px) {
  .testimonial__text {
    font-size: var(--text-size-md);
  }
}
@media screen and (max-width: 960px) {
  .testimonial__text {
    font-size: var(--text-size-md);
  }
}

.testimonial__text--alt {
  font-size: var(--text-size-md);
  margin: 0 auto 4rem auto;
}

.testimonial__attribution {
  font-style: normal;
  color: var(--charcoal);
  max-width: 720px;
}
@media screen and (max-width: 375px) {
  .testimonial__attribution {
    font-size: var(--text-size-xs);
  }
}

.multiple-testimonials {
  background-color: var(--ivory);
  border-radius: 1rem;
  padding-bottom: 4rem;
  position: relative;
}
.multiple-testimonials .testimonial__image {
  aspect-ratio: 1/1;
  max-width: 350px;
  margin: 0;
  -webkit-box-flex: 40%;
  -webkit-flex: 40%;
      -ms-flex: 40%;
          flex: 40%;
}
@media screen and (max-width: 1100px) {
  .multiple-testimonials .testimonial__image {
    max-width: 250px;
  }
}
@media screen and (max-width: 800px) {
  .multiple-testimonials .testimonial__image {
    display: none;
  }
}
.multiple-testimonials .testimonial__content {
  padding: 0;
}
.multiple-testimonials .testimonial__text--alt {
  font-size: var(--text-size-sm-plus);
}
@media screen and (max-width: 1100px) {
  .multiple-testimonials .testimonial__icon {
    width: 120px;
  }
}

.testimonial__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8rem;
  padding: 10rem 6rem 6rem;
}
@media screen and (max-width: 960px) {
  .testimonial__box {
    gap: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .testimonial__box {
    padding: 10rem 6rem 6rem;
  }
}

.swiper-navigation {
  --swiper-theme-color: var(--charcoal);
  --swiper-pagination-bullet-inactive-color: var(--rust);
  --swiper-pagination-bullet-size: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper-navigation .swiper-pagination {
  width: auto !important;
  position: static;
  margin: 0 3rem;
}
.swiper-navigation .swiper-button-prev,
.swiper-navigation .swiper-button-next {
  position: static;
  height: auto;
  width: auto;
  margin-top: 0;
}
.swiper-navigation .swiper-pagination-bullet {
  font-family: var(--font-heading);
  margin: 0 1rem !important;
  opacity: 1;
  color: var(--rust);
}
.swiper-navigation .swiper-pagination-bullet-active {
  color: var(--charcoal);
}

.swiper-wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-navigation__prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.swiper-navigation__arrow {
  width: 18px;
  cursor: pointer;
}

.swiper-slide--has-image .testimonial__content {
  text-align: left;
}

.dropdown__content,
.text-block {
  clear: both;
}
.dropdown__content ul,
.dropdown__content ol,
.text-block ul,
.text-block ol {
  margin: 0 0 3rem;
}
.dropdown__content ul li,
.dropdown__content ol li,
.text-block ul li,
.text-block ol li {
  margin: 0 0 2rem;
}
.dropdown__content ul li ul,
.dropdown__content ul li ol,
.dropdown__content ol li ul,
.dropdown__content ol li ol,
.text-block ul li ul,
.text-block ul li ol,
.text-block ol li ul,
.text-block ol li ol {
  margin: 2rem 0;
}
.dropdown__content h2,
.text-block h2 {
  font-size: var(--text-size-lg-plus);
  margin-top: 11.3rem;
  margin-bottom: 3rem;
  display: block;
  letter-spacing: 1px;
}
.dropdown__content h2,
.dropdown__content h3,
.text-block h2,
.text-block h3 {
  position: relative;
}
.dropdown__content h2::after,
.dropdown__content h3::after,
.text-block h2::after,
.text-block h3::after {
  content: "";
  display: block;
  width: 192px;
  height: 2px;
  margin-top: 1rem;
  background-color: var(--rust);
}
.dropdown__content h3,
.text-block h3 {
  font-size: var(--text-size-md-plus);
  letter-spacing: 0.8px;
  margin: 0 0 4rem;
}
.dropdown__content h4,
.text-block h4 {
  margin: 0 0 2rem;
  font-size: var(--text-size-md);
}
.dropdown__content h5,
.text-block h5 {
  font-size: var(--text-size-sm-plus);
  line-height: 1.6;
}
.dropdown__content h3,
.dropdown__content h4,
.text-block h3,
.text-block h4 {
  margin-top: 5rem;
}
.dropdown__content p,
.text-block p {
  line-height: 1.75;
}
.dropdown__content a:not(.button),
.text-block a:not(.button) {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  color: var(--rust);
}
.dropdown__content a:not(.button):hover,
.text-block a:not(.button):hover {
  color: var(--rust);
}
.dropdown__content a:not(.button):hover::after,
.text-block a:not(.button):hover::after {
  width: 100%;
}
.dropdown__content a:not(.button)::after,
.text-block a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  width: 0;
  height: 1px;
  background-color: var(--rust);
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--rust);
}
.dropdown__content .alignleft,
.text-block .alignleft {
  float: left;
  margin: 0 1rem 1rem 0;
}
.dropdown__content .alignright,
.text-block .alignright {
  float: right;
  margin: 0 0 1rem 1rem;
}
.dropdown__content .aligncenter,
.text-block .aligncenter {
  margin: 3rem auto;
}

.dropdown__content ul > li,
.dropdown__content ol > li {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.text-block--styled-lists ul,
.text-block--styled-lists ol {
  list-style: none;
  padding: 0;
  margin: 4rem 0;
}
.text-block--styled-lists ul > li,
.text-block--styled-lists ol > li {
  position: relative;
  margin: 2rem 0 0;
  padding-bottom: 2rem;
  padding-left: 5rem;
  border-bottom: 2px solid var(--ivory);
  line-height: 1.6;
}
.text-block--styled-lists ul > li:last-child,
.text-block--styled-lists ol > li:last-child {
  border-bottom: none;
}
.text-block--styled-lists ul ul,
.text-block--styled-lists ul ol,
.text-block--styled-lists ol ul,
.text-block--styled-lists ol ol {
  margin-top: 1rem;
}
.text-block--styled-lists ul li::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 16.1 16.1" viewBox="0 0 16.1 16.1"><path d="M-892.9 305.8c8.7 0 15.7 7 15.7 15.7 0 .2-.2.4-.4.4h-15.3c-.2 0-.4-.2-.4-.4v-15.3c0-.2.2-.4.4-.4z" style="fill:%23ff523a" transform="translate(893.319 -305.809)"/></svg>');
  display: block;
  width: 16px;
  margin-right: 2rem;
  position: absolute;
  left: 0;
}
.text-block--styled-lists ul li ul {
  margin: 1rem 0 0;
}
.text-block--styled-lists ul li ul li {
  border-bottom: none;
  margin: 2rem 0 0;
  font-size: calc(var(--text-size-sm) - 10%);
}
.text-block--styled-lists ul li ul li:last-child {
  margin: 0;
  padding-bottom: 0;
}
.text-block--styled-lists ul li ul li::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 16.1 16.1" viewBox="0 0 16.1 16.1"><path d="M-892.9 305.8c8.7 0 15.7 7 15.7 15.7 0 .2-.2.4-.4.4h-15.3c-.2 0-.4-.2-.4-.4v-15.3c0-.2.2-.4.4-.4z" style="fill:%23ff523a" transform="translate(893.319 -305.809)"/></svg>');
  display: block;
  width: 12px;
  margin-right: 2rem;
}
.text-block--styled-lists ol {
  counter-reset: item;
}
.text-block--styled-lists ol li {
  counter-increment: item;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 5rem;
  padding-bottom: 3rem;
  padding-top: 1rem;
}
@media screen and (max-width: 1100px) {
  .text-block--styled-lists ol li {
    padding-left: 6rem;
  }
}
.text-block--styled-lists ol li::before {
  content: counter(item);
  display: block;
  padding: 1rem 1rem 0.8rem;
  font-family: var(--font-heading);
  font-size: var(--text-size-sm);
  font-weight: bold;
  letter-spacing: 0.4px;
  color: var(--white);
  background-color: var(--rust);
  border-radius: 7rem;
  margin-right: 2rem;
  min-width: 30px;
  margin-right: 2rem;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
}
.text-block--styled-lists ol li ol {
  margin: 2rem 0 0;
  padding-left: 2rem;
}
.text-block--styled-lists ol li ol li {
  padding-left: 2rem;
  padding-bottom: 1rem;
  list-style-type: lower-roman;
  border-bottom: none;
  font-size: calc(var(--text-size-sm) - 10%);
}
.text-block--styled-lists ol li ol li:last-child {
  margin: 0;
  padding-bottom: 0;
}
.text-block--styled-lists ol li ol li::before {
  display: none;
}

.spacer {
  display: block;
  float: left;
  clear: both;
  margin-bottom: -6rem;
  height: 1px;
}
@media screen and (max-width: 680px) {
  .spacer {
    height: 30px !important;
  }
}
@media screen and (max-width: 500px) {
  .spacer {
    height: 20px !important;
  }
}

.button {
  display: inline-block;
  padding: 1.2rem 3rem;
  color: var(--white);
  background-color: var(--rust);
  border-radius: 5rem;
  clear: both;
  font-size: var(--text-size-xs);
  -webkit-transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.button::after {
  display: none;
}

.button--main-nav {
  margin-left: 1.5rem;
  padding: 0.75rem 2.5rem;
  font-size: var(--text-size-xs);
  color: var(--white);
}
@media screen and (max-width: 1100px) {
  .button--main-nav {
    font-size: 18px;
  }
}

.button--smaller {
  font-size: 16px;
  padding: 1.2rem 2.8rem;
}

.button--alt {
  background-color: var(--charcoal);
  color: var(--white);
  font-size: var(--text-size-xs);
  padding: 1.2rem 8rem;
  display: block;
}

.button--center {
  margin: 0 auto 4rem;
}

.button--charcoal {
  background-color: var(--charcoal);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}

.cards--no-bios .card {
  pointer-events: none;
}
.cards--no-bios .card .card__button {
  display: none;
}
.cards--no-bios .card .card__location {
  margin: 1rem 0 0;
}

.card {
  background-color: var(--white);
  border-radius: 8rem 1rem;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 960px) {
  .card {
    --left-spacing: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .card .text-left-border {
    padding-left: 0;
    border-left: none;
  }
}

.card__image {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 680px) {
  .card__image {
    aspect-ratio: 4/3;
  }
}
.card__image img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
.card__image svg {
  width: auto;
  height: 50%;
}

.card__image--placeholder {
  background-color: var(--charcoal);
}

.card-image--has-secondary:hover .card-image__image1 {
  opacity: 0;
}
.card-image--has-secondary:hover .card-image__image2 {
  opacity: 1;
}

.card-image__image2 {
  opacity: 0;
}

.card__body {
  height: 100%;
  padding: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.card__title {
  margin: 0 0 3rem;
  letter-spacing: 0;
  font-size: clamp(3rem, 20vw, 3.5rem);
  color: var(--charcoal);
}

.card__subheading {
  font-size: var(--text-size-sm);
  margin: 0 0 3rem;
  color: var(--charcoal);
}

.card__subheading--rust {
  color: var(--rust);
}

.card__location {
  color: var(--charcoal);
  margin: 1rem 0 2rem;
}

.card__excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  margin: 0 0 4rem;
  line-height: 1.5;
  color: var(--charcoal);
}
.card__excerpt.text-left-border {
  padding-left: 4rem;
}
@media screen and (max-width: 1280px) {
  .card__excerpt.text-left-border {
    padding-left: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .card__excerpt.text-left-border {
    padding-left: 0;
  }
}
.card__excerpt p {
  margin: 0;
}

.footer {
  position: relative;
  margin-top: 20rem;
}
@media screen and (max-width: 1280px) {
  .footer {
    margin-top: 10rem;
  }
}

.footer__wrapper {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 34.5rem 0 6rem;
  margin-top: -19rem;
}
.footer__wrapper ul {
  list-style: none;
}
@media screen and (max-width: 500px) {
  .footer__wrapper {
    padding: 30rem 0 4rem;
  }
}

.footer__logo {
  display: block;
  max-width: 105px;
  min-width: 105px;
}
@media screen and (max-width: 500px) {
  .footer__logo {
    margin: 0 auto;
  }
}

.footer__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 680px) {
  .footer__main {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 500px) {
  .footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 2rem;
  }
}

.footer__social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 4rem;
}
@media screen and (max-width: 1600px) {
  .footer__social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer-social__title {
  margin-right: 6rem;
}
@media screen and (max-width: 1600px) {
  .footer-social__title {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .footer-social__title {
    width: 100%;
  }
}

.footer-social__icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  gap: 2rem;
}

.social-icon {
  width: 35px;
  height: 35px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.social-icon svg path {
  fill: var(--ivory) !important;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.social-icon:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.social-icon:hover svg path {
  fill: var(--rust) !important;
}

.footer__first-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 8rem;
}
@media screen and (max-width: 500px) {
  .footer__first-col {
    margin-right: 0;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem;
  }
}

.footer__menu a {
  display: block;
  color: var(--ivory);
  font-size: var(--text-size-xs);
  margin: 0 0 1.5rem;
  -webkit-transition: color 0.1s ease;
  transition: color 0.1s ease;
}
.footer__menu a:hover, .footer__menu a:focus {
  color: var(--rust);
}

.footer__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 4.5rem;
  font-size: var(--text-size-xxs);
  position: relative;
  margin-top: 11rem;
  gap: 2rem;
}
.footer__meta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(203, 196, 188, 0.15);
}
@media screen and (max-width: 500px) {
  .footer__meta {
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
    margin-top: 6rem;
  }
}

.footer-meta__item {
  margin-right: 6rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 500px) {
  .footer-meta__item {
    margin-right: 0;
  }
}
.footer-meta__item a:hover {
  color: var(--white);
}

.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3.5rem;
}
@media screen and (max-width: 500px) {
  .footer__nav {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
  }
}

.footer__logo-trademark {
  opacity: 0.3;
}

form {
  margin: 0 0 2rem;
}
form input,
form textarea {
  display: block;
  margin-bottom: 2rem;
  outline: thin;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  width: 100%;
  font-size: var(--text-size-sm);
  color: var(--charcoal);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: var(--text-size-xs);
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: var(--text-size-xs);
}
form input:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: var(--text-size-xs);
}
form input::-ms-input-placeholder, form textarea::-ms-input-placeholder {
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: var(--text-size-xs);
}
form input::placeholder,
form textarea::placeholder {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: var(--text-size-xs);
}
form input:focus::-webkit-input-placeholder, form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
form input:focus::-moz-placeholder, form textarea:focus::-moz-placeholder {
  opacity: 0;
}
form input:focus:-ms-input-placeholder, form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
form input:focus::-ms-input-placeholder, form textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
form input:focus::placeholder,
form textarea:focus::placeholder {
  opacity: 0;
}
form textarea {
  resize: none;
}
form input[type=checkbox] {
  display: inline;
  width: auto;
}
form button {
  color: var(--black);
  font-family: var(--font-light);
  font-size: var(--text-size-md);
  border: 2px solid var(--black);
  padding: 1rem 2rem;
}

.asterisk {
  color: red;
}

.form-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media screen and (max-width: 800px) {
  .form-2-col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/*
Hubspot Forms ----------------------------------------------------------------------
*/
.block-wrapper .hbspt-form {
  /* Errors -------------------------------- */
  /* Responsive -------------------------------- */
}
.block-wrapper .hbspt-form fieldset {
  max-width: none !important;
}
.block-wrapper .hbspt-form label {
  margin-bottom: 1rem;
  display: block;
  font-size: var(--text-size-xs);
}
.block-wrapper .hbspt-form input,
.block-wrapper .hbspt-form select,
.block-wrapper .hbspt-form textarea {
  color: var(--charcoal);
  border: 2px solid var(--stone);
  background: var(--white);
  border-radius: 0.5rem;
  font-size: var(--text-size-xs);
}
.block-wrapper .hbspt-form input::-webkit-input-placeholder, .block-wrapper .hbspt-form textarea::-webkit-input-placeholder {
  font-size: var(--text-size-xs);
}
.block-wrapper .hbspt-form input::-moz-placeholder, .block-wrapper .hbspt-form textarea::-moz-placeholder {
  font-size: var(--text-size-xs);
}
.block-wrapper .hbspt-form input:-ms-input-placeholder, .block-wrapper .hbspt-form textarea:-ms-input-placeholder {
  font-size: var(--text-size-xs);
}
.block-wrapper .hbspt-form input::-ms-input-placeholder, .block-wrapper .hbspt-form textarea::-ms-input-placeholder {
  font-size: var(--text-size-xs);
}
.block-wrapper .hbspt-form input::placeholder,
.block-wrapper .hbspt-form textarea::placeholder,
.block-wrapper .hbspt-form select {
  font-size: var(--text-size-xs);
}
.block-wrapper .hbspt-form option:not(:first-of-type) {
  color: var(--charcoal);
}
.block-wrapper .hbspt-form textarea {
  height: 120px;
}
.block-wrapper .hbspt-form select {
  padding: 1rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 2rem;
}
.block-wrapper .hbspt-form legend {
  font-size: var(--text-size-xxs);
  margin-bottom: 2rem;
}
.block-wrapper .hbspt-form .hs-form-required {
  color: var(--rust);
  padding-left: 0.5rem;
}
.block-wrapper .hbspt-form input[type=submit] {
  width: auto;
  display: inline-block;
  padding: 1.2rem 3rem;
  color: var(--white);
  background-color: var(--rust);
  border: none;
  border-radius: 5rem;
  clear: both;
  font-size: var(--text-size-xs);
  -webkit-transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.block-wrapper .hbspt-form input[type=submit]:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.block-wrapper .hbspt-form input[type=submit]::after {
  display: none;
}
.block-wrapper .hbspt-form .form-columns-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.block-wrapper .hbspt-form .form-columns-2 select {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .block-wrapper .hbspt-form .form-columns-2 {
    display: block;
  }
}
.block-wrapper .hbspt-form fieldset.form-columns-1 textarea.hs-input {
  width: 100%;
}
.block-wrapper .hbspt-form ul.inputs-list {
  margin: 0 0 2rem 0;
  padding: 0;
}
.block-wrapper .hbspt-form ul.inputs-list li {
  list-style: none;
  border: none;
}
.block-wrapper .hbspt-form .hs-input[type=checkbox],
.block-wrapper .hbspt-form .hs-input[type=radio] {
  margin: 0 1rem 0 0;
}
.block-wrapper .hbspt-form input.error,
.block-wrapper .hbspt-form select.error,
.block-wrapper .hbspt-form textarea.error {
  border: 2px solid var(--rust);
}
.block-wrapper .hbspt-form .hs-error-msgs {
  margin: 0;
  padding: 0;
}
.block-wrapper .hbspt-form .hs-error-msgs li {
  list-style: none;
  color: var(--rust);
  font-size: var(--text-size-xs);
  border: none;
}
@media all and (max-width: 480px) {
  .block-wrapper .hbspt-form input,
.block-wrapper .hbspt-form select,
.block-wrapper .hbspt-form textarea {
    margin-right: 0;
    width: 100% !important;
  }
  .block-wrapper .hbspt-form input[type=checkbox],
.block-wrapper .hbspt-form input[type=radio] {
    width: auto !important;
  }
  .block-wrapper .hbspt-form .input {
    margin-right: 0 !important;
  }
}

/* Tweaks for different background colour rows -------------------------------- */
.background-color-charcoal input,
.background-color-charcoal select,
.background-color-charcoal textarea,
.background-color-rust input,
.background-color-rust select,
.background-color-rust textarea {
  border: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 6rem;
  z-index: 999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 680px) {
  .header {
    padding-top: 4rem;
  }
}

.header__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 5;
}

.header__navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  position: relative;
  width: 120px;
  z-index: 999;
}
.header__logo svg {
  fill: var(--charcoal);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.is-header-scrolled .header {
  background-color: var(--white);
  -webkit-box-shadow: 0px 3px 20px #0000001A;
          box-shadow: 0px 3px 20px #0000001A;
  padding: 3rem 0;
}
.is-header-scrolled .header__logo svg,
.is-header-scrolled .nav-item__link,
.is-header-scrolled .landing-page-menu__label {
  fill: var(--charcoal);
  color: var(--charcoal);
}

@media screen and (max-width: 1100px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.nav__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 1500px) {
  .nav__wrapper {
    gap: 2rem;
  }
}

.nav-item--login {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  color: var(--color-body-text);
  font-size: var(--text-size-xs);
  letter-spacing: 0;
}
.nav-item--login::before {
  content: url("../../images/svgs/icon-login.svg");
  width: 27px;
  height: 27px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.nav-item--login::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 3.5rem;
  width: 0;
  height: 2px;
  background-color: var(--rust);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-item--login:hover::after {
  width: 50px;
}
@media screen and (max-width: 1100px) {
  .nav-item--login {
    font-size: var(--text-size-md);
  }
}

.nav__item:hover:not(.nav__item--mobile) .chevron, .nav__item:active:not(.nav__item--mobile) .chevron, .nav__item:focus:not(.nav__item--mobile) .chevron {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.nav__item:hover .submenu, .nav__item:active .submenu, .nav__item:focus .submenu {
  opacity: 1;
  visibility: visible;
}
.nav__item:hover .nav-item__link::after, .nav__item:active .nav-item__link::after, .nav__item:focus .nav-item__link::after {
  width: 50px;
}

.nav__item--mobile {
  display: none;
}
@media screen and (max-width: 1100px) {
  .nav__item--mobile {
    display: block;
  }
}

.nav-item__link {
  color: var(--color-body-text);
  font-size: var(--text-size-xs);
  letter-spacing: 0;
  position: relative;
}
.nav-item__link::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--rust);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-item__link--has-submenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.nav-item__link--has-submenu::before {
  content: "";
  display: block;
  height: 40px;
  position: absolute;
  top: 2rem;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .nav-item__link--has-submenu::before {
    display: none;
  }
}
.nav-item__link--has-submenu:active {
  pointer-events: none;
}

.nav__item--is-active .nav-item__link::after {
  width: 100%;
}

.chevron {
  width: 6px;
  stroke: var(--slate);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.submenu {
  position: absolute;
  top: 6.5rem;
  left: 8rem;
  right: 8rem;
  background-color: var(--white);
  padding: 8rem;
  -webkit-box-shadow: 0px 3px 20px #0000001A;
          box-shadow: 0px 3px 20px #0000001A;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10rem;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1600px) {
  .submenu {
    padding: 4rem;
    gap: 4rem;
  }
}
@media screen and (max-width: 1280px) {
  .submenu {
    left: 4rem;
    right: 4rem;
  }
}
@media screen and (max-width: 1100px) {
  .submenu {
    display: none;
  }
}

.nav-item__overview {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6rem;
}
.nav-item__overview .nav-item-overview__text {
  font-size: var(--text-size-xs);
}
@media screen and (max-width: 1600px) {
  .nav-item__overview {
    gap: 3rem;
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
  }
}

.nav-item-overview__image img {
  height: 100%;
  max-width: 300px;
}
@media screen and (max-width: 1600px) {
  .nav-item-overview__image img {
    max-width: 250px;
  }
}
@media screen and (max-width: 1400px) {
  .nav-item-overview__image img {
    max-width: 200px;
  }
}
@media screen and (max-width: 1100px) {
  .nav-item-overview__image {
    display: none;
  }
}

.nav-item-overview__content {
  max-width: 400px;
  -webkit-box-flex: 40%;
  -webkit-flex: 40%;
      -ms-flex: 40%;
          flex: 40%;
}

.nav-item-overview__title {
  margin: 0 0 2.5rem;
}

.submenu__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 800px;
  -webkit-box-flex: 60%;
  -webkit-flex: 60%;
      -ms-flex: 60%;
          flex: 60%;
}
@media screen and (max-width: 1600px) {
  .submenu__items {
    gap: 2rem;
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
  }
}
@media screen and (max-width: 1500px) {
  .submenu__items {
    max-width: none;
  }
}

.submenu__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
.submenu__item:hover .submenu-item__icon {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.submenu__item--is-active {
  border-bottom: 2px solid var(--rust);
  color: var(--charcoal);
  pointer-events: none;
  padding-bottom: 2rem;
}

.submenu-item__icon {
  min-width: 68px;
  max-width: 68px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.submenu-item__icon img {
  height: auto;
}
@media screen and (max-width: 1600px) {
  .submenu-item__icon {
    min-width: 50px;
    max-width: 50px;
  }
}
@media screen and (max-width: 1280px) {
  .submenu-item__icon {
    display: none;
  }
}

.submenu-item__link {
  display: block;
  margin: 0 0 1.5rem;
}

.submenu-item__excerpt {
  font-size: var(--text-size-xs);
  color: var(--charcoal);
}

.hamburger {
  position: relative;
  display: none;
  cursor: pointer;
  z-index: 999;
}
@media screen and (max-width: 1100px) {
  .hamburger {
    display: block;
  }
}

.hamburger__line {
  width: 32px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--color-body-text);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.hamburger__line--shorter {
  width: 22px;
}

.is-hamburger-toggled .hamburger__line:nth-of-type(1) {
  -webkit-transform: rotate(-45deg) translate(-5px, 5px);
          transform: rotate(-45deg) translate(-5px, 5px);
}
.is-hamburger-toggled .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.is-hamburger-toggled .hamburger__line:nth-of-type(3) {
  -webkit-transform: rotate(45deg) translate(-5px, -5px);
          transform: rotate(45deg) translate(-5px, -5px);
}

@media screen and (max-width: 1100px) {
  .nav {
    position: fixed;
    background: var(--ivory);
    background-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 120.2 104.9" viewBox="0 0 120.2 104.9"><path d="M50.8 0c-1.7 0-3.2 1-3.8 2.6L14.1 86.5C10.6 95 7 98.9 1.6 99.9l-1.6.3v4.6h31.9v-4.6l-1.9-.3c-7.5-1.2-11.1-3.6-7.8-12.1l5.1-13.5h37L69.4 88c2.8 7.6.1 10.8-8.4 12l-2.1.3v4.6h57.2c2.3 0 4.1-1.8 4.1-4.1 0-.5-.1-1-.3-1.5L82.3 2.6C81.7 1 80.2 0 78.5 0H50.8zm-21 67.8 15.7-41.6 16.2 41.6H29.8z" style="fill:%23fff"/></svg>');
    background-position: bottom -2px right -30px;
    background-repeat: no-repeat;
    background-size: 190px auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(0, 10%);
            transform: translate(0, 10%);
    padding: 12rem 8rem;
    overflow: scroll;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}
@media screen and (max-width: 1100px) and (max-width: 680px) {
  .nav {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 1100px) and (max-width: 500px) {
  .nav {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (max-width: 1100px) {
  .nav__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4rem;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 1100px) {
  .nav__item {
    opacity: 0;
  }
  .nav__item:not(.nav-item--login) {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 1100px) {
  .submenu__items {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    max-width: 500px;
    gap: 2rem;
  }
}
@media screen and (max-width: 1100px) {
  .submenu__item {
    display: block;
  }
  .submenu__item .submenu-item__link {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1100px) {
  .nav-item__link {
    font-size: var(--text-size-md);
  }
  .nav-item__link .chevron {
    width: 8px;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 1100px) {
  .nav__item:hover .nav-item__link::after, .nav__item:active .nav-item__link::after, .nav__item:focus .nav-item__link::after {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .nav-item__login {
    margin-top: 3rem;
    font-size: var(--text-size-md);
  }
}
@media screen and (max-width: 1100px) {
  .nav__main-cta {
    margin-left: 0;
    padding: 1.25rem 4rem;
  }
}
@media screen and (max-width: 1100px) {
  .is-nav-open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media screen and (max-width: 1100px) {
  .mobile-nav-overview {
    display: none;
  }
}
.is-mobile-submenu-active .submenu__items {
  max-height: 999px;
  opacity: 1;
  visibility: visible;
  margin-top: 4rem;
}
.is-mobile-submenu-active .chevron {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

@-webkit-keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.landing {
  position: relative;
  padding-top: 30rem;
}
@media screen and (max-width: 1100px) {
  .landing {
    padding-top: 35rem;
  }
}
@media screen and (max-width: 500px) {
  .landing {
    padding-top: 30rem;
  }
}
.landing::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 10rem;
  left: 0;
  background-color: var(--ivory);
  z-index: -1;
}

.landing--has-image {
  padding-top: 9.5rem;
  margin: 0 0 8rem;
}
@media screen and (max-width: 500px) {
  .landing--has-image {
    margin-bottom: 6rem;
  }
}
.landing--has-image::before {
  bottom: 3.5rem;
}

.landing--has-image .page-title,
.flexible-landing--has-image .page-title {
  max-width: 700px;
  margin: 6rem 0 0;
}
@media screen and (max-width: 800px) {
  .landing--has-image .page-title,
.flexible-landing--has-image .page-title {
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 680px) {
  .landing--has-image .page-title,
.flexible-landing--has-image .page-title {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .landing--has-image .page-title,
.flexible-landing--has-image .page-title {
    margin-top: 0;
  }
}

.landing--has-image .default-landing__container::after {
  bottom: -0.5rem;
}
@media screen and (max-width: 1280px) {
  .landing--has-image .default-landing__container::after {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 120.2 104.9" viewBox="0 0 120.2 104.9"><path d="M50.8 0c-1.7 0-3.2 1-3.8 2.6L14.1 86.5C10.6 95 7 98.9 1.6 99.9l-1.6.3v4.6h31.9v-4.6l-1.9-.3c-7.5-1.2-11.1-3.6-7.8-12.1l5.1-13.5h37L69.4 88c2.8 7.6.1 10.8-8.4 12l-2.1.3v4.6h57.2c2.3 0 4.1-1.8 4.1-4.1 0-.5-.1-1-.3-1.5L82.3 2.6C81.7 1 80.2 0 78.5 0H50.8zm-21 67.8 15.7-41.6 16.2 41.6H29.8z" style="fill:%23ffffff"/></svg>');
    bottom: -1.1rem !important;
  }
}
@media screen and (max-width: 500px) {
  .landing--has-image .default-landing__container::after {
    width: 75px;
    bottom: -0.9rem !important;
    left: 5rem;
  }
}

.flexible-landing--has-image .default-landing__container--has-image::after {
  bottom: -0.5rem;
}
@media screen and (max-width: 800px) {
  .flexible-landing--has-image .default-landing__container--has-image::after {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 120.2 104.9" viewBox="0 0 120.2 104.9"><path d="M50.8 0c-1.7 0-3.2 1-3.8 2.6L14.1 86.5C10.6 95 7 98.9 1.6 99.9l-1.6.3v4.6h31.9v-4.6l-1.9-.3c-7.5-1.2-11.1-3.6-7.8-12.1l5.1-13.5h37L69.4 88c2.8 7.6.1 10.8-8.4 12l-2.1.3v4.6h57.2c2.3 0 4.1-1.8 4.1-4.1 0-.5-.1-1-.3-1.5L82.3 2.6C81.7 1 80.2 0 78.5 0H50.8zm-21 67.8 15.7-41.6 16.2 41.6H29.8z" style="fill:%23ffffff"/></svg>');
    bottom: -1.2rem !important;
  }
}
@media screen and (max-width: 500px) {
  .flexible-landing--has-image .default-landing__container--has-image::after {
    width: 75px;
    bottom: -0.9rem !important;
    left: 5rem;
  }
}

.flexible-landing {
  position: relative;
  padding-top: 12rem;
}
.flexible-landing::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 10rem;
  left: 0;
  background-color: var(--ivory);
  z-index: -1;
}

.flexible-landing--has-image {
  margin: 0 0 8rem;
}
@media screen and (max-width: 500px) {
  .flexible-landing--has-image {
    margin-bottom: 2rem;
  }
}
.flexible-landing--has-image::before {
  bottom: 4rem;
}
.flexible-landing--has-image .default-landing__container::after {
  bottom: 0;
}

.default-landing__image-container img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 13rem 1rem;
  max-height: 400px;
  width: 1040px;
  max-width: 100%;
}
@media screen and (max-width: 1700px) {
  .default-landing__image-container img {
    max-height: 350px;
  }
}
@media screen and (max-width: 1100px) {
  .default-landing__image-container img {
    max-height: 300px;
  }
}
@media screen and (max-width: 680px) {
  .default-landing__image-container img {
    border-radius: 8rem 1rem;
    max-height: 250px;
  }
}
@media screen and (max-width: 500px) {
  .default-landing__image-container img {
    border-radius: 8rem 1rem;
    max-height: 200px;
  }
}
@media screen and (max-width: 360px) {
  .default-landing__image-container img {
    border-radius: 4rem 1rem;
    max-height: 150px;
  }
}

.landing__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .landing__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.default-landing__container {
  max-width: var(--max-width);
  margin: 4rem auto 0;
  position: relative;
  padding: 0 8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.default-landing__container::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 120.2 104.9" viewBox="0 0 120.2 104.9"><path d="M50.8 0c-1.7 0-3.2 1-3.8 2.6L14.1 86.5C10.6 95 7 98.9 1.6 99.9l-1.6.3v4.6h31.9v-4.6l-1.9-.3c-7.5-1.2-11.1-3.6-7.8-12.1l5.1-13.5h37L69.4 88c2.8 7.6.1 10.8-8.4 12l-2.1.3v4.6h57.2c2.3 0 4.1-1.8 4.1-4.1 0-.5-.1-1-.3-1.5L82.3 2.6C81.7 1 80.2 0 78.5 0H50.8zm-21 67.8 15.7-41.6 16.2 41.6H29.8z" style="fill:%231e1e28"/></svg>');
  display: block;
  width: 120px;
  position: absolute;
  bottom: 6rem;
  left: auto;
}
@media screen and (max-width: 1100px) {
  .default-landing__container::after {
    bottom: 5.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .default-landing__container .container {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .default-landing__container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 680px) {
  .default-landing__container {
    padding: 0 6rem;
  }
}
@media screen and (max-width: 500px) {
  .default-landing__container {
    padding: 0 4rem;
  }
}

.default-landing__container--has-image {
  margin-bottom: 10rem;
}
@media screen and (max-width: 500px) {
  .default-landing__container--has-image {
    margin-bottom: 0;
  }
}

.landing__title {
  margin: 0 0 4rem;
  line-height: 1.02;
}

.landing__text {
  margin: 0 0 5rem;
  max-width: 440px;
}
.landing__text p {
  margin: 0;
}

.landing__media {
  width: 100%;
}
.landing__media img {
  margin-left: 3rem;
}
@media screen and (max-width: 1700px) {
  .landing__media img {
    margin-left: 0;
  }
}

.landing--home {
  margin: 0 0 22.5rem;
  padding-top: 23.7rem;
  padding-bottom: 20rem;
}
@media screen and (max-width: 1600px) {
  .landing--home {
    padding-top: 18rem;
  }
}
@media screen and (max-width: 1500px) {
  .landing--home {
    padding-top: 12rem;
  }
}
@media screen and (max-width: 1400px) {
  .landing--home {
    padding-top: 3rem;
    padding-bottom: 15rem;
  }
}
@media screen and (max-width: 1280px) {
  .landing--home {
    padding-top: 0;
  }
}
@media screen and (max-width: 1100px) {
  .landing--home {
    padding: 16.5rem 0;
  }
}
@media screen and (max-width: 800px) {
  .landing--home {
    padding-bottom: 20rem;
  }
}
@media screen and (max-width: 680px) {
  .landing--home {
    padding: 12rem 0 7rem 0;
  }
}
@media screen and (max-width: 500px) {
  .landing--home {
    padding-bottom: 4rem;
  }
}
.landing--home::before {
  bottom: 45rem;
}
@media screen and (max-width: 1400px) {
  .landing--home::before {
    bottom: 40rem;
  }
}
@media screen and (max-width: 1280px) {
  .landing--home::before {
    bottom: 37.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .landing--home::before {
    bottom: 30%;
  }
}
@media screen and (max-width: 680px) {
  .landing--home::before {
    bottom: 25%;
  }
}
@media screen and (max-width: 500px) {
  .landing--home::before {
    bottom: 15%;
  }
}

.landing__content--home {
  max-width: 650px;
  min-width: 450px;
}
@media screen and (max-width: 1100px) {
  .landing__content--home {
    min-width: 0;
    max-width: none;
    margin: 6rem 0;
  }
}

.landing__title--home {
  margin: 0 0 12.5rem;
}
@media screen and (max-width: 1500px) {
  .landing__title--home {
    font-size: var(--text-size-xl);
  }
}
@media screen and (max-width: 1400px) {
  .landing__title--home {
    font-size: var(--text-size-lg-plus);
  }
}
@media screen and (max-width: 1280px) {
  .landing__title--home {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 1100px) {
  .landing__title--home {
    margin-bottom: 4rem;
    font-size: var(--text-size-xxl);
  }
}

.landing__container--home {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1100px) {
  .landing__container--home {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.landing__media--home {
  position: relative;
  padding: 28.5rem 0;
}
.landing__media--home img {
  margin: 0;
}
@media screen and (max-width: 1100px) {
  .landing__media--home {
    overflow: hidden;
  }
}
@media screen and (max-width: 680px) {
  .landing__media--home {
    padding: 20rem 0;
  }
}
@media screen and (max-width: 500px) {
  .landing__media--home {
    padding: 12rem 0;
  }
}

.logo-a {
  width: 375px;
  fill: var(--white);
  position: absolute;
  top: 0;
  left: 25rem;
  -webkit-animation-name: slide-down-left;
          animation-name: slide-down-left;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 1400px) {
  .logo-a {
    width: 250px;
    top: 10.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .logo-a {
    width: 200px;
    left: 20rem;
    top: 17rem;
  }
}
@media screen and (max-width: 1100px) {
  .logo-a {
    display: none;
  }
}

.landing-media__mask {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-mask-image: url("../../images/svgs/logo-a-expanded.svg");
          mask-image: url("../../images/svgs/logo-a-expanded.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 100%;
  -webkit-animation-name: fade-in-from-right;
          animation-name: fade-in-from-right;
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
          animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 1100px) {
  .landing-media__mask {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
}
.landing-media__mask img {
  width: 100%;
  max-height: 640px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation-name: reveal-from-left;
          animation-name: reveal-from-left;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
          animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 1100px) {
  .landing-media__mask img {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
}

.random-image {
  position: relative;
}
.random-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 13%;
  height: 26%;
  opacity: 1;
  background: linear-gradient(70deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes slide-down-left {
  from {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  to {
    -webkit-transform: translate(-70%, 100%);
            transform: translate(-70%, 100%);
  }
}

@keyframes slide-down-left {
  from {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  to {
    -webkit-transform: translate(-70%, 100%);
            transform: translate(-70%, 100%);
  }
}
@-webkit-keyframes reveal-from-left {
  from {
    -webkit-transform: translate(-82.5%, 73.5%);
            transform: translate(-82.5%, 73.5%);
    -webkit-clip-path: polygon(0 0, 94% 0%, 100% 27%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 94% 0%, 100% 27%, 100% 100%, 0 100%);
  }
  to {
    -webkit-transform: transate(0, 0);
            transform: transate(0, 0);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 100% 100%, 0 100%);
  }
}
@keyframes reveal-from-left {
  from {
    -webkit-transform: translate(-82.5%, 73.5%);
            transform: translate(-82.5%, 73.5%);
    -webkit-clip-path: polygon(0 0, 94% 0%, 100% 27%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 94% 0%, 100% 27%, 100% 100%, 0 100%);
  }
  to {
    -webkit-transform: transate(0, 0);
            transform: transate(0, 0);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 100% 100%, 0 100%);
  }
}
@-webkit-keyframes fade-in-from-right {
  from {
    opacity: 0;
    -webkit-transform: translate(5%, -3%);
            transform: translate(5%, -3%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes fade-in-from-right {
  from {
    opacity: 0;
    -webkit-transform: translate(5%, -3%);
            transform: translate(5%, -3%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes fade-in-from-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade-in-from-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.pagination {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4rem;
}

.pagination-arrow {
  width: 20px;
  fill: var(--black);
}

.pagination-arrow--prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.page-numbers {
  margin: 0 2rem;
  font-size: var(--text-size-md);
  color: var(--black);
}

.page-numbers.current {
  border-bottom: 2px solid var(--black);
  color: var(--black);
}

.marquee {
  background-color: var(--ivory);
  border-radius: 50rem 0 0 50rem;
  -webkit-transform: translateX(16rem);
          transform: translateX(16rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 324px;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0 2rem 10rem;
}
@media screen and (max-width: 960px) {
  .marquee {
    -webkit-transform: translateX(6rem);
            transform: translateX(6rem);
    min-height: 280px;
  }
}
@media screen and (max-width: 800px) {
  .marquee {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    border-radius: 0;
  }
}
@media screen and (max-width: 680px) {
  .marquee {
    min-height: 250px;
  }
}

.marquee__container,
.js-marquee-wrapper,
.js-marquee {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}

.marquee__item {
  padding: 0 3.5rem;
}
.marquee__item img {
  max-width: 200px;
  max-height: 75px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 680px) {
  .marquee__item img {
    max-width: 150px;
  }
}
@media screen and (max-width: 800px) {
  .marquee__item {
    padding: 0 2rem;
  }
}

.large-cta {
  position: relative;
  padding: 19rem 4rem;
  background-color: var(--charcoal);
  border-radius: 30rem 1rem;
  width: 87%;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.large-cta::before {
  content: url("../../images/svgs/shapes-future.svg");
  display: none;
  width: 364px;
  position: absolute;
  top: -6.4rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 1180px) {
  .large-cta::before {
    display: block;
  }
}
@media screen and (max-width: 1100px) {
  .large-cta::before {
    top: -7.8rem;
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .large-cta::before {
    width: 292px;
    top: -6.3rem;
  }
}
@media screen and (max-width: 500px) {
  .large-cta::before {
    width: 200px;
    top: -4.2rem;
  }
}
@media screen and (max-width: 375px) {
  .large-cta::before {
    width: 158px;
    top: -3.5rem;
  }
}
@media screen and (max-width: 1500px) {
  .large-cta {
    padding: 12rem 4rem;
    width: 75%;
  }
}
@media all and (max-width: 1180px) {
  .large-cta {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .large-cta {
    border-radius: 15rem 1rem;
    padding: 12rem 8rem;
  }
}
@media screen and (max-width: 680px) {
  .large-cta {
    padding: 12rem 6rem;
  }
}
@media screen and (max-width: 500px) {
  .large-cta {
    padding: 12rem 5rem;
  }
}
@media screen and (max-width: 375px) {
  .large-cta {
    border-radius: 10rem 0;
    padding: 8rem 4rem;
  }
}

.large-cta__container {
  max-width: 500px;
  text-align: center;
  margin-top: 4rem;
  margin-right: 10rem;
}
@media all and (max-width: 1180px) {
  .large-cta__container {
    margin-right: 0;
  }
}

.large-cta__title {
  color: var(--white);
  margin: 0 0 2rem;
}

.large-cta__subtitle {
  color: var(--rust);
  margin: 0 0 5rem;
}

.large-cta__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 680px) {
  .large-cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.video-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  margin-left: 4rem;
  outline: none;
}
.video-button:hover svg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.video-button svg {
  width: 50px;
  margin-right: 1.5rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.video-button svg path {
  fill: var(--white);
}
@media screen and (max-width: 680px) {
  .video-button {
    margin-left: 0;
    margin-top: 4rem;
  }
}

.shape-future {
  position: absolute;
  top: 46%;
  right: -89%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 624px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shape-future svg g {
  fill: var(--rust);
}
@media screen and (max-width: 1600px) {
  .shape-future {
    -webkit-transform: translate(-65%, -40%) scale(0.8);
            transform: translate(-65%, -40%) scale(0.8);
  }
}
@media screen and (max-width: 1500px) {
  .shape-future {
    -webkit-transform: translate(-70%, -40%) scale(0.7);
            transform: translate(-70%, -40%) scale(0.7);
  }
}
@media screen and (max-width: 1400px) {
  .shape-future {
    -webkit-transform: translate(-60%, -40%) scale(0.7);
            transform: translate(-60%, -40%) scale(0.7);
  }
}
@media screen and (max-width: 1280px) {
  .shape-future {
    -webkit-transform: translate(-60%, -40%) scale(0.65);
            transform: translate(-60%, -40%) scale(0.65);
  }
}
@media all and (max-width: 1180px) {
  .shape-future {
    display: none;
  }
}

.slide-right {
  opacity: 0;
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.shape-future__triangle2 {
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
}

.is-scrolled {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.modal {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: none;
  width: 85%;
  max-width: 1400px;
  outline: none;
  border-radius: 1rem;
  padding: 1rem;
}
.modal::-webkit-scrollbar {
  width: 8px;
}
.modal::-webkit-scrollbar-track {
  background: var(--stone);
}
.modal::-webkit-scrollbar-thumb {
  background: var(--slate);
  border-radius: 2rem;
}
.modal[open] {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.modal::-webkit-backdrop {
  background: rgba(30, 30, 40, 0.8);
}
.modal::backdrop {
  background: rgba(30, 30, 40, 0.8);
}
.modal iframe,
.modal .wistia_embed {
  width: 100% !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .modal {
    width: 95%;
  }
}

.key-features {
  padding: 0 8rem;
  margin: 0 0 18rem;
}
@media screen and (max-width: 1280px) {
  .key-features {
    padding: 0 4rem;
    margin-bottom: 14rem;
  }
}
@media screen and (max-width: 1100px) {
  .key-features {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 800px) {
  .key-features {
    padding: 0;
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 680px) {
  .key-features {
    margin-bottom: 6rem;
  }
}

.key-features__wrapper {
  background-color: var(--ivory);
  border-radius: 1rem;
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .key-features__wrapper {
    border-radius: 0;
  }
}

.key-features__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem;
  -webkit-transform: translateY(-18rem);
          transform: translateY(-18rem);
  padding: 0 16rem;
}
@media screen and (max-width: 1600px) {
  .key-features__container {
    gap: 6rem;
    padding: 0 8rem;
    -webkit-transform: translateY(-10rem);
            transform: translateY(-10rem);
  }
}
@media screen and (max-width: 1280px) {
  .key-features__container {
    gap: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .key-features__container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 680px) {
  .key-features__container {
    padding: 0 6rem;
  }
}
@media screen and (max-width: 500px) {
  .key-features__container {
    padding: 0 4rem;
    -webkit-transform: translateY(-8rem);
            transform: translateY(-8rem);
  }
}
@media screen and (max-width: 360px) {
  .key-features__container {
    gap: 4rem;
  }
}

.key-feature {
  --left-spacing: 8rem;
  background-color: var(--white);
  border-radius: 50rem 50rem 1rem 1rem;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .key-feature {
    --left-spacing: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .key-feature .text-left-border {
    padding-left: 0;
    border-left: none;
  }
}

.key-feature--horizontal {
  grid-column: span 2;
  border-radius: 1rem 10rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.key-feature--horizontal .key-feature__image {
  padding-bottom: unset;
  padding-right: 45%;
}
.key-feature--horizontal .key-feature__icon {
  top: 6rem;
  right: -18rem;
  left: unset;
}
.key-feature--horizontal .key-feature__body {
  padding: 22rem var(--left-spacing) 6rem;
}

.key-feature__image {
  position: relative;
  padding-bottom: 67%;
}
.key-feature__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.key-feature__icon {
  position: absolute;
  bottom: -6rem;
  left: var(--left-spacing);
  width: 113px;
  height: 113px;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .key-feature__icon {
    width: 90px;
    height: 90px;
    bottom: -4rem;
  }
}
@media screen and (max-width: 500px) {
  .key-feature__icon {
    width: 75px;
    height: 75px;
  }
}

.key-feature__body {
  padding: 11rem var(--left-spacing) 6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 960px) {
  .key-feature__body {
    padding: 8rem var(--left-spacing) 4rem;
  }
}

.key-feature__title {
  margin: 0 0 2.5rem;
  letter-spacing: 0;
  font-size: var(--text-size-md-plus);
}

.key-feature__text {
  margin: 0 0 6.5rem;
}
.key-feature__text p {
  margin: 0;
}
@media screen and (max-width: 500px) {
  .key-feature__text {
    margin: 0 0 3rem;
  }
}

.pf-alternating-sections {
  margin: 0 0 20rem;
}

.alternating-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 8rem;
  position: relative;
}
.alternating-section:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.alternating-section:nth-of-type(even) .alt-section__secondary-image {
  right: auto;
  left: -9%;
}
@media screen and (max-width: 1700px) {
  .alternating-section:nth-of-type(even) .alt-section__secondary-image {
    left: -5%;
  }
}
.alternating-section:nth-of-type(even) .alt-section-content__container {
  margin-left: 0;
  margin-right: -20%;
  padding: 12rem 30rem 8rem 30rem;
  width: 120%;
}
@media screen and (max-width: 1700px) {
  .alternating-section:nth-of-type(even) .alt-section-content__container {
    padding: 12rem 20rem 8rem 30rem;
  }
}
@media screen and (max-width: 1500px) {
  .alternating-section:nth-of-type(even) .alt-section-content__container {
    padding: 12rem 20rem 8rem 22rem;
  }
}
@media screen and (max-width: 1280px) {
  .alternating-section:nth-of-type(even) .alt-section-content__container {
    padding: 12rem 16rem 8rem 22rem;
  }
}
@media screen and (max-width: 1100px) {
  .alternating-section:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .alternating-section:nth-of-type(even) .alt-section-content__container {
    padding: 4rem 0 0 0;
    margin-right: 0;
  }
}

.alternating-section--no-secondary-image .alt-section__content {
  max-width: 100%;
}
.alternating-section--no-secondary-image .alt-section-content__container {
  padding: 12rem 30rem 8rem 30rem;
}

.alt-section__content {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  max-width: 940px;
}

.alt-section-content__container {
  background-color: var(--ivory);
  padding: 12rem 34rem 8rem 20rem;
  border-radius: 1rem;
  margin-left: -10%;
}
@media screen and (max-width: 1700px) {
  .alt-section-content__container {
    padding: 12rem 25rem 8rem 15rem;
  }
}
@media screen and (max-width: 1280px) {
  .alt-section-content__container {
    padding: 12rem 20rem 8rem 12rem;
  }
}

.alt-section__image-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-flex: 60%;
  -webkit-flex: 60%;
      -ms-flex: 60%;
          flex: 60%;
  max-width: 530px;
  position: relative;
}

.alt-section__image {
  position: relative;
  width: 100%;
  height: 550px;
  z-index: 5;
  border-radius: 30rem 30rem 1rem 1rem;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.alt-section__image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .alt-section__image {
    height: 460px;
  }
}

.secondary-image {
  width: 260px;
  max-width: 100%;
}
.secondary-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 1rem;
}

.alt-section__secondary-image {
  position: absolute;
  right: -9%;
  max-width: 260px;
}
.alt-section__secondary-image img {
  border-radius: 1rem;
}
@media screen and (max-width: 1700px) {
  .alt-section__secondary-image {
    right: -5%;
  }
}
@media screen and (max-width: 1500px) {
  .alt-section__secondary-image {
    max-width: 200px;
  }
}
@media screen and (max-width: 1100px) {
  .alt-section__secondary-image {
    display: none;
  }
}

.alt-section__secondary-image-2 {
  display: none;
}

.alt-section__secondary-image-3 {
  display: none;
}

.alt-section__title {
  margin: 0 0 3rem;
  max-width: 500px;
  letter-spacing: 0.8px;
  font-size: var(--text-size-md-plus);
}

@media screen and (max-width: 1280px) {
  .pf-alternating-sections {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 1100px) {
  .pf-alternating-sections {
    margin-top: 35rem;
  }

  .alternating-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 8rem 8rem;
    background-color: var(--ivory);
    border-radius: 1rem;
    margin: 0 0 30rem;
  }

  .alternating-section:last-of-type {
    margin-bottom: 0;
  }

  .alt-section__image-wrapper {
    position: relative;
    max-width: 100%;
  }

  .alt-section__secondary-image-3 {
    -webkit-transform: translate(-6rem, -2rem);
            transform: translate(-6rem, -2rem);
    position: relative;
    z-index: 5;
    width: 240px;
  }

  .alt-section-content__container {
    padding: 4rem 0 0 0;
    margin-left: 0;
    width: 100%;
  }

  .alt-section__image {
    max-width: 420px;
    max-height: 435px;
    position: relative;
    top: 0;
    margin-top: -24rem;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
  }

  .alt-section__secondary-image-2 {
    display: none;
  }

  .alt-section__secondary-image-3 {
    display: block;
    min-width: 150px;
  }

  .alt-section__text {
    max-width: 712px;
  }
  .alt-section__text P:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 800px) {
  .alternating-section {
    padding: 0 6rem 6rem;
  }

  .alt-section__image {
    max-height: 385px;
  }
}
@media screen and (max-width: 680px) {
  .alternating-section {
    margin-bottom: 20rem;
  }

  .pf-alternating-sections {
    margin-top: 20rem;
  }

  .alt-section__image {
    max-height: 300px;
    margin-top: -12rem;
    min-width: 280px;
  }
}
@media screen and (max-width: 500px) {
  .pf-alternating-sections {
    margin-bottom: 6rem;
  }

  .alternating-section {
    border-radius: 0;
    padding: 0 4rem 4rem;
  }

  .alt-section__secondary-image-3 {
    display: none;
    min-width: auto;
  }

  .alt-section__secondary-image-2 {
    display: block;
  }

  .alt-section__image {
    max-height: 270px;
    min-width: 100%;
  }

  .alt-section__text {
    margin: 0 0 3rem;
  }

  .pf-alternating-sections .container {
    padding: 0;
  }
}
@media screen and (max-width: 360px) {
  .secondary-image {
    width: 100%;
  }
}
.flex-cards {
  background-color: var(--ivory);
  border-radius: 1rem;
  padding: 6.5rem 14rem;
  max-width: 1620px;
  margin: 0 auto 10rem;
}
@media screen and (max-width: 1500px) {
  .flex-cards {
    padding: 6rem;
  }
}
@media screen and (max-width: 1280px) {
  .flex-cards {
    padding: 6rem 8rem;
    border-radius: 0;
  }
}
@media screen and (max-width: 1100px) {
  .flex-cards {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 680px) {
  .flex-cards {
    padding: 6rem 6rem;
  }
}

.flex-cards__container {
  margin-top: -20rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8rem;
}
@media screen and (max-width: 1280px) {
  .flex-cards__container {
    gap: 8rem;
  }
}
@media screen and (max-width: 960px) {
  .flex-cards__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 680px) {
  .flex-cards__container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 500px) {
  .flex-cards__container {
    margin-top: -15rem;
    gap: 6rem;
  }
}

.flex-card {
  max-width: 380px;
}
@media screen and (max-width: 680px) {
  .flex-card {
    max-width: 100%;
  }
}

.flex-card__image {
  margin: 0 0 6rem;
  position: relative;
}
.flex-card__image img {
  width: auto;
  height: 300px;
}
@media screen and (max-width: 1280px) {
  .flex-card__image img {
    height: 275px;
  }
}

.flex-card__title {
  margin: 0 0 3rem;
  font-size: var(--text-size-md-plus);
  max-width: 315px;
}

.transitional-section {
  margin-top: 11rem;
  text-align: center;
}

.transitional-section__title {
  font-size: var(--text-size-lg-plus);
  letter-spacing: 1px;
  margin: 0 0 3rem;
}

.row-2-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10rem;
}
.row-2-col h2,
.row-2-col h3,
.row-2-col h4 {
  margin-top: 0;
}
@media screen and (max-width: 680px) {
  .row-2-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.row-2-col--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 680px) {
  .row-2-col--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.row-2-col__content,
.row-2-col__image {
  -webkit-box-flex: 50%;
  -webkit-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}

.row-2-col__image--half-pill-shape {
  max-width: 422px;
  height: 400px;
}
.row-2-col__image--half-pill-shape img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  border-radius: 30rem 30rem 1rem 1rem;
}
@media screen and (max-width: 680px) {
  .row-2-col__image--half-pill-shape img {
    border-radius: 10rem 1rem 10rem 1rem;
  }
}
@media screen and (max-width: 680px) {
  .row-2-col__image--half-pill-shape {
    height: auto;
    max-width: 100%;
    margin: 0 auto;
  }
}

.row-2-col__cta {
  margin: 0 0 3.45rem;
}

.row-2-col__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.related-resources {
  margin-top: 8rem;
}

.related-resources--single .rr__content {
  min-height: auto;
}

.empty-2-col-row {
  -webkit-box-flex: 100%;
  -webkit-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  height: 140px;
}

.related-resource--has-image .rr__image {
  margin-bottom: -10rem;
}
.related-resource--has-image .rr__content {
  padding: 16rem 6rem 6rem;
}
@media screen and (max-width: 360px) {
  .related-resource--has-image .rr__content {
    padding: 16rem 4rem 4rem;
  }
}

.related-resources__title {
  margin: 0 0 6rem;
  font-size: var(--text-size-lg-plus);
}

.related-resources__wrapper {
  position: relative;
}
.related-resources__wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--rust);
  margin-bottom: 8rem;
}

.related-resources__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media all and (max-width: 780px) {
  .related-resources__container {
    grid-template-columns: 1fr;
    padding: 0 8rem;
  }
}
@media screen and (max-width: 680px) {
  .related-resources__container {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 500px) {
  .related-resources__container {
    padding: 0;
  }
}

.related-resource {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 33%;
      -ms-flex: 1 0 33%;
          flex: 1 0 33%;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  height: 100%;
}
@media all and (max-width: 780px) {
  .related-resource {
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    width: 100%;
  }
}

.rr__image {
  top: -16rem;
  left: 0;
  right: 0;
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
}
.rr__image img {
  border-radius: 30rem 30rem 1rem 1rem;
  max-height: 275px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 780px) {
  .rr__image img {
    height: 320px;
  }
}
@media screen and (max-width: 500px) {
  .rr__image img {
    height: 200px;
  }
}
@media screen and (max-width: 360px) {
  .rr__image img {
    height: 180px;
  }
}
@media screen and (max-width: 960px) {
  .rr__image {
    max-width: 100%;
    padding: 0 4rem;
  }
  .rr__image img {
    height: 220px;
  }
}

.rr__shape {
  margin: 0 0 3rem;
}
.rr__shape img {
  max-height: 90px;
}
@media screen and (max-width: 360px) {
  .rr__shape img {
    max-height: 60px;
  }
}

.rr__content {
  background-color: var(--charcoal);
  color: var(--white);
  border-radius: 1rem;
  padding: 6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 360px) {
  .rr__content {
    padding: 6rem 4rem;
  }
}

.rr__title {
  margin: 0 0 4rem;
}
.rr__title::after {
  width: 202px;
  max-width: 100%;
}

.rr__excerpt {
  font-family: var(--font-thin);
  font-size: var(--text-size-sm);
  font-weight: 100;
  line-height: 1.6;
}

.rr__button {
  margin-top: 4rem;
}

.research-template .author-wrapper {
  padding: 0 6rem;
}

.page-template-flexible-layout .landing--has-title,
.research-template .landing--has-title,
.webinar-template .landing--has-title,
.landing-page-template .landing--has-title,
.high-value-download-template .landing--has-title,
.blog .landing--has-title,
.archive .landing--has-title {
  padding-top: 10.5rem;
}
.page-template-flexible-layout .landing--has-title .default-landing__container,
.research-template .landing--has-title .default-landing__container,
.webinar-template .landing--has-title .default-landing__container,
.landing-page-template .landing--has-title .default-landing__container,
.high-value-download-template .landing--has-title .default-landing__container,
.blog .landing--has-title .default-landing__container,
.archive .landing--has-title .default-landing__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-flexible-layout .default-landing__container,
.research-template .default-landing__container,
.webinar-template .default-landing__container,
.landing-page-template .default-landing__container,
.high-value-download-template .default-landing__container,
.blog .default-landing__container,
.archive .default-landing__container {
  max-width: 1765px;
  gap: 6rem;
}
.page-template-flexible-layout .default-landing__container::after,
.research-template .default-landing__container::after,
.webinar-template .default-landing__container::after,
.landing-page-template .default-landing__container::after,
.high-value-download-template .default-landing__container::after,
.blog .default-landing__container::after,
.archive .default-landing__container::after {
  left: 8rem;
}
@media screen and (max-width: 680px) {
  .page-template-flexible-layout .default-landing__container::after,
.research-template .default-landing__container::after,
.webinar-template .default-landing__container::after,
.landing-page-template .default-landing__container::after,
.high-value-download-template .default-landing__container::after,
.blog .default-landing__container::after,
.archive .default-landing__container::after {
    left: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .page-template-flexible-layout .default-landing__container::after,
.research-template .default-landing__container::after,
.webinar-template .default-landing__container::after,
.landing-page-template .default-landing__container::after,
.high-value-download-template .default-landing__container::after,
.blog .default-landing__container::after,
.archive .default-landing__container::after {
    left: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .page-template-flexible-layout .default-landing__container,
.research-template .default-landing__container,
.webinar-template .default-landing__container,
.landing-page-template .default-landing__container,
.high-value-download-template .default-landing__container,
.blog .default-landing__container,
.archive .default-landing__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.page-template-flexible-layout .default-landing__image-container img,
.research-template .default-landing__image-container img,
.webinar-template .default-landing__image-container img,
.landing-page-template .default-landing__image-container img,
.high-value-download-template .default-landing__image-container img,
.blog .default-landing__image-container img,
.archive .default-landing__image-container img {
  margin-bottom: 0.5rem;
  width: 1040px;
  min-height: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-template-flexible-layout .default-landing__image-container img,
.research-template .default-landing__image-container img,
.webinar-template .default-landing__image-container img,
.landing-page-template .default-landing__image-container img,
.high-value-download-template .default-landing__image-container img,
.blog .default-landing__image-container img,
.archive .default-landing__image-container img {
    min-height: auto;
  }
}
.page-template-flexible-layout .spacer,
.research-template .spacer,
.webinar-template .spacer,
.landing-page-template .spacer,
.high-value-download-template .spacer,
.blog .spacer,
.archive .spacer {
  float: none;
}

@media screen and (max-width: 800px) {
  .flexible-sections-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 800px) {
  .team-member-template-default .flexible-sections-wrapper {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .team-member-template-default .flexible-sections-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.flexible-section {
  display: grid;
  padding: 6rem 12rem 3rem 12rem;
  border-radius: 1rem;
  gap: 6rem;
  margin: 0 0 6rem 0;
}
.flexible-section.background-color-ivory, .flexible-section.background-color-charcoal, .flexible-section.background-color-rust {
  padding-top: 8rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 1500px) {
  .flexible-section.background-color-ivory, .flexible-section.background-color-charcoal, .flexible-section.background-color-rust {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.flexible-section .block-wrapper:last-of-type {
  margin-bottom: 0;
}
.flexible-section .row-2-col {
  margin-bottom: 0;
}
.flexible-section .multiple-testimonials {
  margin-top: -6rem;
}
.flexible-section .multiple-testimonials .testimonial__content {
  background: none;
}
@media screen and (max-width: 1500px) {
  .flexible-section {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 800px) {
  .flexible-section {
    border-radius: 0;
    margin-bottom: 0;
    gap: 4rem;
  }
}
@media screen and (max-width: 680px) {
  .flexible-section {
    border-radius: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 680px) {
  .flexible-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.block-wrapper .no-bottom-margin {
  margin: 0 0 -6rem;
}
@media screen and (max-width: 680px) {
  .block-wrapper .no-bottom-margin {
    margin: 0 0 3rem;
  }
}

.flexible-section.no-bottom-margin {
  margin-bottom: 0;
}

.flexible-section--full-width {
  padding: 6rem 0;
}

.flexible-section--full {
  display: block;
}
.flexible-section--full .text-block h2:first-child,
.flexible-section--full .text-block h3:first-child,
.flexible-section--full .text-block h4:first-child {
  margin: 0 0 3rem;
}
.flexible-section--full .dropdown-group {
  margin: 6rem 0 4rem;
}

.flexible-section__column h2,
.flexible-section__column h3,
.flexible-section__column h4 {
  margin: 0 0 1rem;
}
.flexible-section__column h2::after,
.flexible-section__column h3::after,
.flexible-section__column h4::after {
  display: none;
}
.flexible-section__column h2:first-child {
  margin: 0 0 3rem;
}
.flexible-section__column ol,
.flexible-section__column ul {
  margin: 0 0 3rem;
}
.flexible-section__column ol li:first-child,
.flexible-section__column ul li:first-child {
  margin: 0;
}
.flexible-section__column .block-wrapper {
  margin: 0 0 3rem;
}
.flexible-section__column .wistia-embed {
  margin: 0;
}

.flexible-section--halves {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 680px) {
  .flexible-section--halves {
    grid-template-columns: 1fr;
  }
}
.flexible-section--halves h2,
.flexible-section--halves h3 {
  margin: 0 0 3rem;
}
.flexible-section--halves h2::after,
.flexible-section--halves h3::after {
  display: block;
}

.flexible-section--thirds {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 960px) {
  .flexible-section--thirds {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 680px) {
  .flexible-section--thirds {
    grid-template-columns: 1fr;
  }
}

/* ROW - BACKGROUND COLOUR - DEFAULT (WHITE) ----------------------------------------------------------------------------------------------------- */
.background-color-default {
  background-color: var(--white);
  /* DROPDOWN MODS -------------------------------------------------- */
  /* TEAM MEMBER MODS -------------------------------------------------- */
}
.background-color-default .dropdown__box ul > li,
.background-color-default .dropdown__box ol > li {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.background-color-default .card__body {
  background: var(--ivory);
}

/* ROW - BACKGROUND COLOUR - CHARCOAL ----------------------------------------------------------------------------------------------------- */
.background-color-charcoal {
  background-color: var(--charcoal);
  color: var(--white);
  /* DROPDOWN MODS -------------------------------------------------- */
  /* TESTIMONIAL MODS -------------------------------------------------- */
  /* TEAM MEMBER MODS -------------------------------------------------- */
}
.background-color-charcoal .row-2-col__text {
  font-family: var(--font-thin);
}
.background-color-charcoal ul > li,
.background-color-charcoal ol > li {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.background-color-charcoal .dropdown__label {
  color: var(--charcoal);
  background-color: var(--ivory);
}
.background-color-charcoal .dropdown__box {
  background-color: var(--ivory);
}
.background-color-charcoal .dropdown__box h2,
.background-color-charcoal .dropdown__box h3,
.background-color-charcoal .dropdown__box h4 {
  color: var(--charcoal);
}
.background-color-charcoal .dropdown__box p {
  color: var(--charcoal);
}
.background-color-charcoal .dropdown__box ul > li,
.background-color-charcoal .dropdown__box ol > li {
  color: var(--charcoal);
  border-bottom: 2px solid rgba(0, 0, 0, 0.07);
}
.background-color-charcoal .testimonial__text p {
  color: var(--charcoal);
}
.background-color-charcoal .card__body {
  background: var(--ivory);
}

/* ROW - BACKGROUND COLOUR - RUST ----------------------------------------------------------------------------------------------------- */
.background-color-rust {
  background-color: var(--rust);
  color: var(--charcoal);
  /* DROPDOWN MODS -------------------------------------------------- */
  /* TESTIMONIAL MODS -------------------------------------------------- */
}
.background-color-rust h2,
.background-color-rust h3,
.background-color-rust h4 {
  color: var(--charcoal);
}
.background-color-rust h2::after,
.background-color-rust h3::after,
.background-color-rust h4::after {
  background-color: var(--white);
}
.background-color-rust ul > li,
.background-color-rust ol > li {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.background-color-rust ul > li::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 16.1 16.1" viewBox="0 0 16.1 16.1"><path d="M-892.9 305.8c8.7 0 15.7 7 15.7 15.7 0 .2-.2.4-.4.4h-15.3c-.2 0-.4-.2-.4-.4v-15.3c0-.2.2-.4.4-.4z" style="fill:%23FFFFFF" transform="translate(893.319 -305.809)"/></svg>');
}
.background-color-rust ol > li::before {
  color: var(--charcoal);
  background-color: var(--white);
}
.background-color-rust a {
  color: var(--charcoal);
  text-decoration: underline;
}
.background-color-rust a:hover {
  color: var(--white);
}
.background-color-rust .text-left-border {
  border-color: var(--white);
}
.background-color-rust .button {
  color: var(--charcoal);
  background-color: var(--white);
  text-decoration: none;
}
.background-color-rust .dropdown__label {
  color: var(--white);
}
.background-color-rust .dropdown__label::after {
  background-color: transparent;
}
.background-color-rust .dropdown__box h2,
.background-color-rust .dropdown__box h3,
.background-color-rust .dropdown__box h4 {
  color: var(--white);
}
.background-color-rust .dropdown__box h2::after,
.background-color-rust .dropdown__box h3::after,
.background-color-rust .dropdown__box h4::after {
  background-color: var(--rust);
}
.background-color-rust .dropdown__box p {
  color: var(--white);
}
.background-color-rust .dropdown__box a {
  color: var(--white);
}
.background-color-rust .dropdown__box ul > li,
.background-color-rust .dropdown__box ol > li {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.background-color-rust .dropdown__box ul > li::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 16.1 16.1" viewBox="0 0 16.1 16.1"><path d="M-892.9 305.8c8.7 0 15.7 7 15.7 15.7 0 .2-.2.4-.4.4h-15.3c-.2 0-.4-.2-.4-.4v-15.3c0-.2.2-.4.4-.4z" style="fill:%23FF523A" transform="translate(893.319 -305.809)"/></svg>');
}
.background-color-rust .dropdown__box ol > li::before {
  color: var(--white);
  background-color: var(--rust);
}
.background-color-rust .dropdown__box .text-left-border {
  border-color: var(--rust);
}
.background-color-rust .testimonial__icon path {
  fill: var(--charcoal) !important;
}

/* ROW - BACKGROUND COLOUR - IVORY ----------------------------------------------------------------------------------------------------- */
.background-color-ivory {
  background-color: var(--ivory);
  /* DROPDOWN MODS -------------------------------------------------- */
  /* TESTIMONIAL MODS -------------------------------------------------- */
}
.background-color-ivory ul > li,
.background-color-ivory ol > li {
  border-bottom: 2px solid rgba(0, 0, 0, 0.07);
}
.background-color-ivory .dropdown__box ul > li,
.background-color-ivory .dropdown__box ol > li {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.background-color-ivory .testimonial__content {
  background: var(--white);
}

.large-text-block {
  font-family: var(--font-heading);
}
.large-text-block strong, .large-text-block em {
  font-family: var(--font-heading);
}
.large-text-block strong {
  font-weight: bolder;
}

.large-text {
  padding-right: 2rem;
}

.large-text--center {
  text-align: center;
  padding-left: 7rem;
  padding-right: 7rem;
}
@media screen and (max-width: 1400px) {
  .large-text--center {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .large-text--center {
    padding-left: 0;
    padding-right: 0;
  }
}

.image-block {
  position: relative;
}
.image-block img {
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-block--leaf-shape img {
  border-radius: 14rem 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-block--full-width img {
  width: 100%;
}

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

.image-align-right {
  margin-left: auto;
}

.articles,
.ajax-load-more-wrap {
  padding: 0 8rem;
  max-width: var(--max-width);
  margin: 8rem auto;
}
@media screen and (max-width: 1280px) {
  .articles,
.ajax-load-more-wrap {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 680px) {
  .articles,
.ajax-load-more-wrap {
    padding: 0;
    border-radius: 0;
  }
}

.articles__wrapper,
.alm-listing {
  background-color: var(--ivory);
  padding: 4rem 6rem;
  border-radius: 1rem;
}
.articles__wrapper .article-grid,
.alm-listing .article-grid {
  margin-top: -12rem;
}
@media screen and (max-width: 1100px) {
  .articles__wrapper,
.alm-listing {
    padding: 4rem;
  }
}
@media screen and (max-width: 375px) {
  .articles__wrapper,
.alm-listing {
    padding: 4rem 2rem;
  }
}

.article-grid,
.alm-reveal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin: 0 0 4rem;
}
.article-grid .card,
.alm-reveal .card {
  width: 100%;
}
.article-grid .card .card__body,
.alm-reveal .card .card__body {
  background-color: var(--white);
}
.article-grid .card .card__image,
.alm-reveal .card .card__image {
  aspect-ratio: 16/9;
}
.article-grid .card__title,
.alm-reveal .card__title {
  font-size: clamp(2.5rem, 20vw, 3rem);
}
@media screen and (max-width: 1280px) {
  .article-grid,
.alm-reveal {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 680px) {
  .article-grid,
.alm-reveal {
    grid-template-columns: 1fr;
  }
}

.container--simple .article-grid,
.container--simple .alm-reveal {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 680px) {
  .container--simple .article-grid,
.container--simple .alm-reveal {
    grid-template-columns: 1fr;
  }
}
.container--simple .article-grid .card .card__body,
.container--simple .alm-reveal .card .card__body {
  background-color: var(--ivory);
}

.done {
  display: none;
}

.ajax-load-more-wrap {
  margin-top: 20rem;
}

.alm-listing {
  margin-bottom: 4rem;
}

.alm-reveal:first-child {
  margin-top: -12rem;
}

.author-wrapper--multiple .author__title--single {
  display: none;
}
.author-wrapper--multiple .author__image {
  top: -5rem;
  max-height: 220px;
}
@media screen and (max-width: 1100px) {
  .author-wrapper--multiple .author__image {
    max-height: 180px;
  }
}
@media screen and (max-width: 680px) {
  .author-wrapper--multiple .author__image {
    max-height: 250px;
  }
}

.author {
  --spacing: 6rem;
  background-color: var(--ivory);
  padding: var(--spacing);
  border-radius: 1rem;
  position: relative;
  margin-bottom: 12rem;
}
@media screen and (max-width: 360px) {
  .author .text-left-border {
    padding-left: 0;
    border-left: none;
  }
}
@media screen and (max-width: 500px) {
  .author {
    --spacing: 3rem;
  }
}
.author:first-child {
  margin-top: 16rem;
}

@media screen and (max-width: 680px) {
  .author__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.author__image {
  position: absolute;
  top: -3rem;
  right: var(--spacing);
  aspect-ratio: 1/1;
  max-height: 250px;
}
@media screen and (max-width: 1100px) {
  .author__image {
    max-height: 180px;
  }
}
@media screen and (max-width: 680px) {
  .author__image {
    max-height: 250px;
  }
}
.author__image img {
  border-radius: 10rem 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 680px) {
  .author__image {
    position: static;
    margin: 0 0 6rem;
  }
}

.author__image--no-pronouns {
  top: -7rem !important;
}

.author__title {
  display: block;
  font-size: var(--text-size-lg-plus);
  margin: 0 0 4rem;
}

.author__title--block-title {
  margin: 6rem 0;
}

.author__pronouns {
  display: block;
  font-size: var(--text-size-xs);
  text-transform: lowercase;
}

.author__name {
  font-size: var(--text-size-md-plus);
  max-width: 50%;
}
@media screen and (max-width: 680px) {
  .author__name {
    max-width: 100%;
  }
}

.author__role {
  color: var(--rust);
  font-size: var(--text-size-xs);
  margin: 2rem 0 3rem;
}

.author__bio {
  font-size: var(--text-size-xs);
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 100;
  padding: 2rem 0;
  -webkit-box-shadow: 0px 0px 20px #00000029;
          box-shadow: 0px 0px 20px #00000029;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-animation-name: slide-in;
          animation-name: slide-in;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}

.cookies__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 1500px) {
  .cookies__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .cookies__container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cookies__text p {
  margin: 0;
  font-size: var(--text-size-xs);
}
@media screen and (max-width: 500px) {
  .cookies__text p {
    text-align: center;
  }
}

.cookies__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 500px) {
  .cookies__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hide-cookies {
  opacity: 0;
  visibility: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}

.gdpr_infobar_postion_bottom {
  -webkit-box-shadow: 0px 0px 20px #00000029;
          box-shadow: 0px 0px 20px #00000029;
  border-top: none !important;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-animation-name: slide-in;
          animation-name: slide-in;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  font-family: var(--font-body);
}

.moove-gdpr-infobar-allow-all {
  background-color: var(--rust) !important;
}

.moove-gdpr-infobar-reject-btn {
  background-color: var(--charcoal) !important;
}

.mgbutton {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-weight: lighter !important;
}
.mgbutton:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.moove-gdpr-cookie-notice p {
  color: var(--charcoal) !important;
  font-family: var(--font-light) !important;
  font-size: var(--text-size-xs) !important;
  font-weight: lighter !important;
  line-height: 1.4 !important;
}
.moove-gdpr-cookie-notice p a {
  color: var(--rust) !important;
  font-size: var(--text-size-xs) !important;
  font-weight: lighter !important;
}

@-webkit-keyframes slide-in {
  from {
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
    opacity: 0;
    visibility: hidden;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

@keyframes slide-in {
  from {
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
    opacity: 0;
    visibility: hidden;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.global-reach {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 960px) {
  .global-reach {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.global-reach--full-width-map .global-reach__map {
  -webkit-box-flex: 100%;
  -webkit-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

.global-reach__left-stats,
.global-reach-map__item {
  -webkit-transform: translateY(-4rem);
          transform: translateY(-4rem);
}
@media screen and (max-width: 960px) {
  .global-reach__left-stats,
.global-reach-map__item {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.global-reach__map {
  background-image: url("../../images/world-map.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-box-flex: 80%;
  -webkit-flex: 80%;
      -ms-flex: 80%;
          flex: 80%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  aspect-ratio: 16/9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10rem;
}
@media screen and (max-width: 360px) {
  .global-reach__map {
    gap: 1rem;
  }
}

.global-reach__left-stats {
  -webkit-box-flex: 20%;
  -webkit-flex: 20%;
      -ms-flex: 20%;
          flex: 20%;
  text-align: center;
}
.global-reach__left-stats h3,
.global-reach__left-stats p {
  margin: 0;
}
@media screen and (max-width: 960px) {
  .global-reach__left-stats {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.global-reach-stats-separator {
  height: 2px;
  width: 100%;
  background-color: var(--rust);
  margin: 4rem 0;
}
@media screen and (max-width: 960px) {
  .global-reach-stats-separator {
    height: 20vh;
    width: 2px;
    margin: 0 6rem;
  }
}

.global-reach-map__column {
  margin-left: 4rem;
  justify-self: center;
}
@media screen and (max-width: 500px) {
  .global-reach-map__column {
    margin-left: 0;
  }
}
.global-reach-map__column:first-child .global-reach-map__item {
  border-radius: 6rem 1rem;
}
@media screen and (max-width: 800px) {
  .global-reach-map__column:first-child .global-reach-map__item {
    border-radius: 3rem 1rem;
  }
}
.global-reach-map__column:nth-child(2) .global-reach-map__item {
  border-radius: 16rem;
  padding: 7rem clamp(2rem, 3vw, 4rem);
}
@media screen and (max-width: 1500px) {
  .global-reach-map__column:nth-child(2) .global-reach-map__item {
    padding: 5rem clamp(2rem, 3vw, 4rem);
  }
}
@media screen and (max-width: 800px) {
  .global-reach-map__column:nth-child(2) .global-reach-map__item {
    padding: 3rem 2rem;
  }
}
.global-reach-map__column:last-child .global-reach-map__item {
  border-radius: 1rem 50% 50%;
}

.global-reach-map__item {
  text-align: center;
  background-color: var(--rust);
  padding: clamp(2rem, 3vw, 4rem);
  width: 14vw;
  max-width: 240px;
  min-width: 90px;
}
@media screen and (max-width: 960px) {
  .global-reach-map__item {
    -webkit-transform: translateY(-3rem);
            transform: translateY(-3rem);
  }
}
@media screen and (max-width: 800px) {
  .global-reach-map__item {
    padding: 2rem 1rem;
    margin-left: 0;
  }
}

.global-reach__stat {
  font-size: clamp(3.5rem, 10vw, 11rem);
}
@media screen and (max-width: 800px) {
  .global-reach__stat {
    font-size: var(--text-size-xxl);
  }
}

.map-item__stat {
  font-size: clamp(2.5rem, 6vw, var(--text-size-xxl));
  margin: 1rem 0 -0.5rem;
}
@media screen and (max-width: 800px) {
  .map-item__stat {
    font-size: clamp(2.5rem, 6vw, var(--text-size-lg));
  }
}

.map-item__text {
  font-family: var(--font-heading);
}
@media screen and (max-width: 800px) {
  .map-item__text {
    font-size: var(--text-size-xs);
  }
}

.logo-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 4rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .logo-grid {
    gap: 1rem;
  }
}

.logo-grid__item {
  -webkit-flex-basis: calc(75% / 5);
      -ms-flex-preferred-size: calc(75% / 5);
          flex-basis: calc(75% / 5);
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  justify-self: center;
  min-width: 180px;
  padding: 0 2rem;
}
.logo-grid__item img {
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  max-width: 945px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .footer__cols {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3rem;
  }
}
@media screen and (max-width: 680px) {
  .footer__cols {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
  }
}

.col__title {
  margin: 0 0 4rem;
}
@media screen and (max-width: 500px) {
  .col__title {
    margin: 0 0 2.5rem;
  }
  .col__title::after {
    margin: 1.6rem auto;
  }
}

.block-wrapper .BambooHR-ATS-board {
  font-family: var(--font-light);
}
.block-wrapper .BambooHR-ATS-board h2 {
  font-size: var(--text-size-md);
}
.block-wrapper .BambooHR-ATS-board h2::after {
  display: none;
}
.block-wrapper .BambooHR-ATS-board .BambooHR-ATS-Department-Header {
  font-size: var(--text-size-sm);
}
.block-wrapper .BambooHR-ATS-board ul {
  list-style: none;
}
.block-wrapper .BambooHR-ATS-board ul li::before {
  display: none;
}

.home-section-1__media {
  width: 100%;
  max-width: 640px;
  position: relative;
  margin-top: -22rem;
}
.home-section-1__media img {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 12rem;
}
@-webkit-keyframes animated-photo-1-oblong {
  0% {
    opacity: 1;
  }
  3% {
    opacity: 1;
  }
  9% {
    opacity: 0;
  }
  69% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}
@keyframes animated-photo-1-oblong {
  0% {
    opacity: 1;
  }
  3% {
    opacity: 1;
  }
  9% {
    opacity: 0;
  }
  69% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}
@-webkit-keyframes animated-photo-2-circle-corner {
  0% {
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  21% {
    opacity: 0;
  }
  78% {
    opacity: 0;
  }
  84% {
    opacity: 1;
  }
}
@keyframes animated-photo-2-circle-corner {
  0% {
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  21% {
    opacity: 0;
  }
  78% {
    opacity: 0;
  }
  84% {
    opacity: 1;
  }
}
@-webkit-keyframes animated-photo-3-square-circle {
  0% {
    opacity: 1;
  }
  12% {
    opacity: 1;
  }
  18% {
    opacity: 0;
  }
  81% {
    opacity: 0;
  }
  87% {
    opacity: 1;
  }
}
@keyframes animated-photo-3-square-circle {
  0% {
    opacity: 1;
  }
  12% {
    opacity: 1;
  }
  18% {
    opacity: 0;
  }
  81% {
    opacity: 0;
  }
  87% {
    opacity: 1;
  }
}
@-webkit-keyframes animated-photo-4-square {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
}
@keyframes animated-photo-4-square {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
}
@-webkit-keyframes animated-photo-5-triangle {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  21% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  36% {
    opacity: 0;
  }
}
@keyframes animated-photo-5-triangle {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  21% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  36% {
    opacity: 0;
  }
}
@-webkit-keyframes animated-photo-6-square-circle {
  0% {
    opacity: 0;
  }
  21% {
    opacity: 0;
  }
  27% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
}
@keyframes animated-photo-6-square-circle {
  0% {
    opacity: 0;
  }
  21% {
    opacity: 0;
  }
  27% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
}
@-webkit-keyframes animated-photo-7-oblong {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  39% {
    opacity: 1;
  }
  51% {
    opacity: 1;
  }
  57% {
    opacity: 0;
  }
}
@keyframes animated-photo-7-oblong {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  39% {
    opacity: 1;
  }
  51% {
    opacity: 1;
  }
  57% {
    opacity: 0;
  }
}
@-webkit-keyframes animated-photo-8-circle-corner {
  0% {
    opacity: 0;
  }
  39% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  48% {
    opacity: 1;
  }
  54% {
    opacity: 0;
  }
}
@keyframes animated-photo-8-circle-corner {
  0% {
    opacity: 0;
  }
  39% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  48% {
    opacity: 1;
  }
  54% {
    opacity: 0;
  }
}
@-webkit-keyframes animated-photo-9-square {
  0% {
    opacity: 0;
  }
  51% {
    opacity: 0;
  }
  57% {
    opacity: 1;
  }
  66% {
    opacity: 1;
  }
  72% {
    opacity: 0;
  }
}
@keyframes animated-photo-9-square {
  0% {
    opacity: 0;
  }
  51% {
    opacity: 0;
  }
  57% {
    opacity: 1;
  }
  66% {
    opacity: 1;
  }
  72% {
    opacity: 0;
  }
}
@-webkit-keyframes animated-photo-10-triangle {
  0% {
    opacity: 0;
  }
  57% {
    opacity: 0;
  }
  63% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
}
@keyframes animated-photo-10-triangle {
  0% {
    opacity: 0;
  }
  57% {
    opacity: 0;
  }
  63% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
}
@-webkit-keyframes animated-shape-1-triangle {
  0% {
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  21% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  36% {
    opacity: 1;
  }
  57% {
    opacity: 1;
  }
  63% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  81% {
    opacity: 1;
  }
}
@keyframes animated-shape-1-triangle {
  0% {
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  21% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  36% {
    opacity: 1;
  }
  57% {
    opacity: 1;
  }
  63% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  81% {
    opacity: 1;
  }
}
@-webkit-keyframes animated-shape-2-circle-corner {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  21% {
    opacity: 1;
  }
  39% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  48% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  84% {
    opacity: 0;
  }
}
@keyframes animated-shape-2-circle-corner {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  21% {
    opacity: 1;
  }
  39% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  48% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  84% {
    opacity: 0;
  }
}
@-webkit-keyframes animated-shape-4-oblong {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 0;
  }
  9% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  39% {
    opacity: 0;
  }
  51% {
    opacity: 0;
  }
  57% {
    opacity: 1;
  }
  69% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
}
@keyframes animated-shape-4-oblong {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 0;
  }
  9% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  39% {
    opacity: 0;
  }
  51% {
    opacity: 0;
  }
  57% {
    opacity: 1;
  }
  69% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
}
@-webkit-keyframes animated-shape-6-square-circle {
  0% {
    opacity: 0;
  }
  12% {
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  21% {
    opacity: 1;
  }
  27% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  81% {
    opacity: 1;
  }
  87% {
    opacity: 0;
  }
}
@keyframes animated-shape-6-square-circle {
  0% {
    opacity: 0;
  }
  12% {
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  21% {
    opacity: 1;
  }
  27% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  81% {
    opacity: 1;
  }
  87% {
    opacity: 0;
  }
}
@-webkit-keyframes animated-shape-7-square {
  0% {
    opacity: 1;
  }
  6% {
    opacity: 1;
  }
  12% {
    opacity: 0;
  }
  24% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  51% {
    opacity: 1;
  }
  57% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  72% {
    opacity: 1;
  }
}
@keyframes animated-shape-7-square {
  0% {
    opacity: 1;
  }
  6% {
    opacity: 1;
  }
  12% {
    opacity: 0;
  }
  24% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  51% {
    opacity: 1;
  }
  57% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  72% {
    opacity: 1;
  }
}
.home-section-1__media svg {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 12rem;
}
.home-section-1__media svg #shape-1-triangle {
  opacity: 1;
  -webkit-animation-name: animated-shape-1-triangle;
          animation-name: animated-shape-1-triangle;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #shape-2-circle-corner {
  opacity: 0;
  -webkit-animation-name: animated-shape-2-circle-corner;
          animation-name: animated-shape-2-circle-corner;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #shape-4-oblong {
  opacity: 0;
  -webkit-animation-name: animated-shape-4-oblong;
          animation-name: animated-shape-4-oblong;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #shape-6-square-circle {
  opacity: 0;
  -webkit-animation-name: animated-shape-6-square-circle;
          animation-name: animated-shape-6-square-circle;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #shape-7-square {
  opacity: 1;
  -webkit-animation-name: animated-shape-7-square;
          animation-name: animated-shape-7-square;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #photo-1-oblong {
  opacity: 1;
  -webkit-animation-name: animated-photo-1-oblong;
          animation-name: animated-photo-1-oblong;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #photo-2-circle-corner {
  opacity: 1;
  -webkit-animation-name: animated-photo-2-circle-corner;
          animation-name: animated-photo-2-circle-corner;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #photo-3-square-circle {
  opacity: 1;
  -webkit-animation-name: animated-photo-3-square-circle;
          animation-name: animated-photo-3-square-circle;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #photo-4-square {
  opacity: 0;
  -webkit-animation-name: animated-photo-4-square;
          animation-name: animated-photo-4-square;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #photo-5-triangle {
  opacity: 0;
  -webkit-animation-name: animated-photo-5-triangle;
          animation-name: animated-photo-5-triangle;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #photo-6-square-circle {
  opacity: 0;
  -webkit-animation-name: animated-photo-6-square-circle;
          animation-name: animated-photo-6-square-circle;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #photo-7-oblong {
  opacity: 0;
  -webkit-animation-name: animated-photo-7-oblong;
          animation-name: animated-photo-7-oblong;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #photo-8-circle-corner {
  opacity: 0;
  -webkit-animation-name: animated-photo-8-circle-corner;
          animation-name: animated-photo-8-circle-corner;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #photo-9-square {
  opacity: 0;
  -webkit-animation-name: animated-photo-9-square;
          animation-name: animated-photo-9-square;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.home-section-1__media svg #photo-10-triangle {
  opacity: 0;
  -webkit-animation-name: animated-photo-10-triangle;
          animation-name: animated-photo-10-triangle;
  -webkit-animation-duration: 33s;
          animation-duration: 33s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media screen and (max-width: 800px) {
  .home-section-1__media {
    max-width: 500px;
    margin-bottom: 6rem;
    margin-top: -31rem;
  }
}
@media screen and (max-width: 680px) {
  .home-section-1__media {
    max-width: 300px;
    margin-top: -19rem;
  }
}
@media screen and (max-width: 500px) {
  .home-section-1__media {
    max-width: 250px;
    margin-top: -15.5rem;
  }
}

.block-wrapper .mapplic-tooltip-title {
  line-height: 1;
}
.block-wrapper .mapplic-tooltip-description ul {
  margin: 2rem 0;
}
.block-wrapper .mapplic-tooltip-close {
  width: 10px;
}

.footer__newsletter {
  background-color: var(--ivory);
  width: 1550px;
  max-width: 90%;
  padding: 9rem 0;
  border-radius: 0 30rem 30rem 0;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .footer__newsletter {
    max-width: 95%;
    border-radius: 0 50rem 50rem 0;
  }
}
@media screen and (max-width: 680px) {
  .footer__newsletter {
    border-radius: 0;
    max-width: 100%;
  }
}

.newsletter__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 7rem;
}
@media screen and (max-width: 1600px) {
  .newsletter__container {
    margin-left: 0;
  }
}
@media screen and (max-width: 800px) {
  .newsletter__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}

.newsletter__content {
  max-width: 900px;
  width: 100%;
  margin-left: 8rem;
}
@media screen and (max-width: 1600px) {
  .newsletter__content {
    margin-left: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .newsletter__content {
    margin-left: 0;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
  }
}

.newsletter__icon {
  min-width: 218px;
  min-height: 218px;
  border-radius: 50%;
  background-color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsletter__icon svg {
  width: 110px;
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}
@media screen and (max-width: 1600px) {
  .newsletter__icon {
    min-width: 150px;
    min-height: 150px;
    -webkit-align-self: self-start;
        -ms-flex-item-align: self-start;
            align-self: self-start;
  }
  .newsletter__icon svg {
    width: 90px;
  }
}

.newsletter-text__title {
  max-width: 390px;
}
@media screen and (max-width: 1400px) {
  .newsletter-text__title {
    padding-right: 4rem;
  }
}

.newsletter__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1400px) {
  .newsletter__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.newsletter__text .text-left-border {
  margin-left: 0;
}
@media screen and (max-width: 1100px) {
  .newsletter__text .text-left-border {
    padding-left: 3.5rem;
  }
}

.newsletter-text__paragraph {
  max-width: 400px;
  margin: 0 0 0 5rem;
}
@media screen and (max-width: 1400px) {
  .newsletter-text__paragraph {
    margin: 3rem 0 0;
  }
}

.newsletter__form {
  position: relative;
}
.newsletter__form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  margin: 0;
}
@media screen and (max-width: 960px) {
  .newsletter__form form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
.newsletter__form form input[type=input] {
  max-width: 400px;
}
.newsletter__form .hs_email {
  width: 100%;
  max-width: 400px;
}
.newsletter__form .hs_email label {
  margin-bottom: 0;
}
.newsletter__form .hs_email input {
  border: none !important;
}
.newsletter__form .hs-button {
  color: var(--white);
  font-family: var(--font-light);
  font-size: var(--text-size-xs);
  cursor: pointer;
  border-radius: 5rem;
  padding: 1.3rem 3.5rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.newsletter__form .hs-button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.newsletter__form .no-list {
  position: relative;
  top: 5.5rem;
  left: 0.5rem;
  list-style: none;
  padding-left: 0;
  font-size: var(--text-size-xxs);
  color: var(--rust);
}
@media screen and (max-width: 960px) {
  .newsletter__form .no-list {
    margin: 0 0 4rem;
  }
}
.newsletter__form .hs_error_rollup {
  position: absolute;
  width: 100%;
  top: 0;
}
.newsletter__form .hs-error-msg {
  color: var(--rust);
  display: none;
}

.hs-button {
  background-color: var(--rust);
}

.hs_recaptcha {
  margin: 0;
  opacity: 0;
  height: 0;
  visibility: hidden;
}

.hidden {
  display: none;
}

.hidden--visually {
  -webkit-clip-path: inset(100%);
          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;
}
