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

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

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

/* Ordered List */

ol{
  padding-left: 25px;
}
ol li{
  margin-bottom: 19px;
  font-size: 18.207px;
  font-weight: 500;
  line-height: normal;
}

@media(max-width: 767px){
  ol{
    display:inline-block;
    list-style: decimal;
    list-style-position: inside;
  }
  ol li{
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 15.6px;
    margin-bottom:0;
  }
}

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


/* Forms */
.form-title{
  padding:0 !important;
}
form input:focus-visible,
form textarea:focus-visible{
  outline: none;
}
form .hs_firstname.hs-form-field, 
form .hs_lastname.hs-form-field{
  /*   width: 45.5% !important; */
}
form .hs_lastname.hs-form-field{
  float: right !important;
}
form fieldset .input{
  margin-right:0px !important;
}
form fieldset .hs-input{
  width: 100% !important;
}
form textarea{
  resize: none !important;
}
form .hs_submit .actions{
  text-align: right;
}

@media(min-width: 375px) and (max-width: 767px){
  form .hs_firstname.hs-form-field, 
  form .hs_lastname.hs-form-field{
    width: 48% !important;
  }
}

@media(max-width: 374px){
  form .hs_firstname.hs-form-field, 
  form .hs_lastname.hs-form-field{
    width: 100% !important;
  }
}

form .hs-input.invalid.error{
  border-color: #999;
}
form .no-list.hs-error-msgs li{
  position: relative;
  margin: 0;
}

form .no-list.hs-error-msgs li .hs-error-msg,
form .no-list.hs-error-msgs li .hs-main-font-element{
  position: absolute;
  font-size: 12px;
  line-height: normal;
  color: #ef6b51;
}

.confirmation_window_popup .success_msg button img {
  height: 32px !important;
  width: 24px !important;
}


.submitted-message{
  padding: 30px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #E2E2E2;
  border-radius: 12px;
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
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.21rem;
}

/* 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;
  width: 100%;
}

form textarea {
  resize: vertical;
  height:100%;
  max-height: 38.73px;
}

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

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





.banner_image_section .full_width_image{
  position: relative;
}
.banner_image_section .left_conta {
  align-items: center;
  background: #f0be25;
  border-radius: 89px 72px 0 89px;
  bottom: -28px;
  display: flex;
  justify-content: center;
  left: -93px;
  max-width: 496px;
  min-height: 131px;
  padding: 20px;
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
}
@media (max-width:1500px) and (min-width:768px) {
  .banner_image_section .left_conta {
    padding-left: 93px;
  }
}
.banner_image_section h1{
  color: #000;
}
.banner_image_section .full_width_image .big-container{
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media (max-width:767px){
  .banner_image_section .left_conta{
    min-height:98px;
    border-radius: 0 54.166px 0 0;
    left:0;
    max-width: unset;
    width:80%;
    padding:15px;
  }
}
@media (max-width:425px){
  .banner_image_section h1 {
    font-size:25px;
  }
  .banner_image_section .left_conta {
    border-radius: 0 48.166px 0 0;
    min-height: 75px;
    padding: 10px 15px;
    width: 76%;
  }
}







.banner_image_slider_section .full_width_image{
  position: relative;
  background-size: cover;
  background-position: center;
}
.banner_image_slider_section .left_conta {
  align-items: center;
  background: #f0be25;
  border-radius: 72px 89px 0 89px;
  bottom: -6px;
  display: flex;
  justify-content: center;
  left: -93px;
  max-width: 527px;
  min-height: 131px;
  padding: 20px;
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
}
.banner_image_slider_section h1{
  color: #000;
}
.banner_image_slider_section .main_container {
  position: relative;
}
.banner_image_slider_section .flex_container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  bottom: 0px;
  transform: translateY(31%);
  max-width: 1440px;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 5;
}
.banner_image_slider_section .flex_container .cta_container {
  text-align: right;
}
.banner_image_slider_section .right_conta{
  border-radius: 89px 89px 89px 0px;
  background: #F0BE25;
  padding: 47px 62px 46px 53px;
  margin-right: 75px;
}
.banner_image_slider_section .right_title h2{
  margin-bottom: 20px;
}
.banner_image_slider_section .image_slider_container{
  position: relative;
  z-index: 1;
}
.banner_image_slider_section .image_slider_container::before{
  content: "";
  position: absolute;
  z-index: 2;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  background-image: url(https://44563270.fs1.hubspotusercontent-na1.net/hubfs/44563270/Images%202024/Banner%20Overlay%20in%20Desktop.png);
}
@media(max-width: 1500px) and (min-width: 768px) {
  .banner_image_section .left_conta {
    padding-left: 93px;
  }
  .banner_image_slider_section .right_conta{
    margin-right: 5.21%;
  }
}
@media(max-width: 1200px) and (min-width: 768px){
  .banner_image_slider_section .flex_container{
    transform: translateY(45%);
  }
  .banner_image_slider_section .right_conta{
    padding: 30px 45px;
  }
}
@media(max-width: 1024px) and (min-width: 768px){
  .banner_image_slider_section .right_conta{
    margin-right: 20px;
  }
  .banner_image_slider_section .left_conta{
    left: 20px;
    min-height: 90px;
    width: 40%;
  }
  .banner_image_slider_section h2{
    font-size: 32px !important;
  }
}
@media(max-width:767px){
  .banner_image_slider_section .left_conta{
    min-height: 98px;
    max-width: 217px;
    left: 0;
    border-radius: 0 50px 0 0px;
  }
  .banner_image_slider_section .right_conta{
    display: none;
  }
}
@media (max-width:425px){
  .banner_image_slider_section .left_conta{
    border-radius: 0 48.166px 0 0;
    padding: 10px 15px;
    width: 55.171vw;
    justify-content: left;
    padding-left: 32px;
  }
}






.banner_v2 {
  background: #f0be25;
  clip-path: ellipse(63.5% 70% at 47.3% 30%);
  position: relative;
  z-index: 2;
}

.banner_v2 .banner_v2_inner:before{
  background-image: url(https://getaquote.bloombenefits.ca/hubfs/Banner%20Overlay-1.png);
  background-size: cover;
  background-position: center center;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.banner_v2 .banner_v2_inner {
  clip-path: ellipse(62% 70.2% at 49% 28%);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.banner_v2 .left-col .inner_col{
  max-width:453px;
  position: relative;
  z-index: 1;
}

.banner_v2 .right-col .image_container{
  position: relative;
  z-index: 1;
}

.banner_v2 .heading_conta h1 {
  color: #fff;
  font-size: 47.93px;
  line-height: 120%;
  margin-bottom: 14px;
  text-shadow: 0 1.843px 8.383px rgba(0, 0, 0, .5);
  font-weight: 500;
}

.banner_v2 .heading_conta span {
  color: #e0b124;
  font-size: 86.404px;
  font-style: italic;
  font-weight: 800;
  line-height: 120%;
}
.banner_v2 .heading_conta h1 span:last-child{
  line-height: 111%;
}

@media(min-width:768px){
  .banner_v2 .mobile{
    display:none;
  }
}


@media(min-width:768px) and (max-width:1024px){
  body .banner_v2 .heading_conta span{
    font-size: 50px;
  }
  .banner_v2 .heading_conta h1{
    font-size: 30px;
  }
  body .banner_v2 .heading_conta h1 span:last-child:before {
    right: -19px;
    top: 3px;
    height: 30px;
    width: 30px;
  }
}


@media(max-width:767px){
  .banner_v2 .heading_conta h1 {
    font-size: 27.689px;
    text-shadow: 0px 1.064px 4.843px rgba(0, 0, 0, 0.50);
    margin-bottom: 0;
  }
  .banner_v2 .heading_conta h1 span {
    font-size: 47.662px;
    display: block;
  }
  .banner_v2 .desktop{
    display: none;
  }
  .banner_v2 .cta_conta.mobile{
    position:relative;
    z-index:2;
  }

  .banner_v2 {
    clip-path: ellipse(166.5% 75% at 37.3% 25%);
  }
  .banner_v2 .banner_v2_inner{
    clip-path: ellipse(166% 73.5% at 40.3% 25%);
  }
  .banner_v2 .cta_conta.secondary_button.mobile {
    bottom: 1.8vh;
    text-align: center;
  }

  .banner_v2 .row-fluid {
    justify-content: center;

  }

  body .banner_v2 .heading_conta h1 span:last-child:before {
    right: -14px;
    top: 7px;
    height: 22px;
    width: 22px;
  }

  body .banner_v2 .heading_conta h1 span:last-child,
  .banner_v2 .heading_conta h1 span{
    display: block;
    text-align: right;
    position: relative;
    bottom: 35px;
    right: 17px;
  }
  .banner_v2 .heading_conta {
    max-width: 286px;
    margin: 0 auto;
  }
  .banner_v2_inner:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    background-repeat: no-repeat ! IMPORTANT;
    background-size: cover ! IMPORTANT;
    background: url(https://44563270.fs1.hubspotusercontent-na1.net/hubfs/44563270/Mobile-Banner_Vector.svg);
    width: 100%;
    height: 400px;
    z-index: 1;
    pointer-events: none;
  }
  .banner_v2 .right-col .image_container{
    /* width: 97vw;
    margin-top: -40px; */
  }
}
@media(max-width:335px){
  body .banner_v2 .heading_conta h1 span:last-child,
  .banner_v2 .heading_conta h1 span{
    /* bottom: 0;
    right: 0; */
  }
  .banner_v2 .right-col .image_container{
    margin-top: 20px;
  }
}






