/* 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
*/

/* Brand Colors */



























/* Text Colors */


/* Background Colors */









/* Fonts */




/* 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;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * 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
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* 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 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

::selection {
  background: rgba(250, 93, 0, 30%); /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: rgba(250, 93, 0, 30%); /* Gecko Browsers */
}

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

/* Main */

main {
    padding-top: 90px;
}

@media (max-width: 850px) {
    main {
        padding-top: 65px;
    }
}

/* Basic Layout Components */

section > .content-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}

section > .content-wrapper.first-wrapper {
  padding-top: 60px;
}

section > .content-wrapper.reduced-padding {
  padding-top: 75px;
  padding-bottom: 75px;
}

section > .content-wrapper.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 850px) {
  section > .content-wrapper {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  section > .content-wrapper.first-wrapper {
    padding-top: 65px;
  }

  section > .content-wrapper.reduced-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}



/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}


.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 850px) {
    .row-fluid {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 850px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680850063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 850px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 850px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}

/* Flexbox */

.flex {
	display: flex;
}

@media screen and (max-width: 850px) {
	.flex {
		flex-direction: column;
	}
}

.flex-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-left: -1.5%;
	margin-right: -1.5%;
}

.flex-row.no-spacing {
  margin-left: 0;
  margin-right: 0;
}

.flex-row.no-spacing .flex-col {
  padding: 0;
  flex-basis: 50%;
}

.flex-row.no-spacing .flex-col.flex-col-left {
  padding-right: 40px;
}

@media screen and (max-width: 850px) {
	.flex-row {
		flex-direction: column;
	}
}

.flex-col {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0 1.5%;
}

@media screen and (max-width: 850px) {
	.flex-col {
		padding: 15px 1.5%;
	}
}

.flex-row.flex-row-2 {
  margin-left: -2%;
  margin-right: -2%;
}

.flex-row.flex-row-2 .flex-col {
  padding-left: 2%;
  padding-right: 2%;
}

.flex-row-1-3 .flex-col {
  flex-basis:33.33%;
  min-width: 0;
}

.flex-row-1-3 .flex-col.col-large {
  flex-basis:66.66%;
  min-width: 0;
}

.flex-row-1-4 .flex-col {
  flex-basis:25%;
  min-width: 0;
}

.flex-row-1-4 .flex-col.col-large {
  flex-basis: 75%;
  min-width: 0;
}

@media all and (-ms-high-contrast: none) {
	.flex-col {
		align-items: stretch;
	}
}

.flex-direction-row {
	flex-direction: row;
}

.flex-direction-column {
	flex-direction: column;
}

.flex-reverse-order {
	order: -1;
}

@media screen and (max-width: 850px) {
	.flex-reverse-order {
		order: 0;
	}
}

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

.justify-space-between {
	justify-content: space-between;
}

.align-items-start {
	align-items: flex-start;
}

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

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

.align-items-stretch {
	align-items: stretch;
}


/* Responsive Images */

.responsive-image {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 850px) {
  .desktop-only {
    display: none;
  }
}

/* HubSpot Editor Layout Overrides */

.hs_cos_wrapper_type_image {
  font-size: 0;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}

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

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 20px;
}

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

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

@font-face{
  font-family: "MuotoWeb";
  font-style: normal;
  font-weight: 600;
  src: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/fonts/muoto/muoto-medium.woff2') format("woff2");
}

@font-face{
  font-family: "MuotoWeb";
  font-style: normal;
  font-weight: 500;
  src: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/fonts/muoto/muoto-regular.woff2') format("woff2");
}

@font-face{
  font-family: "MuotoWeb";
  font-style: italic;
  font-weight: 500;
  src: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/fonts/muoto/muoto-italic.woff2') format("woff2");
}

@font-face{
  font-family: "MuotoWeb";
  font-style: normal;
  font-weight: 400;
  src: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/fonts/muoto/muoto-light.woff2') format("woff2");
}

@font-face{
  font-family: "MuotoWeb";
  font-style: italic;
  font-weight: 400;
  src: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/fonts/muoto/muoto-light-italic.woff2') format("woff2");
}

@font-face{
  font-family: "Monarch";
  font-style: normal;
  font-weight: 500;
  src: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/fonts/monarch/monarch.woff2') format("woff2");
}

@font-face{
  font-family: "MuotoWeb";
  font-style: normal;
  font-weight: 700;
  src: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/fonts/muoto/muoto-bold.woff2') format("woff2");
}

@font-face{
  font-family: "MuotoWeb";
  font-style: normal;
  font-weight: 900;
  src: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/fonts/muoto/muoto-black.woff2') format("woff2");
}

/* Font Variables */









body {
  line-height: 1.4;
  word-break: break-word;
  text-wrap: pretty;
}

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

/* Paragraphs */

p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1.4rem;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


p.large-type {
  font-size: 1.1rem;
}

.extra-lead {
  line-height: 1.5;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
  color: rgba(250, 93, 0, 100%);
}

a:hover,
a:focus {
  text-decoration: underline;
}

a.orange-link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  display: inline-block;
  transition: border 0.2s;
}

a.orange-link:hover {
  border-color: rgba(250, 93, 0, 100%);
}

a.icon-link {
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  color: rgba(29, 30, 28, 100%);
}

a.icon-link img {
  opacity: 0.8;
}

a.icon-link span {
  border-bottom: 1px solid rgba(29, 30, 28, 20%);
  color: rgba(29, 30, 28, 80%);
  margin-left: 5px;
  transition: all 0.2s;
  top: -7px;
  padding-bottom: 2px;
  position: relative;
}

a.icon-link:hover span {
  color: rgba(29, 30, 28, 100%);
  border-color: rgba(29, 30, 28, 100%);
}

a.text-link {
  border-bottom: 1px solid rgba(29, 30, 28, 20%);
  color: rgba(29, 30, 28, 60%);
  transition: all 0.2s;
  position: relative;
  font-size: 16px;
}

.text-link-current {
  color: rgba(29, 30, 28, 60%);
  transition: all 0.2s;
  font-size: 16px;
  cursor: default;
}

a.text-link:hover,
a.text-link:focus {
  color: rgba(29, 30, 28, 100%);
  border-color: rgba(29, 30, 28, 100%);
  text-decoration: none;
}



/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  line-height: 1.2;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h3 {
  line-height: 1.3;
}
h4 {
  line-height: 1.5;
}

h1.hero-headline {
  font-family: "Monarch", "Georgia", "Times New Roman", serif;
  font-size: 75px;
  text-indent: -3px;
  margin-left: -2px;
  margin-bottom: 20px;
}

.sponsorship-landing .intro h1 {
  font-family: "Monarch", "Georgia", "Times New Roman", serif;
}

@media (max-width: 850px) {
  /* using #main-content to elevate specificity without resorting to !important for mobile */
  #main-content h1 {
    font-size: 43px;
  }

  #main-content h1.hero-headline {
    font-size: 56px;
  }

  #main-content h2 {
    font-size: 36px;
  }

  #main-content h3 {
    font-size: 28px;
  }

  #main-content h4 {
    font-size: 24px;
  }
}

h2 strong {
  font-weight: 400;
  color: rgba(250, 93, 0, 100%);
}

