:root {
  --blue-color-code: 228deg, 72%, 52%;
  --peach-color-code: 7deg, 100%, 66%;
  --gold-color-code: 42deg, 100%, 61%;
  --pink-color-code: 12deg, 100%, 85%;
  /* PRIMARY COLORS */
  --blue: hsl(228deg, 72%, 52%);
  --peach: hsl(7deg, 100%, 66%);
  --gold: hsl(42deg, 100%, 61%);
  --pink: hsl(12deg, 100%, 85%);

  /* SHADES FOR SHADOWS */
  --blue-shade-dark: #5c76dd;
  --blue-shade-regular: #99a9e9;
  --blue-shade-light: #adbaee;
  --blue-shade-lighter: #ccd4f4;
  --blue-shade-lightest: #d6ddf6;

  /* ACCENTS */
  --light-purple: #eaedfc;

  /* Opaque */
  --blue-extra-light: hsl(230 75% 95% / 0.2);
  --blue-light: hsl(228deg 72% 52% / 50%);
  --peach-light: hsl(7deg 100% 66% / 50%);
  --gold-light: hsl(42deg 100% 61% / 50%);

  /* SKIN TONES */
  --skin-deep: #a94200;
  --skin-medium: #f18f67;
  --skin-light: #ffc096;

  /* STOCK COLORS */
  --white: #ffffff;
  --black: #000000;

  /* FONTS */
  --font-light: 'BrandonGrotesqueWeb-Light';
  --font-regular: 'BrandonGrotesqueWeb-Regular';
  --font-regular-italic: 'BrandonGrotesqueWeb-Italic';
  --font-medium: 'BrandonGrotesqueWeb-Medium';
  --font-bold: 'BrandonGrotesqueWeb-Bold';
  --font-black: 'BrandonGrotesqueWeb-Black';

  /* SHADOWS */
  --shadow-blue: 229deg 69% 31%;
  --blue-shadow-elevation-low: 0.3px 0.5px 0.7px hsl(var(--shadow-blue) / 0.34),
    0.4px 0.8px 1px -1.2px hsl(var(--shadow-blue) / 0.34),
    1px 2px 2.5px -2.5px hsl(var(--shadow-blue) / 0.34);
  --blue-shadow-elevation-medium: 0.3px 0.5px 0.7px
      hsl(var(--shadow-blue) / 0.36),
    0.8px 1.6px 2px -0.8px hsl(var(--shadow-blue) / 0.36),
    2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-blue) / 0.36),
    5px 10px 12.6px -2.5px hsl(var(--shadow-blue) / 0.36);
  --blue-shadow-elevation-high: 0.3px 0.5px 0.7px hsl(var(--shadow-blue) / 0.34),
    1.5px 2.9px 3.7px -0.4px hsl(var(--shadow-blue) / 0.34),
    2.7px 5.4px 6.8px -0.7px hsl(var(--shadow-blue) / 0.34),
    4.5px 8.9px 11.2px -1.1px hsl(var(--shadow-blue) / 0.34),
    7.1px 14.3px 18px -1.4px hsl(var(--shadow-blue) / 0.34),
    11.2px 22.3px 28.1px -1.8px hsl(var(--shadow-blue) / 0.34),
    17px 33.9px 42.7px -2.1px hsl(var(--shadow-blue) / 0.34),
    25px 50px 62.9px -2.5px hsl(var(--shadow-blue) / 0.34);

  --shadow-peach: 8deg 75% 40%;
  --peach-shadow-elevation-low: 0.3px 0.5px 0.7px
      hsl(var(--shadow-peach) / 0.34),
    0.4px 0.8px 1px -1.2px hsl(var(--shadow-peach) / 0.34),
    1px 2px 2.5px -2.5px hsl(var(--shadow-peach) / 0.34);
  --peach-shadow-elevation-medium: 0.3px 0.5px 0.7px
      hsl(var(--shadow-peach) / 0.36),
    0.8px 1.6px 2px -0.8px hsl(var(--shadow-peach) / 0.36),
    2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-peach) / 0.36),
    5px 10px 12.6px -2.5px hsl(var(--shadow-peach) / 0.36);
  --peach-shadow-elevation-high: 0.3px 0.5px 0.7px
      hsl(var(--shadow-peach) / 0.34),
    1.5px 2.9px 3.7px -0.4px hsl(var(--shadow-peach) / 0.34),
    2.7px 5.4px 6.8px -0.7px hsl(var(--shadow-peach) / 0.34),
    4.5px 8.9px 11.2px -1.1px hsl(var(--shadow-peach) / 0.34),
    7.1px 14.3px 18px -1.4px hsl(var(--shadow-peach) / 0.34),
    11.2px 22.3px 28.1px -1.8px hsl(var(--shadow-peach) / 0.34),
    17px 33.9px 42.7px -2.1px hsl(var(--shadow-peach) / 0.34),
    25px 50px 62.9px -2.5px hsl(var(--shadow-peach) / 0.34);

  /* STYLES */
  --stock-border-radius: 5px;
  --stock-transition-in: 0.3s all ease-in;
  --stock-transition-out: 0.3s all ease-out;
}