.blog-list span.image-conta-featured {
  max-width: 199px;
  display: inline-block;
      width: 100%;
}

.blog-list span.text__post-content {
  margin-left: 30px;
    max-width: calc(100% - 230px);
    width: 100%;
}

.blog-list .blog-index.post-content{
  display:flex;
  align-items:flex-start;
  justify-content:center;
}
.blog-list .blog-post__meta span {
  margin-right: 2%;
}
.blog-list h3.blog-index.post-content__title a {
  color: #303030;
  font-size: 30px;
  font-weight: 800;
  line-height: 139%;
  margin: 0;
}

.blog-list a.hs-blog-post-listing__post-author-name {
  color: #303030;
  font-size: 17px;
  font-weight: 400;
  line-height: 143%;
}

.blog-list span.post-date, .blog-list span.min-read {
  color: #9F9F9F;
  font-size: 17px;
  font-weight: 400;
  line-height: 143%;
}
.blog-list h3.blog-index.post-content__title{
  margin-bottom:6px;
}

.blog-list .blog-summary p{
  color:#303030;
  margin-bottom:20px;
}

.blog-list .cta-container {
  position: absolute;
  right: 0;
  bottom: 42px;
}
.blog-list a.blog-cta {
  color: #F0BE25;
  font-size: 19.956px;
  font-weight: 800;
  line-height: 139%;
  text-decoration: underline;
}

section.blog-index-post {
  max-width: 886px;
  margin: 0 auto;
}
.blog-list .post-content {
  border-bottom: 2px solid #c7c7c7;
  margin-bottom: 44px;
  padding: 25px 0 37px;
  position: relative;
}

.blog-list .post-image-wrapper {
  display: block;
  margin-bottom: 0;
  width: 100%;
  line-height: 0;
}

.blog-list .post-image {
  height: 133px;
  object-fit: cover;
  object-position: right top;
  width: 100%;
}


@media(min-width:768px) and (max-width:1024px){
  .blog-list .post-content{
    padding-bottom:52px;
  }
}

@media(max-width:767px){
  .blog-list .post-image {
    object-fit: cover;
    object-position: right;
    width: 100%;
    min-height: 250px;
  }
  .blog-list .blog-index.post-content{
    display:block;
  }
  .blog-list .post-content{
    padding-bottom:52px;
  }
  .blog-list span.image-conta-featured{
    max-width:100%;
  }
  .blog-list .post-image-wrapper{
    height:100%;
  }
  .blog-list span.min-read, .blog-list span.post-date{
    font-size:14px;
  }
  .blog-list a.hs-blog-post-listing__post-author-name{
    font-size:14px;
  }
  .blog-list a.blog-cta{
    font-size:16px;
  }
}






/* Pagination */

.hs-pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Pagination links */

.hs-pagination__link {
  align-items: center;
  display: flex;
  margin-right: 0.1rem !important;
}

.hs-pagination__link:last-child {
  margin-right: 0;
}

.hs-pagination__link,
.hs-pagination__link:hover,
.hs-pagination__link:focus,
.hs-pagination__link:active {
  text-decoration: none;
}

.hs-pagination__link--text-and-icon.hs-pagination__link--first > .hs-pagination__link-icon,
.hs-pagination__link--text-and-icon.hs-pagination__link--prev > .hs-pagination__link-icon {
  margin-right: 0.25rem;
}

.hs-pagination__link--text-and-icon.hs-pagination__link--last > .hs-pagination__link-icon,
.hs-pagination__link--text-and-icon.hs-pagination__link--next > .hs-pagination__link-icon {
  margin-left: 0.25rem;
}

.hs-pagination__link-icon {
  display: inline-flex;
}

.hs-pagination__link-icon svg {
  height: 16px;
  width: 16px;
}

.hs-pagination__link--number:hover{
  font-size:15px;
  font-weight:800;
  color:#000 !important;
  font-family: 'Montserrat' , sans-serif;
}
a.hs-pagination__link.hs-pagination__link--number.hs-pagination__link--active{
  font-size:15px;
  font-weight:800;
  color:#000 !important;
  font-family: 'Montserrat' , sans-serif;
}

.hs-pagination__link--number {
  padding: 0.1rem 0.1rem !important;
  font-size:15px;
  font-family: 'Montserrat' , sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: normal; 
  color:#a1aeb7!important;
}

@media (max-width: 767px) {
  .hs-pagination__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;
  }
}






@media (min-width:768px){
  .post-filter-section ul {
    display:flex !important;
  }
}
.post-filter-section li{
  position: relative;
  list-style-type:none; 
  margin-left:0;
  padding:0;
  line-height:normal;
  margin-bottom:10px;
}

.post-filter-section ul {
  column-gap: 42px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  align-items:center;
  row-gap: 13px;
}

.post-filter-section .dropdownMenu{
  display:none;
}

@media(max-width:767px){
  body .post-filter-section ul li{
    margin: 0;
    border-top: 2px solid #c7c7c7;
    width: 100%;
    padding: 10px;
    display: block;
    text-align: center;

  }
  body .post-filter-section ul{
    width: 100%;
    margin: 0;
    flex-direction: column;
    gap: 0;
    display:none;
  }
  .post-filter-section .dropdownMenu{
    display: block;
    text-align: center;
    padding: 10px;
    cursor:pointer;
  }
  .post-filter-section .dropdownMenu span{
    color: #ffffff;
    border-radius: 89px 89px 0px 89px;
    background: #F0BE25;
    font-weight: 800;
    line-height: 139%;
    font-size: 20px;
    transition: all 0.2s ease-in-out;
    padding: 6px 17px;
    cursor:pointer;
  }
  .post-filter-section {
    border: 2px solid #c7c7c7;
    border-radius: 30px;
  }
  .post-filter-section li.active-li{
    display:none;
  }
}