.subheading {
  font-weight: 400;
}

.eyebrow {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: rgba(250, 93, 0, 100%);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;
}

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

/* Font Modifiers */

.small-text,
.small-text p {
  font-size: 18px;
}

.light-text {
  color: rgba(29, 30, 28, 60%);
}

.orange-text {
  color: rgba(250, 93, 0, 100%);
}

.white-text {
  color: #fff;
}

.green-text {
  color: #21A5A0;
}

.blue-text {
  color: #3d9dc1;
}

.red-text {
  color: #cb5c5b;
}

.yellow-text {
  color: #f18d2a;
}

.medium-text {
  color: rgba(29, 30, 28, 60%);
}

/* Lists */

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

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

ul.no-list {
  list-style: none;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  margin-bottom: 10px;
}
.bullet-list li:before {
  content: "—";
  color: rgba(250, 93, 0, 100%);
  padding-right: 10px;
  position: relative;
  top: -2px;
}

/* Blockquotes */

blockquote {
  margin: 0;
}

blockquote p {
  font-size: 30px;
  font-weight: 400;
  position: relative;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  text-indent: 24px;
}

blockquote p:before {
  content: "";
  position: absolute;
  font-size: 140%;
  top: 12px;
  left: 0;
  width: 17px;
  height: 13px;
  background-image: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/images/icons/quote-open.svg');
  background-repeat: no-repeat;
}
blockquote p:after {
  content: "";
  position: absolute;
  font-size: 140%;
  margin-top: 10px;
  margin-left: 5px;
  width: 17px;
  height: 13px;
  background-image: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/images/icons/quote-close.svg');
  background-repeat: no-repeat;
}

.quote-container p {
  margin-bottom: 0;
}

@media (max-width: 850px) {
  blockquote p {
    font-size: 24px;
    line-height: 1.3;
  }

  blockquote p:before {
    top: -3px;
  }
  blockquote p:before {
    margin-top: 6px;
  }
}

/* Horizontal rules */

hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}

/* Image alt text */

img {
  font-size: 14px;
  word-break: normal;
}

/* Font Smoothing */

.font-smoothing {
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nowrap {
  white-space: nowrap;
}

@media (max-width: 850px) {
  .nowrap {
    white-space: normal;
  }
}


/* Details */

.headline-indent-fix {
  text-indent: -2px;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: background 0.15s linear;
  white-space: normal;
}

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

button:hover,
button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

button:active,
.button:active,
.hs-button:active {
  filter: brightness(0.8);
  text-decoration: none;
  transition: none;
}

.button,
.hs-button {
  background-color: rgba(29, 30, 28, 100%);
  border: 1px solid rgba(29, 30, 28, 100%);
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0 0 0 / 20%);
  box-sizing: border-box;
  color: rgba(255, 248, 241, 100%);
  cursor: pointer;
  display: inline-block;
  font-family: "MuotoWeb", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 22px 14px;
  position: relative;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 850px) {
  .button {
    width: 100%;
  }
}

.button-small {
  font-size: 16px;
  padding: 10px 15px;
}

.button:hover,
.button:focus,
.hs-button:hover,
.hs-button:focus {
  background-color: rgba(29, 30, 28, 90%);
  text-decoration: none;
  border-color: rgba(29, 30, 28, 90%);
}

.button-trial,
.hs-button.primary {
  background-color: rgba(250, 93, 0, 100%);
  border-color: rgba(250, 93, 0, 100%);
}


.button-trial:hover,
.button-trial:focus,
.hs-button.primary:hover,
.hs-button.primary:focus {
  background-color: rgba(250, 93, 0, 90%);
  border-color: rgba(250, 93, 0, 90%);
}


.button-secondary {
  color: rgba(29, 30, 28, 100%);
  border-color: rgba(29, 30, 28, 80%);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus {
  background: rgba(29, 30, 28, 20%);
}

.button-trial-secondary {
  color: rgba(250, 93, 0, 100%);
  border-color: rgba(250, 93, 0, 100%);
  background: transparent;
  box-shadow: none;
}

.button-trial-secondary:hover,
.button-trial-secondary:focus {
  background: rgba(250, 93, 0, 20%);
}

.button-white:hover,
.button-empty:focus {
  background: #ffffff40;
}

.button-white:active {
  background: #ffffff60;
  transition: none;
}

.button-white {
  border-color: #fff;
  color: #fff;
}

.button-arrow,
.button-arrow:hover,
.button-arrow:focus,
.button-arrow:active  {
  background-image: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/images/icons/arrow-right-small-white.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}

.button-primary {
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #188433;
  border: 1px solid #188433;
  color: #fff;
  font-size: 18px;
}

.button-primary:hover,
.button-primary:focus {
  background: #11742a;
  border: 1px solid #11742a;
  color: #fff;
}

.button-pill,
.button-pill:hover,
.button-pill:focus,
.button-pill:active  {
  color: rgba(0,0,0, 0.6);
  box-shadow: none;
  border-width: 2px;
  border-color: rgba(0,0,0, 0.15);
  border-radius: 50px;
  background: #ffffff url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/images/icons/arrow-right-small-orange.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-left: 20px;
  padding-right: 38px;
}

.button-pill:hover {
  background-color: rgba(0,0,0, 0.05);
}

.button-pill:active {
  background-color: rgba(0,0,0, 0.1);
  transition: none;
}
/* Form fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  background-color: #FFF;
  border: 1px solid #BBBBBB;
  border-radius: 3px;
  display: inline-block;
  font-size: 0.875rem;
  padding: 14px 22px;
  width: 100%;
  font-weight: 500;
}

form textarea {
  padding: 22px;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table Cells */

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
}

/* Table Header */

thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
}

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

/* Header - Theme Settings */



/* Header - HubSpot Overrides */

.submenu.level-1 {
  font-size: 0;
}
#hs_cos_wrapper_navigation-primary {
  font-size: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 90px;
  align-items: center;
}

.header-wrapper {
  padding: 0 20px;
}

.header__row-1 {
  padding-top: 20px;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.logo-mobile {
  display: none;
}

@media (max-width: 850px) {
  .logo-mobile {
    display: block;
  }
  .logo-desktop {
    display: none;
  }
  .header {
    padding-bottom: 65px;
  }

  .header-wrapper {
    position: fixed;
    width: 100%;
    background: rgba(29, 30, 28, 100%);
    transition: all 0.2s;
  }
  .header__container {
    flex-direction: column;
    align-items: stretch;
    height: 65px;
    border-color: transparent;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 30px;
  }
}


/* Header - Main Styles */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: all 0.2s;
  font-family: "MuotoWeb", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 1000;
}

header.add-shadow {
  background: #fff;
  box-shadow: 0 1px 3px #00000020;
  transition: all 0.2s;
}

.add-shadow .header__container {
  border-color: transparent;
  transition: all 0.2s;
}

header .navigation-primary a,
header .header__logo,
header .nav-sign-up,
header .header-actions a {
  transition: color 0.2s, background 0.2s;
}

header.add-shadow .navigation-primary a,
header.add-shadow .header__logo,
header.add-shadow .nav-sign-up,
header.add-shadow .header-actions a {
  transition: color 0.2s, background 0.2s;
}