html {
  font-family: var(--font-light);
  font-size: 18px;
}

body {
  font-family: sans-serif;
  font-family: var(--font-light);
  max-width: 1600px;
  margin: auto;
  overflow-x: hidden;
  height: 100%;
}

button,
.button {
  display: inline-block;
  line-height: 1.1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: var(--font-medium);
  padding: 10px 25px;
  border-radius: var(--stock-border-radius);
  text-decoration: none;
  color: unset;
  transition: var(--stock-transition-out);
  border: none;
  cursor: pointer;
}

.button:hover {
  box-shadow: var(--peach-shadow-elevation-low);
  transition: var(--stock-transition);
}

.btn-text__white {
  color: var(--white);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1600px;
  z-index: 10000000;
  height: 86px;
  border-bottom: 1px solid var(--blue-shade-lightest);
}

.header__logo {
  width: 200px;
  height: auto;
}

.header__menu ul.menu__wrapper {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.header__menu ul.menu__wrapper li {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-family: var(--font-bold);
  display: block;
  letter-spacing: 0.5px;
  height: 50px;
  display: flex;
  align-items: center;
}

.menu.menu--mobile.active li {
  width: 100%;
}

.header__menu ul.menu__wrapper li a {
  text-decoration: none;
  color: var(--black);
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__menu ul.menu__wrapper li a.active {
  border-bottom: 3px solid var(--blue);
  transform: translateY(2px);
}

.header__menu ul.menu__wrapper li:last-child {
  display: flex;
  line-height: 1.1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: var(--font-medium);
  padding: 10px 25px;
  border-radius: var(--stock-border-radius);
  text-decoration: none;
  color: unset;
  transition: var(--stock-transition-out);
  background-color: var(--blue);
  letter-spacing: 0px;
}

.header__menu ul.menu__wrapper li:last-child a {
  color: var(--white);
}

li.menu__item.menu__item--depth-1.menu__item--has-submenu {
  position: relative;
}

li.menu__item.menu__item--depth-1.menu__item--has-submenu:hover ul.menu__submenu.menu__submenu--level-2.no-list {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0px;
}

ul.menu__submenu.menu__submenu--level-2.no-list {
  display: none !important;
  position: absolute;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0px;
  background: var(--blue);
  color: white;
  text-align: left;
  box-shadow: var(--blue-shadow-elevation-medium);
  min-width: 160px;
  position: absolute;
  top: 50px;
  padding: 0px;
}



ul.menu__submenu.menu__submenu--level-2.no-list
  li.menu__item.menu__item--depth-2 {
  font-size: 1rem;
  text-transform: lowercase;
  font-family: var(--font-medium);
  display: block;
  letter-spacing: 0.5px;
  height: unset;
  display: flex;
  align-items: center;
  background-color: transparent;
  padding: 0px 15px;
  width: 100%;
  border-radius: 0px;
  border-bottom: none;
}

ul.menu__submenu.menu__submenu--level-2.no-list
  li.menu__item.menu__item--depth-2
  a {
  color: white !important;
  border-bottom: none !important;
}

ul.menu__submenu.menu__submenu--level-2.no-list
  li.menu__item.menu__item--depth-2:hover {
  background: var(--blue-shade-regular);
}

ul.menu__submenu.menu__submenu--level-2.no-list
  li.menu__item.menu__item--depth-2:hover
  a {
  color: var(--white);
}

section {
  position: relative;
  padding: 100px 50px;
}

sup {
  text-transform: uppercase;
  font-family: var(--font-bold);
  font-size: 1rem;
  color: var(--gold);
}

.body-wrapper {
  padding-top: 85px;
  position: relative;
}

.body-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
}

.modal-overlay {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1010;
}

.form input {
  -webkit-appearance: none;
  appearance: none;
}

.form select {
  background-color: var(--white);
}

.form form fieldset {
  width: 100%;
  max-width: unset;
}

.form form input[type='text'],
input[type='email'],
input[type='tel'],
select,
textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 10px 10px 15px;
  outline: 2px solid var(--light-purple);
  border-radius: 5px;
  border: none;
}