.bloom_services{
  border-radius: 21px;
  box-shadow: 0px 4px 31.1px 0px rgba(0, 0, 0, 0.10);
  background: #ffffff;
  z-index: 1;
  position: relative;
}
.bloom_services .content-wrapper{
  max-width:1093px;
}
.bloom_services .top_headline {
  margin-bottom: 16px;
}
.bloom_services .cta_container a.cta_button {
  min-width: 221px;
}
.bloom_services .heading_conta {
  margin-bottom: 14px;
}
.bloom_services .card_container {
  margin-bottom: 33px;
}
.bloom_services .logo_container {
  margin-bottom: 12px;
}
@media (min-width:768px){

  .bloom_services .row-fluid.card{
    flex-wrap: wrap;
    gap: 20px;
  }
  .bloom_services .cta_container.primary_button,
  .bloom_services .card_container{
    flex-basis: calc(50% - 10px);
  }
  .bloom_services .logo_container {
    display: flex;
    align-items: flex-end;
    object-fit: contain;
  }
  .bloom_services .card_container:nth-last-child(6),
  .bloom_services .card_container:nth-last-child(5),
  .bloom_services .card_container:nth-last-child(4) {
    margin-bottom: 19px;
  }
}
@media (min-width:1025px){
  .bloom_services .row-fluid.card{
    gap: 33px;
  }
  .bloom_services .cta_container.primary_button,
  .bloom_services .card_container{
    flex-basis: calc(33.33% - 32px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
  
  .hs-content-id-171404881843 .bloom_services .row-fluid.card {
    justify-content: center !important;
  }
}
@media(max-width:767px){
  .bloom_services .cta_container a.cta_button{
    min-width:auto;
  }
}






.blog-module > .content-wrapper{
  max-width:1187px;
}
.blog-module > .content-wrapper .title_container{
  margin-bottom:29px;
}
.blog-module .recent-posts {
  display: grid;
  grid-template-columns: repeat(1, 1.58fr 1.5fr);
  column-gap: 10px;
}
.blog-module .recent-posts .recent_blog_card{
  border: 2px solid #DADADA;
  max-width:742px;
  width:100%;
  padding:22px 23px 23px 23px;
}
.blog-module .recent-posts .recent_blog_card:not(:first-child){
  padding:22px 51px 22px 18px;
}
.blog-module .recent-posts .recent_blog_card:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 4;
  align-self: stretch;
  max-width:435px;
  width:100%;
  min-width:330px;
}
.blog-module .recent-posts .recent_blog_card:nth-child(2) {
  margin-bottom: 11px;
  grid-row: 1 / 3;
}
.blog-module .recent-posts .recent_blog_card:nth-child(3) {
  grid-row: 3 / 4;
}
.blog-module .recent-posts .recent_blog_card .info_container {
  display: flex;
  align-items: center;
  gap:18px;
  margin-bottom:16px;
  flex-wrap:wrap;
  row-gap:12px;
}
.blog-module .recent-posts .recent_blog_card:not(:first-child) .info_container{
  margin-bottom:18px;
}

.blog-module .recent-posts .recent_blog_card .featured_image{
  min-height:241px;
}
.blog-module .recent-posts .recent_blog_card .blog_title_container h5{
  color: #303030;
}
.blog-module .recent-posts .recent_blog_card:not(:first-child) .blog_title_container h5{
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.blog-module .recent-posts .recent_blog_card:not(:first-child) .blog_title_container{
  margin-top:0px;
  margin-bottom:14px;
}
.blog-module .recent-posts .recent_blog_card .blog_title_container{
  margin-top:29px;
  margin-bottom:21px;
}
.blog-module .recent-posts .recent_blog_card .info_container .author_date_container p{
  color: #303030;
  font-size: 17px;
  line-height: 143%; /* 24.31px */
}
.blog-module .recent-posts .recent_blog_card .description_box {
  margin-bottom: 35px;
}
.blog-module .recent-posts .recent_blog_card:not(:first-child) .description_box{
  margin-bottom:19px;
}
.blog-module .recent-posts .recent_blog_card .description_box p{
  color: #303030;
  font-size: 17px;
  font-weight: 500;
  line-height: 143%;
}
.blog-module .recent-posts .recent_blog_card .info_container .read_time p,
.blog-module .recent-posts .recent_blog_card .info_container .publish_date p{
  color: #9F9F9F;
  font-size: 17px;
  line-height: 143%; /
}
.blog-module .recent-posts .recent_blog_card:not(:first-child) .recent_post_content{
  display:flex;
  gap:39px;
}
.blog-module .recent-posts .recent_blog_card .cta_container a{
  color: #F0BE25;
  font-size: 19.956px;
  font-weight: 800;
  line-height: 139%; /* 27.739px */
  text-decoration-line: underline;
}
.blog-module .recent-posts .recent_blog_card .cta_container a:hover{
  text-decoration:none;
}
.blog-module .recent-posts .recent_blog_card:not(:first-child) .recent_post_content .image_container,
.blog-module .recent-posts .recent_blog_card:not(:first-child) .recent_post_content .image_container .featured_image{
  max-width:250px;
  width:100%;
  min-height:251px;
}


@media(max-width:1024px){
  body .blog-module .recent-posts{
    display:block;
  }
  body .blog-module .recent-posts .recent_blog_card:nth-child(1),
  body .blog-module .recent-posts .recent_blog_card{
    max-width:none;
    min-width:auto;
    margin-bottom:11px;
  }
  body .blog-module .recent-posts .recent_blog_card:not(:first-child) .recent_post_content,
  body .blog-module .recent-posts .recent_blog_card .recent_post_content,
  body .blog-module .recent-posts .recent_blog_card:nth-child(1) .recent_post_content{
    display: flex;
    gap: 20px;
  }
  body .blog-module .recent-posts .recent_blog_card .recent_post_content .image_container,
  body .blog-module .recent-posts .recent_blog_card .recent_post_content .image_container .featured_image{
    max-width: 250px;
    width: 100%;
    min-height: 251px;
  }
  body .blog-module .recent-posts .recent_blog_card:nth-child(1) .blog_title_container{
    margin-top:0px;
  }
  .blog-module .recent-posts .recent_blog_card .blog_title_container h5{
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
  body .blog-module .recent-posts .recent_blog_card .description_box{
    margin-bottom:20px;
  }
  body .blog-module .recent-posts .recent_blog_card:not(:first-child),
  body .blog-module .recent-posts .recent_blog_card{
    padding:22px 20px;
  }
}

@media(max-width:767px){
  body .blog-module .recent-posts .recent_blog_card:nth-child(1) .recent_post_content,
  body .blog-module .recent-posts .recent_blog_card .recent_post_content{
    flex-direction:column;
    gap:20px !important;
  }
  body .blog-module .recent-posts .recent_blog_card:not(:first-child) .recent_post_content .image_container .featured_image,
  body .blog-module .recent-posts .recent_blog_card .recent_post_content .image_container,
  body .blog-module .recent-posts .recent_blog_card .recent_post_content .image_container .featured_image{
    max-width:none !important;
    min-height:auto !important;
    height:45vw;
  }
  body .blog-module .recent-posts .recent_blog_card .cta_container a{
    font-size:16.956px;
  }
  body .blog-module .recent-posts .recent_blog_card .info_container{
    gap:16px;
    row-gap:12px;
  }
}






@media(min-width:768px){
  .bloom_form_section .left-col{
    max-width:576px;
    width:100%;
    margin-bottom: 37px;
    display: flex;
    flex-direction: column;
  }
  .bloom_form_section .right-col{
    max-width:613px;
  }
  .bloom_form_section .left-col .desc_conta {
    max-width: 522px;
    width: 100%;
    margin-bottom: 12px;
  }
  .bloom_form_section .form_container{
    position: relative;
    height: 100%;
  }
}
.bloom_form_section .right-col{
  width:100%;
}
.bloom_form_section .row-fluid{
  gap: 25px;
}
.bloom_form_section .left-col .heading_conta {
  margin-bottom: 6px;
}
.bloom_form_section .left-col .desc_conta p{
  line-height: 148%;
}
.bloom_form_section .flex_container .contact_details .details p a{
  color: #606060;
}
.bloom_form_section .flex_container .contact_details .details h5{
  color: #000;
  font-size: 24.399px;
  font-weight: 800;
  margin-bottom: 14px;
}
.bloom_form_section .hs-richtext{
  max-width: 427px;
}
.bloom_form_section .hs-richtext h3{
  margin-bottom: 33px;
  line-height: 99.6%;
}
.bloom_form_section .hs-richtext p{
  font-size: 18.207px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 45px;
}
.bloom_form_section .flex_container .contact_details .details p{
  line-height: 148%;
  margin-bottom:23px;
}
.bloom_form_section .map_conta{
  padding-top: 23px;
}
.bloom_form_section .map_conta iframe{
  border-radius: 17px;
  box-shadow: 0px 4px 26.4px 0px rgba(0, 0, 0, 0.10);
}
.bloom_form_section .left-col form .hs_firstname.hs-form-field,.bloom_form_section .left-col form .hs_lastname.hs-form-field{
  width:48.26%;
}
@media(min-width: 1025px){
  .bloom_form_section .flex_container{
    display: flex;
    justify-content: space-between;
    gap:25px;
    flex-wrap: wrap;
    max-width: 589px;
  }
  .bloom_form_section .flex_container .contact_details{
    display: flex;
    flex-basis: calc(50% - 12.5px);
  }
  .bloom_form_section .contact-content{
    padding-top: 15px;
  }
}
.bloom_form_section .submitted-message{
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bloom_form_section .no-list.hs-error-msgs.inputs-list li label a{
  display:none;
}
@media(max-width: 767px){
  .bloom_form_section .right-col{
    margin-top: 30px;
  }
  .bloom_form_section .form_container{
    max-width: 100%;
  }
  .bloom_form_section .hs-responsive-embed-wrapper.hs-responsive-embed {
    max-width: none !important;
  }
  .bloom_form_section .submitted-message{
    position:relative;
    padding: 35px 0 5px;
  }
}






.pagination-section a{
  display: flex;
  align-items: center;
}

.pagination-section h5,
.pagination-section a{
  color: #303030;
  font-size: 19.956px;
  font-style: normal;
  font-weight: 800;
  line-height: 139%;
  text-decoration-line: underline;
  margin:0;
}
body .pagination-section .pre-post a {
  margin-right: 32px;
}
@media(min-width:768px){
  article.blog-post {
    position: relative;
  }
  .pagination {
    padding: 20px 0px;
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 5px;
  }
  .post-pagination{
    display: flex;
    justify-content: end;
    align-items: center;
    margin:0 auto;
  }
}


@media(max-width:767px){
  body .row-fluid-wrapper .row-fluid .pagination-section.span12 .post-pagination.span12{
    align-items: baseline;
    flex-direction: column;
  }
  .pagination-section a {
    justify-content: center;

  }
  .pagination {
    padding: 20px 0 0px;
  }
}

@media(min-width:768px) and (max-width:1024px){
  .post-pagination{
    gap: 32px;
  }
}
@media (max-width: 767px){
  body .pagination-container {
    padding-top: 22px;
  }
  .post-pagination {
    align-items: center;
    display: flex;
    justify-content: end;
    margin: 0 auto;
  }
  body .pagination-section .pre-post a {
    justify-content: start;
  }
  body .pagination-section .post-next a {
    justify-content: end;
  }
  body .pagination-section .next-post .post-next {
    margin-top: 0px;
  }
  .pagination-section h5,
  .pagination-section a{
    font-size: 16px;
    line-height: normal;
  }
}

@media (max-width: 400px){
  body .pagination-section .pre-post a {
    justify-content: start;
  }
  body .pagination-section .post-next a {
    justify-content: end;
  }
  body .pagination-section a, body .pagination-section h5 {
    font-size: 15px;
  }
}






.recent-post-section .heading-conta h3{
  color: #303030;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 139%;
  margin-bottom:32px;
}

.recent-post-section .post-title h4, .recent-post-section .post-title a{
  color: #303030;
  font-size: 19.956px;
  font-weight: 800;
  line-height: 139%;
  margin-bottom:10px;
}

.recent-post-section .description-div p{
  color: #303030;
  font-size: 17px;
  font-weight: 500;
  line-height: 143%;
  margin-bottom:7px;
}

.recent-post-section .simple-cta-container a{
  color: #F0BE25;
  font-size: 19.956px;
  font-style: normal;
  font-weight: 800;
  line-height: 139%;
  text-decoration-line: underline;
}

.recent-post-conta .card-recent-conta {
  border-bottom: 2px solid #c7c7c7;;
  margin-bottom: 29px;
  padding-bottom: 24px;
}
.recent-post-conta .card-recent-conta:last-child{
  border:none;
  padding:0;
}

@media(min-width:768px) and (max-width:1024px){
  .recent-post-section .simple-cta-container a{
    font-size:15px;
    line-height:normal;
  }
  .recent-post-section .post-title a, .recent-post-section .post-title h4{
    font-size:16px;
    line-height:normal;
  }
  .recent-post-section .description-div p{
    font-size:16px;
    line-height:normal;
  }
}

@media(max-width:767px){
  .recent-post-section{
    padding-top:40px;
  }
  .recent-post-section .description-div p{
    margin-bottom:10px;
  }
  .recent-post-section .simple-cta-container a{
    font-size:16px;
    line-height:normal;
  }
}






.social-links {
  align-items: center;
  display: flex;
  justify-content: center;
}

.social-links__icon {
  border-radius: 50%;
  display: inline-flex;
  height: 1.75rem;
  margin: 0 0.35rem;
  position: relative;
  width: 1.75rem;
}

.social-links__icon svg {
  fill: #FFF;
  height: 0.625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

.social-links__icon:hover svg,
.social-links__icon:focus svg,
.social-links__icon:active svg {
  fill: #FFF;
}







.testimonial_section .testimonial_container .client_review_container{
  padding: 0 20px;
}
.testimonial_section .testimonial_container button.slick-prev.slick-arrow:after,
.testimonial_section .testimonial_container button.slick-next.slick-arrow:after{
  background-repeat: no-repeat;
  background-size: cover !important;
  content: "";
  display: block;
  height: 32px;
  width: 16px;
  cursor: pointer;
}

@media(min-width: 768px){
  .testimonial_section .title_container{
    padding-bottom: 15px;
  }
}
.testimonial_section .testimonial_container {
  position: relative;
  padding: 0 10px;
}
.testimonial_section .testimonial_container button.slick-prev.slick-arrow,
.testimonial_section .testimonial_container button.slick-next.slick-arrow{
  background: none;
  border: none;
  font-size: 0;
  padding: 0;
  position: absolute;
  top: 38%;
}
.testimonial_section .testimonial_container button.slick-prev.slick-arrow {
  left: -4.6%;
}
.testimonial_section .testimonial_container button.slick-next.slick-arrow {
  right: -3.6%;
  rotate: 180deg;
}

.testimonial_section  .slider-indicator.all-text-white{
  color: #ffffff;
}
.testimonial_section .description{
  margin-bottom:11px;
  min-height: 240px;
}
@media (max-width:1300px){
  .testimonial_section .testimonial_container button.slick-prev.slick-arrow {
    left: 0px;
  }
  .testimonial_section .testimonial_container button.slick-next.slick-arrow {
    right: 0px;
  }
}
@media(max-width: 767px){
  .testimonial_section .testimonial_container .client_review_container{
    padding-bottom: 8px;
    min-height:240px;
    display:flex;
    align-items:center;
  }
  .testimonial_section .title_container{
    padding-bottom: 4px;
  }
  .testimonial_section .description{
    min-height:auto;
  }
  .testimonial_section .testimonial_container button.slick-prev.slick-arrow {
    left: -5px;
  }
  .testimonial_section .testimonial_container button.slick-next.slick-arrow {
    right: -5px;
  }
}
@media (max-width:375px){
  .testimonial_section .testimonial_container button.slick-prev.slick-arrow:after,
  .testimonial_section .testimonial_container button.slick-next.slick-arrow:after{
    height: 32px;
    width: 16px;
  }
  .testimonial_section .testimonial_container{
    padding: 0;
  }
}






.co_founder_module{
  position:relative;
  z-index:1;
}
@media (max-width:768px){
  .co_founder_module::before {
    transform: rotate(90deg);
    flex-shrink: 0;
    border-radius: 162.327px 162.327px 0px 162.327px;
    opacity: 0.08;
    background: #ADADAD;
    position: absolute;
    content: "";
    z-index: 0;
    right: -204px;
    top: 0;
    bottom: auto;
    left: auto;
    width: 293px;
    height: 293px;
    transform: rotate(90deg);
    flex-shrink: 0;
  }
}
.co_founder_module::after {
  width: 318px;
  height: 318px;
  flex-shrink: 0;
  border-radius: 176.177px 176.177px 0px 176.177px;
  opacity: 0.1;
  background: linear-gradient(356deg, #ADADAD 11.46%, rgba(173, 173, 173, 0.00) 119.89%);
  position: absolute;
  right: auto;
  top: auto;
  z-index: 0;
  bottom: 188px;
  left: -157px;
  content: "";
  z-index: 0;
}
.co_founder_module .content-wrapper .row-fluid{
  justify-content: center;
}
.co_founder_module .top_headline {
  align-items: center;
  background: #f0be25;
  border-radius: 89px 72px 0 89px;
  display: flex;
  justify-content: center;
  margin-bottom: 42px;
  max-width: 794px;
  min-height: 131px;
  padding: 20px;
  width: 100%;
  left: -93px;
  position: relative;
  padding-right: 33px;
}
.co_founder_module .left-col {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 496px;
  max-height:496px;
  height: 100%;
}
.co_founder_module .right-col {
  width: 100%;
  margin-top: -11px;
}
.co_founder_module .cta_container {
  display: flex;
  flex-wrap: wrap;
}
.co_founder_module .cta_container a.button_link {
  margin: 0 32px 18px 0;
}
.co_founder_module .right-col .decription_container {
  margin-bottom: 18px;
}
.co_founder_module .right-col .decription_container p {
  margin-bottom: 11px;
}
@media (max-width:1024px) and (min-width:768px){
  .co_founder_module .top_headline {
    left: -100px;
    margin-bottom: 32px;
    max-width: 700px;
    min-height: 115px;
    padding: 20px;
  }
}
@media (max-width:767px){
  .co_founder_module .top_headline {
    min-height:98px;
    border-radius: 0 54.166px 0 0;
    left:0;
    max-width: unset;
    width:80%;
    padding:15px;
  }
}
@media (max-width:425px){
  .co_founder_module .top_headline .inner_headline h2 {
    font-size:25px;
  }
  .co_founder_module .top_headline {
    border-radius: 0 48.166px 0 0;
    min-height: 75px;
    padding: 10px;
    width: 87%;
  }
}






@media (min-width:768px){
  .two_col_slider .slide_container .slide_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:25px;
  }
  .two_col_slider .slide_container .left-col{
    max-width: 495px;
    width: 100%;
    padding: 133px 0 99px;
    position: relative;
    z-index: 1;
  }
  .two_col_slider .slide_container .right-col{
    max-width: 545px;
  }
  .two_col_slider .slide_container .left-col::before {
    position: absolute;
    content: "";
    z-index: 0;
    border-radius: 176.177px 176.177px 0px 176.177px;
    opacity: 0.3;
    width: 158px;
    height: 158px;
    transform: rotate(-90deg);
    flex-shrink: 0;
    background: #FFF4D7;
    right: -26px;
    bottom: 20px;
  }
  .two_col_slider .outer-wrapper::before {
    position: absolute;
    content: "";
    z-index: 1;
    left: -197px;
    border-radius: 176.177px 176.177px 0px 176.177px;
    opacity: 0.3;
    background: #FFF4D7;
    width: 318px;
    height: 318px;
    flex-shrink: 0;
    top: 0;
  }
}
@media (min-width:1025px){
  .h2-large h2{
    font-size: 43.333px;
    font-weight: 400;
    line-height: 132%; 
  }
}
.two_col_slider .outer-wrapper{
  max-width:1440px;
  margin:0 auto;
  position:relative;
  z-index:1;
}
.two_col_slider .outer-wrapper::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: -8px;
  right: -46px;
  border-radius: 176.177px 176.177px 0px 176.177px;
  opacity: 0.3;
  background: #FFF4D7;
  width: 318px;
  height: 318px;
  flex-shrink: 0;
}
.two_col_slider {
  position: relative;
  z-index: 2;
}
.two_col_slider::before {
  background: #ffca41;
  bottom: 65px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 87px;
  z-index: 0;
}
.two_col_slider .content-wrapper{
  max-width:1176px;
  position: relative;
  z-index: 3;
}
.two_col_slider .slide_container{
  padding: 0 28px;
}
.two_col_slider .slide_container .right-col {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: 545 / 577;
}
.two_col_slider .slide_container button.slick-prev.slick-arrow,
.two_col_slider .slide_container button.slick-next.slick-arrow{
  background: none;
  border: none;
  font-size: 0;
  padding: 0;
  position: absolute;
  top: 50%;
}
.two_col_slider .slide_container button.slick-prev.slick-arrow {
  left: -78px;
  rotate: 180deg;
}
.two_col_slider .slide_container button.slick-next.slick-arrow {
  right: -38px;
}
.two_col_slider .slide_container button.slick-prev.slick-arrow:after,
.two_col_slider .slide_container button.slick-next.slick-arrow:after{
  background-color: #000000;
  mask: url('https://44563270.fs1.hubspotusercontent-na1.net/hubfs/44563270/Angle%20Right%20Arrow.svg');
  -webkit-mask: url('https://44563270.fs1.hubspotusercontent-na1.net/hubfs/44563270/Angle%20Right%20Arrow.svg');
  background-repeat: no-repeat;
  background-size: cover !important;
  content: "";
  display: block;
  height: 34.5px;
  width: 17.5px;
  cursor: pointer;
}
.two_col_slider .slide_container button.slick-prev.slick-arrow:hover:after,
.two_col_slider .slide_container button.slick-next.slick-arrow:hover:after{
  background-color: #ffffff;
}
.two_col_slider .slide_container .h2-large h2{
  font-style:italic;
  margin-bottom: 21px;
}
.two_col_slider .slide_container .h2-large h2 strong{
  font-weight:900;
}
@media (max-width:1300px){
  .two_col_slider .slide_container button.slick-prev.slick-arrow {
    left: 0px;
  }
  .two_col_slider .slide_container button.slick-next.slick-arrow {
    right: 0px;
  }
}
@media (max-width:767px){
  .two_col_slider::before {
    top:-60px;
    bottom:68px;
  }
  .two_col_slider .slide_container button.slick-next.slick-arrow, 
  .two_col_slider .slide_container button.slick-prev.slick-arrow{
    top: calc(50% - 80px);
  }
  .two_col_slider .slide_container{
    padding: 0 20px;
  }
  .two_col_slider .slide_container button.slick-next.slick-arrow {
    right: -5px;
  }
  .two_col_slider .slide_container button.slick-prev.slick-arrow {
    left: -5px;
  }
}
@media (max-width:375px){
  .two_col_slider .slide_container button.slick-next.slick-arrow:after,
  .two_col_slider .slide_container button.slick-prev.slick-arrow:after{
    width: 18px;
    height: 36px;
  }
}






@media(min-width:1921px){
  .two_column_background{
    width:100%;
    max-width: 1920px;
    margin: 0 auto;
  }
}

.two_column_background .right_container .text_container h2
body .two_column_background .button_container a.cta_button{
  padding: 13.77px 39px;
}

.two_column_background .right_container .text_container ul{
  padding-left:30px;
  margin-bottom:25px;
}

@media(min-width: 768px){
  .two_column_background .right_container .text_container .description_container{
    padding-top: 10px;
    padding-bottom: 5px;
  }
  .two_column_background .text_container h3{
    margin-bottom:16px;
  }
}

.two_column_background .right_container .text_container h2{
  line-height: 130.6%;
  font-weight: 400;
  margin-bottom: 12px;
}
.two_column_background .text_container h3{
  line-height: 95%;
}
.two_column_background .right_container .text_container h2 span{
  font-weight: 900;
}
@media(max-width: 767px){
  .two_column_background .right_container .text_container h2{
    font-size: 29.296px;
    line-height: 130.6%;
    margin-bottom: 24px;
  }
  .two_column_background .right_container .text_container h2 br{
    display: none;
  }
  .two_column_background .right_container .text_container p,
  .two_column_background .right_container .text_container ul li{
    font-size: 15.6px;
  }
  .two_column_background .right_container .text_container .description_container{
    padding-bottom: 13px;
  }
  .two_column_background .right_container .button_container a.cta_button {
    /*     font-size: 13.762px; */
    padding: 16px 34px;
    border-width: 3.023px;
  }
  .two_column_background .text_container h3{
    margin-bottom: 24px;
  }
}

@media(min-width: 768px) and (max-width: 900px){
  body .two_column_background .button_container a.cta_button{
    font-size: 14.02px;
  }
}

@media(max-width: 390px){
  .two_column_background .right_container .button_container a.cta_button {
    font-size: 13.762px;
  }
}








@media(min-width:1440px){
  .two-col-section{
    width:100%;
    max-width: 1440px;
    margin: 0 auto;
  }
}
@media (min-width:1025px){
  .two-col-section .right-col {
    padding-top: 53px;
    padding-bottom:172px;
  }
}
.two-col-section .row-fluid {
  gap: 25px;
}
@media (min-width:768px){
  .two-col-section .right-col {
    max-width: 548px;
    width: 100%;
  }
  .two-col-section .left-col {
    max-width: 662px;
    width: 100%;
    display: flex;
  }
  .two-col-section .left-col img{
    object-fit:contain; 
  }
  .two-col-section  .right-col .text-content{
    margin-bottom: 55px;
  }
}
.two-col-section{
  position: relative;
  z-index:1;
}
.two-col-section::before {
  content: "";
  right: -105px;
  top: -232px;
  border-radius: 162.327px 162.327px 0px 162.327px;
  opacity: 0.08;
  background: #ADADAD;
  width: 293px;
  height: 293px;
  transform: rotate(90deg);
  flex-shrink: 0;
  z-index: 0;
  bottom: auto;
  left: auto;
  position: absolute;
}
.two-col-section::after {
  position: absolute;
  content: "";
  bottom: 0;
  z-index: -1;
  left: -150px;
  width: 318px;
  height: 318px;
  flex-shrink: 0;
  border-radius: 176.177px 176.177px 0px 176.177px;
  opacity: 0.1;
  background: linear-gradient(356deg, #ADADAD 11.46%, rgba(173, 173, 173, 0.00) 119.89%);
}
.two-col-section .right-col .text-content .heading_conta{
  margin-bottom: 32px;
}
.two-col-section .right-col .text-content p{
  margin-bottom: 22px;
}
.two-col-section .button_container .module a.cta_button {
  min-width: 155px;
}
@media (max-width:767px){
  .two-col-section  .right-col .text-content{
    margin-bottom: 35px;
  }
}






@media (min-width: 768px){
  .vertical_tabber_section .left_col {
    width: 100%;
    max-width: 335px;
  }
  .vertical_tabber_section .tabber-content.active .tabber_content {
    display: block !important;
  }
  .vertical_tabber_section .right_col {
    width: 100%;
    max-width: 838px;
    padding-top: 64px;
  }
  .vertical_tabber_section .tabber_container .accordion_header{
    display:none;
  }
  .vertical_tabber_section::before {
    position: absolute;
    z-index: -1;
    content: "";
    right: -196px;
    top: 29px;
    border-radius: 162.327px 162.327px 0px 162.327px;
    opacity: 0.08;
    background: #ADADAD;
    width: 293px;
    height: 293px;
    transform: rotate(90deg);
    flex-shrink: 0;
  }
  .vertical_tabber_section .tabber_container .tabber_content {
    max-width: 763px;
  }
  .vertical_tabber_section .tabber_container .tabber_content .logo_conta {
    max-width: 65px;
    width: 100%;
  }
}
.vertical_tabber_section .tabber_container .tabber_content .logo_conta img {
  object-fit: contain;
  width: max-content;
}
.vertical_tabber_section {
  position:relative;
  z-index:1;
}
.vertical_tabber_section::after {
  position: absolute;
  content: "";
  z-index: -1;
  border-radius: 176.177px 176.177px 0px 176.177px;
  opacity: 0.1;
  background: linear-gradient(356deg, #ADADAD 11.46%, rgba(173, 173, 173, 0.00) 119.89%);
  width: 318px;
  height: 318px;
  flex-shrink: 0;
  left: -150px;
  bottom: 136px;
}
.vertical_tabber_section .content-wrapper{
  max-width:1240px;
}
.vertical_tabber_section .flex_container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.vertical_tabber_section .inner_flex {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 29px;
}
.vertical_tabber_section button.tablinks {
  border: none;
  background: transparent;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 91.298%;
  margin-bottom: 15px;
  padding: 0;
  display: block;
}
.vertical_tabber_section button.tablinks.active {
  color: #E0B124;
  font-weight: 900;
}
.vertical_tabber_section .tabber_container .desc_conta p{
  margin-bottom: 23px;
}
.vertical_tabber_section .tabber_container .desc_conta ul {
  margin-bottom: 41px;
  margin-top: 25px;
  padding-left: 29px;
}
.vertical_tabber_section .tabber_container .desc_conta ul li{
  margin-bottom: 2px;
}
.vertical_tabber_section .tabs-button{
  color: #000;
  font-size: 16px;
  line-height: 91.298%;
}
.vertical_tabber_section .tabs-button.active{
  color: #E0B124;
  font-weight: 900;
}
.vertical_tabber_section .list ul{
  padding: 0;
  list-style: none;
}
.vertical_tabber_section .list ul li{
  margin-bottom: 13px;
}

@media (max-width:1024px){
  .vertical_tabber_section .left_col {
    max-width: 250px;
  }
}

@media (max-width:767px){
  .vertical_tabber_section .left_col{
    display:none;
  }
  /*   .vertical_tabber_section .tabber_container .accordion_header.expanded + .tabber_content  {
  display:block !Important;
} */
  .vertical_tabber_section .tabber_container .accordion_header {
    cursor: pointer;
    /*     display: inline-block; */
    padding: 0 20px 20px;
  }
  .vertical_tabber_section .tabber_container .accordion_header h3{
    color: #000;
    font-size: 22px;
    line-height: 91.298%;
    display:inline-block;
    position: relative;
    z-index: 1;
    cursor:pointer;
    padding-right: 37px;
    width: 100%;
  }
  .accordion_group {
    margin-bottom: 24px;
    display: block ! IMPORTANT;
  }
  .vertical_tabber_section .tabber_container .accordion_header h3::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 19px;
    height: 2px;
    right: 0px;
    /*     top: 9px; */
    background: #000;
    top: 50%;
    transform: translateY(-50%);
  }
  .vertical_tabber_section::after {
    z-index: 0;
  }
  .vertical_tabber_section .tabber_container .accordion_header h3::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 2px;
    height: 19px;
    right: 9px;
    /*     top: 0; */
    background: #000;
    transition: transform 0.3s ease-in-out;
    top: 50%;
    transform: rotate(0deg) translateX(-0%) translateY(-50%);
  }
  .vertical_tabber_section .tabber_container .accordion_header.expanded h3 {
    color: #E0B124;
    font-weight: 900;
  }
  .vertical_tabber_section .tabber_container .accordion_header.expanded h3::before {
    /*     background: #E0B124;
    transform: rotate(90deg) translateX(50%) translateY(0%);
    top: 0%; */
    display: none;
  }
  .vertical_tabber_section .tabber_container .accordion_header.expanded h3::after{
    background: #E0B124;
  }
  .vertical_tabber_section .tabber_container .accordion_header.expanded{
    pointer-events: none;
  }
  body .vertical_tabber_section .content-wrapper{
    padding: 0 !important;
  }
  .vertical_tabber_section .tabber_container .tabber_content {
    padding: 28px 20px 25px;
    background: linear-gradient(0deg, #FFF 97.06%, #8E8E8E 124.12%);
  }
  .vertical_tabber_section .tabber_container .tabber_content .logo_conta {
    max-width: 65px;
    width: 100%;
  }
  .vertical_tabber_section .tabber_container .tabber_content .tabber_title h2{
    line-height: 98%;
    font-size: 35px;
  }
  .vertical_tabber_section .tabber_container .desc_conta p {
    font-size: 20px;
    line-height: 156%;
  }
  .vertical_tabber_section .tabber_container .expanded .accordion_header::before {
    bottom: 0;
    left: 30px;
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border: 9px solid transparent;
    border-bottom-color: #f4f4f4;
  }
  .vertical_tabber_section .inner_flex {
    gap: 23px;
    margin-bottom: 32px;
    padding-left: 8px;
  }
  .vertical_tabber_section .tabber_container .desc_conta p {
    margin-bottom: 22px;
  }
  .vertical_tabber_section .desc_conta li{
    font-size: 20px;
    line-height: 156%;
  }
  .vertical_tabber_section .tabber_container .desc_conta ul li {
    margin-bottom: 0px;
  }
  .vertical_tabber_section .tabber_container .desc_conta ul{
    margin-bottom: 37px;
  }
}





#hs_cos_wrapper_widget_1717509659569 .splide__main .hs-gallery-slider-main__arrow .splide__arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  width: 16px;
  height: 32px;
  outline: 0;
}
#hs_cos_wrapper_widget_1717509659569 .splide__main .hs-gallery-slider-main__arrow .splide__arrow svg {
  width: 16px;
  height: 32px;
  background-repeat: no-repeat;
  margin-top: 0;
}
#hs_cos_wrapper_widget_1717509659569 .splide__main .hs-gallery-slider-main__arrow .splide__arrow.splide__arrow--prev svg {
  background-color: #131313;
  mask: url(https://getaquote.bloombenefits.ca/hubfs/Left%20Arrow-1.svg);
  -webkit-mask: url(https://getaquote.bloombenefits.ca/hubfs/Left%20Arrow-1.svg);
}
#hs_cos_wrapper_widget_1717509659569 .splide__main .hs-gallery-slider-main__arrow .splide__arrow.splide__arrow--next svg {
  background-color: #131313;
  mask: url(https://getaquote.bloombenefits.ca/hubfs/Left%20Arrow-1.svg);
  -webkit-mask: url(https://getaquote.bloombenefits.ca/hubfs/Left%20Arrow-1.svg);
  rotate: 180deg;
}
#hs_cos_wrapper_widget_1717509659569 .splide__main .hs-gallery-slider-main__arrow .splide__arrow.splide__arrow--prev:hover svg {
  background-color: #f0be25;
}
#hs_cos_wrapper_widget_1717509659569 .splide__main .hs-gallery-slider-main__arrow .splide__arrow.splide__arrow--next:hover svg {
  background-color: #f0be25;
}
#hs_cos_wrapper_widget_1717509659569 .splide__main .hs-gallery-slider-main__arrow .splide__arrow svg g {
  display: none;
}
@media only screen and (max-width: 575.98px){
  /* #hs_cos_wrapper_widget_1717509659569 .splide__main .splide__slide--image__wrapper {
    max-width: 80%;
    margin: 0 auto;
  } */
  #hs_cos_wrapper_widget_1717509659569 .splide__main .hs-gallery-slider-main__arrow .splide__arrow.splide__arrow--prev {
    left: -1em;
  }
  #hs_cos_wrapper_widget_1717509659569 .splide__main .hs-gallery-slider-main__arrow .splide__arrow.splide__arrow--next {
    right: -1em;
  }
}

