/* 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;
}
@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}
@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.)
*/

@font-face {
  font-family: 'Helvetica Neue LT Pro';
  src:url('https://243597.fs1.hubspotusercontent-na2.net/hubfs/243597/HexaGroup%20-%20June_2025/fonts/HelveticaNeueLTPro45Light.eot') format('eot'),
    url(//243597.fs1.hubspotusercontent-na2.net/hubfs/243597/raw_assets/public/HexaGroup%20-%20June_2025/fonts/HelveticaNeueLTPro45Light.ttf) format('ttf'),
    url(//243597.fs1.hubspotusercontent-na2.net/hubfs/243597/raw_assets/public/HexaGroup%20-%20June_2025/fonts/HelveticaNeueLTPro45Light.woff) format('woff'),
    url(//243597.fs1.hubspotusercontent-na2.net/hubfs/243597/raw_assets/public/HexaGroup%20-%20June_2025/fonts/HelveticaNeueLTPro45Light.woff2) format('woff2');
  font-weight:300;
  font-style:45 Light;
  font-display: swap; /* Recommended for performance */
}
@font-face {
  font-family: 'Helvetica Neue LT Pro';
  src:url('https://243597.fs1.hubspotusercontent-na2.net/hubfs/243597/HexaGroup%20-%20June_2025/fonts/HelveticaNeueLTPro55Roman.eot') format('eot'),
    url(//243597.fs1.hubspotusercontent-na2.net/hubfs/243597/raw_assets/public/HexaGroup%20-%20June_2025/fonts/HelveticaNeueLTPro55Roman.ttf) format('ttf'),
    url(//243597.fs1.hubspotusercontent-na2.net/hubfs/243597/raw_assets/public/HexaGroup%20-%20June_2025/fonts/HelveticaNeueLTPro55Roman.woff) format('woff'),
    url(//243597.fs1.hubspotusercontent-na2.net/hubfs/243597/raw_assets/public/HexaGroup%20-%20June_2025/fonts/HelveticaNeueLTPro55Roman.woff2) format('woff2');
  font-weight:400;
  font-style:55 Roman;
  font-display: swap; /* Recommended for performance */
}
@font-face {
  font-family: 'Helvetica Neue LT Pro';
  src:url('https://243597.fs1.hubspotusercontent-na2.net/hubfs/243597/HexaGroup%20-%20June_2025/fonts/HelveticaNeueLTProBd.eot') format('eot'),
    url(//243597.fs1.hubspotusercontent-na2.net/hubfs/243597/raw_assets/public/HexaGroup%20-%20June_2025/fonts/HelveticaNeueLTProBd.ttf) format('ttf'),
    url(//243597.fs1.hubspotusercontent-na2.net/hubfs/243597/raw_assets/public/HexaGroup%20-%20June_2025/fonts/HelveticaNeueLTProBd.woff) format('woff'),
    url(//243597.fs1.hubspotusercontent-na2.net/hubfs/243597/raw_assets/public/HexaGroup%20-%20June_2025/fonts/HelveticaNeueLTProBd.woff2) format('woff2');
  font-weight:700;
  font-style:75 Bold;
  font-display: swap; /* Recommended for performance */
}


*,:after,:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;	overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  color: var(--primary_color);
  font-family: var(--primary_font);
  line-height: 1.5;
  margin: 0;
  overflow-wrap: break-word;
  /*   overflow-x: hidden; */
  font-weight:400;
  letter-spacing:-0.4px;
}
.dnd-section[class*=force-full-width-section],.dnd-section[class*=force-full-width-section]>.row-fluid {
  padding: 0
}
.default-preview button:after {
  display: none;
}
.hs-private.hs-private.hs-private :after {
  display: none;
}
p {
  margin: 0 0 15px
}

a {
  color: var(--link_color);
  text-decoration: none;
  transition: all .3s ease-in-out
}

a:not(.button,.primary-btn,.hs-outline-btn,.secondary-btn,.custom) {
  background: linear-gradient(to right,rgba(20,130,251,0),rgba(20,130,251,0)),linear-gradient(to right,var(--link_color));
  background-position: 100% 100%,0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1.5px,0 1.5px;
  color: var(--link_color);
  cursor: pointer;
  display: inline;
  font-weight:400;
  text-decoration: none;
  transition: background-size .4s
}

a:not(.button,.primary-btn,.hs-outline-btn,.secondary-btn,.custom):hover {
  background-size: 0 1.5px,100% 1.5px;
  text-decoration: none
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
  font-weight:700;
  line-height: 1;
  margin: 0 0 15px;
  letter-spacing: -1.4px;
}
.h1,h1{
  line-height:1.03125;
}
.h2,h2{
  line-height:1.125;
}
.body-container-wrapper .body-container:not(.hs-insight-article,.body-container--blog-post,.body-container-insights-index) ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.body-container-wrapper .body-container:not(.hs-insight-article,.body-container--blog-post,.body-container-insights-index) ul li {
  padding-left: 25px;
  position: relative;
}
.body-container-wrapper .body-container:not(.hs-insight-article,.body-container--blog-post,.body-container-insights-index) ul li:before {
  background-color: var(--secondary_color);
  border-radius: 100%;
  content: "";
  display: block;
  height: 7px;
  left: 6px;
  position: absolute;
  width: 7px;
}
ol,ul {
  margin: 0 0 15px;
  padding-left: 25px;
}

ol ol,ol ul,ul ol,ul ul {
  margin: 16px 0
}

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

.no-list li {
  margin: 0
}

pre {
  overflow: auto
}

code {
  vertical-align: bottom
}

blockquote {
  border-left: 10px solid;
  margin: 0 0 1.4rem;
  padding-left: 1rem
}

hr {
  border: 0;
  border-bottom: 1px solid
}

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

sup {
  top: -.5em
}

sub {
  bottom: -.25em
}

b,strong {
  font-weight: 700
}

img {
  max-width: 100%;
  vertical-align: middle;
  word-break: normal
}

audio,canvas,embed,iframe,object,svg,video {
  display: block;
  vertical-align: middle
}
.no-banner main#main-content {
  padding-top:140px;
}

/* Model */
html.model-open{
  overflow:hidden;
}
.model-open.model-popup {
  opacity:1;
  visibility: visible;
}
.model-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color:rgb(51 51 51 / 60%);
  z-index: 1200;
  height: 100%;
  padding: 50px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.model-popup .popup-wrapper {
  max-width: 1310px;
  margin: 0 auto;
  height: 100%;
  padding: 0 15px;
  min-height: 767px;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.model-popup .popup-close {
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right:15px;
  top:4%;
  z-index: 1;
}
.model-popup .popup-wrapper {
  position: relative;
}
.model-popup .popup-close svg {
  width: 20px;
  height: 20px;
}
.model-popup .oembed_container{
  height:auto; 
}
.model-popup .oembed_container .iframe_wrapper iframe,.model-popup .oembed_container {
  max-height: none !important;
  max-width: 100% !important;
}
@media(max-width:991px){
  .model-popup .popup-close {
    right: 15px;
    top: 10%;
  }
}
/**
* Simple fade transition,
*/
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out; 
  -moz-transition: all 0.15s ease-out; 
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out; 
  -moz-transition: all 0.15s ease-out; 
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.social-dnd-sec .dnd-module {
  min-height: 0;
}
@media (min-width: 768px) {
  .body-style-giude-page .banner-area .banner-icon a:after { height: 428px;}
}
@media(max-width:767px){
  .no-banner main#main-content {
    padding-top: 85px;
  }
}


/* Insight Blog */
.insight-body-section {
  padding-top: 142px;
}
.insight-body-section > .content-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}
/* .insight-body-section h2 {
font-size: 36px;
font-weight: 400;
letter-spacing: 0;
line-height: 1.111;
margin-bottom: 20px;
} */
/* .insight-body-section p,.insight-body-section ul li,.insight-body-section ol li,.insight-body-section a {
letter-spacing: 0;
font-size: 24px;
line-height: 1.5;
} */
.body-container-wrapper .insight-body-section li {
  list-style: none;
  position: relative
}

.body-container-wrapper .insight-body-section li:before {
  background: var(--link_color);
  border-radius: 2px;
  content: "";
  height: 7px;
  left: -20px;
  position: absolute;
  top: 14px;
  width: 7px
}

.body-container-wrapper .insight-body-section ul ul {
  margin: 10px 0;
  padding-left: 37px
}

.body-container-wrapper .insight-body-section ul ul li:not(:last-child) {
  margin-bottom: 11px
}

.body-container-wrapper .insight-body-section ul ul li:before,.body-container-wrapper .insight-body-section ul ul>li:last-child:before {
  left: -20px;
  top: 16px
}

.insight-body-section li ul li:before {
  height: 5px;
  width: 5px;
}

.insight-body-section ul>li:last-child:before {
  left: -21px
}

.insight-body-section ul:not(ul ul) {
  margin-bottom: 32px
}

.blog-comments {
  margin-bottom: 0;
  margin-top: 80px
}

.insight-body-section form ul li:before,
.filter-section .select-menu .select-menu-button .hexagon-container,
.filter-section form button .hexagon-container{
  display: none
}
.insight-body-section .blog-post__body p {
  margin-bottom:35px;
}

@media(min-width:992px){
  .insight-body-section h3 {
    line-height: 1.133;
  }
  .insight-body-section h4 {
    line-height: 1.5;
  }
  .body-container--home .dnd_area-row-2-background-image {
    background-position: center top -56% !important;
  }
}
@media(max-width:1200px){
  .insight-body-section {
    padding-top: 80px;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  line-height: 1.25;
  position: relative;
  text-transform:uppercase;
  transition: all 0.15s ease-in-out;
}

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;
}
.body-wrapper button, .button, .hs-button {
  display: inline-flex;
  align-items: center;
  line-height: 1.25;
  color: #cccccb;
  position: relative;
  transition: all 0.15s ease-in-out;
}
.body-wrapper button svg, .button svg, .hs-button svg, .actions svg {
  height: 25px;
  width: 25px;
  transition: all 0.3s ease-in-out;
  font-weight: 900;
  padding-left: 0;
  left: 0;
  margin-left: 8px;
  fill: #cccccb;
}
.body-wrapper button svg path, .button svg path, .hs-button svg path,.actions svg {
  fill: #cccccb;
}
/* .body-wrapper button:after, .button:after, .hs-button:after,.actions:after,.actions:after {
  content: "";
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background-color: rgb(204, 204, 203);
  opacity: 0.302;
  display: block;
  width: 38px;
  height: 44px;
  transform: rotate(90deg);
  margin-left: -15px;
  transition: all 0.3s ease-in-out;
}
.body-wrapper button:before, .button:before, .hs-button:before,.actions:before {
  content: "";
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background-color: var(--link_color);
  display: block;
  width: 38px;
  height: 44px;
  transform: rotate(90deg);
  left: -15px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  z-index: 0;
  opacity: 0;
} */
.body-wrapper button span, .button span, .hs-button span {
  position: relative;
  z-index: 1;
}
.body-wrapper button:hover, .button:hover, .hs-button:hover{
  padding-left: 20px;
}
.body-wrapper button:hover svg, .button:hover svg, .hs-button:hover svg {
  left: 10px;
}
.body-wrapper button:hover:before, .button:hover:before, .hs-button:hover:before {
  left: 0;
  opacity: 1;
}
form .actions:hover:before{
  opacity: 1;
}
form .actions:hover:after{
  opacity: 0;
}
.body-wrapper button:hover:after, .button:hover:after, .hs-button:hover:after {margin-left: 0;opacity: 0;}
/* Button */
.hexagon-container {
  filter: url(#btnhex);
  width: 38px;
  height: 44px;
}

.btnhexagon {
  width: 38px;
  height: 44px;
  background-color: teal;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hexagon-container.hex1 {
  position: relative;
  z-index: 0;
  margin-left: -20px;
  opacity: 0.302;
  transition: 0.3s ease-in-out;
}
.hexagon-container.hex1 .btnhexagon {
  background-color: #cccccb;
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
}
.hexagon-container.hex2 .btnhexagon {
  background-color: #f57722;
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
}
.button:hover .hexagon-container.hex2 {
  left: 0px;
  opacity: 1;
}
.button:hover .hexagon-container.hex1 {
  margin-left: 0px;
  opacity: 0;
}
.hexagon-container.hex2 {
  left: -15px;
  position: absolute;
  z-index: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
  right: auto;
}
@media(max-width:991px){
  .body-wrapper button, .button, .hs-button {
    font-size:22px;
  }
}
@media(max-width:767px){
  .body-wrapper button, .button, .hs-button {
    font-size:20px;
  }
}
/* Fields */

.hs-form-field {
  margin-bottom:40px;
}
.hs-working_together.hs-form-field{
  display: flex;
  flex-wrap: wrap;
}
/* Labels */

form label {
  display: block;
  margin-bottom: 14px;
  line-height: 1.4;
}

/* .hs-form-field>label {
display: none;
} */

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 30px;
  padding: 0 0 10px;
  width: 100%;
  font-weight: 300;
}

form textarea {
  resize: vertical;
  height: 175px;
}

form input.hs-button:focus-visible {
  outline: none;
}

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:#ff0000;
}

.hs-input.invalid.error {
  border-color:#ff0000;
  color: #ff0000;
}

.hs-error-msg, .hs-error-msgs label {
  color: #ff0000;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-flex;
  text-transform:uppercase;
  align-items: center;
  line-height: 1.25;
  position: relative;
  background-color: transparent;
  padding: 0;
  border: 0;
  transition: all 0.15s ease-in-out;
}

form input[type=submit]:before,
form input[type=submit]:after{
  display:none;
}
form .inputs-list li {
  padding: 0 !important;
}

form .inputs-list li:before {
  display: none !important;
}

form .inputs-list li .hs-input {
  display: inline-block !important;
  width: auto !important;
}

form .inputs-list li label {
  font-size: inherit;
}
/* 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;
}



fieldset.form-columns-1 .input{
  flex:1;
  margin-right: 0!important;
}

fieldset.form-columns-2 .input{
  width:100%!important;
  margin-right: 0!important;
}

fieldset.form-columns-3 .input{
  flex:1;
  margin-right: 0!important;
}

fieldset.form-columns-3 .input{
  flex:1;
  margin-right: 0!important;
}

fieldset.form-columns-1 .hs-input {
  width: 100%!important;
}

fieldset.form-columns-2{
  display:flex;
  gap:50px;
}

.hs_submit.hs-submit {
  text-align: right;
}

.actions {
  display: inline-flex;
  text-align: right;
  position: relative;
  align-items: center;
}

form input[type=submit]:hover {
  padding: 0;
}
form .hs-input:focus {
  outline: none;
}
form select.hs-input {
  appearance: none;
  background-image: url(https://243597.fs1.hubspotusercontent-na1.net/hubfs/243597/HexaGroup%20-%20June_2025/images/Vector%20Smart%20Object-1.png);
  background-repeat: no-repeat;
  background-position: right;
  padding-right: 26px;
}
.password-prompt input[type=password]:focus {
  outline: none;
}
form .actions span {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}
form .actions .hexagon-container.hex2 {
	opacity: 1;
	z-index: -1;
}
@media (max-width: 991px) {
  form .hs-button, form input[type=submit]{
    font-size: 22px!important;
  }
}

@media (max-width:767px){
  fieldset.form-columns-2 {
    gap: 0;
    flex-direction: column;
  }
  fieldset.form-columns-2 .hs-form-field,fieldset.form-columns-3 .hs-form-field,form:not(.hs-video-form) .form-columns-2 .hs-form-field .hs-input,form:not(.hs-video-form) .form-columns-3 .hs-form-field .hs-input{
    width: 100%!important;
  }

  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 {
    font-size:16px; 
  }
  form textarea {
    height: 100px;
  }
  form .hs-button, form input[type=submit]{
    font-size: 20px!important;
  }
}
/* 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
*/

.header-wrapper{position:fixed;top:0;left:0;right:0;width:100%;z-index:40}
.header-wrapper .footer-left,.header-wrapper .hamburger-trigger,.header-wrapper .navigation{pointer-events:auto}
.header-wrapper .content-wrapper{display:flex;justify-content:space-between;gap:15px}
.header-wrapper .header-logo a{background-image:none;display:block}
.header-wrapper .hamburger-trigger{position:fixed;top:21px;right:21px;display:flex;gap:15px;width:84px;height:84px;flex-direction:column;justify-content:center;align-items:center;transform:rotate(150deg);cursor:pointer;z-index:500}
.hamburger-trigger span{background-color:#fff;width:56px;display:flex;height:6px;border-radius:5px;flex-direction:column;margin:0 auto;transition:all .3s ease-in-out;transform:translate(0,0)}
.hamburger-trigger span:first-child,.hamburger-trigger span:last-child{width:30px}
.hamburger-trigger.is-active span:nth-child(2){transform:translate(-30px,0)}
.header-wrapper .navigation{position:fixed;right:65px;top:46px;z-index:700;display:none}
.custom-menu-primary ul{padding:0;margin:0;list-style:none}
.custom-menu-primary ul li a{background-image:none;transition:all .3s ease-in-out;font-size:20px;line-height:36px;color:#cdcdcd;font-weight:900;text-transform:uppercase;transform:translate(0,0);display:block}
.custom-menu-primary ul li a:hover{transform:translate(-3px,0);color:#fff}
.header-wrapper .social-icons{display:flex;margin-top:23px;margin-left:4px;gap:10px;align-items:center}
.header-wrapper .social-icons a svg,.header-wrapper .social-icons a svg path{fill:#cdcdcd;transition:all .3s ease-in-out}
.header-wrapper .social-icons a svg{width:100%;height:100%;fill:#cdcdcd;transition:all .3s ease-in-out}
.header-wrapper .social-icons a{background-image:none}
.header-wrapper .social-icons a:hover svg,.header-wrapper .social-icons a:hover svg path{fill:#fff}
.white-nav .header-wrapper{
  background-image: -moz-linear-gradient( -90deg, rgba(0,0,0,0.30196) 0%, rgba(57,57,57,0) 100%);
  background-image: -webkit-linear-gradient( -90deg, rgba(0,0,0,0.30196) 0%, rgba(57,57,57,0) 100%);
  background-image: -ms-linear-gradient( -90deg, rgba(0,0,0,0.30196) 0%, rgba(57,57,57,0) 100%);
}

@media(min-width:1441px){.header-wrapper .content-wrapper{max-width:100%;padding:0 68px}}
@media(min-width:768px){.header-wrapper .navigation .mobile-logo,.hamburger-trigger.mobile{display:none}}
@media(max-width:767px){
  .header-wrapper .navigation .navigation-inner{max-height:446px;min-height:350px;overflow-y:auto;overflow-x:hidden;height:75vh}
  .header-wrapper .navigation::-webkit-scrollbar{width:6px}
  .header-wrapper .navigation::-webkit-scrollbar-track,.header-wrapper .navigation::-webkit-scrollbar-thumb{background:#333}
  .header-wrapper .navigation::-webkit-scrollbar-thumb{background:#cccccb;border-radius:3px}
  .header-wrapper .navigation::-webkit-scrollbar-track{background:#6fbb44;border-radius:3px}
  .header-wrapper .hamburger-trigger.desktop{display:none}
  .header-wrapper .hamburger-trigger{width:64px;height:64px;top:32px}
  .hamburger-trigger span{width:45px}
  .hamburger-trigger span:first-child,.hamburger-trigger span:last-child{width:20px}
  .mobile-open .hamburger-trigger:hover span:nth-child(2){transform:translate(-20px,0)}
  .header-wrapper .navigation{background-color:#333;padding:20px 21px 35px;width:100%;right:0;z-index:5;top:0}
  .header-wrapper .custom-menu-primary{margin-top:85px}
  .header-wrapper .mobile-logo img{max-width:50px!important;width:100%}
  .header-wrapper .mobile-logo a{display:inline-block;background-image:none;position:relative;top:12px}
  .custom-menu-primary ul li a:hover{transform:translate(3px,0)}
}

@media(max-width:480px){
  .header-wrapper .header-logo a img{width:100%}
  .header-wrapper .header-logo{max-width:140px!important}
  .header-wrapper .hamburger-trigger{width:44px;height:44px;gap:8px;top:40px}
  .hamburger-trigger span{width:40px;height:4px}
  .header-wrapper .mobile-logo a{top:20px}
}

@media(max-height:640px){
  .header-wrapper .custom-menu-primary{margin-top:38px}
  .header-wrapper .navigation .navigation-inner{min-height:280px;height:28vh}
}

/* New changes */
.sticky-logo {
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.header-wrapper .header-logo a {
  position: relative;
}
.sticky-header .normal-logo {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.sticky-header .sticky-logo,
.normal-logo{
  opacity: 1;
}
.black-nav .sticky-logo {
  opacity: 1;
}
.black-nav .normal-logo {
  opacity: 0;
}
.black-nav .sticky-header  .normal-logo {
  opacity: 1;
}
.black-nav .sticky-header .sticky-logo {
  opacity: 0;
}
.white-nav:not(.mobile-open) .header-wrapper.sticky-header .hamburger-trigger span {
  background-color: rgb(57, 57, 57);
}
@media(min-width:768px){
  .black-nav .header-wrapper:not(.sticky-header) .hamburger-trigger span,
  .white-nav .header-wrapper.sticky-header .hamburger-trigger span{
    background-color: rgb(57, 57, 57);
  }
  .black-nav .header-wrapper:not(.sticky-header) .custom-menu-primary ul li a,
  .white-nav .header-wrapper.sticky-header .custom-menu-primary ul li a{
    color: rgb(57, 57, 57);
  }
}
.footer-wrapper .footer-content,.footer-wrapper .footer-right{display:flex;flex-direction:row;justify-content:space-between;gap:15px;padding-right:60px;}
.footer-wrapper .footer-left{width:25%;}
.footer-wrapper .footer-right{width:calc(75% - 15px);justify-content:flex-end;align-items:center;}
.footer-wrapper .footer-center>p{font-size:16px;line-height:1.875;}
.footer-wrapper .footer-center>p:last-child{margin:0;}
.footer-wrapper .footer-icons{display:flex;margin-left:66px;gap:20px;align-items:center;}
.footer-wrapper .footer-icons a{background-image:unset;width:18px;display:inline-block;height:22px;color:#cdcdcd;}
.footer-wrapper .footer-icons a svg{width:100%;height:100%;fill:#cdcdcd;transition:all .3s ease-in-out;}
.footer-wrapper .footer-icons a:hover svg,.footer-wrapper .footer-icons a:hover svg path{fill:#fff;}
.footer-wrapper .footer-icons a svg path{fill:#cdcdcd;transition:all .3s ease-in-out;}
.footer-wrapper .footer-center a{background-image:none;color:inherit;font-weight:300;transition:all .3s ease-in-out;}
.footer-wrapper .footer-center a:hover{color:#fff;}
/* .footer-wrapper .footer-icons a:hover{transform:scale(1.05);} */
.footer-logo a{display:inline-block;vertical-align:middle;background-image:unset;}
footer.footer {
  padding-right: 50px;
}
@media(min-width:768px){.footer-icons.mobile{display:none;}}
@media(max-width:1024px){
  .footer-wrapper .footer-right {
    padding-right:20px;
  }
  footer.footer {
    padding-right: 60px;
  }
}
@media(max-width:991px){
  .footer-wrapper .footer-content{flex-direction:column;justify-content:center;align-items:center;}
  .footer-wrapper .footer-left{width:100%;text-align:center;}
  .footer-wrapper .footer-right{width:100%;justify-content:space-between;}
}
@media(max-width:767px){
  .footer-icons.desktop{display:none;}
  .footer-wrapper .footer-right{display:flex;justify-content:center;align-items:center;flex-direction:column;}
  .footer-wrapper .footer-icons{margin:0;}
  .footer-wrapper .footer-icons{justify-content:center;margin-top:25px;flex-wrap:wrap;}
  .footer-wrapper .footer-center{text-align:center;}
  footer.footer,.footer-wrapper .footer-right {
    padding-right: 0;
  }
}


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