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

@font-face {
font-family: 'Gibson';
src: url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson-Medium.woff2') format('woff2'),
url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson-Medium.woff') format('woff');
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Gibson';
src: url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson.woff2') format('woff2'),
url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Gibson';
src: url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson-Light.woff2') format('woff2'),
url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson-Light.woff') format('woff');
font-weight: 300;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Gibson';
src: url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson-Bold.woff2') format('woff2'),
url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Gibson';
src: url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson-Heavy.woff2') format('woff2'),
url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson-Heavy.woff') format('woff');
font-weight: 900;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Gibson';
src: url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson-SemiBold.woff2') format('woff2'),
url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson-SemiBold.woff') format('woff');
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Gibson';
src: url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson-Thin.woff2') format('woff2'),
url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/Cadbury%20Biscoff%20Landing%20Page%20-%202026/font/Gibson-Thin.woff') format('woff');
font-weight: 100;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'gibsonbold';
src: url('https://19533831.fs1.hubspotusercontent-na1.net/hubfs/19533831/Cadbury%20LP%20-%20Gibson%20Font/gibson-bold-webfont.woff2') format('woff2'),
url('https://19533831.fs1.hubspotusercontent-na1.net/hubfs/19533831/Cadbury%20LP%20-%20Gibson%20Font/gibson-bold-webfont.woff') format('woff');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'gibsonlight';
src: url('https://19533831.fs1.hubspotusercontent-na1.net/hubfs/19533831/Cadbury%20LP%20-%20Gibson%20Font/gibson-light-webfont.woff2') format('woff2'),
url('https://19533831.fs1.hubspotusercontent-na1.net/hubfs/19533831/Cadbury%20LP%20-%20Gibson%20Font/gibson-light-webfont.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'gibsonregular';
src: url('https://19533831.fs1.hubspotusercontent-na1.net/hubfs/19533831/Cadbury%20LP%20-%20Gibson%20Font/gibson-regular-webfont.woff2') format('woff2'),
url('https://19533831.fs1.hubspotusercontent-na1.net/hubfs/19533831/Cadbury%20LP%20-%20Gibson%20Font/gibson-regular-webfont.woff') format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'gibsonsemibold';
src: url('https://19533831.fs1.hubspotusercontent-na1.net/hubfs/19533831/Cadbury%20LP%20-%20Gibson%20Font/gibson-semibold-webfont.woff2') format('woff2'),
url('https://19533831.fs1.hubspotusercontent-na1.net/hubfs/19533831/Cadbury%20LP%20-%20Gibson%20Font/gibson-semibold-webfont.woff') format('woff');
font-weight: 500;
font-style: normal;
}

*, *:before, *:after {box-sizing: border-box;margin: 0;padding: 0;} 
:root {
--base-font-size: 18px;
--primary-font-family: 'Gibson', sans-serif;
--heading-line-height:1;
--heading--letter-spacing:4.16px;
--paragraph--letter-spacing:0.64px;
--paragraph-line-height:22px;
--list-line-height: 1.4;
--primary-color: #442778;
--secondary-color: #fff;
--tertiary-color: #3B0073;
--primary-transistion: .3s ease-in-out;
--opacity:0.6;
--font-size-h1:60px;
--font-size-h2: 36px;
--font-size-h3: 30px;
--font-size-h4: 20px;
--font-size-h5: 21px;
--margin-lg:32px;
}
@media (min-width:576px) {
:root {
--font-size-h1:90px;
--font-size-h2:44px;
--font-size-h3:36px;
}
}
@media (min-width:768px) {
:root {
--font-size-h1:150px;
--font-size-h2:60px;
--font-size-h3:52px;
--font-size-h4:26px;
--margin-lg:48px;
}
}
@media (min-width:1024px) {
:root {
--font-size-h1:200px;
--font-size-h2:80px;
--font-size-h3:64px;
--font-size-h4:30px;
--margin-lg:64px;
}
}
@media (min-width:1200px) {
:root {
--font-size-h1:230px;
}
}

img { max-width: 100%; height: auto;}
body{font-family: var(--primary-font-family) !important;font-size:var(--base-font-size);font-weight: 400;line-height:var(--paragraph-line-height);position:relative;color:var(--secondary-color);background-color:var(--primary-color);text-align:center;background-image:url("https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/monopoly/pattern.png");background-size:300%;background-repeat:repeat;}
html{scroll-behavior:smooth;font-family: var(--primary-font-family) !important;}
h1, .h1{font-size: var(--font-size-h1);line-height: var(--heading-line-height);text-transform:uppercase;font-weight:600;}
h2, .h2{font-size: var(--font-size-h2);line-height: var(--heading-line-height);text-transform:uppercase;font-weight:600;}
h3, .h3{font-size: var(--font-size-h3);line-height: var(--heading-line-height);text-transform:uppercase;font-weight:600;}
h4, .h4{font-size: var(--font-size-h4);line-height:1.4;text-transform:uppercase;font-weight:600;}
.h5{font-size: var(--font-size-h5);}
.h6{font-size: var(--font-size-h6);}
p{line-height: var(--paragraph-line-height);font-weight:400;letter-spacing:var(--paragraph--letter-spacing);}
ul, ol{list-style-position: inside;}
ul li{list-style-type: disc;}
ol li{list-style-type: decimal;}
li{line-height: var(--list-line-height);font-size: var(--base-font-size);color: var(--primary-color);}
a{color:var(--secondary-color);transition:0.3s;}
section .container, footer .container, header .container{max-width:1240px; margin: auto;padding-left:16px; padding-right:16px;width:100%;position: relative;}
section .container-fluid{margin: auto;padding-left:26px; padding-right:26px;width:100%;}
.gradient__title{background: linear-gradient(90deg, #F1CD76 2%, #FFECB2 42%, #D0A651 71%, #FFECB2 100%);-webkit-text-fill-color: transparent;-webkit-background-clip: text;color: transparent;}
@media(min-width:768px){
  body{background-size:100%;}
}
/* ===========================
   HubSpot DND Wrapper Overrides
   Force full-width transparent wrappers so modules control their own layout
   =========================== */
.body-container-wrapper { max-width: none !important; }
.body-container { max-width: none !important; }
.dnd-section { max-width: none !important; padding: 0 !important; }
.dnd-section > .row-fluid-wrapper { max-width: none !important; }
.dnd-section .row-fluid { max-width: none !important; }
.dnd-section .row-fluid [class*="span"] { float: none !important; width: 100% !important; }
.dnd-section .hs_cos_wrapper { max-width: none !important; }
.dnd-section,
.dnd-section .row-fluid-wrapper,
.dnd-section .row-fluid,
.dnd-section .widget-span,
.dnd-section .hs_cos_wrapper { text-align: center !important; }
.gradient__cta{background: linear-gradient(90deg, #F1CD76 2%, #FFECB2 42%, #D0A651 71%, #FFECB2 100%  ); background-size: 200% 100%;transition: background-position 0.4s ease;font-size:18px;line-height:24px;letter-spacing:2px;font-weight:600;text-transform:uppercase;color:var(--tertiary-color);display:inline-flex;padding:10px 20px;margin-top:32px;text-decoration:none;border-radius:100px;height: 60px;min-width:0;max-width:100%;width:100%;align-items:center;justify-content:center;border:none;outline:none;cursor:pointer;}
.gradient__cta:hover{ background-position: 100% 0;}
.gradient__cta2{background: linear-gradient(90deg, #F1CD76 2%, #FFECB2 42%, #D0A651 71%, #FFECB2 100%  ); background-size: 200% 100%;transition: background-position 0.4s ease;font-size:18px;line-height:24px;letter-spacing:2px;font-weight:600;text-transform:uppercase;color:var(--tertiary-color);display:inline-flex;padding:10px 20px;margin-top:32px;text-decoration:none;border-radius:100px;height: 50px;min-width:0;max-width:100%;width:100%;align-items:center;justify-content:center;}
.gradient__cta2:hover{ background-position: 100% 0;}
.blue__cta{font-size:18px;line-height:24px;letter-spacing:2px;font-weight:600;text-transform:uppercase;color:var(--secondary-color);display:inline-flex;padding:10px 20px;margin-top:var(--margin-lg);text-decoration:none;border-radius:100px;height: 50px;min-width:0;max-width:100%;width:100%;align-items:center;justify-content:center;background-color:var(--primary-color);}
.blue__cta:hover{background-color:#7846a2;}
.transparent__cta{max-width:100%;}
@media(min-width:576px){
.gradient__cta,.gradient__cta2,.blue__cta{width:auto;min-width:300px;font-size:20px;}
}
/* @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    */
/*****************************************/
/* @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    */
/*****************************************/

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

.header{padding-top:15px;padding-bottom:15px;background-image:url(https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/monopoly/header-bg.png);background-size:cover;text-align:center;border:none!important;border-bottom:none!important;box-shadow:none!important}
.header .container{max-width:1240px;margin:0 auto;padding-left:16px;padding-right:16px;width:100%;text-align:center;}
.header__logo{max-width:150px;display:inline-block;}
@media(min-width:768px){
  .header{background-size:contain}
  .header__logo{max-width:300px;}
}
[data-global-resource-path*="footer"]{background-color:var(--primary-color);}
.footer{background-color:var(--primary-color);background-image:url('https://22573492.fs1.hubspotusercontent-na1.net/hubfs/22573492/monopoly/cadbury-bg.png');background-repeat:no-repeat;background-size:100%;background-position:bottom;padding-top:24px;padding-bottom:100px;}
.footer__top{justify-content:space-between;margin-bottom:24px;}
.footer__top , .footer__socialfollow{display:flex;flex-wrap:wrap;gap:20px;align-items:center;}
.footer__logo{width:150px;}
.footer__con{margin-bottom:24px;}
.footer__con p{color: #FFFFFF99;font-size:12px;font-weight: 300;margin-bottom:12px;text-align: start;}
.footer .accordion__content{margin-bottom:8px;}
.footer__btm{border-top:1px solid #FFFFFF66;display:flex;flex-wrap:wrap;align-items:center;gap:24px;justify-content:space-between;padding-top:24px;}
.footer__copyrights{font-size:15px;font-weight: 300;text-align: start;}
.footer__btm-nav{display:flex;flex-wrap:wrap;gap:20px;}
.footer__btm-navitem{font-size:14.5px;font-weight: 500;list-style-type:none;}
.footer__btm-navlink{text-decoration:none;text-transform:uppercase;}
.footer__btn{border:1px solid #fff;background-color:transparent;border-radius:80px;color:#fff;font-size:14.5px;font-weight: 600;padding:10px 16px;display:flex;gap:13px;align-items:center;justify-content: space-between;cursor:pointer;width:100%;min-height:44px;}
@media(min-width:576px){
  .footer__btn{width:auto;}
}
@media(min-width:768px){
  .footer{padding-bottom:80px;}
  .footer__logo{width:227px;}
  .footer__btm-nav{gap:40px;}
}
@media(min-width:992px){
  .footer__copyrights{width: calc(26% - 20px / 3);}
  .footer__btm-nav{gap:20px;}
}
@media(min-width:1200px){
  .footer__btm-nav{gap:60px;}
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

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

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

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