/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* CSS variables */

:root {
  --gap: 2.127659574%;
}

.dnd-section.hero,
.hero{
  min-height: 100vh;  
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--gap));
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--gap));
  }

  .row-fluid .span9 {
    width: calc(75% - var(--gap));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--gap));
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--gap));
  }

  .row-fluid .span6 {
    width: calc(50% - var(--gap));
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--gap));
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--gap));
  }

  .row-fluid .span3 {
    width: calc(25% - var(--gap));
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--gap));
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--gap));
  }
}
body{
  background-color: #fdf7f2; 
  overflow-x: hidden;
  z-index: -1;
}

.body-container--services{
  position: relative; 
}

.body-container--services:before{
  background-image: url(https://www.novusagency.org/hubfs/website/services/Banner%20Bottom%20Shape%20Divider.png);
  left: 0;
  position: absolute;
  right: 0;
  top: 40vh;
  width: auto;
  height: auto;
  content: '';
  bottom: 0;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: 100% auto;
}

@media screen and (max-width: 800px){
  .body-container--services:before{
    display: none;
  }
}

.content-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

.dnd-section{
  position: relative; 
  scroll-snap-type: y mandatory;
  scroll-snap-align: start;
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 80px 20px;
}

.dnd-section > .row-fluid {
  max-width: 1240px;
  margin: 0 auto;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}


.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

.dnd-section > .row-fluid{
  margin: 0 auto;
  max-width: 1240px;
  position: relative;
  z-index: 4;
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-thin.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-thin.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-thin.ttf)  format('truetype'); /* Safari, Android, iOS */
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-thin-italic.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-thin-italic.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-thin-italic.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 100;
  font-style: italic;
}

/* Light */

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-light.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-light.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-light.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-light-italic.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-light-italic.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-light-italic.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 200;
  font-style: italic;
}

/* Regular */

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-regular.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-regular.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-regular.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-regular-italic.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-regular-italic.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-regular-italic.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 400;
  font-style: italic;
}

/* Medium */

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-medium.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-medium.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-medium.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-medium-italic.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-medium-italic.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-medium-italic.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 500;
  font-style: italic;
}

/* Demi-bold */

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-demi-bold.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-demi-bold.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-demi-bold.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-demi-bold-italic.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-demi-bold-italic.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-demi-bold-italic.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 600;
  font-style: italic;
}

/* Bold */

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-bold.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-bold.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-bold.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-bold-italic.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-bold-italic.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-bold-italic.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 700;
  font-style: italic;
}

/* Extra-bold */

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-extra-bold.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-extra-bold.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-extra-bold.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-extra-bold-italic.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-extra-bold-italic.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-extra-bold-italic.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 800;
  font-style: italic;
}

/* Heavy */

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-heavy.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-heavy.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-heavy.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Roxborough';
  src: url() format('embedded-opentype'), /* IE6-IE8 */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-heavy-italic.woff2) format('woff2'), /* Super Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-heavy-italic.woff) format('woff'), /* Pretty Modern Browsers */
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-heavy-italic.ttf)  format('truetype'), /* Safari, Android, iOS */
    url() format('svg'); /* Legacy iOS */
  font-weight: 900;
  font-style: italic;
}
//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/roxborough/roxborough-cf-bold-italic.svg

/* Freight Sans Font */

/* Light */

@font-face {
  font-family: 'Freight-Sans';
  src: url() format('embedded-opentype'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansLight.woff2) format('woff2'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansLight.woff) format('woff'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansLight.ttf) format('truetype'),
    url() format('svg');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Freight-Sans';
  src: url() format('embedded-opentype'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansLightItalic.woff2) format('woff2'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansLightItalic.woff) format('woff'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansLightItalic.ttf) format('truetype'),
    url() format('svg');
  font-weight: 200;
  font-style: italic;
}

/* Book (Regular) */