/* Header - First Row */
.row-number-1 {
  padding-top: calc(100px + 140px) !important;
  margin-top: -140px;
}
@media (max-width: 850px) {
  .row-number-1 {
    padding-top: calc(100px + 100px) !important;
    margin-top: -120px;
  }
}


/* Header - Navigation */


.navigation-primary a {
  line-height: 32px;
}

.navigation-primary a,
.header-actions a {
  font-size: 17px;
  font-weight: 500;
  margin: 0 20px 0 0;
  transition: background 0.2s;
  text-decoration: none;
  box-sizing: border-box;
  color: rgba(29, 30, 28, 100%);
}

.navigation-primary a:hover,
.header-actions a:hover,
.navigation-primary a.active-item {
  color: rgba(250, 93, 0, 100%);
}

.navigation-primary a.active-item {
  color: rgba(250, 93, 0, 100%);
  border-bottom: 1px solid rgba(250, 93, 0, 100%);
  padding-bottom: 2px;
}

.navigation-primary a:focus,
.header-actions a:focus {
  color: rgba(250, 93, 0, 100%);
}

.navigation-primary a:active,
.header-actions a:active {
  transition: none;
  color: rgba(250, 93, 0, 100%);
}

@media (max-width: 1025px) {
  .navigation-primary a,
  .header-actions a {
    font-size: 14px;
  }
}
@media (max-width: 915px) {
  .navigation-primary a,
  .header-actions a {
    font-size: 14px;
  }

  .header-actions a.nav-sign-up {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 850px) {
  .navigation-primary a {
    padding: 15px 10px;
    color: rgba(255, 248, 241, 100%);
    margin: 0;
    transition: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255, 15%);
  }

  .navigation-primary {
    border-top: 1px solid rgba(255,255,255, 15%);
    margin-top: 20px;
    -webkit-font-smoothing: antialiased;
  }

  .header-actions a {
    background: rgba(255, 255, 255, 10%);
    border-radius: 10px;
    color: rgba(255, 248, 241, 100%);
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
  }

  .navigation-primary a:hover,
  .navigation-primary a:focus,
  .navigation-primary a.active-item {
    background: rgba(255, 255, 255, 5%);
    color: #fff;
    border-color: rgba(255,255,255, 15%);
  }

  .navigation-primary a:active,
  .header-actions a:active {
    background: rgba(255, 255, 255, 5%);
    color: #fff;
  }

  .header-actions-mobile a {
    margin: 0 1%;
  }

  .header-actions a {
    display: block;
  }
}





/* Trial Button */

.header-actions a.nav-sign-up {
  margin-left: 8px;
  font-weight: 600;
  font-size: 19px;
  padding: 12px 20px;
  color: rgba(255, 248, 241, 100%);
  margin: 0;
}


/* Navigation Skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: 25px;
  color: rgba(250, 93, 0, 100%);
  padding-right: 25px;
  border-right: 1px solid rgba(29,30,28,7%);
  padding-top: 5px;
  padding-bottom: 7px;
}

.header__logo a,
.header__logo a:hover,
.header__logo a:active,
.header__logo a:focus {
  color: rgba(250, 93, 0, 100%);
  font-size: 0;
  border: 0;
}

.header__logo img {
  max-width: 100%;
  color: rgba(250, 93, 0, 100%);
}

.header__logo .logo-company-name {
  font-size: 28px;
  margin-top: 7px;
}


@media (max-width: 1000px) {
  .forecast-logo {
    max-width: 200px;
  }
}

@media (max-width: 950px) {
  .header__logo {
    padding-right: 20px;
    margin-right: 0;
    border-right: 0;
  }
}


@media (max-width: 500px) {
  .forecast-logo {
    max-width: 180px;
  }
}

/* Actions */

.header-actions-desktop {
  align-items: center;
  display: flex;
  height: auto;
  margin-left: auto;
  min-width: 200px;
  justify-content: flex-end;
}

.header-actions-mobile {
  display: flex;
  margin: 35px -1% 0;
}

.header-actions-mobile a {
  flex: 1;
  text-align: center;
}

.mobile-app-downloads {
  text-align: center;
  color: #fff;
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  font-size: 18px;
}
.mobile-app-downloads .download-buttons {
  display: flex;
  justify-content: space-between;
  margin: 10px -1% 0;
}