.form form input::placeholder,
textarea::placeholder,
select:first-child {
  text-transform: uppercase;
  font-family: var(--font-medium);
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.4);
}

.form form input[type='text'],
input[type='email'],
input[type='tel'],
select,
textarea {
  color: var(--black);
  font-family: var(--font-medium);
}

.form form select.hs-input,
.form form textarea {
  width: 100% !important;
}

.form form input[type='submit'] {
  display: inline-block;
  line-height: 1.1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: var(--font-medium);
  padding: 10px 25px;
  border-radius: var(--stock-border-radius);
  text-decoration: none;
  background-color: var(--peach);
  color: var(--white);
  transition: var(--stock-transition-out);
  border: none;
  cursor: pointer;
}

.form form input[type='submit']:hover {
  box-shadow: var(--peach-shadow-elevation-low);
  transition: var(--stock-transition);
}

.form form input:focus,
.form form select:focus,
.form form textarea:focus {
  outline: 2px solid var(--blue);
}

.form form textarea {
  min-height: 150px;
}

.form form input.hs-input.invalid.error {
  outline: 2px solid var(--peach);
}

.form .hs_recaptcha {
  margin: 15px auto 25px auto;
}

.content-wrapper {
  min-height: 75vh;
}

.content-wrapper .error-page {
  position: relative;
  text-align: center;
  max-width: 50ch;
  margin: auto;
}

.content-wrapper .error-page h1 {
  margin-bottom: 20px;
}

.content-wrapper .accent {
  position: absolute;
  top: -50px;
  right: -150px;
  width: 500px;
  height: 500px;
  background-image: url(https://21009557.fs1.hubspotusercontent-na1.net/hubfs/21009557/website/assets/shapes/play%20triangle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.content-wrapper .swash,
.content-wrapper .swipe {
  position: absolute;
  bottom: 0px;
  left: -65px;
  width: 500px;
  height: 300px;
  background-image: url(https://21009557.fs1.hubspotusercontent-na1.net/hubfs/21009557/website/assets/shapes/wave-cobalt.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.systems-page--search-results {
  max-width: 1000px;
  margin: auto;
}

.systems-page--search-results h1 {
  padding-bottom: 25px;
}

.systems-page--search-results .hs-search-results {
  padding-top: 25px;
  border-top: 1px solid var(--light-purple);
}
.systems-page--search-results #hsresults {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hs-search-results__title {
  font-size: 1.5rem;
  color: var(--black);
  text-decoration: none;
  text-transform: lowercase;
  font-family: var(--font-regular);
}

.hs-search-results__title:hover {
  color: var(--peach);
}

.hs-search__no-results {
  font-size: 1.4rem;
}

.systems-page--search-results #hsresults .hs-search-results__description {
  margin-top: 20px;
}

.systems-page--search-results #hsresults .hs-search-results__description {
  font-family: var(--font-light);
}

@media (max-width: 1100px) {
  .header__menu ul {
    gap: 15px;
  }
}

@media (max-width: 875px) {
  .header__menu ul li:last-child {
    margin-top: 25px;
  }

  .header__menu ul li {
    justify-content: center;
  }

  .header__menu ul li a {
    width: 100%;
  }

  section {
    padding: 75px 50px;
  }
}

@media (max-width: 500px) {
  /* body {
    line-height: 1.1 !important;
  } */

  .header {
    padding: 15px;
    position: fixed;
    width: 100%;
    z-index: 10;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  section {
    padding: 50px 25px 75px 25px;
  }

  .header__logo {
    width: 175px;
  }
}