@font-face {
  font-family: 'Freight-Sans';
  src: url() format('embedded-opentype'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBook.woff2) format('woff2'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBook.woff) format('woff'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBook.ttf) format('truetype'),
    url() format('svg');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Freight-Sans';
  src: url() format('embedded-opentype'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBookItalic.woff2) format('woff2'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBookItalic.woff) format('woff'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBookItalic.ttf) format('truetype'),
    url() format('svg');
  font-weight: 400;
  font-style: italic;
}

/* Medium */

@font-face {
  font-family: 'Freight-Sans';
  src: url() format('embedded-opentype'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansMedium.woff2) format('woff2'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansMedium.woff) format('woff'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansMedium.ttf) format('truetype'),
    url() format('svg');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Freight-Sans';
  src: url() format('embedded-opentype'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansMediumItalic.woff2) format('woff2'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansMediumItalic.woff) format('woff'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansMediumItalic.ttf) format('truetype'),
    url() format('svg');
  font-weight: 500;
  font-style: italic;
}

/* Bold */

@font-face {
  font-family: 'Freight-Sans';
  src: url() format('embedded-opentype'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBold.woff2) format('woff2'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBold.woff) format('woff'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBold.ttf) format('truetype'),
    url() format('svg');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Freight-Sans';
  src: url() format('embedded-opentype'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBoldItalic.woff2) format('woff2'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBoldItalic.woff) format('woff'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBoldItalic.ttf) format('truetype'),
    url() format('svg');
  font-weight: 700;
  font-style: italic;
}


/* Black */