.mobile-app-downloads .download-buttons a {
  background: rgba(255,255,255,10%);
  border-radius: 10px;
  color: #fff;
  margin: 0 1%;
  padding: 10px;
  text-decoration: none;
  width: 49%;
  font-family: "MuotoWeb", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.mobile-app-downloads img {
  filter: invert(1);
  display: inline-block;
  position: relative;
  margin-right: 4px;
  position: relative;
  top: -3px;
  vertical-align: middle;
}

@media (min-width: 850px) {
  .header-actions-mobile {
    display: none;
  }
  .mobile-app-downloads {
    display: none;
  }
}

@media (max-width: 850px) {
  .header-actions-desktop {
    display: none;
  }

  .hs-tools-menu {
    display: none !important;
  }

  .header__logo {
    top: 12px;
    margin-right: 0;
    position: relative;
    color: #fff;
    z-index: 3;
  }
  .header__logo a,
  .header__logo a:hover,
  .header__logo a:active,
  .header__logo a:focus {
    color: rgba(255, 248, 241, 100%);
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 850px) {
  .header__navigation {
    display: none;
    width: 100%;
    padding-top: 200px;
    margin-top: -200px;
  }

  .header__navigation.open {
    background-color: rgba(29, 30, 28, 100%);
    display: block;
    height: 200%;
    left: 0;
    position: fixed;
    right: 0;
    top: 65px;
    z-index: 2;
    padding: 200px 20px 20px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1)
  }

  .header__navigation--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    top: 0;
    left: 0;
    z-index: 100;
    position: relative;
    background-repeat: no-repeat;
  }

  .header__navigation--toggle.hide {
    display: none;
    font-size: 26px;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle {
    background-image: url("data:image/svg+xml,%3Csvg height='12' width='13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m0 0h13v2h-13zm0 5h13v2h-13zm0 5h13v2h-13z' fill='%23fff' fill-rule='evenodd'/%3E%3C/svg%3E%0A");
    background-size: 13px 12px;
    background-repeat: no-repeat;
    padding: 8px 10px 7px 30px;
    background-position: 9px center;
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .toggle-button {
    position: relative;
    top: -28px;
    margin: 0;
    float: right;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    outline: inherit;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
  }

  .toggle-button:active {
    background-color: rgba(255, 255, 255, 0.3);
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url("data:image/svg+xml,%3Csvg height='12' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-rule='evenodd'%3E%3Cpath d='m11.657 1.757-9.9 9.9-1.414-1.414 9.9-9.9z'/%3E%3Cpath d='m1.757.343 9.9 9.9-1.414 1.414-9.9-9.9z'/%3E%3C/g%3E%3C/svg%3E");
    display: none;
    margin-right: 0;
    background-size: 13px 12px;
    background-repeat: no-repeat;
    padding: 8px 10px 7px 30px;
    background-position: 10px center;
  }

  .header__close--toggle.show {
    display: block;
  }
}

@media (min-width: 850px) {
  .toggle-button {
    display: none;
  }
}

@media (max-width: 850px) and (max-height: 550px) {
  .submenu.level-1 {
    display: flex !important;
  }
  .navigation-primary .menu-item {
    text-align: center;
  }
  .mobile-app-downloads {
    border-top: 1px solid rgba(255,255,255,15%);
    padding-top: 10px;
    font-size: 16px;
  }
}

@media (max-width: 850px) and (max-height: 375px) {
  .navigation-primary {
    margin-top: 10px;
  }
  .header-actions-mobile {
    margin-top: 20px;
  }
  .submenu.level-1>li>a {
    padding: 10px !important;
  }

  a.menu-link,
  .header-actions-mobile a,
  .mobile-app-downloads .download-buttons a {
    font-size: 15px;
  }

  .mobile-app-downloads img {
    top: 0;
  }
}

@media (max-width: 330px) {
  a.menu-link,
  .header-actions-mobile a,
  .mobile-app-downloads .download-buttons a {
    font-size: 15px;
  }

  .mobile-app-downloads img {
    top: 0;
  }
}
/* Footer Nav */

.footer {
  font-size: 18px;
  color: #fff;
  padding: 100px 0 50px;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: rgba(255, 248, 241, 100%);
}

.logo-col {
  flex: 2;
}

.menu-col {
  flex: 3;
}

.footer-navigation.flex-row {
  align-items: flex-start;
}

.footer-navigation-menu a,
.footer-social a {
  color: rgba(255, 248, 241, 100%);
  padding-bottom: 1px;
  transition: color 0.2s, border 0.2s;
}

.footer-navigation-menu a:hover,
.footer-navigation-menu a:focus,
.footer-social a:hover,
.footer-social a:focus {
  text-decoration: none;
  color: rgba(250, 93, 0, 100%);
}

.footer .hs-menu-wrapper > ul {
  display: flex;
  justify-content: space-between;
  padding-right: 70px;
}

.footer-navigation-menu {
  padding-right: 60px;
}

.footer-navigation-menu > span {
  width: 100%;
}

.footer-navigation {
  margin-bottom: 50px;
}

.forecast-link,
.product-link {
  width: 100%;
  display: block;
  text-align: center;
  border: 1px solid rgba(255, 248, 241, 10%);
  border-radius: 16px;
  padding: 10px 20px;
  color: rgba(255, 248, 241, 60%);
  transition: background 0.2s;
  font-size: 16px;
  margin-bottom: 5px;
}

.forecast-link:hover,
.forecast-link:focus,
.product-link:hover,
.product-link:focus {
  background-color: rgba(255, 248, 241, 5%);
  text-decoration: none;
}

.footer-bottom {
  padding-top: 10px;
}

.footer-social {
  float: right;
}

.footer-social a {
  display: inline-block;
  margin-left: 30px;
  white-space: nowrap;
  color: rgba(255, 248, 241, 60%);
}

.footer-social a:hover {
  text-decoration: none;
  color: rgba(250, 93, 0, 100%);
  border: none;
}

.footer-social svg {
  display: inline-block;
  margin: -2px 8px 0 0;
  vertical-align: middle;
}


.footer .hs-menu-depth-1 > a,
.footer .hs-menu-depth-1 > a:hover,
.footer .hs-menu-depth-1 > a:active,
.footer .hs-menu-depth-1 > a:focus {
  text-decoration: none;
  color: #fff;
  cursor: default;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  border: none;
  padding-bottom: 0;
}

.footer .hs-menu-depth-2 {
  margin-bottom: 7px;
}


.footer .copyright {
  color: rgba(255, 248, 241, 100%);
  font-size: 14px;
}

#copyright-menu-wrapper .hs-menu-wrapper {
  display: inline-block;
  font-size: 14px;
}

#copyright-menu-wrapper .hs-menu-wrapper ul[role=menu] {
  margin: 0 0 0 10px;
  justify-content: flex-start;
  padding-right: 5px;
  padding-left: 0;
}

#copyright-menu-wrapper .hs-menu-wrapper ul[role=menu] li {
  border-left: 1px solid rgba(255, 248, 241, .2);
}

#copyright-menu-wrapper .hs-menu-wrapper ul[role=menu] li a {
  color: rgba(255, 248, 241, .8);
  padding: 0 10px;
  margin-bottom: 0;
  font-weight: 500;
}

#copyright-menu-wrapper .hs-menu-wrapper ul[role=menu] li a:hover,
#copyright-menu-wrapper .hs-menu-wrapper ul[role=menu] li a:focus,
#copyright-menu-wrapper .hs-menu-wrapper ul[role=menu] li a:active {
  color: rgba(250, 93, 0, 100%);
  cursor: pointer;
  opacity: 1;
  transition: color 0.2s, opacity 0.2s;
}

.hs-menu-depth-2 a:hover {
  color: rgba(250, 93, 0, 100%);
}

.footer .footer-forecast-cta {
  padding: 10px 0 10px 30px;
  border: 1px solid rgba(255, 248, 241, .2);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, .05);
  transition: background-color 0.2s;
  margin-right: 10px;
}

.footer .footer-forecast-cta:hover {
  background-color: rgba(255, 255, 255, .07);
}

.fc-cta-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #FFF;
  padding: 0;
}

.footer .footer-forecast-cta a {
  text-decoration: none;
}

.footer .footer-forecast-cta a:hover {
  text-decoration: none;
}

.fc-cta-text {
  flex: 1 0 50%;
  color: #FFF;
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: 200px;
}

.fc-cta-image {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
} 

.fc-cta-image img {
  max-width: 110%;
  height: auto;
  position: relative;
  left: 0;
  max-height: 300px;
}

.footer .fc-cta-text h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .5);
}

.footer .fc-cta-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFF;
}

.footer .fc-cta-text p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.26;
}

.footer p.fc-cta-text-link {
  color: rgba(250, 93, 0, 100%);
  margin-bottom: 0;
}

.fc-cta-text .arrow-right svg {
  transition: transform 0.2s;
  transform: rotate(90deg) translateY(0) translateX(-1px);
}

.footer-forecast-cta:hover .arrow-right svg {
  transform: rotate(90deg) translateY(-5px) translateX(-1px); 
}


@media screen and (max-width: 1050px) {
  #copyright-menu-wrapper {
    flex-direction: column;
    display: flex;
  }

  #copyright-menu-wrapper .hs-menu-wrapper {
    margin-top: 4px;
  }

  #copyright-menu-wrapper .hs-menu-wrapper ul[role=menu] {
    flex-direction: row;
    margin-left: -10px;
    justify-content: flex-start;
  }

  #copyright-menu-wrapper .hs-menu-wrapper ul[role=menu] li {
    margin-bottom: 0;
  }

  #copyright-menu-wrapper .hs-menu-wrapper ul[role=menu] li:first-of-type {
    border-left: none;
  }
}

@media screen and (max-width: 1050px) {
  .footer .hs-menu-wrapper > ul {
    padding-right: 0;
  }
}