.two-col-section .button_container .module a.cta_button {
  font-weight: 900 !important;
  font-family: Avenir, sans-serif !important;
  padding-top: 17px;
  padding-bottom: 17px;
}
.two-col-section .button_container .module a.cta_button:hover{
  font-weight: 900 !important;
}

/* Start 27-06-2024 css here */
.slider__container .splide__main .splide__controls {
  display: none !important;
}
/* End 27-06-2024 css here */
/* Header DND sections */

.header .dnd-section {
  padding: 0;
  font-family: Kross Neue Grotesk!important;
}

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


@media(min-width:768px) and (max-width:1024px){
  body header.header .hs-menu-wrapper li.hs-menu-item.hs-menu-depth-1 {
    padding-right: 35px;
  }
}




body header .header_search {
  display: none;
}

body header .button_container .primary_button a.cta_button{
  border-radius: 25.801px 25.801px 25.801px 0px;
  font-size: 20px;
  font-weight: 900;
  padding: 18px 21px 17px 21px;
  text-transform: uppercase;
}
body header .button_container .primary_button a.cta_button:hover{
  font-weight: 900;
}



/* --------------------------------------------------------------- header-2024 css------------------------------------------------- */

.footer .content-wrapper,
.header .header-container {
  max-width: 1356px;
  margin:0 auto; 
  padding:0 20px;
}

