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

/*! 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;
}
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;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/* 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));
    }
  
}


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

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

@font-face {
    font-family: 'Julietta Messie';
    font-style: normal;
    font-weight: 400;
    src: url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/Julietta/JuliettaMessie-mLWoG.woff) format('woff');
}

@font-face {
  font-family:'GT Walsheim';
  font-weight:400;
  src: url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/gt-walsheim/WEB/GT-Walsheim-Regular.woff) format("woff"),
    url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/gt-walsheim/TTF/GT-Walsheim-Regular.ttf)format("truetype"),
    url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/gt-walsheim/OTF/GT-Walsheim-Regular.otf)format("opentype");
}

@font-face {
  font-family:'GT Walsheim';
  font-weight:500;
  src: url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/gt-walsheim/WEB/GT-Walsheim-Medium.woff) format("woff"),
    url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/gt-walsheim/TTF/GT-Walsheim-Medium.ttf)format("truetype"),
    url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/gt-walsheim/OTF/GT-Walsheim-Medium.otf)format("opentype");
}

@font-face {
  font-family:'GT Walsheim';
  font-weight:800;
  src: url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/gt-walsheim/WEB/GT-Walsheim-Black.woff) format("woff"),
    url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/gt-walsheim/TTF/GT-Walsheim-Black.ttf)format("truetype"),
    url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/gt-walsheim/OTF/GT-Walsheim-Black.otf)format("opentype");
}

@font-face {
  font-family:'GT Walsheim';
  font-weight:900;
  src: url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/gt-walsheim/WEB/GT-Walsheim-Ultra-Bold.woff) format("woff"),
    url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/gt-walsheim/TTF/GT-Walsheim-Ultra-Bold.ttf)format("truetype"),
    url(https://325503.fs1.hubspotusercontent-na1.net/hubfs/325503/raw_assets/public/Spinfluence-2024/fonts/gt-walsheim/OTF/GT-Walsheim-Ultra-Bold.otf)format("opentype");
}



body {
  overflow-wrap: break-word;
}

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6,
p{
  margin: 0 0 15px;
}

/* Lists */

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

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

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid var(--primary_color);
}

/* Image alt text */

img {
  word-break: normal;
  height:auto;
}
/* Fields */

.hs-form-field {
  margin-bottom:21px;
}

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: 15px 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 10px;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right:10px;
  top: 50%;
  transform: translateY(-50%);
}

form .fn-date-picker .pika-table th{
  color: #FFF;
}
form .fn-date-picker .pika-table th abbr[title]{
text-decoration:none;
}
/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

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: 15px !important;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}



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

/*  form-columns-2 */

form fieldset.form-columns-2 .hs-form-field{
  width: calc(50% - 7.5px) !important;
}
form  fieldset.form-columns-2 .hs-form-field:first-child{
  margin-right:15px;
}
form  fieldset.form-columns-2 .hs-form-field:last-child{
  margin-right:0;
  margin-left:0;
}

/* form-columns-3  */

form fieldset.form-columns-3 .hs-form-field{
  width:calc(33.33% - 10px)  !important;
}

form fieldset.form-columns-3 .hs-form-field:last-child{
  margin-right: 0 !important;
}
form fieldset.form-columns-3 .hs-form-field:not(:last-child){
  margin-right:15px;
}
form  fieldset .input{
  margin-right: 0 !important;
}



@media(max-width:767px){
  form fieldset.form-columns-1 .hs-form-field{
    float:none;
  }
  form fieldset.form-columns-2 .hs-form-field{
    width:100% !important;
    float:none;
  }
  form fieldset.form-columns-3 .hs-form-field{
    width:100% !important;
    float:none;
  }
  form fieldset.form-columns-1 .input {
    margin-right: 0 !important;
  }
  form  fieldset.form-columns-2 .hs-form-field:first-child .input{
    margin-right:0 ;
  }
  form  fieldset.form-columns-2 .hs-form-field:last-child .input{
    margin-right:0;
    margin-left:0;
  }
  form fieldset.form-columns-3 .hs-form-field:last-child .input{
    margin-right: 0 !important;
  }
  form fieldset.form-columns-3 .hs-form-field:first-child .input{
    margin-right:0px;
  }
  form fieldset.form-columns-3 .hs-form-field:last-child .input,
  form fieldset.form-columns-3 .hs-form-field:nth-child(2) .input{
    margin-left:0px;
  }
}

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

