/* Theme base styles */
:root {
  --gold: #BE9C57;
  --black: #000;
  --white: #fff;
  --green: #33bc9d;
  --orange: #ff9d5f;
  --light-blue: #49b3e6;
  --dark-blue: #1c6aac;
  --padding: 6.666666vw;
  --padding-half: 3.333333vw;
  --container-width: 1200px;
  --transition: 300ms;
  --component-padding: 2em;
  --heading-1-size: clamp(78px, 30vw, 330px);
  --heading-2-size: clamp(48px, 6vw, 77px);
  --heading-3-size: clamp(36px, 4vw, 55px);
  --heading-4-size: clamp(32px, 3.5vw, 42px);
  --hand-size: clamp(22px, 3vw, 34px); 
  --hand-size-small: clamp(18px, 2.5vw, 24px);
}

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


/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


@font-face {
  font-family: 'NaturalMarker';
  src: url(//5491670.fs1.hubspotusercontent-na1.net/hubfs/5491670/raw_assets/public/ModernVisual2023/fonts/natural-marker/NaturalMarker.woff2) format('woff2'),
       url(//5491670.fs1.hubspotusercontent-na1.net/hubfs/5491670/raw_assets/public/ModernVisual2023/fonts/natural-marker/NaturalMarker.woff) format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* USAGE
 * font-family: 'NaturalMarker';
 */
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/**
 * @license
 * MyFonts Webfont Build ID 3867246, 2020-12-16T11:57:38-0500
 * 
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are 
 * explicitly restricted from using the Licensed Webfonts(s).
 * 
 * You may obtain a valid license at the URLs below.
 * 
 * Webfont: HelveticaLTWXX-Roman by Linotype
 * URL: https://www.myfonts.com/fonts/linotype/helvetica/pro-regular/
 * Copyright: Copyright © 2014 Monotype Imaging Inc. All rights reserved.
 * 
 * 
 * 
 * © 2020 MyFonts Incn*/

  
@font-face {
  font-family: "VisbyCF";
  src:  url(//5491670.fs1.hubspotusercontent-na1.net/hubfs/5491670/raw_assets/public/ModernVisual2023/fonts/visby-cf/VisbyCFHeavy/font.woff2) format('woff2'), 
        url(//5491670.fs1.hubspotusercontent-na1.net/hubfs/5491670/raw_assets/public/ModernVisual2023/fonts/visby-cf/VisbyCFHeavy/font.woff) format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VisbyCF";
  src:  url(//5491670.fs1.hubspotusercontent-na1.net/hubfs/5491670/raw_assets/public/ModernVisual2023/fonts/visby-cf/VisbyCFExtraBold/font.woff2) format('woff2'), 
        url(//5491670.fs1.hubspotusercontent-na1.net/hubfs/5491670/raw_assets/public/ModernVisual2023/fonts/visby-cf/VisbyCFExtraBold/font.woff) format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VisbyCF";
  src:  url(//5491670.fs1.hubspotusercontent-na1.net/hubfs/5491670/raw_assets/public/ModernVisual2023/fonts/visby-cf/VisbyCFMedium/font.woff2) format('woff2'), 
        url(//5491670.fs1.hubspotusercontent-na1.net/hubfs/5491670/raw_assets/public/ModernVisual2023/fonts/visby-cf/VisbyCFMedium/font.woff) format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face { 
  font-family: "VisbyCF";
  src:  url(//5491670.fs1.hubspotusercontent-na1.net/hubfs/5491670/raw_assets/public/ModernVisual2023/fonts/visby-cf/VisbyCFRegular/font.woff2) format('woff2'), 
        url(//5491670.fs1.hubspotusercontent-na1.net/hubfs/5491670/raw_assets/public/ModernVisual2023/fonts/visby-cf/VisbyCFRegular/font.woff) format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

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

/* CSS variables */

:root {
  --gap: 2.127659574%;
}

.body-wrapper {
  overflow: hidden;
}


.flickity-page-dots {
  display: flex;
  column-gap: 0.5em;
  align-items: center;
  justify-content: center;
  width: 100%;
  bottom: -1.5em;
}

.flickity-page-dot {
  width: 0.75em;
  height: 0.75em;
  border-radius: 50vw;
  text-indent: 50vw;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: white;
  display: block;
}
.flickity-page-dot:hover {
  border-color: black; 
}

.flickity-page-dot:focus,
.flickity-page-dot:active,
.flickity-page-dot.is-selected {
  background: var(--gold);
  outline: none;
  border-color: var(--gold); 
}


/* Mobile layout */

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

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

/* Desktop layout */

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

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

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

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

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

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

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

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

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

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

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

  .row-fluid .span1 {
    width: calc(8.33% - var(--gap));
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0;
}

.body-container-wrapper {
  background: white; 
  position: relative;
  z-index: 10;
}

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

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

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

@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.)
*/

/* Fluid Typography */

html {
  font-size: 16px;
}
@media screen and (min-width: 375px) {
  html {
    font-size: calc(16px + 6 * ((100vw - 375px) / 1225));
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 22px;
  }
}

body {
  font-size: 1em;
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family: 'VisbyCF', Helvetica, sans-serif;
}

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

p:last-child {
  margin-bottom: 0;
}


#main-content .hand-written {
  font-size: var(--hand-size) !important;
}

#main-content .card-featured__section-pre-title .hand-written {
  font-size: var(--hand-size-small) !important;
}








/* Paragraphs */

p {
  margin: 0 0 1.4em;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4em;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  word-break: normal;
  display: inline-block;
}
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;
}



.link-group {
  display: flex;
}

.link-group__link {
  display: block;
  padding: 0.875em 2em 0.75em 2em;
  border: 1px solid var(--gold);
  text-decoration: none;
  line-height: 1;
  font-size: 0.875em;
  background-color: var(--gold);
  color: white;
  transition: background-color 300ms, color 300ms;
}
.link-group__link--large {
  font-size: 1.375em;
}

.link-group__link:hover {
  background-color: rgba(190, 156, 87, 0.75);
}

.link-group__link--hollow {
  background-color: transparent;
  color: var(--gold);
}
.link-group__link--hollow:hover {
  background-color: rgba(190, 156, 87, 0.25);
}

.link-group__link:first-child {
  border-top-left-radius: 50vw;
  border-bottom-left-radius: 50vw; 
}

.link-group__link:last-child {
  border-top-right-radius: 50vw;
  border-bottom-right-radius: 50vw; 
}



.background--green .link-group__link {
  border: 1px solid white;
  background-color: white;
  color: var(--green);
}

.background--orange .link-group__link {
  border: 1px solid white;
  background-color: white;
  color: var(--orange);
}
.background--light-blue .link-group__link {
  border: 1px solid white;
  background-color: white;
  color: var(--light-blue);
}
.background--dark-blue .link-group__link {
  border: 1px solid white;
  background-color: white;
  color: var(--dark-blue);
}

.background--green .link-group__link--hollow,
.background--orange .link-group__link--hollow,
.background--light-blue .link-group__link--hollow,
.background--dark-blue .link-group__link--hollow {
  background-color: transparent;
  color: white;
}

.background--green .link-group__link:hover,
.background--orange .link-group__link:hover,
.background--light-blue .link-group__link:hover,
.background--dark-blue .link-group__link:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.background--green .link-group__link--hollow:hover,
.background--orange .link-group__link--hollow:hover,
.background--light-blue .link-group__link--hollow:hover,
.background--dark-blue .link-group__link--hollow:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Help text */

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 {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

.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;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

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

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.blog-post {
  margin: 0 auto;
  max-width: 960px;
}

.blog-post__meta {
  margin-bottom: 1.4rem;
}

.blog-post__meta a {
  text-decoration: underline;
}

.blog-post__timestamp {
  display: block;
}

.blog-post__tags svg {
  height: auto;
  margin-right: 0.35rem;
  width: 15px;
}

.blog-post__tag-link {
  font-size: 0.875rem;
}

/* Blog related posts */

.blog-related-posts {
  background-color: #F8FAFC;
}

.blog-related-posts h2 {
  text-align: center;
}

.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
}

.blog-related-posts__post {
  flex: 0 0 100%;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 1000px) {
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 3);
  }
}

.blog-related-posts__image {
  height: auto;
  max-width: 100%;
}

.blog-related-posts__title {
  margin: 0.7rem 0;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 680px;
}

.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */




.featured-blog {
  position: relative;
  transition: color var(--transition);
  display: block;
  max-width: 1600px;
  margin: 0 auto;
  margin-bottom: calc(3em + 3vw);
  text-decoration: none;
  color: inherit;
}

.featured-blog__image-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 1em;
  box-shadow: 0 0 20px rgb(0 0 0 / 25%);
}

.featured-blog__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
    overflow: hidden;
  border-radius: 1em;
  box-shadow: 0 0 20px rgb(0 0 0 / 25%);
}

.featured-blog__content {
  display: block;
  position: relative;
  padding: 2em 0;
}

.featured-blog__content-pre-title {
  display: block;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 1em;
    font-family: NaturalMarker;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
}

.featured-blog__content-title {
  display: block;
  font-weight: bold;
  font-size: 2.1875rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.featured-blog__content-excerpt {

}

.featured-blog:hover,
.featured-blog:hover .featured-blog__content-pre-title,
.featured-blog:hover .featured-blog__content-title {
  text-decoration: none;
}

.featured-blog:hover .featured-blog__content-excerpt {
  color: var(--black);
  text-decoration: none;
}

.featured-blog:hover .featured-blog__content-excerpt {
  color: var(--black);
  text-decoration: none;
}

.featured-blog:hover .featured-blog__image {
  transform: scale(1.05);
}


@media all and (min-width: 760px) {

  .featured-blog {
    display: flex;
    justify-content: right;
    align-items: center;
  }

  
  .featured-blog__image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 70%;
  }

  .featured-blog__content {
    position: relative;
    z-index: 10;
    margin-left: auto;
    background: var(--white);
    padding: var(--component-padding);
    flex-basis: 50%;
    margin-top: calc(3em + 3vw);
    margin-bottom: calc(3em + 3vw);
    box-shadow: var(--box-shadow);
  }
  
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


.blog_listing {
  margin-bottom: calc(3rem + 3vw);
  padding: 0 2em;
}

.blog-listing__list {
  display: flex; 
  flex-wrap: wrap;
  max-width: 1200px;
  column-gap: 2rem;
  row-gap: 4rem;
  margin: 0 auto;
  
} 

.blog-listing__list-item {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
  flex-basis: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-listing__list-item-image-wrap {
  overflow: hidden;  
  display: block;
  border-radius: 1em;
  box-shadow: 0 0 20px rgb(0 0 0 / 25%);
}

.blog-listing__list-item-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition);
}


.blog-listing__list-item:hover .blog-listing__list-item-image {
  transform: scale(1.1); 
}

.blog-listing__list-title {
  display: block;
  font-weight: 700;
  padding-bottom: 0.875em;
  transition: color var(--transition);
  font-size: 1.125em; 
  line-height: 1.1;
}

.blog-listing__list-excerpt {
  display: block;
font-size: 0.875em; 
}

.blog-listing__list-item:hover .blog-listing__list-item-image {
  transform: scale(1.1); 
}
.blog-listing__list-item:hover .blog-listing__list-title {
  color: var(--gold);
}


@media all and (min-width: 520px) {
  .blog-listing__list-item {
    flex-basis: calc(50% - 1rem);
  }
}

@media all and (min-width: 960px) {
  .blog-listing__list-item {
    flex-basis: calc(33.33% - 1.35rem);
  }
}

/* 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%;
}
/* Missing Template at Path: \'ModernVisual2023\/css\/vendor\/_flickity.css\' */ 



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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 200;
}

.site-header__logo {
  display: flex;
  position: absolute;
  top: 2em;
  left: 2em;
  flex-direction: column;
  max-width: 300px;
  width: 55vw;
}

.site-header__logo-row {
  display: flex;
  column-gap: 5%;
  position: relative;
  z-index: 10;
}

.site-header__logo-lion { flex-basis: 12%; }
.site-header__logo-modern { flex-basis: 42%; transform: translateX(-5%); transition: transform 300ms;}
.site-header__logo-visual { flex-basis: 36%; transform: translateX(-115%); transition: transform 300ms; }
.site-header__logo-solutions { opacity: 0; transform: translateY(-100%); transition: transform 300ms, opacity 300ms; z-index: 0; }

.site-header__logo.noscroll .site-header__logo-modern,
.site-header__logo:hover .site-header__logo-modern {transform: translateX(0); }
.site-header__logo.noscroll .site-header__logo-visual,
.site-header__logo:hover .site-header__logo-visual {transform: translateX(0); }
.site-header__logo.noscroll .site-header__logo-solutions,
.site-header__logo:hover .site-header__logo-solutions {transform: translateY(0); opacity: 1; }

.mv-logo-hide { opacity: 0; transition: opacity 300ms; }
.site-header__logo.noscroll .mv-logo-hide,
.site-header__logo:hover .mv-logo-hide { opacity: 1; }


.site-header__menu {
  position: absolute;
  top: 2em;
  right: 2em;
  z-index: 20;
}

.site-header__menu-button {
  margin: 0;
  border: none;
  background: transparent;
  font-size: 1.25em;
  font-weight: 600;
  transition: color 300ms;
  padding: 0.25em;
  line-height: 0.925em;
  color: black;
}

.site-header__menu-button-text-close {
  display: none;
}
.nav-open .site-header__menu-button-text-close {
  display: block;
}
.nav-open .site-header__menu-button-text-menu {
  display: none;
}

.site-header__menu-button:hover {
  cursor: pointer;
  color: #BE9C57;
}
.nav-open .site-header__menu-button:hover {
  cursor: pointer;
  color: white;
}

.site-header__navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(190, 156, 87, 0.95);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
  z-index: 10;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px); 
   
}

.nav-open .site-header__navigation { 
  opacity: 1;
  pointer-events: all;
}

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

/* NAVIGATION * * * * * * * * * * * * * * * * * * * * * * */

.main-navigation__list {
  padding: 10vh 1.5rem;
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(auto, 10vh);
  list-style-type: none;
}

.main-navigation__item {
  padding: 0;
  margin: 0;
  position: relative;
  transition: 300ms;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.main-navigation__item input {
  display: none;
}

.main-navigation__link {
  padding: 0;
  font-size: clamp(4em, 10vw, 14vh);
  color: white;
  line-height: 0.85;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.05em;
  position: relative;
  transition: color 300ms, transform 300ms;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.main-navigation__link span {
  position: relative;
  display: inline-block;
}

.main-navigation__list.level-2 {
  position: absolute;
  top: calc(100% + 15px);
  padding-block: 0.75rem;
  pointer-events: none;
  opacity: 0;
  transition: 300ms;
  z-index: 300;
  display: block;
  backdrop-filter: blur(10px);
  background: white;
  height: auto;
  border-radius: 0.5rem;
  border-top-right-radius: 0;
}

.main-navigation__list.level-2:after {
  content: '';
  position: absolute;
  top: -15px;
  right: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.main-navigation__list.level-2:before {
  content: '';
  position: absolute;
  top: -15px;
  right: 0;
  border-right: 0;
  border-top: 0;
  border-left: 20px solid transparent;
  border-bottom: 15px solid white;
}

.main-navigation__item:nth-child(odd) .main-navigation__list.level-2 {
  left: 0;
}
.main-navigation__item:nth-child(even) .main-navigation__list.level-2 {
  right: 0;
}

.main-navigation__item:hover .main-navigation__list.level-2 {
  pointer-events: all;
  opacity: 1;
}

.main-navigation__list.level-2 .main-navigation__link {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1vh 0;
  color: black;
}
.main-navigation__list.level-2 .main-navigation__link:hover {
  color: var(--gold);
}

.level-2 svg.underline-svg {
  display: none;
}

.main-navigation__link svg.underline-svg path.stroke-gold {
  stroke: black !important;
}

.main-navigation__link:hover,
.main-navigation__link.active-item {
  color: black;
}
.main-navigation__item:nth-child(even) a {
  justify-content: flex-end;
}
.main-navigation__item:nth-child(odd) .main-navigation__link:hover {
  transform: translateX(2.5%);
}
.main-navigation__item:nth-child(even) .main-navigation__link:hover {
  transform: translateX(-2.5%);
}
.main-navigation__link:hover.active-item {
  color: black; 
  transform: translateX(0) !important;
}

.main-navigation__item:nth-child(even) {
  text-align: right;
}

@media screen and (min-width: 375px) {

}

@media screen and (min-width: 1800px) {

}

@media all and (min-width: 800px) {


}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


.site-footer {
  min-height: 75vh;
  color: white;
  width: 100%;
  z-index: 8;
}

.site-footer__content {
  position: relative;
  z-index: 5;
  padding: 4rem 1.5rem;
  min-height: 75vh;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
  justify-content: center;
  align-items: center;
}
.site-footer__container {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  max-width: 1750px;
}

.site-footer__container--connect  {
  justify-content: space-between; 
  flex-direction: column;
  row-gap: 2rem;
  align-items: flex-start;
}

.site-footer__connect-phone {
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
}

.site-footer__connect-phone a {
  color: white;
  font-size: 36px;
  font-weight: 800;
  text-decoration: none;
  display: block;
  letter-spacing: -0.5px;
  transition: color 300ms;
}
.site-footer__connect-phone a:hover {
  color: var(--gold);
}

.site-footer__connect-social {
  display: flex; 
  column-gap: 1rem;
}

.site-footer__connect-social a {
  color: white;
  padding: 0;
  font-size: 2em;
  text-decoration: none;
  display: block;
  transition: color 300ms;
}
.site-footer__connect-social a:hover {
  color: var(--gold);
}

.site-footer__constrainer {
  display: flex;
  width: 100%;
  column-gap: 1.5rem;
  flex-wrap: wrap;
  row-gap: 2rem;
}

.site-footer__logo-link {
  display: inline-block; 
}
.site-footer__logo-link .fill-white {
  transition: fill 300ms; 
}
.site-footer__logo-link:hover .fill-white {
  fill: var(--gold); 
}

.site-footer__navigation {
  flex-basis: 100%; 
}

.site-footer__video {
  object-fit: cover;
  width: auto;
  min-width: 100vw;
  height: 75vh;
  position: fixed;
  bottom: 0;
  right: 0;
  background: black;
}



.footer-navigation__list {
  padding: 0;
  margin: 0 0 0 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  column-gap: 1.5rem;
}

.footer-navigation__list.level-1 {
  row-gap: 2rem;
}

.footer-navigation__list.level-2 {
  flex-direction: column; 
}

.footer-navigation__item {
  flex-basis: 50%;
  padding: 0;
  margin: 0;
}

.footer-navigation__item.has-sub-list > .footer-navigation__link {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.footer-navigation__link {
  color: white;
  text-decoration: none;
  line-height: 0.9;
  padding: 0.375rem 0;
  display: block;
  transition: color 300ms;
}

.footer-navigation__link:hover {
  color: var(--gold); 
}

@media all and (min-width: 525px) {
  .footer-navigation__list {
    flex-direction: row;
  }
  .footer-navigation__list.level-1 .footer-navigation__item {
    max-width: 330px;
  }
}

@media all and (min-width: 600px) {
  .site-footer__container--connect {
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 1.5rem;
    flex-wrap: wrap;
  }
  .site-footer__connect-phone,
  .site-footer__logo-link {
    width: 100%;
    max-width: 330px;
    text-align: left;
    white-space: nowrap;
  }
}

@media all and (min-width: 1100px) {
  
  
  
  .site-footer__navigation {
    max-width: 330px;
  }
  
  .site-footer__constrainer {
    flex-wrap: nowrap;
  }
  
  .site-footer__navigation {
      flex-basis: 33.3333;
  }
  .footer-navigation__list {
    flex-direction: column;
  }
}

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

::selection {
  background: var(--gold);
  color: #fff;
}

.fill-gold {
  fill: var(--gold);
}

.fill-black {
  fill: var(--black);
}

.fill-white {
  fill: var(--white);
}

  .stroke-gold,
  .stroke-green,
  .stroke-orange,
  .stroke-light-blue,
  .stroke-dark-blue,
  .stroke-black,
  .stroke-white {
    fill: none;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    stroke-width: 8px;
    stroke-linejoin: round;
  } 

.stroke-gold {
  stroke: var(--gold);
}

.stroke-green{
  stroke: var(--green);
}

.stroke-orange {
  stroke: var(--orange);
}

.stroke-light-blue {
  stroke: var(--light-blue);
}

.stroke-dark-blue {
  stroke: var(--dark-blue);
}

.stroke-black{
  stroke: #000000;
  stroke-width: 3px;
}

.stroke-white {
  stroke: #ffffff;
}

.draw-underline {
  display: inline-block;
  position: relative;
}


.underline-svg {
  position: absolute;
  top: 80%;
  left: -5%;
  width: 110%;
  z-index: -1;
}

.hidden {
  display: none;
}


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