@font-face {
  font-family: 'Freight-Sans';
  src: url() format('embedded-opentype'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBlack.woff2) format('woff2'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBlack.woff) format('woff'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBlack.ttf) format('truetype'),
    url() format('svg');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Freight-Sans';
  src: url() format('embedded-opentype'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBlackItalic.woff2) format('woff2'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBlackItalic.woff) format('woff'),
    url(//382276.fs1.hubspotusercontent-na1.net/hubfs/382276/raw_assets/public/themes/novus_pathways/fonts/freight-sans/Freight-SansBlackItalic.ttf) format('truetype'),
    url() format('svg');
  font-weight: 900;
  font-style: italic;
}
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

body {
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

h1, h2, h3, h4, h5, h6{
  font-family: Roxborough;
  color: black;
  margin: 0 0 0.5rem;
}

h1, h3 {
  font-family: 'DM Serif Display', serif;
}

h4, h5, p {
  font-family: 'source-sans-pro', sans-serif;
}

h2, h6 {
  font-family: 'DM Serif Display', serif;
}

h1 {
   font-size: clamp(65px, 5.25vw, 130px); 
/*   font-size: 130px; */
  font-weight: 400;
  line-height: 1.08;
}

h2 {
  font-size: clamp(36px, 3.125vw, 56px);
  color: #12824A;
  font-weight: 600;
  line-height: 1.1667;
}

.subheading h2{
  
}

h3 {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.17;
}

h4{
  font-size: clamp(22px, 2vw, 32px);
  color: #000;
  font-weight: 600; 
}

h5 {
  font-weight: 600;
  font-style: normal;
  font-size: 19px;
  line-height: 1.6;
}

h6 {
  font-size: 17px;
  color: #000;
  font-weight: 400;
  line-height: 1.6;
}


body, p, ul, li{
  font-family: "source-sans-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(17px, 1.25vw, 20px);
}

p{
  line-height: 1.8;
}

a {
  color: black;
  text-decoration: none;
  border-bottom: 2px solid #17A05B;
  transition: all 0.2s ease;
  cursor: pointer;
}

a:hover {
  border: none;
/* background: rgba(23, 160, 91, 0.75); */
  color: white;
  transition: all 0.2s ease;
}

/* Lists */

ul, li{
  line-height: 1.6 !important;
}

li::marker{
  color: #18A05A;   
}

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}


/* Blockquotes */
blockquote {
  position: relative;
  margin-left: 20px;
  padding-left: 15px;
  border-left: solid 1px #C59B76;
}
blockquote * {
  font-size: 17px;
  font-style: italic;
  font-weight: 600;
}

blockquote.quote,
blockquote.quote *{
  position: relative; 
  margin-left: unset;
  padding-left: unset;
  border-left: 0px;
  font-style: normal;
  font-weight: 400;
}

blockquote.quote:before{
  content: '';
  display: block;
  position: absolute;
  height: 27px;
  width: 36px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36.7' height='27.3' viewBox='0 0 36.7 27.3'%3E%3Cpath id='Blockquote_Icon' data-name='Blockquote Icon' d='M10.9,58.2a7.42,7.42,0,0,1-5.95-2.65A10.37,10.37,0,0,1,2.7,48.6,18.223,18.223,0,0,1,6,38.15a21.044,21.044,0,0,1,8.2-7.25l.6,1.2a15.762,15.762,0,0,0-3.7,4.1,17.43,17.43,0,0,0-2.3,6.2l2.1.5a10.183,10.183,0,0,1,5.45,2.95A7.4,7.4,0,0,1,18.3,51a6.776,6.776,0,0,1-2.15,5.2A7.424,7.424,0,0,1,10.9,58.2Zm21.1,0a7.42,7.42,0,0,1-5.95-2.65A10.37,10.37,0,0,1,23.8,48.6a18.223,18.223,0,0,1,3.3-10.45,21.044,21.044,0,0,1,8.2-7.25l.6,1.2a15.762,15.762,0,0,0-3.7,4.1,17.43,17.43,0,0,0-2.3,6.2l2.1.5a10.183,10.183,0,0,1,5.45,2.95A7.4,7.4,0,0,1,39.4,51a6.776,6.776,0,0,1-2.15,5.2A7.424,7.424,0,0,1,32,58.2Z' transform='translate(-2.7 -30.9)'/%3E%3C/svg%3E%0A"); 
  top: -20px;
  left: -50px;
}

span[style*="text-decoration: line-through"]{
  opacity: 0.5; 
}




/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

.outline{
  color: transparent !important;
  text-shadow: -2px -2px #000 !important;
  -webkit-text-stroke-width: 0.75px;
  -moz-text-stroke-width: 0.75px;
  -webkit-text-stroke-color: green;
  -moz-text-stroke-color: green;
}

.their-story{
  position: relative;  
  white-space: nowrap;
}

.their-story svg{
  bottom: 0;
  height: 100%;
  left: 1px;
  position: absolute;
  right: 0;
  top: 8px;
  width: 100%;
}

.close{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  width: 32.5px;
  height: 32.5px;
  border-radius: 32.5px;
  cursor: pointer;
}

.close:after{
  content: url();
  width: 22.5px;
  height: 22.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 2476.947509765625px;
    stroke-dasharray: 2476.947509765625px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2476.947509765625px;
  }
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 2476.947509765625px;
    stroke-dasharray: 2476.947509765625px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2476.947509765625px;
  }
}
.svg-elem-1 {
  -webkit-animation: animate-svg-stroke-1 4s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
  animation: animate-svg-stroke-1 4s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

[class*='btn'] + [class*='btn']{
  margin-left: 20px !important; 
}

[class$='btn']{
  font-family: 'DM Serif Display', serif;
  font-weight: 700 !important;
  color: #fff;
  border: none !important;
  display: inline-block;
  line-height: 1;
  text-transform: lowercase !important;
  padding: 10px 22.5px 12.5px 22.5px;
  border-radius: 25px;
  position: relative;
  text-decoration: none;
  transition: all .2s ease;
  margin: 10px auto;
}

[class*='-btn'] {
  font-family: "DM Serif Display", serif;
  position: relative;
}

[class*='-btn'].arrow-down:after {
  background-image: url(https://www.novusagency.org/hubfs/right-arrow-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 20px;
  position: absolute;
  right: -14px;
  width: 10px;
  transition: 0.2s ease all;
}

[class*='-btn'].arrow-down:hover:after{
  bottom:-5px;
}

.arrow-right,
.arrow-down{
  font-family: 'source-sans-pro', sans-serif;
}

.arrow-down,
.arrow-right,
.arrow-right:hover,
.arrow-down:hover{
  background: unset; 
  border: 0px;
  color: #000;
}


[class$='blk-btn']{
  background: #000 !important;
}

[class$='green-btn'] {
  background: #12824A !important; 
}

[class$='green-btn']:hover,
[class$='blk-btn']:hover {
  background: #0F462D !important; 
}

[class$='underline'],
[class$='underline']:hover{
  font-family: "DM Serif Display", serif;
  font-weight: 700;
/*   padding-bottom: 5px; */
  transition: all 0.2s ease;
  position: relative;
  letter-spacing: 1px;
  display: inline-block;
  background: none !important;
  text-decoration: none;
  border-bottom: 1px solid #18A05A;
  margin: 10px auto;
}

[class*='blk-btn-underline'],
[class*='blk-btn-underline']:hover{
  color: #000 !important;
}

[class*='white-btn-underline'],
[class*='white-btn-underline']:hover{
  color: #fff;
}

[class*='outline-green-btn']{
  background: transparent !important;
  color: #fff;
  border: 1px #12824A solid !important;
}

[class*='outline-green-btn']:hover{
  background: #12824A !important;
}

[class*="outline-green-btn--secondary"] {
  color: #000;
  padding: 10px 22.5px 12.5px 22.5px;
  border-radius: 25px;
}

[class*="outline-green-btn--secondary"]:hover {
  color: #000;
  background-color: transparent !important;
  padding: 10px 22.5px 12.5px 22.5px;
  border-color: #C79C79 !important;
}

[class*='lg']{
  font-size: clamp(13px, 1.25vw, 20px);
}

[class*='md']{
  font-size: clamp(13px, 1.0625vw, 17px);
}

[class*='sm']{
  font-size: clamp(13px, 0.875vw, 14px);
}

@media screen and (max-width: 800px){
  [class*='btn'],
  [class*='btn']:hover{
    display: block; 
    width: fit-content;
    margin: 20px auto 20px 0px !important;
    margin-left: 0px !important;
  }
  [class*='btn'] + [class*='btn']{
    margin-left: 0px !important;
  }
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
form fieldset {
  max-width: 100% !important;
}

form fieldset.form-columns-1 .hs-input,
form fieldset.form-columns-2 .hs-input{
  width: 100% !important; 
}

form fieldset.form-columns-1 .input,
form fieldset.form-columns-2 .input{
  margin-right: clamp(10px, 2.5vw, 40px) !important; 
}


form input, form select, form textarea {
  font-family: Freight-Sans;
  border: unset;
  border-bottom: 1px solid #0F7140;
  background: transparent;
  color: #000;
  width: 100%;
  font-size: 16px;
  padding: 5px 8px;

}

form label {
  font-family: Freight-Sans;
  font-size: 16px;
  font-weight: 400;
}

form .input {
  margin: 5px 0 20px 0;
}

form .hs-error-msgs {
  display: block;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

form .hs-error-msgs > li {
  position: relative;
}

.hs-error-msg {
  font-size: 13px;
  font-family: Freight-Sans;
  color: red;
  position: absolute;
  bottom: 0px;
  font-weight: 400;
}

.hs-submit {
  display: block;
  width: auto;
  margin: 0 auto;
  margin-top: 25px;
}

form .hs-submit .actions {
  padding-bottom: 5px;
  transition: all 0.2s ease;
  position: relative;
  width: fit-content;
  margin: auto;
}

/* form .hs-submit .actions:before {
content: url('https://7069946.fs1.hubspotusercontent-na1.net/hubfs/7069946/Logos/cta-leaf.svg');
position: absolute;
top: -3px;
right: -15px;
opacity: 0;
transition: all 0.2s ease;
} */

/* form .hs-submit .actions:hover:before {
opacity: 1;
transition: all 0.2s ease;
} */

form input[type="submit"] {
  font-family: "DM Serif Display", serif !important;
  font-weight: 700 !important;
  color: #fff;
  display: inline-block;
  line-height: 1;
  text-transform: lowercase !important;
  padding: 10px 22.5px 12.5px 22.5px;
  border-radius: 25px;
  position: relative;
  text-decoration: none;
  transition: all .2s ease;
  margin: 10px auto;
  border: 1px solid #18A05A;
  cursor: pointer;
  transition: 0.2s ease all;
}

form input[type="submit"]:hover{
  background: #18A05A;
  background-color:#18A05A;
}


/* form .hs-submit .actions:hover input[type="submit"] {
letter-spacing: 2px;
transition: all 0.2s ease;
} */

/* form .hs-submit .actions:after {
content: '';
height: 2px;
display: block;
width: 100%;
margin: 0 auto;
background: black;
position: relative;
transition: all 0.2s ease;
} */

/* form .hs-submit .actions:hover:after {
height: 3px;
transition: all 0.2s ease
} */

[class*="novus-form-"] .hubspot-link__container {
  display: none;
}

[class*="novus-form-"] .hs-form-required {
  display: none;
}


[class*="novus-form-"] form fieldset {
  max-width: 100% !important;
}

[class*="novus-form-"] form input, [class*="novus-form-"] form select, [class*="novus-form-"] form textarea {
  width: 100%;
  border: 0px;
  font-size: 24px;
  padding: 5px 8px;
  font-family: Freight-Sans;
  background: transparent;
  color: white;
  border-radius: 0px;
  -webkit-appearance: none;
  outline: none;
  transition: all 0.2s;
  margin-top: 25px;
}

[class*="novus-form-"] form .hs-form-checkbox{
  list-style: none;
}

[class*="novus-form-"] form .hs-form-checkbox input[type='checkbox']{
  width: auto;
  margin: 10px 0px;
}

.novus-form-black form input, .novus-form-black form select, .novus-form-black form textarea {
  border-bottom: 1px solid black !important;
  color: black;
}

.novus-form-white form input, .novus-form-white form select, .novus-form-white form textarea {
  border-bottom: 1px solid #18A05A !important;
  color: white;
}

[class*="novus-form-"] form input:focus{
  margin-top: 25px;
}

[class*="novus-form-"] form input:valid{
  margin-top: 25px;
}

[class*="novus-form-"] form input:invalid{
  margin-top: 25px;
}

[class*="novus-form-"] form label {
  font-family: Roxborough;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.novus-form-black form label{
  color: black;
}

.novus-form-white form label{
  color: white;
}

[class*="novus-form-"] form .input {
  margin: -25px 0 25px 0;
  color: white;
}

.novus-form-black form .input{
  color: black;
}

.novus-form-white form .input{
  color: white;
}

[class*="novus-form-"] form .hs-error-msgs {
  display: block;
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-family: Freight-Sans;
  color: red;
}

[class*="novus-form-"] form .hs-error-msgs > li {
  position: relative;
}

[class*="novus-form-"] .hs-error-msg {
  font-size: 13px;
  font-family: Freight-Sans;
  color: red !important;
  position: absolute;
  bottom: 5px;
  font-weight: 700;
}

[class*="novus-form-"] .hs-submit {
  display: block;
  width: auto;
  margin: 0 auto;
  margin-top: 25px;
  text-align: center;
}

[class*="novus-form-"] form .hs-submit .actions {
  padding-bottom: 5px;
  transition: all 0.2s ease;
  position: relative;
  width: fit-content;
  margin: auto;
}

/* [class*="novus-form-"] form .hs-submit .actions:before {
content: url('https://7069946.fs1.hubspotusercontent-na1.net/hubfs/7069946/Logos/cta-leaf.svg');
position: absolute;
top: -3px;
right: -15px;
opacity: 0;
transition: all 0.2s ease;
}

[class*="novus-form-"] form .hs-submit .actions:hover:before {
opacity: 1;
transition: all 0.2s ease;
} */

[class*="novus-form-"] form input[type="submit"] {
  padding: 0 0 5px 0;
  font-family: Roxborough;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 1px;
  background: transparent;
  border: none;
  transition: all 0.2s ease;
  margin-top: 0px !important;
  border-bottom: 0px !important;
}

.novus-form-black form input[type="submit"]{
  color: black;
}

.novus-form-white form input[type="submit"]{
  color: white;
}
/* 
[class*="novus-form-"] form .hs-submit .actions:hover input[type="submit"] {
letter-spacing: 2px;
transition: all 0.2s ease;
}

[class*="novus-form-"] form .hs-submit .actions:after {
content: '';
height: 2px;
display: block;
width: 100%;
margin: 0 auto;
background: white;
position: relative;
transition: all 0.2s ease;
}
*/
/* .novus-form-black form .hs-submit .actions:after{
background: black;
}

.novus-form-white form .hs-submit .actions:after{
background: white;
}

[class*="novus-form-"] form .hs-submit .actions:hover:after {
height: 3px;
transition: all 0.2s ease
}
*/

[class*="novus-form-"] form {
  position: relative;
  display: block;
  max-width: 650px;
  margin: auto;
}

[class*="novus-form-"] form fieldset {
  flex: 1 0 50%;
}

[class*="novus-form-"] .form-columns-3 {
  display: flex;
  flex-direction: column;
}

[class*="novus-form-"] .form-columns-3 > div {
  width: 100% !important;
  float: none !important;
}

[class*="novus-form-"] .hs-message, .contact-form textarea {
  height: 100%;
}

[class*="novus-form-"] .hs-message .input {
  height: 80%;
}

[class*="novus-form-"] input, select, textarea {
  width: 100% !important;
}

[class*="novus-form-"] input[type="submit"] {
  width: auto !important;
  margin: auto;
}

@media (max-width: 768px) {
  .pointer {
    display: none !important;
  }
  [class*="novus-form-"]  form fieldset {
    flex: 1 0 100%;
  }
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

header{
  position: relative;
  z-index: 999; 
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
}

.header-container{
  width: min(1300px, 100%);
  margin: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.scroll-active{
  background: rgb(253,247,242,0.95);
}

.novus-header-wrapper .content-area {
  mix-blend-mode: difference;
}

.novus-header-wrapper .content-area a,
.novus-header-wrapper .content-area a:hover{
  text-decoration: unset;
  border-bottom: unset;
  background: transparent;
}

.novus-header-wrapper {
  position: relative;
  z-index: 20;
}


.novus-header-wrapper #novus-logo {
  transition: all 0.25s ease;
}

header.scroll-active .novus-header-wrapper #n,
.novus-header-wrapper #novus-logo.black #n {
  fill: black;
}

.novus-header-wrapper #novus-logo {
  left: 25px;
  transform: translateX(0%);
  transition: all 0.25s ease;
}

.novus-header-wrapper #ovus {
  opacity: 1;
  transition: all 0.25s ease;
}



.scroll-active .novus-header-wrapper #ovus {
  opacity: 0;
  transition: all 0.25s ease;
}

.header-mid-content{
  opacity: 0;
  transition: 0.2s ease all;
}

.header-mid-content > * {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
}

.scroll-active .header-mid-content{
  opacity: 1;
}

@media screen and (max-width: 800px){
  .header-mid-content{
    display: none;
  }
  header .menu{
    display: none; 
  }
  header #ovus{
    display: none; 
  }
}
.footer{
  background: #000;
  scroll-snap-stop: always;
  scroll-snap-align: end;
}

.footer hr{
  color: #5b5c5c;
  width: min(1200px, 95%);
  margin: 0px auto;
  text-align: center;
  opacity: 0.5;
}

.footer a,
.footer a:hover{
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-family: source-sans-pro,sans-serif;
  border-bottom: 0px;
  text-decoration: unset;
  background: unset;
}

.footer a:not(.social):after{
  content: '';
  display: block;
  position: absolute;
  right: -30px;
  top: 7px;
  width: 20px;
  height: 10px;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.364' height='9.228' viewBox='0 0 18.364 9.228'%3E%3Cg id='right-arrow-icon' transform='translate(0 -127.369)'%3E%3Cg id='Group_666' data-name='Group 666' transform='translate(0 127.369)'%3E%3Cpath id='Path_201' data-name='Path 201' d='M18.243,131.689h0l-4.174-4.174a.417.417,0,1,0-.588.588l3.46,3.464H.417a.417.417,0,0,0,0,.835H16.941l-3.46,3.46a.417.417,0,1,0,.588.588l4.174-4.174A.417.417,0,0,0,18.243,131.689Z' transform='translate(0 -127.369)' fill='%2300a15e'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  transition: 0.2s ease-out;
} 

.footer a.social:before{
  display: none !important;
}

.footer a:hover:after{
  right: -40px;
}

.footer a:before {
  content: '';
  display: block;
  position: absolute;
  right: -44px;
  top: -3px;
  height: 27px;
  width: 27px;
  border: solid #C79C79 1px;
  border-radius: 100px 100px 0 0;
  opacity: 0;
  transition: 0.2s ease-out;
}

.footer a:hover:before {
  opacity: 100;
}

.footer :is(h1, h2, h3, h4, h5, h6, p, a){
  color: #fff;
}

.footer :is(h1, h2, h3, h4, h5, h6, p){
  margin-top: 0px;
  margin-bottom: 10px; 
}

.footer h5{
  font-family: "DM Serif Display",serif;
  color: #fff;
}

.footer__logo a{
  border-bottom: 0px;
}

.footer__logo a:hover{
  border: none;
  background: unset;
}

.footer__logo a:after{
  content: '';
  display: none;
}

.footer__links [class$='underline']{
  margin-left: 20px; 
}

@media screen and (max-width: 800px){
  .footer__container{
    display: block;
    text-align: center;
  }
  .footer__links [class$=underline]{
    margin: 10px auto !important;
    text-align: center;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

.black-bg-curved:before,
.black-bg-curved-reverse:before {
  background-color: #000;
  border-radius: 1000px 0 0 1000px;
  bottom: 0;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 87.5vw;
  z-index: 1;
}

.black-bg-curved-reverse:before {
  right: auto;
  border-radius: 0px 1000px 1000px 0;
  left: 0;
}

.hero.black-bg-curved-reverse:before,
.hero.black-bg-curved:before{
  width: 80.5vw;
}

@media (max-width: 1024px) {
  /* Make curved bg mobile styles kick in at 1024px */
  .black-bg-curved--1024-mobile:before {
    top: unset;
    top: 50%;
    transform: translateY(-50%);
    width: 100vw !important;
    height: 100%;
    border-radius: 0 60vw 60vw 0;
  }
} 

@media screen and (max-width: 800px){
  .black-bg-curved:before,
  .black-bg-curved-reverse:before{
    top: unset;
    top: 50%;
    transform: translateY(-50%);
    width: 100vw !important;
    height: 100%;
    border-radius: 0 60vw 60vw 0;
  }

  .hero.black-bg-curved-reverse:before,
  .hero.black-bg-curved:before{
    height: 100%;
  }
}

.z-index-overlay {
  position: relative;
  z-index: 10;
}

.tan-arch:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1366.616' height='658.005' viewBox='0 0 1366.616 658.005'%3E%3Cpath id='Banner_Bottom_Shape_Divider' data-name='Banner Bottom Shape Divider' d='M1990-6092.318s565.425-602.845,1057.728-653.714c108.451-11.206,213.6,4.519,308.272,59.67' transform='translate(-1989.635 6749.981)' fill='none' stroke='%23c59b76' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  height: 660px;
  left: 0px;
  position: absolute;
  right: 0;
  width: 107%;
  z-index: 3;
}

.tan-arch-adjust:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1366.616' height='658.005'%3E%3Cpath fill='none' stroke='%23c59b76' d='M.365 657.663S565.79 54.818 1058.093 3.949c108.451-11.206 213.6 4.519 308.272 59.67' data-name='Banner Bottom Shape Divider'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  /* height: 660px; */
  left: 0;
  position: absolute;
  right: 0;
  width: 107%;
  z-index: 3;
  top: -130px;
  right: 0;
  height: 200%;
}

.row-front .row-fluid {
  position: relative;
  z-index: 4;
}

.row-back .row-fluid {
  z-index: 2;
}
.tracing-line {

}