/* 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 */
  scroll-behavior: smooth;
}

.hero{
  min-height: 90vh; 
}

@media screen and (max-width: 800px){
  .hero{
    min-height: unset;
  }
}


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


@keyframes svg-text-anim {
  40% {
    stroke-dashoffset: 0;
    text-shadow: unset;

  }
  60% {
    stroke-dashoffset: 0;
    text-shadow: -0.5px 0 #fff, 0 0.5px #fff, 0.5px 0 #fff, 0 -0.5px #fff;

  }
  100% {
    stroke-dashoffset: 0;
    text-shadow: -0.5px 0 #fff, 0 0.5px #fff, 0.5px 0 #fff, 0 -0.5px #fff;

  }

}

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

/* Responsive grid */

.row-fluid {
  width: 100%;
}

.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%;
  -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%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

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

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

  .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%;
    -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%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .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%;
    -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%;
  }

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

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

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

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

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

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

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

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

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

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

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

/* Clearfix */

.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: 767px) {
  .visible-phone {
    display: inherit !important;
  }

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

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

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

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

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

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

  .visible-desktop {
    display: none !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

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

.container-xxsm{
  width: min(390px, 100%); 
  margin: auto;
}

.container-xsm{
  width: min(450px, 100%); 
  margin: auto;
}

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

/*!
 * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/)
 */
/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('https://6893998.fs1.hubspotusercontent-na1.net/hubfs/6893998/Fonts/Glyphicon/glyphicons-halflings-regular.eot'); /* IE9 Compat Modes */
  src: url('https://6893998.fs1.hubspotusercontent-na1.net/hubfs/6893998/Fonts/Glyphicon/glyphicons-halflings-regular.eot#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('https://6893998.fs1.hubspotusercontent-na1.net/hubfs/6893998/Fonts/Glyphicon/glyphicons-halflings-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('https://6893998.fs1.hubspotusercontent-na1.net/hubfs/6893998/Fonts/Glyphicon/glyphicons-halflings-regular.woff') format('woff'), /* Pretty Modern Browsers */
       url('https://6893998.fs1.hubspotusercontent-na1.net/hubfs/6893998/Fonts/Glyphicon/glyphicons-halflings-regular.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('https://6893998.fs1.hubspotusercontent-na1.net/hubfs/6893998/Fonts/Glyphicon/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); /* Legacy iOS */
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
@font-face {
  font-family: Theinhardt;
  font-weight: 100;
  font-style: normal;
  src: url("https://info.peabody.vanderbilt.edu/hubfs/fonts/Theinhardt-Light.woff2") format("woff2"),
    url(//44182976.fs1.hubspotusercontent-na1.net/hubfs/44182976/raw_assets/public/vandy-oli/fonts/theinhardt/Theinhardt-Light.woff2) format("woff2");
}

@font-face {
  font-family: Theinhardt;
  font-weight: 100;
  font-style: italic;
  src: url("https://vanderbilt-design-system.netlify.app/static/fonts/Theinhardt/complete/Theinhardt-Light.woff2") format("woff2"),
    url(//44182976.fs1.hubspotusercontent-na1.net/hubfs/44182976/raw_assets/public/vandy-oli/fonts/theinhardt/Theinhardt-Light-Italic.woff2) format("woff2");
}

@font-face {
  font-family: Theinhardt;
  font-weight: 300;
  font-style: normal;
  src: url("https://info.peabody.vanderbilt.edu/hubfs/fonts/Theinhardt-Regular.woff2") format("woff2"),
    url(//44182976.fs1.hubspotusercontent-na1.net/hubfs/44182976/raw_assets/public/vandy-oli/fonts/theinhardt/Theinhardt-Regular.woff2) format("woff2");
}

@font-face {
  font-family: Theinhardt;
  font-weight: 400;
  font-style: italic;
  src: url("https://info.peabody.vanderbilt.edu/hubfs/fonts/Theinhardt-Italic.woff2") format("woff2"),
    url(//44182976.fs1.hubspotusercontent-na1.net/hubfs/44182976/raw_assets/public/vandy-oli/fonts/theinhardt/Theinhardt-Italic.woff2) format("woff2");
}

@font-face {
  font-family: Theinhardt;
  font-weight: 500;
  src: url("https://info.peabody.vanderbilt.edu/hubfs/fonts/Theinhardt-Medium.woff2") format("woff2"),
    url(//44182976.fs1.hubspotusercontent-na1.net/hubfs/44182976/raw_assets/public/vandy-oli/fonts/theinhardt/Theinhardt-Medium.woff2) format("woff2");
}

@font-face {
  font-family: Jannon-Display;
  font-weight: 100;
  src: url("https://info.peabody.vanderbilt.edu/hubfs/fonts/JJannon-Display-Light.woff") format("woff2");
}

@font-face {
  font-family: Jannon-Display;
  font-weight: 300;
  src: url("https://info.peabody.vanderbilt.edu/hubfs/fonts/JJannon-Display-Regular.woff") format("woff2");
}

@font-face {
  font-family: Academica;
  font-weight: 100;
  src: url("https://info.peabody.vanderbilt.edu/hubfs/fonts/AcademicaLight.woff2") format("woff2");
}

@font-face {
  font-family: Academica;
  font-weight: 100;
  font-style: italic;
  src: url("https://info.peabody.vanderbilt.edu/hubfs/fonts/AcademicaLightItalic.woff") format("woff2");
}

@font-face {
  font-family: Academica;
  font-weight: 400;
  src: url("https://info.peabody.vanderbilt.edu/hubfs/fonts/AcademicaMedium.woff2") format("woff2");
}

@font-face {
  font-family: Academica;
  font-weight: 600;
  src: url("https://info.peabody.vanderbilt.edu/hubfs/fonts/AcademicaMediumBold.woff") format("woff2");
}



intro p - 

body {
  line-height: 1.4;
  word-break: break-word;
}

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

body, html {
  margin: 0;
  padding: 0;
  font-family: Theinhardt, system-ui, sans-serif;
  font-weight: 200;
  font-size: 19px;
  color: #1B1C1D;
  overflow-x: hidden;
  line-height: 1.4;
}

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

.container-lg {
  max-width: 1510px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

.container-sm {
  max-width: 960px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

/* Headings */

h1, h2, h3, h4, h5, h6{
  margin: 10px 0px; 
  /*   margin-bottom: 1.4em; */
}

h1, h2{
  line-height: 1.2;
}

h1{
  font-family: 'Jannon-Display';
  font-size: 93px;
  font-weight: 100;
  color: #000000;
}

h2{
  font-family: 'Jannon-Display';
  font-size: 64px;
  font-weight: 100;
  color: #333333;
}

h3{
  font-family: Theinhardt, system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #000000;
}

h4{
  font-family: 'Jannon-Display';
  font-size: 30px;
  font-weight: 100;
  color: #000000;
}

h5{
  font-family: 'Academica';
  font-size: 24px;
  font-weight: 100;
  color: #E0D5C0;
}

h6{
  font-family: Theinhardt, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
}

p {
  line-height: 1.8;
  color: #1B1C1D;
}

.lead-in {
  line-height: calc(10 / 7);
  color: #1B1C1D;
  font-family: 'Jannon-Display';
  font-size: 35px;
  font-weight: 100;
  margin-bottom: 1.4rem;
}


blockquote{
  font-family: Theinhardt, system-ui, sans-serif;
  font-size: clamp(17px,1.3125vw,21px);
  line-height: 2;
  border-left: unset;
  margin: unset;
  padding-left: unset;
  margin-top: clamp(24px, 3vw, 48px);
}

blockquote:before{
  content: url();
  display: block; 
  position: relative;
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
}

/* a:not([class*='btn']):not([class*='button']) */
.yellow-underline,
a{
  color: #fff;
  text-decoration: unset !important;
  border-bottom: 2px solid #D8AB4C; 
  width: fit-content;
  padding-bottom: 0px;
  transition: 0.2s all ease;
}

.yellow-underline:hover,
a:hover{
  /* a:not([class*='btn']):not([class*='button']):hover{ */
  padding-bottom: 2.5px; 
  border-bottom: 2px solid #D8AB4C50;
}


ul{
  font-family: Theinhardt, system-ui, sans-serif;
}

ul.hs-image__grid__list{
  margin-left: -40px; 
}

ol li{
  font-family: Theinhardt, system-ui, sans-serif;
  font-weight: 200;
  line-height: 1.8;
  color: #1C1C1C;
  padding: 10px 0px;
}

ol li::marker {
  font-weight: bolder;
}

ul li{
  font-family: Theinhardt, system-ui, sans-serif;
  font-weight: 200;
  line-height: 1.8;
  color: #1C1C1C;
  padding: 10px 0px;
}

ul li::marker {
  color: #D8AB4C; 
  font-weight: bold;
  font-size: 20px;
}

ul.no-dots li::before{
  content: '';
  display: none;
}

.outlined{
  color: #1c1c1c;
  text-shadow: -0.5px 0 #fff, 0 0.5px #fff, 0.5px 0 #fff, 0 -0.5px #fff;
}

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

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

ul.check li{
  display: flex;
  align-items: flex-start;
}

ul.check li::marker {
  font-size: 0; /* Hide default marker */
}

ul.check li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33.656' height='33.656' viewBox='0 0 33.656 33.656'%3E%3Cpath id='path2' d='M31.956,15.836a13.45,13.45,0,1,1-8.7-9.723A1.683,1.683,0,0,0,24.37,2.936,16.808,16.808,0,1,0,35.239,15.089a1.684,1.684,0,0,0-3.283.747Zm-14.81,3.978L31.1,5.859A1.683,1.683,0,0,1,33.48,8.238L18.335,23.383a1.681,1.681,0,0,1-2.379,0l-5.048-5.048a1.683,1.683,0,0,1,2.379-2.379Z' transform='translate(-2 -2)' fill='%23d8ab4c' fill-rule='evenodd'/%3E%3C/svg%3E%0A");
  display: inline-block;
  margin-right: 10px; /* Space between SVG and text */
}

@media screen and (max-width: 800px){
  ul{
    columns: 1 !important; 
  }
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */

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

.white,
.white *{
  color: #fff;
}

.black,
.black *{
  color: #1c1c1c;
}

.sand,
.sand *{
  color: #e0d5c0;
}


@media screen and (max-width: 1200px){
  h1{
    font-size: clamp(56px, 7.75vw, 93px); 
  }
  h2{
    font-size: clamp(48px, 5.3333vw, 64px);
  }
  h3{
    font-size: clamp(24px, 2.5vw, 30px);
  }
  h4{
    font-size: clamp(24px, 2.5vw, 30px);
  }
  h5{
    font-size: clamp(20px, 2vw, 24px); 
  }
  h6{
    font-size: clamp(20px, 2vw, 24px); 
  }
  ul, li, p {
    font-size: clamp(17px, 1.583333vw, 19px);
  }
  .lead-in {
    font-size: clamp(24px, 2.9166666vw, 35px);
  }

}
.close {
  align-items: center;
  background: transparent; 
  border-radius: 40px;
  display: flex;
  height: 40px;
  justify-content: center;
  top: 20px;
  right: 20px;
  padding: 10px;
  position: absolute;
  width: 40px; 
  cursor: pointer;
  z-index: 999999;
}

.close:after,
.close:before{
  background-color: #E0D5C0;
  content: " ";
  height: 30px;
  left: 50%;
  position: absolute;
  width: 1px;
}

.close:after{
  transform: translateX(-50%) rotate(-45deg); 
}

.close:before{
  transform: translateX(-50%) rotate(45deg);
}


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

/* 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 input[type="submit"],
input[type=button],
[class*='btn']{
  display: inline-block;
  padding: 12.5px 55px 7.5px 55px;
  border-radius: 50px;
  font-size: clamp(17px,1.3125vw,21px);  
  font-family: Theinhardt, system-ui, sans-serif;
  font-weight: 400;
  text-decoration: unset !important;
  text-align: center;
  border-radius: 50px;
  margin: 10px;
  max-width: unset;
  min-width: unset;
  width: fit-content;
  cursor: pointer;
  line-height: 1.3 !important;
}

/* CTA Styles */
.blk-btn {
  font-size: 20px;
  border: 1.5px solid black;
  background: black;
  color: white;
  max-width: 235px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blk-btn:hover {
  background: black;
  text-decoration: underline;
  border: 1.5px solid black !important;
}

form input[type="submit"]:hover,
form input[type="submit"],
.gold-btn-inverse:hover,
.gold-btn,
.gold-btn-solid{
  background: #D8AB4C;
  color: #1C1C1C;
  border: 1.5px solid #D8AB4C;
}

.gold-btn:hover{
  background: #F5F3F1;
  border: 1.5px solid #F5F3F1;
}

.gold-btn-solid:hover{
  background: #D8AB4C;
  border: 1.5px solid #D8AB4C;
}

.gold-btn-inverse{
  background: transparent;
  color: #fff;
  border: 1.5px solid #D8AB4C;
}

.black-btn-inverse{
  background: transparent;
  border: 1.5px solid #131313;
  color: #131313;
}

.black-btn-inverse:hover,
.black-btn{
  background: #131313;
  border: 1.5px solid #131313;
  color: #fff;
}

.white-btn {
  font-size: 20px;
  border: 1.5px solid black;
  background: black;
  color: white;
  max-width: 235px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease;
}

.white-btn-inverse{
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
}

.white-btn-inverse:hover,
.white-btn{
  background: #fff;
  border: 1.5px solid #fff;
  color: #000000;
}

.grey-btn{
  background: rgba(179,201,205,1.0);
  border: 1.5px solid rgba(179,201,205,1.0);
  color: #000;
}

[class*='btn']:active,
[class*='btn']:focus{
  background: #E0D5C0;
  border: 1.5px solid #E0D5C0;
  color: #1c1c1c;
}

a[class*='btn'],
a[class*='btn']:hover{
  padding: 12.5px 35px 7.5px 35px !important
}

a[class*='button']{
  border-bottom: 0px !important;
}

.hs-web-interactive-inline{
  display: inline-block; 
}

@media screen and (min-width: 768px){
  form input[type="submit"],
  input[type=button],
  [class*='btn']{ 
    min-width: 280px;
  }
}
/* Form styles */

.hs-form-field {
  position: relative;
/*   margin-bottom: 1.4rem; */
}


form input:not(.hs-button),
form textarea,
form select {
  font-family: Theinhardt, system-ui, sans-serif;
  border: 1px solid #333333;
  padding: 5px 10px !important;
  font-size: 18px;
  margin: 5px 0 20px 0;
  background: transparent;
  min-height: 40px;
}

form a{
 color: #333333; 
}

form select option{
  color: #000; 
}

form textarea {
  min-height: 150px;
    width: 100%;

}

form .hs-fieldtype-radio ul,
form .hs-fieldtype-checkbox ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

form .hs-fieldtype-radio ul li,
form .hs-fieldtype-checkbox ul li {
  padding: 5px 0 !important
}

form .hs-fieldtype-radio ul label input,
form .hs-fieldtype-checkbox ul label input {
  margin: 0;
}

form .hs-fieldtype-radio ul label span,
form .hs-fieldtype-checkbox ul label span {
  font-weight: bold;
  padding-left: 10px;
}

form .hs-form-checkbox-display{
  display: flex;
  align-items: center
  flex-direction: row-reverse;
}

form .hs-form-checkbox-display input{
 width: fit-content !important; 
}

form label {
  font-family: Theinhardt, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

form .hs-error-msgs{
  position: absolute;
  top:  65%;
  left: 0px;
}

form .hs-error-msgs label{
  display: block;
  background: #ef6b51;
  background-color: #ef6b51;
  color: #fff;
  padding: 3.5px 7.5px 3.5px 7.5px;
  border-radius: 2.5px;
  font-size: 11px;
  font-weight: 600;
}

form .hs_error_rollup .hs-error-msgs{
  top:  100%;
}

form .hs-submit .actions {
  text-align: center !important;
  margin: auto;
}

form input[type="submit"] {
  background: #333333;
  color: white;
  font-weight: 500;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

form input[type="submit"]:hover {
/*   background: black; */
  text-decoration: underline;
}

form{
  width: min(650px, 100%);
  margin: auto;
}

form fieldset{
  max-width: unset !important; 
}

form input,
form select{
  border: 0.5px solid #ffffff50;
  color: #000;
  padding: 10px;
  width: 100% !important;
}

form input::placeholder,
form input::select{
  display: none; 
}

form label{
  color: #000;
}

form .hs-submit .actions{
  text-align: left; 
}

form input[type="submit"]{
  margin: 20px 0px; 
  width: fit-content !important;
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

thead{
  background-color: #1c1c1c;
  color: #fff;
  font-weight: 500;
}

table {
  margin-top: 18px;
  margin-bottom: 18px;
  margin-top: 18px;
  margin-bottom: 18px;
  font-family: Theinhardt,system-ui,sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  background-color: #f5f3ef;
  border-collapse: collapse;
  color: #1c1c1c;
  table-layout: fixed;
  width: 100%;
}

table p{
  font-size: clamp(14px, 1.125vw, 18px) !important;

}

table thead tr{
  border-width: 0;
}

table tr {
  margin-top: 0;
}

table thead th{
  text-align: left;
}

tbody{
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline; 
}

table tr:not(:first-child) {
  border: 1px solid #e0d5c0;
  border-width: 1px 0 0;
}

table thead td, table thead th, table tbody td {
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

@media (min-width: 768px){
  table thead td, table thead th, table tbody td {
    padding-top: 18px;
    padding-right: 18px;
    padding-bottom: 18px;
    padding-left: 18px;
  }
  table tbody td {
    line-height: inherit;
    display: table-cell;
    width: auto;
  }
}

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

.visually-hidden{
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.primary-nav{
  margin: 0 auto;
  max-width: 1800px;
  position: relative;
  z-index: 90;
  padding-left: 0.5vw;
  padding-right: 0.5vw;
}

.primary-nav__inner{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.5vw;
  padding-right: 0.5vw;
  padding-top: 18px;
  padding-bottom: 18px;
}

.primary-nav .primary-nav__logo{
  display: inline-block;
  flex-shrink: 0;
  margin-right: 18px;
  padding-top: 5px; 
}

.primary-nav .primary-nav__logo-link{
  display: block;
}

.primary-nav a{
  box-shadow: inset 0 -1px transparent;
  color: #1c1c1c;
  cursor: pointer;
  transition: box-shadow .2s cubic-bezier(0.645, 0.045, 0.355, 1),color .2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.primary-nav .primary-nav__logo svg{
  height: 58px;
  width: 81.2px; 
}

.primary-nav .primary-nav__content{
  flex-grow: 1; 
}

.primary-nav .primary-nav__top{
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  padding: 5px 0 12px;
}

.primary-nav a, .primary-nav button, .primary-nav input{
  font-family: Theinhardt, Source Sans Pro,sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  display: block;
  margin: 0;
  padding: 0;
}

.primary-nav .primary-nav__logo-text svg.primary-nav__logo-text-svg{
  display: none;
  height: 12px;
  width: 125px;
}

.primary-nav .primary-nav__logo-text svg.primary-nav__logo-text-svg-full{
  display: block;
  width: 249px;
  height: 12px;
}

.primary-nav .primary-nav__tools{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.primary-nav .primary-nav__search{
  position: absolute;
  top: 8px;
  right: 0.5vw;
  background-color: transparent;
  display: block;
  transition: background-color .2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.primary-nav .primary-nav__search:focus-within .primary-nav__search-input{
  background-color: rgba(245, 243, 239, 0.75);
  cursor: initial;
}

.primary-nav .primary-nav__search-input:focus-within{
  cursor: #000;
  width: 250px;
  border-color: #e0d5c0;
}

.primary-nav .primary-nav__search, .primary-nav .primary-nav__menu-btn{
  flex-shrink: 0;
}

.primary-nav .primary-nav__search svg{
  position: absolute;
  top: 10px;
  left: 10px;
  height: 16px;
  width: 16px;
  fill: none;
  pointer-events: none;
  stroke: #cfae70;
  transform: translateY(1px);
  z-index: 1;
}

.primary-nav button.primary-nav__menu-btn{
  position: absolute;
  top: 8px;
  right: 0.5vw;
  padding: 13px 0 8px 24px;
  display: none;
  outline: unset;
  border: unset;
  background: unset;
  min-width: unset;
}

.primary-nav button.primary-nav__menu-btn svg{
  position: absolute;
  top: 16px;
  left: 0;
  height: 8px;
  width: 15px;
  fill: none;
  stroke: #cfae70;
}

.primary-nav .primary-nav__search-input{
  font-family: Theinhardt,system-ui,sans-serif;
  line-height: 1;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid transparent;
  border-radius: 2px;
  outline: 0;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  background-color: transparent;
  color: #1c1c1c;
  cursor: pointer;
  font-size: 15px;
  padding: 12px 8px 8px 34px !important;
  transition: width .375s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 90px;
  margin: 0px;
}

.primary-nav .primary-nav__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e0d5c0;
  padding: 8px 0 0;
}

.primary-nav .primary-nav__site-link{
  flex-shrink: 1; 
  text-decoration: unset;
}

.primary-nav .primary-nav__site-link span{
 font-size: 16px;
}

.primary-nav .primary-nav__links{

}

@media screen and (max-width: 1070px){
  .primary-nav .primary-nav__search{
    display: none;
  }
  .primary-nav button.primary-nav__menu-btn{
    appearance: none;
    margin-left: 18px;
    padding-left: 24px;
    position: relative;
    transition: all .2s cubic-bezier(0.645, 0.045, 0.355, 1); 
  }
  .primary-nav button.primary-nav__menu-btn svg{
    position: absolute;
    top: 2px;
    left: 0;
    margin-right: 5px;
  }
  .primary-nav button.primary-nav__menu-btn{
    display: block; 
    top: unset;
    right: unset;
    padding: 0;
    padding-left: 24px;
  }
}

@media screen and (max-width: 768px){
  .primary-nav{
    padding-left: 8px;
    padding-right: 8px;
  }
  .primary-nav .prinary-nav__inner{
    padding-left: 8px;
    padding-right: 8px;
  }
  .primary-nav .primary-nav__logo{
    margin-right: 12px;
    padding-top: 7px;
  }
  .primary-nav .primary-nav__logo svg{
    height: 37px;
    width: 51.8px;
  }
  .primary-nav .primary-nav__top{
    padding: 8px 0;
  }
  .primary-nav a, .primary-nav button, .primary-nav input{
    font-size: 14px;
  }
  .primary-nav .primary-nav__logo-text svg.primary-nav__logo-text-svg{
    display: block;
  }
  .primary-nav .primary-nav__logo-text svg.primary-nav__logo-text-svg-full{
    display: none;
  }
  .primary-nav .primary-nav__bottom{
    padding: 8px 0 0; 
  }
}

.mega-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 18px;
  padding-bottom: 60px;
  background-color: #1c1c1c;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s cubic-bezier(0.645, 0.045, 0.355, 1);
  visibility: hidden;
  width: 100%;
  z-index: 100;
}

.mega-menu::before{
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  position: absolute;
  top: 0;
  right: -15%;
  bottom: 0;
  left: auto;
  background: linear-gradient(180deg, rgba(128, 116, 107, 0.0375) 0%, rgba(128, 116, 107, 0) 100%);
  transform: skewX(-20deg);
  width: 70%;
}

.mega-menu.open{
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: auto;
  visibility: visible;
}

.mega-menu .mega-menu__inner{
  padding-left: 8px;
  padding-right: 8px;
  min-height: 100%; 
}

.mega-menu .mega-menu__close-btn{
  height: 35px;
  width: 35px;
  position: absolute;
  top: 20px;
  right: 20px;
  align-items: center;
  background-color: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  padding: 8px;
  z-index: 90;
  min-width: unset;
}

.mega-menu .mega-menu__logo{
  display: inline-block;
  flex-shrink: 0;
  margin-bottom: 36px;
  padding-top: 8px; 
}

.mega-menu .mega-menu__logo svg{
  height: 37px;
  width: 51.8px;
  fill: #cfae70;
}

.mega-menu .mega-menu__logo a{
  box-shadow: none;
  display: block;
}

.mega-menu .mega-menu__search{
  font-family: Theinhardt,system-ui,sans-serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(245, 243, 239, 0.1);
  border: 1px solid transparent;
  border-radius: 2px;
  color: #e0d5c0;
  outline: 0;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  align-items: center;
  display: flex;
  margin-bottom: 36px;
  padding-left: 8px;
}

.mega-menu .mega-menu__search svg{
  height: 16px;
  width: 16px;
  fill: none;
  flex-shrink: 0;
  stroke: #cfae70;
}

.mega-menu .mega-menu__search-form{
  width: 100%; 
}

.mega-menu .mega-menu__search-input{
  background-color: transparent;
  border: 0;
  color: #e0d5c0;
  font-family: Theinhardt,system-ui,sans-serif;
  font-size: 17px;
  outline: 0;
  padding: 15px 12px 10px !important;
  margin: unset !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%; 
}

.mega-menu .mega-menu__content{
  flex-grow: 1;
}

.mega-menu .mega-menu__tabs{
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 2px;
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  justify-content: space-between;
  padding: 2px;
  position: relative;
}

.mega-menu .mega-menu__tab[role=tab][aria-selected=true]{
  color: #fff;
}

.mega-menu .mega-menu__tab[role=tab]{
  font-family: Theinhardt,system-ui,sans-serif;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 400;
  padding-top: 14px;
  padding-right: 12px;
  padding-left: 12px;
  padding-bottom: 12px;
  color: #939393;
  flex: 1 1 50%;
  text-align: center;
  transition: color .7s cubic-bezier(0.215, 0.61, 0.355, 1);
  outline: unset !important;
  border: unset !important;
  background-color: unset;
}

.mega-menu .mega-menu__panels{
  flex-grow: 1;
  flex-shrink: 0;
  padding-top: 36px;
}

.mega-menu .mega-menu__panel{
  position: relative; 
}

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

a.header__skip,
.mega-menu a,
.primary-nav a,
.mega-menu a:hover,
.primary-nav a:hover{
  padding-bottom: unset !important;
  border-bottom: unset !important;
}

.primary-nav__logo-text svg{
  fill: #000 !important; 
}

.primary-nav .primary-nav__menu-btn{
  color: #000 !important; 
}

.mega-menu .mega-menu__close-btn svg{
  fill: #000 !important;
}
.footer{
  position: relative;
}

.footer .footer__inner{
  width: min(1400px, 100%);
  margin: auto;
  position: relative;
  padding: 36px 0.5vw;
  position: relative;
}

.footer .footer__inner *{
  font-family: Theinhardt,system-ui,sans-serif;
}

.footer .footer__inner:before{
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  background-color: #CFAE70;
  height: 1px;
  opacity: 1;
  left: 0.5vw;
  right: 0.5vw;
}

.footer .footer__inner .footer__logo{
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
  display: block;
  height: 0;
  max-width: 420px;
  padding-top: 11.3782051282%;
  position: relative; 
}

.footer .footer__inner .footer__logo svg{
  fill: #1c1c1c;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  transform: translateX(1.625%);
}

.footer .footer__inner .footer__logo svg:hover{
  fill: #946E23;
}

.footer .footer__inner .footer__policy{
  position: relative;
}

.footer .footer__inner .footer__policy:before{
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  background-color: #CFAE70;
  height: 1px;
  opacity: 1;
  left: 0.5vw;
  right: 0.5vw;
}

.footer .footer__inner .footer__policy .footer__policy-inner{
  width: min(920px, 100%);
  padding-top: 20px;
  margin: auto;
}

.footer a,
.footer p{
  cursor: pointer; 
}

.footer .footer__inner .footer__policy .footer__policy-inner p,
.footer .footer__inner .footer__policy .footer__policy-inner a{
  font-size: 17px; 
}


.footer li{
  list-style-type: none;
}

.footer ul {
  margin-left: -40px; 
}

.footer ul li{
  padding-top: 0px; 
  padding-bottom: 8px;
}

.footer a{

}

.footer a{
  color: #1c1c1c !important; 
  box-shadow: inset 0 -1px #e0d5c0; 
  cursor: pointer;
  transition: box-shadow .2s cubic-bezier(0.645, 0.045, 0.355, 1),color .2s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: inline;
  font-weight: 300;
  font-size: 17px;
  border-bottom: unset !important;
}

.footer a:hover{
  color: #946e24 !important;
}

.footer ul li a{
  font-weight: 300;
}


.footer .footer__inner .footer__policy a{

}

.footer .footer__inner .footer__policy span,
.footer .footer__inner .footer__policy p,
.footer .footer__inner .footer__policy a{
  line-height: 1.4; 
  font-weight: 300 !important;
}

.dark .footer *:is(a, p, span, li){
  color: #fff !important
}

.dark .footer .footer__inner .footer__logo svg{
  fill: #fff;
}


.footer .social-follow a,
.footer .social-follow a:hover{
  text-decoration: unset;
  border: unset;
  padding-bottom: 0px; 
  box-shadow: unset;
}

.footer .social-follow__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1C1C1C;
}

.footer .social-follow__icon:hover{
  background-color: #fff !important;
}

.footer .social-follow__icon:hover svg{
  fill: #1C1C1C !important;
}
/* 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;
  }
}