header.header {
  position: relative;
  z-index: 10;
}
.header__skip {
  overflow: hidden;
  position: absolute;
  top: -100px;
  transition: all 0.35s;
  padding: 14px;
  display: inline-block;
}
.header__skip:focus {
  background-color: var(--primary_color);
  color: var(--white_color);
  overflow: visible;
  top: 0;
}
header a{
  display:block;
}
header .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal>ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .custom-menu-primary ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
@media(min-width:1025px){
  header .custom-menu-primary li.hs-menu-item.hs-menu-depth-1:last-child{
    padding-right:0px;
  }
  header .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal{
    display:block !important;
  }  
  header .custom-menu-primary  ul.hs-menu-children-wrapper li.hs-menu-item.hs-item-has-children ul.hs-menu-children-wrapper:before{
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 100%;
    left: -15px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 25px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom-width: 10px;
    border-bottom-style: solid;
    -webkit-transition:all 0.35s;
    -o-transition:all 0.35s;
    transition:all 0.35s;
  }
  header .custom-menu-primary li.hs-menu-item.hs-item-has-children ul.hs-menu-children-wrapper {
    position: absolute;
    left:unset;
    width: 100%;
/*     -webkit-box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%); */
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    visibility: hidden;
    opacity: 0;
/*     transform: translateY(calc(-100% - 200px)); */
    z-index: -1;
    transition: transform .2s ease, opacity .2s ease;
  }
  header.dropopen .custom-menu-primary li.hs-menu-item.hs-item-has-children ul.hs-menu-children-wrapper{
    transform: translateY(0);
    transition:all .3s ease;
    visibility:hidden;
  }
  header .custom-menu-primary  li.hs-menu-item.hs-menu-depth-1 ul.hs-menu-children-wrapper li.hs-menu-item {
    padding:10px;
    -webkit-transition :all 0.35s;
    -o-transition :all 0.35s;
    transition :all 0.35s;
  }  
  header .custom-menu-primary li.hs-menu-item.hs-item-has-children{
    position: relative;
    cursor:pointer;
  }
  header .custom-menu-primary li.hs-menu-item>ul.hs-menu-children-wrapper a{
  line-height:1.4;
  }
}
@media(max-width:1024px){
  header .custom-menu-primary li.hs-menu-item.hs-item-has-children>ul.hs-menu-children-wrapper{
    display:none;
    margin-top: 10px;
  }
  header .custom-menu-primary li.hs-menu-item.hs-item-has-children{
    position: relative;
  }
  header .global-header-main .main_header .main_header_fix{
    position : relative;
    display : block;
  }     
  header .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal {
    display: none;
    margin-top: 10px;
    -webkit-box-shadow: 0 7px 13px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 7px 13px 0 rgb(0 0 0 / 10%);    
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top:0;
    z-index: 11;
    transform: translateY(-10px);
  }
  header .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal > ul{
        padding: 166px 20px 200px 40px;
  }
  header .custom-menu-primary li.hs-menu-item.hs-item-has-children>ul.hs-menu-children-wrapper li{
    padding:10px;
  }
  header .custom-menu-primary li.hs-menu-item.hs-item-has-children>ul.hs-menu-children-wrapper li:last-child{
    margin-right:24px;
  }
  header .custom-menu-primary ul{
    background-color : #fff;
  }
  header .custom-menu-primary .hs-menu-wrapper.active-branch.flyouts.hs-menu-flow-horizontal > ul {
    display: block;
  }
  header .custom-menu-primary li.hs-menu-item:not(:first-child){
    display : block;
    border-top : 1px solid var(--secondary_color_one);
  }
  /* Toggle Button
  ========================================================================== */
  .mobile-trigger {
    background: #ff5c35;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    display: inline-block!important;
    font-size: 16px;
    font-weight: 400;
    height: 37px;
    line-height: 1;
    padding: 10px;
    position: absolute;
    right: 120px;
    text-align: left;
    text-transform: uppercase;
    top: 24px;
    width: auto;
  }
  /* Toggle Button Icon
  ========================================================================== */
  .mobile-trigger i {
    display: inline;
    position: relative;
    -webkit-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    transition: all .1s ease-in;
    z-index: 10;
    top: -3px;
  }
  .header_sticky .mobile-trigger i,
  .header_sticky .mobile-trigger i:before,
  .header_sticky .mobile-trigger i:after {
    background-color:var(--tertiary_color);
  }
  .mobile-trigger i:before,
  .mobile-trigger i:after {
    position: absolute;
    content: '';
    -webkit-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    transition: all .1s ease-in;
  }
  .mobile-trigger i,
  .mobile-trigger i:before,
  .mobile-trigger i:after {
    width: 22px;
    height: 2px;
    border-radius: 3px;
    display: inline-block;
    background-color:var(--tertiary_color);
  }
  .mobile-trigger i:before {
    top: -7px;
  }
  .mobile-trigger i:after {
    top: 7px;
  }
  /* Toggle Button Icon Open
  ========================================================================== */
  .mobile-open .mobile-trigger i {
    background: transparent;
    -webkit-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    transition: all .1s ease-in;
  }
  .mobile-open .mobile-trigger i:before,
  .mobile-open .mobile-trigger i:after{
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .mobile-open .mobile-trigger i:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .child-trigger {
    cursor: pointer;
    display: block;
    height: 25px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
  }
} 
@media(min-width:768px) and (max-width:1024px){
  .header-main .image-cta-flex {
    right: 30px !important;
  }
  .mobile-trigger {
    right: 132px;
  }
}

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

/*  scale up font-size */

.convo-px{

}
@media(min-width:1200px){
  .banner-section.approach-banner.convo-px .banner-tag {
    font-size: 12px;
  }
  .banner-section.approach-banner.convo-px .banner-txt h1{
    font-size:125px;
  }
  .banner-section.approach-banner.product-banner  .jul-messei em{
    margin-right: 45px;
  }
}


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