@media screen and (max-width: 850px) {
  .footer {
    padding-top: 50px;
  }

  .footer-logo {
    display: none;
  }

  #copyright-menu-wrapper {
    margin-top: 10px;
  }

  .footer-social {
    float: none;
    margin-bottom: 10px;
  }

  .footer-navigation {
    margin-bottom: 20px;
  }

  .footer-social a {
    margin-left: 10px;
    margin-right: 10px;
  }

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

  .footer .hs-menu-depth-1 {
    margin-bottom: 20px;
  }

  #copyright-menu-wrapper .hs-menu-wrapper ul[role=menu] {
    margin-left: 0;
    justify-content: center;
  }

  #copyright-menu-wrapper .hs-menu-wrapper ul[role=menu] li:last-of-type {
    border-left: none;
    width: 100%;
    margin-top: 4px;
  }

  .fc-cta-text {
    flex: 2;
  }

  .fc-cta-image {
    flex: 1;
    max-width: 33%;
  }
  
  .fc-cta-image img {
    max-width: 100%;
    left: 15px;
  }
}
/* 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;
  }
}
/* Main Nav */

header.bg-white {
  background-color: white;
}
body.withMegamenu header {
  padding-bottom: 0;
}
body.withMobileNavOpened header {
  height: 100vh;
  overflow: auto;
  position: fixed;
}

body.withMobileNavOpened .main-nav--mobile .menuIcon {
  display: none;
}
body.withMobileNavOpened .main-nav--mobile .closeIcon {
  display: block;
}

.desktop-only {
  display: none;
}
.main-nav {
  padding: 20px 0;
  background-color: rgba(29, 30, 28, 100%);
  display: flex;
  justify-content: space-between;
}

.main-nav .w-3\/12 {
  width: 25%;
}
.main-nav .w-4\/12 {
  width: 33.333%;
}
.main-nav .w-5\/12 {
  width: 41.666%;
}
.main-nav .w-1\/2,
.main-nav .w-6\/12 {
  width: 50%;
}

.main-nav a {
  color: rgba(29, 30, 28, 100%);
  text-decoration: none;
}
.main-nav figure {
  margin: 0;
}
.main-nav img {
  display: block;
  width: 100%;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav svg {
  display: block;
}
.main-nav__logo {
  padding: 0 20px;
  width: 200px;
}
.main-nav__logo svg path {
  fill: white;
}

.main-nav--mobile > div {
  background-color: rgba(29, 30, 28, 100%);
  color: white;
  display: none;
  flex-direction: column;
  min-height: calc(100vh - 73px);
  left: 0;
  position: absolute;
  top: 73px;
  width: 100%;
}
.main-nav--mobile > div.active {
  display: flex;
}
.main-nav--mobile > button {
  align-items: center;
  background-color: hsla(0,0%,100%,.2);
  border-radius: 10px;
  border: 0;
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: 600;
  margin-right: 20px;
  padding: 8px 12px;
}
.main-nav--mobile > button img {
  margin-right: 8px;
  width: 14px;
}
.main-nav--mobile > button img.closeIcon {
  display: none;
}

.main-nav--mobile p {
  color: white;
  font-size: 16px;
  margin: 80px 0 0;
  text-align: center;
}
.main-nav--mobile .action-links {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  
  padding: 40px 20px 20px;
}
.main-nav--mobile .action-links li {
  width: 50%;
}
.main-nav--mobile .action-links a {
  align-items: center;
  background: hsla(0,0%,100%,.1);
  border-radius: 10px;
  color: #fff8f1;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  justify-content: center;
  padding: 10px;
}
.main-nav--mobile .action-links a:active {
  background: hsla(0,0%,100%,.05);
  color: #fff;
}
.main-nav--mobile .action-links a img {
  color: white;
  filter: invert(1);
  margin-right: 4px;
  position: relative;
  top: -3px;
  width: 20px;
}
.main-nav--mobile .action-links--app {
  margin-top: auto;
}
.main-nav--mobile .action-links--app .action-links {
  padding-top: 20px;
  padding-bottom: 80px;
}

@media (min-width: 851px) {  
  .desktop-only {
    display: block;
  }
  .mobile-only {
    display: none;
  }
  .main-nav {
    background-color: transparent;
    display: flex;
    font-size: 14px;
    padding: 24px 20px;
  } 
  .main-nav > figure {
    border-right: 1px solid rgba(29, 30, 28, 5%);    
    width: 186px;
    padding-top: 4px;
  }
  .main-nav > div {
    width: calc(100% - 186px);
  }
  .main-nav__logo {
    padding-left: 0;
  }
  .main-nav__logo svg path {
    fill: rgba(250, 93, 0, 100%);
  }
  .main-nav a {
    font-size: inherit;
    text-decoration: none;
    transition: color .2s;
  }
  .main-nav a:hover {
    color: rgba(250, 93, 0, 100%);
  }
  .main-nav .button-trial {
    color: white;
    margin-left: 20px;
    padding-bottom: 12px;
    padding-top: 12px;
  }
  .main-nav .button-trial:hover {
    color: white;
  }
}

@media (min-width: 1051px) {
  .main-nav {
    font-size: 17px;
  } 
}

@media screen and (min-width: 1240px) {
  .main-nav {
    padding-left: 0;
    padding-right: 0;
  } 
}

/* Breadcrumbs */


.offset-breadcrumb {
  position: relative;
  top: -40px;
}

#breadcrumbs {
  font-family: "MuotoWeb", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 8px 0;
  font-size: 16px;
}

#breadcrumbs.light-background {
  color: rgba(0,0,0, 60%);
}

#breadcrumbs a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 16px;
}
#breadcrumbs a:hover {
  filter: brightness(0.95);
}
#breadcrumbs a:active {
  filter: brightness(0.9);
  transition: none;
}

#breadcrumbs .hs_cos_wrapper {
  display: inline-block;
}

.breadcrumb-arrow {
  margin-left: 3px;
  margin-right: 3px;
  position: relative;
  top: 1px;
}