header.header .logo-container img{
  transition: all .3s ease-in-out;
}

header.header.fixed {
  position: fixed;
  padding: 15px 0;
  transition: all .3s ease-in-out;
}

header.header.fixed .logo-container img{
  max-width: 167px;
  transition: all .3s ease-in-out;
}

.header {
  background-color: transparent;
  padding: 40px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  transition: all .3s ease-in-out;
}

header.header .hs-menu-wrapper li.hs-menu-item {
  display: inline-block;
  position: relative;
}
header.header .hs-menu-wrapper li.hs-menu-item ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2, 
header.header .hs-menu-wrapper li.hs-menu-item ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-3{
  padding: 0 20px 10px 20px;
}
header.header .hs-menu-wrapper li.hs-menu-item ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2:last-child, 
header.header .hs-menu-wrapper li.hs-menu-item ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-3:last-child{
  padding-bottom: 0;
}
header.header .dnd-section .dnd-column{ 
  padding:0; 
} 
.popup-overlay .text-container form .hs-search-field__input:focus{
  outline: none;
}

@media(min-width:1025px){
  header.header .hs-menu-wrapper li.hs-menu-item.hs-menu-depth-1 {
    margin-right: 48px;
  }
  body header .button_container .primary_button{
    min-width: 162px;
  }   
  header.header .hs-menu-wrapper li.hs-menu-item:hover ul.hs-menu-children-wrapper{
    display:block;
  }
  header.header .hs-menu-wrapper li.hs-menu-item:hover ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2.hs-item-has-children ul.hs-menu-children-wrapper{
    display:none;
    transition: all 0.2s ease-in-out;
  }
  header.header .hs-menu-wrapper li.hs-menu-item:hover ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2.hs-item-has-children:hover ul.hs-menu-children-wrapper{
    display:block;
    transition: all 0.2s ease-in-out;
  }
  header.header .hs-menu-wrapper li.hs-menu-item.hs-menu-depth-2.hs-item-has-children ul.hs-menu-children-wrapper{
    left: 100%;
    top: -20px;
    right: 0;
  }
  .header .header-container .row-fluid { 
    align-items: center;
  }
  header.header .hs-menu-wrapper ul{ 
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding-left: 0;
    align-items:center;
    justify-content:right;
  }
  .header .header-container .logo-container {
    max-width: max-content;
    margin: 0;
    width: 100%;
  }
  .header .header-cta-container .button_container {
    text-align: right !important;
  }
  .header-menu-container.span10.custom-menu-primary.js-enabled{
    padding-left:30px;
  }
  .header-menu-container.span10.custom-menu-primary.js-enabled {
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .header-menu-container.span10.custom-menu-primary.js-enabled .header-cta-container {
    margin-left: 50px;
    margin-right: 20px;
  }
  .header .search_button .search_text{
    color: #FFF;
    font-family: Avenir;
    font-size: 17.2px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    padding-right: 15px;
    transition: all 0.3s ease-in-out;
  }
  .header .search_button .search_text:hover{
    color:#E0B124;
  }
  .header .search_button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 5px 0px;
    cursor: pointer;
    position: relative;
  }
  .header div#myOverlay {
    opacity: 0;
    width: 0;
    height: 0;
  }
  #myOverlay .closebtn {
    display: none;
  }
  #myOverlay .closebtn {
    width: 100%;
    max-width: max-content;
    position: absolute;
    right: 22px;
    top: 12px;
    z-index: 11;
    cursor: pointer;
    padding: 12px;
    text-align: center;
  }
  .header #myOverlay.overlay-header.open-popup {
    opacity: 1;
    width: auto;
    height: auto;
  }
  #myOverlay.open-popup {
    top: 0px;
    bottom: 0px;
    background: #ffffff;
    pointer-events: auto;
    opacity: 1;
    transition: all .5s ease-in-out;
    z-index: 3;
    height: 100vh;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .popup-overlay .text-container form .hs-search-field__input {
    color: #9E9E9E;
    font-size: 3.5em;
    font-weight: 500;
    text-align: center;
    background: none;
    border: none;
    border-bottom: 2px solid #9E9E9E;
    margin: 0;
    display: block;
    transition: all .25s ease;
    padding-bottom: 18px;
    border-radius: 0;
    height: auto;
    width: 100%;
  }
  .popup-overlay .text-container button.hs-search-field__button.hs-search-field__button--labelled:before{
    position: absolute;
    z-index: -1;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 18.8px;
    border-top-left-radius: 18.8px;
    border-top-right-radius: 18.8px;
    transform: translate3d(-200px, 60px, 0px);
    transition: all 0.2s ease-in-out;
  }
  .popup-overlay .text-container button.hs-search-field__button.hs-search-field__button--labelled:hover:before{
    transform: translate3d(0px, 0px, 0px);
    transition: all 0.2s ease-in-out;
  }
  .open-popup#myOverlay .closebtn {
    display: block;
  }
  .popup-overlay .text-container {
    margin: 0 auto;
    float: none;
    position: relative;
    top: 35%;
    z-index: 1;
    max-width: 728px;
  }
  header .header-container .header-wrapper .header-menu-container li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>a{
    position: relative;
    padding-right: 18px;
  }
  header .header-container .header-wrapper .header-menu-container li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>a:before {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    bottom: auto;
    content: "";
    height: 7px;
    left: auto;
    position: absolute;
    right: 5px;
    top: 8px;
    transform: rotate(-135deg);
    transition: all .3s ease-in-out;
    width: 7px;
    z-index: -1;
  }
  header.header-white .header-container .header-wrapper .header-menu-container li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>a:before {
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
  }
  header .header-container .header-wrapper .header-menu-container li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>a.active:before {
    border-bottom: 2px solid #E0B124;
    border-left: 2px solid #E0B124;
    right: 3px;
    top: 6px;
    transform: rotate(-45deg);
  }
}
@media(min-width: 1025px) and (max-width: 1200px){
  header.header .hs-menu-wrapper li.hs-menu-item.hs-menu-depth-1{
    margin-right: 35px;
  }
  .header-menu-container.span10.custom-menu-primary.js-enabled .header-cta-container {
    margin-left: 20px;
    margin-right: 0px;
  }
}
@media(max-width:1024px){
  header .header-container .child-trigger {
    cursor: pointer;
    height: 16px;
    left: auto;
    position: absolute;
    right: 10px;
    top: 5px;
    width: 16px;
  }
  header .header-container .child-trigger i {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    cursor: pointer;
    display: block;
    height: 11.3px;
    min-width: 11.3px;
    position: absolute;
    right: 5px;
    top: 2px;
    transform: rotate(-135deg);
    transition: all .3s ease-in-out;
    width: 11.3px;
  }
  header.header-white .header-container .child-trigger i {
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
  }
  header .header-container .child-trigger.child-open i {
    right: 2px;
    top: 1px;
    transform: rotate(-45deg);
  }
  header .header-container .child-trigger.child-open i,
  header.header-white .header-container .child-trigger.child-open i{
    border-bottom: 2px solid #E0B124;
    border-left: 2px solid #E0B124;
  }
  .header{
    padding:30px 0;
  }
  .header .header-container .header-wrapper .row-fluid-wrapper .row-fluid {
    flex-wrap: wrap;
  }
  header.header .hs-menu-wrapper ul{ 
    display:block;
  }
  header.header .hs-menu-wrapper li.hs-menu-item{
    display:block;
  }
  header.header .hs-menu-wrapper li.hs-menu-item.hs-menu-depth-1 {
    padding-bottom:10px;
  }
  .header #hs_menu_wrapper_header_menu_ .button_container {
    text-align: left !important;
    padding: 10px 0 0;
  }
  .header-menu-container.span10.custom-menu-primary.js-enabled {
    display: none;
  }
  body.mobile-open .header-menu-container.span10.custom-menu-primary.js-enabled {
    display: block;
    width:100%;
    padding-top: 30px;
  }
  header.header .header-container .logo-container.span3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  header.header .header-container .logo-container.span3 img {
    width: 100%;
    max-width: 167px;    
    height: auto;   
    display:flex;
  }
  header.header .header-container .header-wrapper .row-fluid-wrapper .row-fluid .logo-container .mobile-trigger{ 
    float:right;
    padding:9px 2px;
    cursor:pointer;
  }
  header.header .header-container .header-wrapper .row-fluid-wrapper .row-fluid .logo-container .mobile-trigger i{
    position:relative;
    width:20px;  
    height:2px;
    background:#E0B124;
    border-radius:2px;
    transition:all .3s ease-in-out;
    display:block;
  }
  header.header .header-container .header-wrapper .row-fluid-wrapper .row-fluid .logo-container .mobile-trigger i::after{
    position:absolute;
    width:20px;
    height:2px;
    background:#E0B124;
    border-radius:2px;
    top:8px;
    content:'';
    transition:all .3s ease-in-out;
  }
  header.header .header-container .header-wrapper .row-fluid-wrapper .row-fluid .logo-container .mobile-trigger i::before{
    position:absolute;
    width:20px;
    height:2px;
    background:#E0B124;
    border-radius:2px;
    top:-8px;
    content:'';
  }
  body.mobile-open header.header .header-container .header-wrapper .row-fluid-wrapper .row-fluid .logo-container .mobile-trigger i{
    transform: rotate(45deg);
  }  
  body.mobile-open header.header .header-container .header-wrapper .row-fluid-wrapper .row-fluid .logo-container .mobile-trigger i::before{
    display:none;
  }
  body.mobile-open header.header .header-container .header-wrapper .row-fluid-wrapper .row-fluid .logo-container .mobile-trigger i::after{
    transform: rotate(90deg);
    top:0px;
  }
  body.mobile-open header.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding:30px 0;
    z-index: 999;
  }
  body.mobile-open header.header.fixed {
    padding:15px 0;
  }
  header .search_button {
    display: none;
  }
  header .header__search {
    border-top: none;
    display: block;
    padding: 20px 0;
  }
  header span.closebtn {
    display: none;
  }
  header input#search_desktop-input {
    padding: 15.4px 115px 15.4px 15.4px;
    height: 54px !important;
    color: #000000;
    font-family: Avenir,sans-serif;
    font-size: 17.2px;
    font-weight: 800;
    line-height: normal;
    text-transform: none;
    border: none;
    display:block !important;
    border-radius: 25.801px 25.801px 25.801px 0px;
    width: 100%;
  }
  header form.hs-search-field__form{
    border-bottom-right-radius: 100px;
    border-top-right-radius:100px;
  }
  header.header .hs-menu-wrapper.flyouts .hs-menu-children-wrapper{
    position: relative;
    left: 0;
    opacity: 0;
    display: none;
    padding: 10px 0;
  }
  
  .hs-menu-wrapper.flyouts .child-trigger.child-open + .hs-menu-children-wrapper{
    position: relative;
    left: 0;
    opacity: 1;
    display: block;
  }
}
/*================================================================= footer-2024 css ==============================================*/

