/* Theme base styles */



    

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

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


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.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;
  }
}

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

/* Insight Cards */

.insight-card{
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    padding: 0px 30px 30px 30px;
    overflow: hidden;
}

.insight-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.90) 100%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
    transition: var(--transition);
}

.insight-card:hover::before{
    opacity: 1;
}

.insight-card__content{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 240px;
    position: relative;
    z-index: 2;
}

.insight-card__content p, 
.insight-card__content h4{
    margin-bottom: 0px;
    color: var(--white);
}

.insight-card__content .primary-cta, 
.insight-card__content .secondary-cta{
    max-width: max-content;
}

@media screen and (max-width: 767px){
    .insight-card__content .primary-cta, 
    .insight-card__content .secondary-cta{
        max-width: unset;
    }
}

.insight-card__content-footer{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
}


/* Location Cards */

.location-card{
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    height: 100;
}

.location-card__image{
    overflow: hidden;
    width: 100%;
    height: 190px;
}

.location-card__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.location-card__content{
    padding: 20px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
    justify-content: flex-start;
}

.location-card__content-header h4, 
.location-card__content-header p{
    margin-bottom: 0px;
}

/* Team Member */

.team-member{
    height: 100%;
    padding: 40px 40px 20px 40px;
    background-color: var(--white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.team-member__image{
    width: 100%;
    height: 100%;
    max-width: 140px;
    max-height: 140px;
    overflow: hidden;
    border-radius: 100%;
}

.team-member__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-member__header{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-member__header h5, 
.team-member__header p, 
.team-member__body p{
    margin-bottom: 0px;
}

.team-member__footer{}

.team-member__social{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    border-radius: 32px;
    background-color: var(--hunter-green-light);
    position: relative;
    transition: var(--transition);
}

.team-member__social:hover{
    background-color: var(--teal);
}

.team-member__social svg path{
    fill: var(--teal);
    transition: var(--transition);
}

.team-member__social:hover svg path{
    fill: var(--white);
} 

.team-member__social p{
    margin-bottom: 0px;
    color: var(--teal);
    transition: var(--transition);
}

.team-member__social:hover p{
    color: var(--white);
}

/* Product Card (All Products Listing) */

.product-card{
    display: flex;
    flex-direction: column;
    padding: 24px 24px 32px 24px;
    border-radius: 10px;
    background-color: var(--white);
    height: 100%;
    border: 1px solid var(--grey);
    box-shadow: var(--box-shadow--hidden);
    transition: box-shadow var(--transition);
}

.product-card.product-card--hide{
    display: none;
}

.product-card:hover{
    box-shadow: var(--box-shadow);
}

.product-card__header-icon{
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-card__header h5{
    margin-bottom: 10px;
}

.product-card__header .small-text{
    margin-bottom: 10px;
    color: #5b7175;
}

.product-card__body{
    margin-bottom: 20px;
}

.product-card__body p{
    margin-bottom: 0px;
}

.product-card__footer{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-end;
}

.product-card__footer .primary-cta{
    max-width: unset;
    width: 100%;
}


/* Article cards */

.article-card {
    border-radius: 10px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--grey);
    box-shadow: var(-box-shadow--hidden);
}

.article-card:hover{
    box-shadow: var(--box-shadow);
}

.article-card.article-card--visible{
    display: flex;
    opacity: 1;
}

.article-card.certification {
  flex-direction: column;
  gap: 0;
}

.article-card__header{
    height: 200px;
    width: 100%;
    background-color: var(--tiber-green);
    position: relative;
}

.article-card__header-tag{
    display: block;
    color: var(--white);
    border-radius: 50px;
    background-color: rgba(7, 39, 45, 0.80);
    padding: 4px 16px;
    position: absolute;
    top: 20px;
    right: 16px;
}

.article-card__header img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-card__body{
    background-color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.article-card__tag{
    color: var(--teal);
    line-height: 1;
}

.article-card__body h5, 
.article-card__body p{
    margin-bottom: 0px!important;
}

.article-card__footer{
    display: flex;
    flex-grow: 1;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
}

.article-card__footer-item{
    display: flex;
    margin-bottom: 0px;
    line-height: 1;
}

.article-card__location{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.article-card__footer-item:last-of-type{
    justify-content: flex-end;
}

.article-card__footer > .article-card__footer-item:only-of-type {
    width: 100%;
    justify-content: flex-start;
}

.article-card__footer-item .primary-cta, 
.article-card__footer-item .secondary-cta{
    max-width: unset;
    width: 100%;
}

/* Featured Card */

.featured-card {
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 24px 16px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.featured-card:hover .text-cta {
  font-weight: 500 !important;
}

.featured-card:hover .text-cta::before {
  width: 100%;
  z-index: -1;
}


.featured-card a:not(.primary-cta):not(.secondary-cta):not(.text-cta).featured-card-link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.featured-card a.featured-card-link::before {
 content: none !important;
}

.filterable-listing__cards .featured-card{
    display: none;
    opacity: 0;
}

.filterable-listing__cards .featured-card.featured-card--visible{
    display: flex;
    opacity: 1;
}

.featured-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 39, 45, 0) 30%, #07272D 100%);
    z-index: 2;
    pointer-events: none;
}

.featured-card__upper-content{
    display: flex;
    justify-content: flex-end;
}

.featured-card__upper-content span{
    display: block;
    color: var(--white);
    border-radius: 50px;
    background-color: rgba(7, 39, 45, 0.50);
    padding: 4px 16px;
}

.featured-card__upper-content-logo{
    aspect-ratio: 1/1;
    width: 100px;
    height: 100px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.featured-card__upper-content-logo img{
    max-width: 86px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    object-position: center;
}

.featured-card__body{
    margin-top: 180px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.featured-card__tags{
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.featured-card__tag{
    border-radius: 50px;
    border: 1px solid var(--grey);
    background: var(--white);
    padding: 4px 16px;
}

.featured-card__body, 
.featured-card__footer{
    padding: 0px 16px;
}

.featured-card__footer{
    display: flex;
    align-items: flex-end;
    flex-grow: 1;
}

.featured-card__footer .text-cta{
    max-height: max-content;
}

.featured-card__body h3, 
.featured-card__body p{
    color: white;
    margin-bottom: 0px;
}

/* Glossary Card */

.glossary-card{
    border-radius: 10px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
    position: relative;
    padding: 20px;
    background-color: var(--white);
}

.glossary-card.glossary-card--visible{
    display: flex;
    opacity: 1;
}

.glossary-card__header{
    margin-bottom: 10px;
}

.glossary-card__body h4{
    margin-bottom: 0px;
    color: var(--teal);
    margin-bottom: 10px;
}

.glossary-card__body p{
    margin-bottom: 0px;
}

/* Product Bundle Cards */

.bundle-card{
    border-radius: var(--radius);
    border: 1px solid var(--grey);
    overflow: hidden;
    box-shadow: var(--box-shadow--hidden);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    background-color: var(--white);
}

.bundle-card:hover{
    box-shadow: var(--box-shadow);
}

.bundle-card__header{
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 220px;
}

.bundle-card__header::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    pointer-events: none;
}

.bundle-card__body{
    padding: 10px 32px 0px 32px;
    margin-bottom: 20px;
    background-color: white;
}

.bundle-card__body h4{
    margin-bottom: 16px;
}

.bundle-card__body p{
    margin-bottom: 0px;
}

.bundle-card__footer{
    padding: 0px 32px 20px 32px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
    gap: 20px;
    width: 100%;
}

.bundle-card__footer-product{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}

.bundle-card__footer-product-icons{
    display: flex;
    flex-direction:row;
}

.bundle-card__footer-product-icon{
    width: 26px;
    height: 26px;
    object-fit: contain;
    object-position: bottom left;
    border: 2px solid var(--white);
    border-radius: 8px;
    margin-left: -8px;
    transform: scale(1);
    z-index: 1;
    transition: 0.15s linear;
    position: relative;
}

.bundle-card__footer-product-icon:first-of-type{
    margin-left: 0px;
}

.bundle-card__footer-product-icon:hover{
    transform:scale(1.1);
    z-index:2;
}

.bundle-card__footer-product-amount p{
    color: var(--tiber-green);
    opacity: 0.6;
    margin-bottom: 0px;
}

.bundle-card__footer-ctas{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.bundle-card__footer-ctas .primary-cta, 
.bundle-card__footer-ctas .secondary-cta{
    max-width: unset;
    width: 100%;
}

.bundle-card__footer-ctas .bundle-card__cta{
    max-width: max-content;
}

/* Step Card */

.step-card{
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    padding: 32px 32px 40px 32px;
    height: 100%;
}

.step-card__header{
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 32px;
}

.step-card__header-icon img{
    min-width: 48px;
    min-height: 48px;
    object-fit: contain;
    object-position: center;
}

.step-card__header-step span{
    display: block;
    font-size: 96px;
    line-height: 0.7;
    font-weight: 600;
    color: var(--hunter-green);
}

.step-card__footer{
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    margin-top: 60px;
}


/* Partner Cards */

.partner-card{
    background-color: var(--white);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.partner-card.partner-card--hide{
    display: none;
}

.partner-card__header{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.partner-card__header img{
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: center;
}

.partner-card__body{
  display: flex;
  align-items: flex-end;
  text-align: center;
}

.partner-card__footer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


/* Tools and Template Cards */

.tools-card{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0px;
    opacity: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--white);
    pointer-events: all;
}

.tools-card.tools-card--hide{
    display: none;
    opacity: 0;
    pointer-events: none;
}

.tools-card__image{
    width: 35%;
    min-width: 200px;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tools-card__content{
    padding: 24px 30px;
    width: 65%;
}

/* Related Blog Card */

.related-blog-card{
    border-radius: 10px;
    overflow: hidden;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    padding: 16px 20px;
    background-color: #e5f3ea;
}

.related-blog-card__header{
    margin-bottom: 10px;
}

.related-blog-card__header-tag{
    color: var(--teal);
}

.related-blog-card__body h6{
    margin-bottom: 0px;
    margin-bottom: 10px;
}

.related-blog-card__body p{
    margin-bottom: 0px;
}

/* Client Testimonial */

.client-testimonial{
    background-color: #cce8e5;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 30px;
    border-radius: 8px;
    align-items: center;
    height: 100%;
    position: relative;
    border: 1px solid transparent;
    box-shadow: var(--box-shadow--hidden);
    transition: var(--transition);
}

.client-testimonial.client-testimonial--no-logo{
    padding-top: 64px;
}

.client-testimonial:hover{
    background-color: var(--white);
    border: 1px solid var(--grey);
    box-shadow: var(--box-shadow);
}

.client-testimonial .slider-navigation__item{
    position: absolute!important;
    top: 16px;
    right: 16px;
    opacity: 0;
}

.client-testimonial:hover .slider-navigation__item{
    opacity: 1;
}

.client-testimonial .slider-navigation__item::before{
    display: none!important;
}

.client-testimonial__logo img{
    max-height: 50px;
    width: max-content;
}

.client-testimonial blockquote{
    text-align: center;
}

.client-testimonial__footer{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.client-testimonial__footer img{
    height: 48px;
    width: 48px;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
    margin-bottom: 16px;
}

.client-testimonial__footer p{
    text-align: center;
    margin-bottom: 0px;
}

.client-testimonial__footer .small-text{
    color: var(--grey);
}

.client-testimonial__footer .additional-content{
    margin-top: 24px;
    color: var(--teal)!important;
    font-weight: 600;
}


@media screen and (max-width: 1200px){
    .team-member{
        padding: 40px 24px 20px 24px;
    }

    .tools-card__content{
        padding: 24px 30px;
        width: 100%;
    }
}

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

    .tools-card__image{
        width: 100%;
        height: 200px;
    }
}

@media screen and (max-width: 767px){
    .featured-card__body, 
    .featured-card__footer{
        padding: 0px;
    }
}


/* Product Bundle Cards */

.product-bundle-card{
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: 10px;
    border: 1px solid var(--grey);
    position: relative;
    box-shadow: 0px 24px 44px 0px rgba(0, 57, 52, 0), 0px 19px 24px 0px rgba(0, 104, 94, 0), 0px 10px 30px 0px rgba(0, 104, 94, 0);
    transition: var(--transition);
    height: 100%;
}


.product-bundle-card:hover{
    background-color: #F2FAF5;
    box-shadow: 0px 24px 44px 0px rgba(0, 57, 52, 0.10), 0px 19px 24px 0px rgba(0, 104, 94, 0.08), 0px 10px 30px 0px rgba(0, 104, 94, 0.05);

}

.product-bundle-card__content{
    position: relative;
    overflow-y: clip;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-bundle-card__content::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 15%, rgba(0, 0, 0, 0) 100%);
    opacity: 1;
    transition: var(--transition);
    z-index: 3;
}

.product-bundle-card:hover .product-bundle-card__content::after{
    opacity: 0;
}

.product-bundle-card__content-icon{
    opacity: 1;
    transition: var(--transition);
}

.product-bundle-card:hover .product-bundle-card__content-icon{
    opacity: 0;
}

.product-bundle-card .product-bundle-card__content-text{
    position: absolute;
    bottom: 0%;
    transform: translateY(0%);
    left: 0;
    transition: var(--transition);
}

.product-bundle-card:hover .product-bundle-card__content-text{
    bottom: 100%;
    transform: translateY(100%);
}

.product-bundle-card .product-bundle-card__content-text p{
    margin-bottom: 0px;
}

.product-bundle-card__content-products{
    padding-top: 160px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-end;
    width: 100%;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.product-bundle-card:hover .product-bundle-card__content-products{
    opacity: 1;
    pointer-events: all;
}

.product-bundle-card__product{
    display: flex;
    flex-direction: row;
    align-items: center;
    align-items: center;
    gap: 16px;
    position: relative;
}

.product-bundle-card__product img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.product-bundle-card__product span{
    font-weight: 600;
    transition: var(--transition);
}

.product-bundle-card__product:hover span{
    color: var(--teal);
}
/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

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

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  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;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-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;
}
/* Fields */

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

/* Labels */

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

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
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;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* 

Need to make individual adjustments? -- Please use modifier classes e.g. slider-navigation--team-slider
inside of your modules respective css file 

*/


/* Slider Navigation */

.slider-navigation{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.slider-navigation__item{
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 1px solid rgba(0, 141, 127, 0.1);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
    opacity: 1;
}

.slider-navigation__item.swiper-button-disabled{
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-navigation__item:hover{
    background-color: var(--teal);
    border-color: var(--teal);
}

.slider-navigation__item svg{
    width: 28px;
    max-width: 28px;
    height: auto;
}

.slider-navigation__item svg path{
    fill: var(--teal);
    transition: var(--transition);
}

.slider-navigation__item:hover svg path{
    fill: var(--white);
}

/* Logo Slider */

.logo-slider{
    position: relative;
    isolation: isolate;
}

.logo-slider::after, 
.logo-slider::before{
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.logo-slider::after{
    top: 0;
    right: 0;
}

.logo-slider::before{
    top: 0;
    left: 0;
}

.logo-slider__logo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-slider.logo-slider--light .logo-slider__logo img{
 filter: brightness(0) saturate(100%) invert(1);
  -webkit-filter: brightness(0) saturate(100%) invert(1);
} 

.logo-slider.logo-slider--dark .logo-slider__logo img{
    filter: brightness(0) saturate(100%);
    -webkit-filter: brightness(0) saturate(100%);
}

.logo-slider__logo img{
    min-height: 70px;
    max-height: 70px;
    width: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px){

    .logo-slider__logo img{
        min-height: 30px;
        max-height: 30px;
    }
}

.pagination{
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination__page, 
.pagination__arrow{
    max-width: 40px;
    max-height: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: inherit;
    background-color: transparent;
    transition: var(--transition);
    cursor: pointer;

}

.pagination__page:hover, 
.pagination__page.pagination__page--active{
    background-color: var(--tiber-green);
    color: white;
}

.pagination__arrow:hover{
    background-color: var(--tiber-green);
}

.pagination__arrow svg path{
    stroke: var(--tiber-green);
}

.pagination__arrow:hover svg path{
    stroke: var(--white);
}


.pagination__arrow svg{
    pointer-events: none;
}

.pagination__arrow.pagination__arrow--prev svg{
    transform: rotate(180deg);
}

.pagination__arrow.pagination__arrow--inactive{
    cursor: not-allowed;
    opacity: 0.3;
}

.pagination:has(.pagination__arrow.pagination__arrow--prev.pagination__arrow--inactive):has(.pagination__arrow.pagination__arrow--next.pagination__arrow--inactive) .pagination__arrow.pagination__arrow--inactive{
    display: none;
}
/* 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;
}
.video-media{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.video-media.video-media--paused{

}

.video-media video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    display: block;
}

.video-media .video-media__thumbnail{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: var(--transition);
}

.video-media.video-media--paused .video-media__thumbnail{
    opacity: 1;
}

.video-media .video-media__controls{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    transition: var(--transition);
}

.video-media:hover .video-media__controls{
    background-color: rgba(0, 0, 0, 0.3);
}

.video-media.video-media--paused .video-media__controls{
    opacity: 1;
    pointer-events: all;
}

.video-media__controls svg{
    transition: var(--transition);
    border: 0px solid rgba(255, 255, 255, 0);
    border-radius: 100%;
}

.video-media__controls:hover svg{
    border: 6px solid rgba(255, 255, 255, 0.5);
}

.video-media__controls svg circle{
    fill: var(--white);
    transition: var(--transition);
}

.video-media__controls svg path{
    fill: var(--teal);
    transition: var(--transition);
}

.video-media__controls:hover svg circle{
    fill: var(--teal);
}

.video-media__controls:hover svg path{
    fill: var(--white);
}

@media screen and (max-width: 767px){

    .video-media__controls svg{
        width: 50px;
        height: 50px;
    }

}
.accordion{
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid;
  background-color: transparent;
  transition: var(--transition);
}

.accordion.accordion--light{
  border-color: var(--hunter-green);
}

.accordion.accordion--dark{
  border-color: var(--grey);
}

.accordion.accordion--dark.active:not(.tabbed-switchback .accordion){
  background-color: #e5f3ea;
}

.accordion.accordion--light .accordion__title-indicator__title span{
  color: #494A52;
}

.accordion.accordion--light .accordion__title-indicator__title span:hover{
  color: #fdc028;
}

.accordion .accordion__title-indicator{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  align-items: center;
  margin-bottom: 0px;
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  padding: 18px 0px;
}

.accordion .accordion__title-indicator__title span{
  font-weight: 400;
  transition: 0.15s linear;
  font-size: 20px;
}

.accordion.active .accordion__title-indicator__title span{
  font-weight: 600;
}

 .accordion:hover .accordion__title-indicator__title span{
  color: var(--teal);
}

.accordion__title-indicator .accordion__title__indicator{
  position: relative;
  margin-left: 20px;
}

.accordion__title__indicator__plus{
  width: 20px;
  height: 20px;
  height: auto;
  opacity: 1;
  transition: var(--transition)
}

.accordion.active .accordion__title__indicator__plus{
  opacity: 0;
}

.accordion__title__indicator__minus{
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  opacity: 0;
  transition: var(--transition)
}

.accordion.active .accordion__title__indicator__minus{
  opacity: 1;
}

.accordion .accordion__title-indicator-svg{
  min-width: 14px;
  min-height: 7px;
  transform: rotate(0deg);
  transition: var(--transition);
}

.accordion.active .accordion__title-indicator-svg{
  transform: rotate(180deg);
}

.accordion.active .accordion__title-indicator-svg path{
  stroke: var(--teal);
}

.accordion .accordion__content{
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height var(--transition), opacity var(--transition);
  width: 90%;
  line-height: 1.5;
  position: relative;
}

.accordion.active .accordion__content{
  opacity: 1;
  padding: 32px 0px;
}

.accordion.active .accordion__content img{
  border-radius: 8px;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {


  .accordion__title-indicator__title span{
    font-size: 24px;
  }

  .accordion__title__indicator{
    margin-left: 0px!important;
  }

  .accordion .accordion__content{
    width: 100%;
  }

}
.statistic{
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--hunter-green);
    position: relative;
}

.statistic-number{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    letter-spacing: 2px;
}

.statistic-number__prefix, 
.statistic-number__suffix{
    font-size: 55px;
    font-weight: 500;
    line-height: 1;
}

.statistic-number__number{
    font-size: 70px;
    font-weight: 500;
    line-height: 1;
}


.statistic-content p{
    max-width: 200px;
}

.statistic-content p:last-of-type{
    margin-bottom: 0px;
}

@media screen and (max-width: 1023px){
    .statistic-number__prefix, 
    .statistic-number__suffix{
        font-size: 40px;
        font-weight: 500;
        line-height: 1;
    }

    .statistic-number__number{
        font-size: 60px;
        font-weight: 500;
        line-height: 1;
    }
}

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

/* Header DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

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

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

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

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

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

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

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

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
    /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
    .header__language-switcher .hs-language-switcher__menu {
        display: block;
        box-shadow:none!important;
        background: transparent;
    }
    .header__language-switcher .hs-language-switcher__menu a {
        font-size: 20px!important;
    }
    .header__language-switcher .hs-language-switcher__button {
        display: none;
    }
  }

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

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

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

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* 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: \'origin-theme\/css\/modules\/_modules.css\' */

/* Sections */



/* Macros */

/* Filterable Card Listing Skeleton */

.filterable-listing {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
}

.filterable-listing__filters-panel {
  width: 100%;
  max-width: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.filterable-listing__cards-panel{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 64px;
  width: 100%;
}

/* Search */

.filterable-listing__search-input{
  padding: 10px 16px 10px 20px;
  width: 100%;
  border-radius: 55px;
  background-color: transparent;
  border: 1px solid var(--tiber-green);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path d="M1 17L6.11111 11.8889M4.55556 7.22222C4.55556 8.87246 5.21111 10.4551 6.378 11.622C7.5449 12.7889 9.12754 13.4444 10.7778 13.4444C12.428 13.4444 14.0107 12.7889 15.1776 11.622C16.3444 10.4551 17 8.87246 17 7.22222C17 5.57199 16.3444 3.98934 15.1776 2.82245C14.0107 1.65555 12.428 1 10.7778 1C9.12754 1 7.5449 1.65555 6.378 2.82245C5.21111 3.98934 4.55556 5.57199 4.55556 7.22222Z" stroke="%23003934" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: 20px;
  background-position: center right 20px;
  background-repeat: no-repeat;
}

/* Filters */

.filterable-listing__filters {
  position: sticky;
  top: 120px;
  left: 0px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.filterable-listing__filter-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.filterable-listing__filter-title svg {
  transform: rotate(180deg);
  transition: var(--transition);
}

.filterable-listing__filter.filterable-listing__filter--active .filterable-listing__filter-title svg {
  transform: rotate(0deg);
}

.filterable-listing__filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 0px;
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: var(--transition);
}

.filterable-listing__filter.filterable-listing__filter--active .filterable-listing__filter-options {
  height: 100%;
  max-height: 1000px;
  overflow: visible;
  opacity: 1;
}

.filterable-listing__filter-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: inherit;
  transition: var(--transition);
  text-transform: capitalize;
}

.filterable-listing__filter-option:hover {
  color: var(--teal);
}

.filterable-listing__filter-option input[type="checkbox"]::before {
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="19" height="19" rx="2.5" stroke="%23003934"/></svg>');
}

.filterable-listing__filter-option input[type="checkbox"]:checked::before {
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="19" height="19" rx="2.5" fill="white" stroke="%23003934"/><rect x="4" y="4" width="12" height="12" rx="2" fill="%23008D7F"/></svg>');
}


/* Cards Grid */

.filterable-listing__no-results{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 1;
  pointer-events: all;
}

.filterable-listing__no-results.filterable-listing__no-results--hidden{
  display: none;
  opacity: 0;
  pointer-events: none;
}

/* Card Grid: Base layout */
.filterable-listing__cards {
  display: grid;
  gap: 50px 30px;
  grid-template-columns: repeat(3, 1fr); /* fallback/default */
}

/* Modifier: 2 per row */
.filterable-listing__cards--two {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.filterable-listing__cards.filterable-listing__cards--even-gap{
  gap: 30px;
}

/* Responsive Overrides */
@media screen and (max-width: 1165px) {
  .filterable-listing__cards{
    grid-template-columns: repeat(2, 1fr);
  }

  .filterable-listing__cards--two {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1000px) {
  .filterable-listing {
    flex-direction: column;
    gap: 32px;
  }

  .filterable-listing__filters-panel {
    width: 100%;
    max-width: unset;
  }

  .filterable-listing__cards-panel {
    width: 100%;
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .filterable-listing__cards{
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
/* Setup */
.filterable-listing-vertical {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 70px;
}

/* Filters */
.filterable-listing-vertical__filters {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filterable-listing-vertical__filters p {
    margin-bottom: 0px;
}

.checkbox-filter {
    display: flex;
    flex-direction: row;
    border-radius: 8px;
    padding: 8px 10px;
    background-color: #cfe5df;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    cursor: pointer;
    min-width: max-content;
}

.checkbox-filter p {
    color: inherit;
    transition: var(--transition);
}

.checkbox-filter.checkbox-filter--active,
.checkbox-filter:hover {
    background-color: var(--tiber-green);
}

.checkbox-filter.checkbox-filter--active p,
.checkbox-filter:hover p {
    color: white;
}

.checkbox-filter input[type="checkbox"]::before {
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="19" height="19" rx="2.5" stroke="%23003934"/></svg>');
}

.checkbox-filter:hover input[type="checkbox"]::before {
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="19" height="19" rx="2.5" stroke="white"/></svg>');
}

.checkbox-filter input[type="checkbox"]:checked::before {
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="19" height="19" rx="2.5" stroke="white"/><rect x="4" y="4" width="12" height="12" rx="2" fill="white"/></svg>');
}

.filterable-listing-vertical__select{
    display: none;
}

/* Card Grid */
.filterable-listing-vertical__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1023px) {
    .filterable-listing-vertical__cards:not(.filterable-listing-vertical__cards--two) {
        grid-template-columns: repeat(2, 1fr);
    }
    .filterable-listing-vertical__cards:not(.filterable-listing-vertical__cards--two) > *:nth-child(3) {
        grid-column: 1 / -1;
    }

    .filterable-listing-vertical__cards--two {
        grid-template-columns: repeat(2, 1fr);
    }
    .filterable-listing-vertical__cards--two > *:nth-child(3) {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .filterable-listing-vertical__filters {
        justify-content: flex-start;
    }
    .filterable-listing-vertical__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 1023px) {
    .filterable-listing-vertical__cards--two {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .filterable-listing-vertical {
        gap: 40px;
    }

    .filterable-listing-vertical__filters {
        display: none;
    }

    .filterable-listing-vertical__select {
        display: block;
        font-size: 20px;
        padding: 10px;
        background-color: transparent;
        border-top: 0;
        border-left: 0;
        border-right: 0;
        border-radius: 4px;
    }

    .filterable-listing-vertical__cards{
        grid-template-columns: repeat(1, 1fr)!important;
        gap: 16px;
    }
}
.latest-articles__title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.latest-articles__title h2{
    margin-bottom: 0px;
}

.latest-articles__articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: stretch;
}

.latest-articles__articles .article-card{
    display: flex;
    opacity: 1;
}

@media (max-width: 1023px) {
    .latest-articles__articles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 819px) {
    .latest-articles__title .secondary-cta{
        display: none;
    }
}

@media (max-width: 767px) {
    .latest-articles__articles {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.ecs-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999999999;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecs-modal.ecs-modal--show {
    opacity: 1;
    pointer-events: all;
}

.ecs-modal::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--tiber-green);
    opacity: 0.7;
    pointer-events: none;
}

.ecs-modal__content{
    position: relative;
    max-width: 85vw;
    width: 85vw;
    max-height: 90vh;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 0 50px rgba(0,0,0,0.4);
    overflow-y: auto;
    padding: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    isolation: isolate;
}

.ecs-modal__content * {
    max-width: 100%;
    box-sizing: border-box;
}

.ecs-modal__content iframe,
.ecs-modal__content video {
    width: 100% !important;
    height: auto !important;
    max-height: 60vh;
    display: block;
}

.ecs-modal__content video{
    max-height: unset;
}

.ecs-modal__content:has(video){
    padding: 0px;
}

.ecs-modal__content .video-media{
    z-index: 1;
}

.ecs-modal__content:has(video) .ecs-modal-close-icon svg path{
    fill: white!important;
}

.ecs-modal-close-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    z-index: 2;
}

.ecs-modal-close-icon:hover svg path {
    fill: var(--teal);
    transition: var(--transition);
}


/* Custom Macro Behaviours */

.ecs-modal .video-media.video-media--paused .video-media__controls{
    pointer-events: none;
}

.ecs-modal--show .video-media.video-media--paused .video-media__controls{
    pointer-events: all;
}    

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

/* Misc style variables */

html {
  scroll-behavior: smooth;
}

.body-wrapper{
  overflow-x: clip;
}

:root {
  --transition: 0.3s ease-in-out;
  --box-shadow: 0px 10px 23px -5px rgba(0,0,0,0.05);
  --box-shadow--hidden: 0px 10px 23px -5px rgba(0,0,0,0.0);
  --radius: 10px;
}

/* Responsive helpers */

.hide-desktop{
  display: none;
}

@media screen and (max-width: 767px){

  .hide-desktop{
    display: flex!important;
  }
  .hide-mobile{
    display: none!important;
  }
}

/* Cookie popup adjustments */

.hs-banner-optimization-animation{
  inset: unset!important;
  transform: translate(45%, 70%)!important;
  box-shadow: none!important;
}

.hs-banner-parent{
  position: relative!important;
}

body .cookie-overlay{
  width: 100%;
  height: 100vh;
  background-color: var(--tiber-green);
  position: fixed;
  z-index: 1000000000;
  opacity: 0;
  pointer-events: none;
}

body:has(.hs-banner-optimization-animation):not(body:has(.hs-banner-optimization-animation.hs-hidden)) .cookie-overlay{
  opacity: 0.7;
}