@media (max-width: 850px) {
  #breadcrumbs {
    padding-top: 12px;
  }
}
.megamenu--mobile li {
  color: #FFF;
  font-family: "MuotoWeb", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.megamenu--mobile li > div,
.megamenu--mobile li a {
  align-items: center;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 1rem 20px;
  text-decoration: none;
}
.megamenu--mobile > .link > div,
.megamenu--mobile > .link > a {
  font-size: 18px;
  font-weight: 600;  
}

.megamenu--mobile li a:active {
  background-color: rgba(255, 248, 241, 5%);
}
.megamenu--mobile li ul {
  display: none;
  font-weight: 500;
  opacity: 0;
  transition: visibility 0s, opacity .2s;
  visibility: hidden;
}
.megamenu--mobile li {
  border-bottom: 1px solid rgba(255, 248, 241, 10%);
}
.megamenu--mobile li li:last-of-type{
  border-bottom: none;
}
.megamenu--mobile li li a {
  padding-left: 40px;
}
.megamenu--mobile li svg {
  transform: rotate(180deg);
}
.megamenu--mobile li svg path {
  stroke: white;
}
.megamenu--mobile li.active > div {
  background-color: rgba(255, 248, 241, 10%);
  color: #FA5D00;
}
.megamenu--mobile li.active svg path {
  stroke: rgba(250, 93, 0, 90%);
  transform: rotate(0deg);
}
.megamenu--mobile li.active ul {
  display: block;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 851px) {
  .main-nav .megamenu {
    display: flex;
    padding-left: 10px;
  }
  .megamenu .menu-link.linkWithIcon {
    align-items: center;
    cursor: pointer;
    display: flex;
  }
  .megamenu .menu-link.linkWithIcon span {
    padding-right: .25rem;
  }
  .megamenu .menu-link.linkWithIcon svg {
    margin-left: .25rem;
    position: relative;
    top: 1px;
    transform: rotate(180deg);
  }
  .megamenu .menu-link.linkWithIcon svg path {
    stroke: #8C8C8C;    
    transition: stroke .1s;
  }
  .megamenu .menu-item:hover .menu-link svg path {
    stroke: rgba(250, 93, 0, 100%);
  }
  .megamenu .menu-item {
    color: rgba(29, 30, 28, 100%);
    font-size: 14px;
    font-weight: 500;
    margin: 0 14px;
    padding: 0;
    text-decoration: none;
    transition: color .2s;
  }
  .megamenu .menu-item svg {
    display: inline-block;
    margin-left: 0;
    position: relative;
    vertical-align: middle;
    transition: stroke .2s, margin-left 0.3s ease-out;
  }
  .megamenu .submenu .list__item:hover .linkWithIcon:not(.featured__button) svg,
  .megamenu .submenu .pageItem:hover .linkWithIcon:not(.featured__button) svg  {
    margin-left: 4px;
  }
  .megamenu .menu-item svg {
    stroke: rgba(29, 30, 28, 100%);
  }
  .megamenu .menu-item:hover {
    color: rgba(250, 93, 0, 100%);
  }
  .megamenu .featured__title {
    color: rgba(29, 30, 28, 100%);
    font-family: 'MuotoWeb', serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600 !important;
    line-height: .8;
    margin-bottom: .5rem;
    text-decoration: none;
  }
  .megamenu .featured__text {
    color: rgba(29, 30, 28, 60%);
    font-family: 'MuotoWeb';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2; 
    margin-bottom: .75rem;
    max-width: 13rem;
    text-decoration: none;
  }
  .megamenu .featured__button {
    background-color: rgba(29, 30, 28, 0.04);
    border-radius: 8px;
    color: rgba(250, 93, 0, 100%);
    display: inline-flex;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: .5rem .75rem;
    text-decoration: none;
    transition: background .2s;
    width: auto;
  }
  .megamenu .featured__button:hover {
    background-color: rgba(29, 30, 28, 0.08);
  }
  .megamenu .featured__button:active {
    background-color: rgba(29, 30, 28, 0.12);
  }
  .megamenu .featured__button svg {
    margin-left: .25rem;
    transform: rotate(90deg);
    top: -1px;
  }
  .megamenu .list .featured-link-li a.featured-link {
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    font-size: 16px;
    padding: .75rem;
    padding-left: 0;
    border-top: 1px solid rgba(29, 30, 28, 5%);
    color: rgba(250, 93, 0, 100%);
  }
  .megamenu a.featured-link .pretext {
    color: rgba(29, 30, 28, 100%);
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .megamenu .list .featured-link svg {
    position: absolute;
    right: -15px;
    top: 8px;
    transition: right 0.3s ease-out;
  }
  .megamenu .list .featured-link .link_text {
    position: relative;
  }
  .megamenu .list .featured-link:hover .link_text {
    
  }
  .megamenu .list .featured-link .link_text.bottom-border:after {    
  background: none repeat scroll 0 0 rgba(250, 93, 0, 90%);
  content: "";
  display: block;
	width: 0;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: width 0.5s ease 0s, opacity 0.5s ease 0s;
  border-radius: 1px;
  opacity: 0;
  }
  .megamenu .list .featured-link:hover .link_text:after { 
    width: 100%; 
    left: 0;
    opacity: 1;
  }
  .megamenu .list .featured-link:hover svg {
    right: -19px;
  }

  .megamenu .list .featured-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    background-color: rgba(255, 248, 241, 100%);
    padding: 30px 20px 30px 35px;
    border-radius: 15px;
    gap: 20px;
  }
  .megamenu .list .featured-card:hover {
    background-color: rgba(255, 248, 241, 80%);
  }
  .megamenu .list .featured-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
  }
  .megamenu .list .featured-card__title,
  .megamenu .list .featured-card-li :hover .featured-card__title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10px;
    color: rgba(29, 30, 28, 100%) !important;
  }
  .megamenu .list .pretext,
  .megamenu .list .featured-card-li :hover .pretext {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.33;
    color: rgba(29, 30, 28, 0.80) !important;
    margin-bottom: 10px;
  }
  .megamenu .list .link_text,
  .megamenu .list .featured-card-li :hover .link_text {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    color: rgba(250, 93, 0, 100%) !important;
    position: relative;
  }
  .megamenu .list .featured-card .link_text svg {
    position: absolute;
    right: -15px;
    top: 5px;
    transition: right 0.3s ease-out;
  }
  .megamenu .list .featured-card:hover .link_text svg {
    right: -19px;
  }
  .megamenu .list .featured-card figure {
    display: flex;
    flex: 1;
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 230px;
  }

  /* hiding the border line on just this one menu */
  .megamenu .menu-item--withSubmenu:nth-of-type(3) .thirdColumn::before {
    display: none;
  }
  .megamenu .pageItem a {
    border-radius: 13px;
    padding: .5rem;
    transition: background .2s;
  }
  .megamenu .pageItem a:hover {
    background: rgba(29, 30, 28, 0.04);
  }
  .megamenu .pageItem a:active {
    background-color: rgba(29, 30, 28, 0.06);
  }
  .megamenu .pageItem + .pageItem {
    margin-top: .25rem;
  }
  .megamenu .pageItem a:hover .pageItem__title {
    color: rgba(250, 93, 0, 100%);
  }
  .megamenu .pageItem__title {
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
    transition: color .2s;
  }
  .megamenu .pageItem__title svg {
    transform: rotate(90deg);
  }
  .megamenu .pageItem__text {
    color: rgba(29, 30, 28, 80%) ;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: .15rem;
    margin-bottom: 0;
    opacity: .8;
  }
  .megamenu .submenu {
    background-color: white;
    border-top: 1px solid rgba(29, 30, 28, 5%) ;
    box-shadow: 0px 14px 14px 0px rgba(0, 0, 0, 0.10);
    left: 0;
    margin-top: 88px;
    opacity: 0;
    padding: 35px 0;
    position: absolute;
    top: 0;
    transition: opacity .2s, visibility .1s;
    visibility: hidden;
    width: 100%;
  }
  .megamenu .submenu--columns {
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
  }
  .megamenu .menu-item--withSubmenu .indicator {
    background-color: rgba(250, 93, 0, 100%); 
    height: 0;
    left: -4rem;
    opacity: 0;
    position: relative;
    visibility: hidden;
    width: calc(100% + 8rem);
    transition: opacity .2s, visibility .1s;
  }
  .megamenu .menu-item--withSubmenu:hover .indicator {
    opacity: 1;
    visibility: visible;
  }
  .megamenu .menu-item--withSubmenu .indicator::before {
    bottom: -34px;
    content: '';
    height: 34px;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .megamenu .menu-item--withSubmenu .indicator::after {
    bottom: -35px;
    content: '';
    display: block;
    height: 4px;
    position: absolute;
    right: 4rem;
    transition: background .2s;
    width: calc(100% - 8rem);
  }
  .megamenu .menu-item--withSubmenu:hover .indicator::after {
    background-color: rgba(250, 93, 0, 100%);            
  }
  .megamenu .menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
  }

  .megamenu .list__title + .list {
    margin-top: .75rem;
  }
  .megamenu .list__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: .5;
  }
  .megamenu .list__item {
    font-size: 16px;
    font-weight: 500;
  }
  .megamenu .list__item svg {
    margin-left: .5rem;
    transform: rotate(90deg);
  }
  .megamenu .list__item a {
    transition: color .2s;
  }
  .megamenu .list__item:hover a {
    color: rgba(250, 93, 0, 100%);
  }
  .megamenu .list__item--blog {
    margin-bottom: 10px;
    max-width: 310px;
  }

  .megamenu .firstColumn {
    padding-right: 24px;
  }

  .megamenu .secondColumn {
    padding-left: 34px;
    padding-right: 14px;
  }
  .megamenu .secondColumn .pageItem {
    display: flex;
    max-width: 440px;
  }
  .megamenu .secondColumn .pageItem figure {
    display: flex;
  }
  .megamenu .secondColumn .pageItem div {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    padding-left: 8px;
  }
  .megamenu .secondColumn .list--withColumns {
    display: flex;
    flex-wrap: wrap;
  }
  .megamenu .secondColumn .list__item {
    font-size: 18px;
    font-weight: 600;
  }
  .megamenu .secondColumn .list__item svg {
    margin-left: 0;
    top: -1px;
  }
  .megamenu .secondColumn figure {
    width: 2.5rem;
  }
  .megamenu .secondColumn figure ~ div {
    width: calc(100% - 2.5rem);
  }
  .megamenu .menu-item--withSubmenu:nth-of-type(1) .secondColumn {
    padding-left: 20px;
  }
  .megamenu .menu-item--withSubmenu:nth-of-type(1) .secondColumn ul {
    margin-top: -10px;
  }
  .megamenu .menu-item--withSubmenu:nth-of-type(2) .secondColumn .list__item {
    margin-bottom: 0;
  }
  .megamenu .menu-item--withSubmenu:nth-of-type(2) .secondColumn .list__item:nth-of-type(n+3) {
    margin-top: 1rem;
  }
  .megamenu .menu-item--withSubmenu:nth-of-type(3) .secondColumn .list__item + .list__item {
    margin-bottom: 0;
    margin-top: 1rem;
  }
  .megamenu .thirdColumn {
    padding-left: 24px;
    position: relative;            
  }
  .megamenu .thirdColumn::before {
    background-color: rgba(29, 30, 28, 5%);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .megamenu .thirdColumn .list__item a {
    align-items: center;
    display: flex;
  }
  .megamenu .thirdColumn .list__item + .list__item {
    margin-bottom: 0;
    margin-top: .75rem;
  }
  .megamenu .thirdColumn .list__item__text {
    line-height: .7;
    width: calc(100% - 1.5rem);
  }
  .megamenu .thirdColumn .list__item figure {
    margin-right: 8px;
    width: 20px;
  }
  .megamenu .thirdColumn .list__item:hover {
    color: rgba(250, 93, 0, 100%);
  }
  .megamenu .thirdColumn .list__item--blog a {
    display: flex;
  }
  .megamenu .thirdColumn .list__item--blog figure {
    margin-right: .5rem;
    padding-right: 0;
    width: 36px;
  }
  .megamenu .thirdColumn .list__item--blog span {
    line-height: 1.2;
    width: calc(100% - 36px);
  }
}