.footer {
  position:relative;
  z-index:1;
}

.footer li {
  padding-right: 56px;
}

.footer li:last-child{
  padding-right:0;
}

footer.footer a#hs-link-footer_-module-2_hs_logo_widget {
  display: flex;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: max-content;
}
.footer .dnd-section .dnd-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:0px;
}
footer .dnd-section {
  padding: 86px 0 124px;
}
.top_section_system{
  background:#302f2a;
  height:184px;
}
@media(min-width:768px) and (max-width:1024px){
  .footer li{
    padding-right: 22px;
  }
  .top_section_system{
    background:#302f2a;
    height:154px;
  }
}
@media(max-width:767px){ 
  .top_section_system{
    background:#302f2a;
    height:154px;
  }
  .hs_submit.hs-submit{
    margin-top: 18px;
  }
  .footer a{ 
    font-size: 15.468px;
    line-height: normal;
    margin: 8px;
    display:inline-block;
  }
  .footer li {
    display:inline-block; 
  }
  footer.footer img {
    width: 208px;
  }
  .footer .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .footer li {
    padding-right: 3vw;
  }
  footer.footer a#hs-link-footer_-module-2_hs_logo_widget{
    display:block;
  }
  footer.footer .container-fluid.footer__container.content-wrapper {
    padding: 0;
  }
  .footer .dnd-section .dnd-column {
    flex-wrap: wrap;
  }
  .footer .dnd-section .dnd-column .row-number-2.dnd-row{
    flex-basis:250px;
  }
  .footer .dnd-section .dnd-column .row-number-3.dnd-row{
    flex-basis:calc(100% - 250px);
  }
  .footer .dnd-section .dnd-column .row-number-4.dnd-row{
    flex-basis:100%;
  }
  footer .dnd-section {
    padding: 40px 0 57px;
  }
  .footer-module-3-flexbox-positioning > div{
    width:100%;
  }
  .social-links {
    max-width: calc(100% - 250px);
    margin-left: auto;
    margin-right: 0;
    justify-content: flex-start !important;
  }

}