@media (min-width: 1040px) {
  .megamenu .secondColumn {
    padding-left: 24px;
  }
  .megamenu .menu-item--withSubmenu:first-of-type .secondColumn {
    padding-left: 8px;
  }
}
@media (min-width: 1051px) {
  .megamenu .menu-item {
    font-size: 17px;
  }
  .megamenu .submenu {
    margin-top: 91px;
  }

}
@media (min-width: 1240px) {
  .megamenu .submenu--columns {
    padding-left: 0;
    padding-right: 0;
  }
}


/* adding forecast banner */
.megamenu .featured-banner-anchor {
  display: block;
  width: 100%;
  background: rgba(29, 30, 28, 0.04);
  border-radius: 10px;
  margin-top: 15px;
  transition: background .2s;
}

.megamenu .featured-banner-anchor:hover {
  background: rgba(29, 30, 28, 0.08);
}

.megamenu .featured-banner-content {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: rgba(29, 30, 28, 80%);
}


.megamenu .featured-banner-content figure {
  width: 24px;
  height: 24px;
}

.megamenu .featured-banner-content h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
  margin-top: 0;
  padding-right: 10px;
  border-right: 1px solid rgba(29, 30, 28, 5%);
  padding-top: 5px;
  padding-bottom: 5px;
  white-space: nowrap;
}

.megamenu .featured-banner-content p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(29, 30, 28, 80%);
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: 0;
  opacity: .8;
  flex: 1;
}

.megamenu .featured-banner-content .featured-banner-chevron svg {
  transform: rotate(90deg) translateY(2px) translateX(-1px);
  margin-left: 5px;
  transition: transform .2s;
}

.megamenu .featured-banner-anchor:hover .featured-banner-content .featured-banner-chevron svg {
  transform: rotate(90deg) translateY(-2px) translateX(-1px);
}
/* Background Colors */

.background-neutral {
  background-color: #f8f5f1 !important;
}
.background-blue {
  background-color: #3d9dc1 !important;
}
.background-red {
  background-color: #cb5c5b !important;
}
.background-green {
  background-color: #21A5A0 !important;
}
.background-yellow {
  background-color: #f18d2a !important;
}
.background-gray {
  background-color: #f6f6f6 !important;
}
.background-purple {
  background-color: #4b4b69 !important;
}
.background-white {
  background-color: #fff !important;
}


/* Section Styles */

.border-bottom {
  border-bottom: 1px solid rgba(250, 93, 0, 100%);
}

.border-top {
  border-top: 1px solid rgba(250, 93, 0, 100%);
}

.border-right {
  border-right: 1px solid rgba(250, 93, 0, 100%);
}

.border-left {
  border-left: 1px solid rgba(250, 93, 0, 100%);
}

/* Atomic Spacing Classes */