@media(min-width: 375px) and (max-width: 767px){
  form .hs_firstname.hs-form-field, form .hs_lastname.hs-form-field {
    width: 47% !important;
  }
}

@media(min-width:386px) and (max-width:767px){
  footer li.hs-menu-item{
    width:50%;
    padding-right: 0;
    padding-left: 8%;
  }
}
@media(max-width:374px){
  form .hs_firstname.hs-form-field, form .hs_lastname.hs-form-field {
    width: 100% !important;
  }

}
@media(max-width:385px){
  .footer .dnd-section .dnd-column {
    display:block;
  }
  .footer li {
    padding-right:10px;
  }
  .social-links {
    max-width:100% !important;
    margin-left:unset;
    margin-right:unset;
    justify-content: center !important;
  }
  .footer .hs-menu-wrapper ul{
    justify-content: center !important;
  }
}
@media(max-width:520px){

  .footer .dnd-section .dnd-column .row-number-2.dnd-row{
    flex-basis:160px;
  }
  .footer .dnd-section .dnd-column .row-number-3.dnd-row{
    flex-basis:calc(100% - 160px);
  }
  .social-links {
    max-width: calc(100% - 160px);
  }
  footer.footer img{
    width:135px !important;

  }
  .footer li:nth-child(2){
    padding-right: 0;
  }
  .footer .hs-menu-wrapper ul li:nth-child(1) {
    order: 1;
  }
  .footer .hs-menu-wrapper ul li:nth-child(2) {
    order: 3;
  }
  .footer .hs-menu-wrapper ul li:nth-child(3) {
    order: 2;
  }
  .footer .hs-menu-wrapper ul li:nth-child(4) {
    order: 4;
  }
}
@media(max-width:385px){
  body .footer li {
    padding-right: 0;
  }
  body .footer .hs-menu-wrapper.hs-menu-flow-horizontal ul{
    flex-direction: column;
  }
  .footer:before{
    background-size:cover;
  }
  .two_column_section .right_container .text_container,
  .two-col-section .left-col{
    padding-left:20px !important;
    padding-right:20px !important;
  }

}



/* Start 27-06-2024 CSS Here */
header.header .hs-menu-wrapper li.hs-menu-item ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2 {
  padding: 10px !important;
  display: block !important;
}
header.header .hs-menu-wrapper li.hs-menu-item ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2:first-child {
  padding-top: 0 !important;
}
header.header .hs-menu-wrapper li.hs-menu-item ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2 a {
  color: #000000 !important;
}
header.header .hs-menu-wrapper li.hs-menu-item ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2 a:hover{
  color: #E0B124 !important;
}

@media only screen and (max-width: 1024px){
  /* body.mobile-open header.header .hs-menu-wrapper ul .hs-menu-children-wrapper {
    display: block !important;
  } */
  body.mobile-open header.header.header-transparent .hs-menu-wrapper ul .hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2 a {
      color: #fff !important;
  }
  body.mobile-open header.header.header-white .hs-menu-wrapper ul .hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-2 a {
    color: #000 !important;
}
}
/* End 27-06-2024 CSS Here */

/* Start 28-06-2024 CSS Here */
header.header.header-white .hs-menu-wrapper li.hs-menu-item.active>a::before {
  border-bottom: 2px solid #E0B124 !important;
  border-left: 2px solid #E0B124 !important;
}
header.header-white .hs-menu-wrapper li.hs-item-has-children.active-branch,
header.header-white .hs-menu-wrapper li.hs-item-has-children.active-branch>a,
header.header-white .hs-menu-wrapper li.hs-item-has-children.active-branch ul.hs-menu-children-wrapper li.hs-menu-item.active>a {
  color: #E0B124 !important;
}
header.header-white .hs-menu-wrapper li.hs-item-has-children.active-branch>a::before {
  border-bottom: 2px solid #E0B124 !important;
  border-left: 2px solid #E0B124 !important;
}
@media only screen and (max-width: 1024px){
  header.header-white .hs-menu-wrapper li.hs-item-has-children.active-branch .child-trigger i {
    border-bottom: 2px solid #E0B124;
    border-left: 2px solid #E0B124;
  }
}
/* End 28-06-2024 CSS Here */
/* 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;
  }
}