.mt0 {
  margin-top: 0px;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb100 {
  margin-bottom: 100px;
}

.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml20 {
  margin-left: 20px;
}
.ml30 {
  margin-left: 30px;
}
.ml40 {
  margin-left: 40px;
}
.ml50 {
  margin-left: 50px;
}
.ml60 {
  margin-left: 60px;
}
.ml100 {
  margin-left: 100px;
}

.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr20 {
  margin-right: 20px;
}
.mr30 {
  margin-right: 30px;
}
.mr40 {
  margin-right: 40px;
}
.mr50 {
  margin-right: 50px;
}
.mr60 {
  margin-right: 60px;
}
.mr100 {
  margin-right: 100px;
}


/* Responsive Vertical Spacing */

.mb-tiny {
  margin-bottom: 20px;
}

.mb-small {
  margin-bottom: 50px;
}

.mb-medium {
  margin-bottom: 75px;
}

.mb-large {
  margin-bottom: 100px;
}


.mt-tiny {
  margin-top: 20px;
}

.mt-small {
  margin-top: 50px;
}

.mt-medium {
  margin-top: 75px;
}

.mt-large {
  margin-top: 100px;
}

@media (max-width: 850px) {
  .mt-large {
    margin-top: 75px;
  }

  .mb-large {
    margin-bottom: 75px;
  }

  .mt-medium {
    margin-top: 55px;
  }

  .mb-medium {
    margin-bottom: 55px;
  }

  .mt-small {
    margin-top: 35px;
  }

  .mb-small {
    margin-bottom: 35px;
  }

}


/* Image Treatments */

.rounded-image,
.rounded-image img {
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

/* Static Auras */


/* Screenshot Container */

.screenshot-container {
  background-image: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/images/ornaments/screenshot-frame.svg');
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-top: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  max-width: 100%;
}

.screenshot-container img {
  border: 1px solid rgba(29, 30, 28, 80%) !important;
  border-bottom-right-radius: 8px;
  max-width: 100%;
}

@media (max-width: 850px) {
  .screenshot-container {
    background-image: none;
    padding-top: 0;
  }
  .screenshot-container img {
    border: 1px solid rgba(29, 30, 28, 20%) !important;
    border-radius: 10px 0 10px 0;
  }
}


/* Timeline Layout */

.timeline-layout-container {
  display: flex;
  padding-top: 48px;
}

.timeline-milestone {
  flex: 1;
  border-left: 1px solid rgba(250, 93, 0, 100%);
  min-height: 200px;
  position: relative;
}

.milestone-content.text-milestone {
  padding: 22px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
}

.expanded-milestone {
  flex-basis: 20%;
}

.timeline-tab {
  position: absolute;
  top: -48px;
  border: 1px solid rgba(250, 93, 0, 100%);
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
  color: rgba(250, 93, 0, 100%);
  font-weight: 600;
  font-size: 20px;
  padding: 0 22px;
  height: 48px;
  line-height: 48px;
  left: -1px;
  display: inline-block;
}

@media (max-width: 850px) {
  .timeline-layout-container {
    flex-direction: column;
  }

  .timeline-milestone {
    flex: auto;
    height: auto;
    margin-bottom: 80px;
    min-height: 0;
  }

  .timeline-milestone:last-of-type {
    margin-bottom: 0;
  }
}

/* CTAs */

.trial-actions {
  width: 100%;
}

.trial-terms {
  font-size: 18px;
  margin-top: 20px;
  margin-left: 15px;
  display: inline-block;
  color: rgba(29, 30, 28, 60%);
}

@media (max-width: 1250px) {
  .trial-terms {
    font-size: 16px;
  }
}

@media (max-width: 1125px) {
  .trial-terms {
    margin-left: 0;
    display: block;
  }
}



@media (max-width: 850px) {
  .trial-terms {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}


/* Features Checklist */

.feature-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.feature-checklist li {
  font-size: 20px;
  padding-left: 25px;
  background-image: url(https://19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/images/icons/check-bullet.svg);
  background-position: 0 5px;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  margin-bottom: 5px;
}
.feature-checklist li:last-of-type {
  margin-bottom: 0;
}

.feature-checklist.green-checklist li {
    background-image: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/images/icons/icon-checklist-green.svg');
}

.feature-checklist.black-checklist li {
    background-image: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/images/icons/icon-checklist-black.svg');
}

/* Customer Logo Row */

.customer-logo-container {
  display: block;
  width: 100%;
}


.customer-logo-container .customer-count {
  font-size: 18px;
  color: rgba(29, 30, 28, 60%);
  display: inline;
  top: -17px;
  position: relative;
  padding-right: 10px;
  margin-bottom: 20px;
  background: rgba(255, 248, 241, 100%);
}

.customer-logo-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}

.customer-logo-row img {
  opacity: 0.35;
}

@media (max-width: 1050px) {
  .deloitte {
    display: none;
  }
  .tbrand {
    display: none;
  }
}
@media (max-width: 1050px) {
  .customer-logo-row img {
    height: 45px;
  }
}

@media (max-width: 850px) {
  .customer-logo-container.border-top {
    border: 0;
  }
}

/* Callout */

.callout {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
}


/* List Links */

.link-list {
  margin: 0;
  width: 100%;
  padding: 0;
}

.link-list li {
  list-style: none;
  padding: 0;
}

.link-list a {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid rgba(250, 93, 0, 100%);
  color: rgba(29, 30, 28, 100%);
  cursor: pointer;
  display: flex;
  font-size: 22px;
  font-weight: 500;
  justify-content: space-between;
  outline: 0;
  padding: 20px 60px 20px 25px;
  text-align: left;
  transition: all 0.2s;
  width: 100%;
  background-image: url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/images/icons/arrow-right-32.svg');
  background-position: right 20px center;
  background-repeat: no-repeat;
}

.link-list li:first-of-type a {
  border-top: 1px solid rgba(250, 93, 0, 100%);
}

.link-list a:hover,
.link-list a:focus {
  background-color: rgba(250, 93, 0, 5%);
  color: rgba(250, 93, 0, 100%);
  text-decoration: none;
}

.link-list a

/* Responsive */
@media screen and (max-width: 850px) {
  .desktop-only {
    display: none;
  }
}
/* Wave Header */

.section-header-wave {
  background: #f8f5f1 url('//19495563.fs1.hubspotusercontent-na1.net/hubfs/19495563/raw_assets/public/harvest-theme/images/backgrounds/wave.svg') repeat-x center bottom;
  margin-top: -300px;
  padding-top: 300px;
}

@media (max-width: 850px) {
  .section-header-wave {
    background-image: none;
  }
}

/* Email Signup Form */

.email-signup-form {
  display: flex;
}

form input[type=submit].email-signup-submit {
  margin-left: 10px;
  white-space: nowrap;
}

.email-signup-embed .trial-terms {
  margin-left: 0;
}

@media (max-width: 980px) {
  .email-signup-form {
    flex-direction: column;
  }
  form input[type=submit].email-signup-submit {
    margin-left: 0;
    margin-top: 15px;
  }

}


/* CTA Footer - Simple */

.footer-cta-simple {
  background: #fff;
  border-top: 1px solid rgba(250, 93, 0, 100%);
}


.footer-illustration {
  max-width: 380px;
  width: 100%;
}

@media (max-width: 850px) {
  .footer-signup-illustration {
    display: none;
  }
}

/* CTA Footer - Customer Logos */
.footer-cta-logos  {
  text-align: center;
}

.footer-cta-logos .customer-logo-row {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 30px 0;
}

/* temporary hide for customer logos until a review and update can be done */
#main-content .customer-logos {
  display: none;
}

#main-content.forecast .signup-footer .content-wrapper {
  padding-top: 0;
  border-top: none;
}

#main-content #homepage-customers .customer-logo-container {
  border-top: none;
  margin-top: 0;
}

#main-content.features-subpage .content-wrapper.first-wrapper {
  padding-bottom: 60px;
}

#landing-header .customer-logo-container {
  display: none;
}