/* Theme Styles/Defaults */

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

.disable-focus-styles :focus {
  outline: none;
}
:root {
	--space-1: .4rem;
	--space-2: .8rem;
	--space-3: 1.2rem;
	--space-4: 1.6rem;
	--space-6: 2.4rem;
	--space-8: 3.2rem;
	--space-12: 4.8rem;
	--space-16: 6.4rem;
	--space-24: 9.6rem;
	--space-32: 12.8rem;

	/*  Tablet  */
	
	@include breakpoint-down(tablet) {
		--space-1: .2rem;
		--space-2: .4rem;
		--space-3: .5rem;
		--space-4: .8rem;
		--space-6: 1.8rem;
		--space-8: 2.4rem;
		--space-12: 3.2rem;
		--space-16: 4.8rem;
		--space-24: 6.4rem;
		--space-32: 9.6rem;
	}
}
/* ------------------------------------------------------------ *\
  Vendor
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Generic
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
  SCSS Functions
\* ------------------------------------------------------------ */
/* example usage*/
/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */
* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}
template {
  display: none;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-size-adjust: none;
}
img,
iframe,
video,
audio,
object {
  max-width: 100%;
}
img,
iframe {
  border: 0 none;
}
img {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
img,
[style*=background-image] {
  image-rendering: -webkit-optimize-contrast;
}
b,
strong {
  font-weight: bold;
}
address {
  font-style: normal;
}
svg:not(:root) {
  overflow: hidden;
}
a,
button,
input[type=submit],
input[type=button],
input[type=reset],
input[type=file],
input[type=image],
label[for] {
  cursor: pointer;
}
a[href^=tel],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=color],
textarea,
a[href^=tel] {
  appearance: none;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  appearance: none;
}
textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
button,
select {
  text-transform: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
nav ul,
nav ol {
  list-style: none outside none;
}
input::placeholder {
  color: inherit;
  opacity: 1;
}
textarea::placeholder {
  color: inherit;
  opacity: 1;
}
input:-webkit-autofill {
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
input[type=text],
input[type=button],
input[type=tel],
input[type=email],
input[type=submit],
input[type=date],
input[type=search],
textarea {
  appearance: none;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
input {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
input::placeholder {
  opacity: 1 !important;
}
select::-ms-expand {
  display: none;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
}
textarea {
  border-radius: 0;
}
.bg-grey {
  background-color: var(--grey-50);
}
.bg-grey-100 {
  background-color: var(--grey-100);
}
.bg-white {
  background-color: var(--white);
}
/* ------------------------------------------------------------ *\
    Fonts
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */
html {
  font-size: 62.5%;
}
body {
  min-width: 320px;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
a[href^=tel] {
  text-decoration: none;
}
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  margin-bottom: calc(1.28em / 2);
}

p,
ul,
ol,
dl,
hr,
table,
blockquote {
  margin-bottom: 1.28em;
}
h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0;
}
/* ------------------------------------------------------------ *\
  Helpers
\* ------------------------------------------------------------ */
/*  Clear  */
.clear:after {
  content: "";
  line-height: 0;
  display: table;
  clear: both;
}
/* sr-only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/*  Notext  */
.notext {
  white-space: nowrap;
  text-indent: 100%;
  text-shadow: none;
  overflow: hidden;
}
.notext-old {
  font-size: 0;
  line-height: 0;
  text-indent: -4000px;
}
/*  Hidden  */
[hidden],
.hidden {
  display: none;
}
/*  Disabled  */
[disabled],
.disabled {
  cursor: default;
}
/*  Responsive Helpers  */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs-block {
    display: block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 767.02px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important;
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1023.02px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1199.02px) {
  .hidden-lg {
    display: none !important;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
.pagination__link--disabled {
  opacity: .5;
}

/* ------------------------------------------------------------ *\
	Components
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Wrapper
\* ------------------------------------------------------------ */
.wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 10rem;
  transition: .4s;
}
.main {
  position: relative;
}
/* ------------------------------------------------------------ *\
	Grid
\* ------------------------------------------------------------ */
.grid {
  display: flex;
  flex-flow: row wrap;
  /*  Grid col 1of1  */
  /*  Grid col 1of2  */
  /*  Grid col 1of3  */
  /*  Grid col 1of4  */
  /*  Grid col 1of5  */
}
.grid .grid__col {
  max-width: 100%;
  flex: 1;
}
.grid .grid__col--1of1 {
  max-width: 100%;
  flex: 0 0 100%;
}
.grid .grid__col--1of2 {
  max-width: 50%;
  flex: 0 0 50%;
}
.grid .grid__col--1of3 {
  max-width: 33.3333333333%;
  flex: 0 0 33.3333333333%;
}
.grid .grid__col--2of3 {
  max-width: 66.66%;
  flex: 0 0 66.66%;
}
.grid .grid__col--1of4 {
  max-width: 25%;
  flex: 0 0 25%;
}
.grid .grid__col--1of5 {
  max-width: 20%;
  flex: 0 0 20%;
}
.grid--center {
  align-items: center;
}
/* ------------------------------------------------------------ *\
  Shell
\* ------------------------------------------------------------ */
.shell {
  max-width: calc( 144rem + 4rem * 2 );
  padding-left: 4rem;
  padding-right: 4rem;
  margin: auto;
  width: 100%;
  /*  Small Desktop  */
  /*  Mobile  */
}
@media (max-width: 1199px) {
  .shell {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .shell {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.shell-medium {
  max-width: calc( 113rem + 4rem * 2 );
  padding-left: 4rem;
  padding-right: 4rem;
  margin: auto;
  width: 100%;
  /*  Small Desktop  */
  /*  Mobile  */
}
@media (max-width: 1199px) {
  .shell-medium {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .shell-medium {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
/* Shell Fluid */
.shell--fluid {
  max-width: none;
}
/* ------------------------------------------------------------ *\
	socials
\* ------------------------------------------------------------ */
.socials ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style-type: none;
  margin: calc(var(--space-3) * -1);
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .socials ul {
    margin: -1.2rem;
  }
}
.socials li {
  padding: var(--space-3);
  display: inline-block;
  vertical-align: middle;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .socials li {
    padding: 1.2rem;
  }
}
.socials a {
  display: inline-block;
  vertical-align: bottom;
}
@media (hover: hover) and (pointer: fine) {
  .socials a:hover svg path {
    fill: var(--blue-medium);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .socials a:hover svg path {
    fill: var(--blue-medium);
  }
}
.socials svg {
  display: block;
  min-height: 2.4rem;
}
.socials svg path {
  fill: var(--white);
}
/* ------------------------------------------------------------ *\
	macOs
\* ------------------------------------------------------------ */
.macOS .tile-podcast .tile__tags a {
  padding: 0.9rem 1.5rem 0.4rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .macOS .tile-podcast .tile__tags a {
    padding: 0.5rem 0.7rem 0;
  }
}
.macOS .filter-alt .active a,
.macOS .filter-alt a {
  padding-top: 0.9rem;
  padding-bottom: 0.4rem;
}
.macOS .btn {
  padding: 1.9rem 2rem 1.3rem;
}
.macOS .form .hs-button {
  padding: 1.6rem 1.8rem 1.2rem;
}
.macOS .nav li > a span {
  margin: 0.5rem 0 -0.5rem 0;
  display: inline-block;
}
.macOS .link-line span {
  margin: 0.5rem 0 -0.5rem 0;
  display: inline-block;
}
.macOS .form-request .hs-button {
  padding: 1.8rem 1.8rem 1.4rem;
}
.macOS .search input {
  padding: 0.6rem 1.5rem 0;
}
.macOS .section-article .section__authorlist ul li:after,
.macOS .section-article .section__head ul li:after,
.macOS .tile-alt .tile__head ul li:after,
.macOS .tile-podcast .tile__info li:after {
  top: 35%;
}
.macOS .header-alt {
  padding: 2rem 0 1.2rem;
}
/* ------------------------------------------------------------ *\
	Video
\* ------------------------------------------------------------ */
.video {
  position: relative;
  overflow: hidden;
  padding-top: 55.7%;
  border-radius: 1.6rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .video {
    padding-top: 66.3%;
  }
}
.video .video__content,
.video .video__poster,
.video .video__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  height: 100%;
}
.video .video__poster {
  background-size: cover;
  z-index: 2;
}
.video .video__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 9rem;
  height: 9rem;
  z-index: 3;
  transition: 0.4s;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .video .video__btn {
    width: 4rem;
    height: 4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .video .video__btn:hover {
    opacity: 0.75;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .video .video__btn:hover {
    opacity: 0.75;
  }
}
.video .video__content {
  opacity: 0;
  transition: all 0 0.4s, opacity 0.4s;
  min-height: 100%;
  min-width: 100%;
}
.video.video-play .video__content {
  z-index: 4;
  opacity: 1;
}
/* ------------------------------------------------------------ *\
    Fonts
\* ------------------------------------------------------------ */
@font-face {
  font-family: "Slate Pro";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-BkItalic.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-BkItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Black.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-BoldItalic.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro Condensed";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Condensed.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Condensed.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-BlackItalic.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro Condensed";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-BoldCondensed.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-BoldCondensed.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Bold.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro Condensed";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-BlackCondensed.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-BlackCondensed.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro Condensed";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-MediumCondensed.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-MediumCondensed.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-MediumItalic.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Medium.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-LightItalic.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro Condensed";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-BkCondensed.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-BkCondensed.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro Bk";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Bk.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Bk.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro Condensed";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-LightCondensed.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-LightCondensed.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Italic.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Light.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Slate Pro";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SlatePro.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sabon Next LT";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SabonNextLT.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SabonNextLT.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sabon Next LT";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SabonNextLT-BoldItalic.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SabonNextLT-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sabon Next LT";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SabonNextLT-Bold.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SabonNextLT-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sabon Next LT";
  src: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SabonNextLT-Italic.woff2") format("woff2"), url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/fonts/SabonNextLT-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
/*======================================
  Selectric v1.13.0
======================================*/

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 1px solid #DDD;
  border-radius: 0px;
  background: #F8F8F8;
  position: relative;
  overflow: hidden;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 12px;
  line-height: 38px;
  color: #444;
  height: 38px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: #F8f8f8;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #BBB;
  border-bottom: none;
}

.selectric-focus .selectric {
  border-color: #aaaaaa;
}

.selectric-hover .selectric {
  border-color: #c4c4c4;
}

.selectric-hover .selectric .button {
  color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  border-color: #c4c4c4;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #c4c4c4;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}

.selectric-items li {
  display: block;
  padding: 10px;
  color: #666;
  cursor: pointer;
}

.selectric-items li.selected {
  background: #E0E0E0;
  color: #444;
}

.selectric-items li.highlighted {
  background: #D0D0D0;
  color: #444;
}

.selectric-items li:hover {
  background: #D5D5D5;
  color: #444;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}
http://


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

/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}


/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
_coc.content-wrapper {
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .dnd-section > .row-fluid {
    margin-left: auto;
    margin-right: auto;
  }
  
  .dnd-section .dnd-column {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .container {
    margin: 0 auto;
    overflow: visible;
    padding: 0 25px;
  }
  
  .flex {
    display: flex;
  }
  
  @media screen and (max-width: 768px) {
    .mobile-col {
      flex-direction: column;
    }
  
    .dnd-section .dnd-column {
      padding-left: 0;
      padding-right: 0;
    }
  }

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

/* ------------------------------------------------------------ *\
	Button
\* ------------------------------------------------------------ */
.btn {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  appearance: none;
  background-color: var(--blue-main);
  border: 0.1rem solid var(--blue-main);
  color: var(--white);
  padding: 1.6rem 2rem;
  border-radius: 0.4rem;
  letter-spacing: 0.03em;
  font-weight: 400;
  transition: 0.4s;
  font-size: 1.6rem;
  /*  Small Desktop  */
}
@media (max-width: 1199px) {
  .btn {
    padding: 1.5rem 1.5rem;
  }
}
.btn svg * {
  fill: var(--white);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background-color: var(--blue-dark);
    border: 0.1rem solid var(--blue-dark);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .btn:hover {
    background-color: var(--blue-dark);
    border: 0.1rem solid var(--blue-dark);
  }
}
.btn:focus {
  background-color: var(--blue-main);
  border: 0.1rem solid var(--white);
  box-shadow: 0 0 0 0.2rem var(--blue-main);
}
.btn:active {
  background-color: var(--blue-accent);
}
.btn--secondary {
  background-color: transparent;
  border: 0.1rem solid var(--blue-main);
  color: var(--blue-main);
}
.btn--secondary svg * {
  fill: var(--blue-main);
}
@media (hover: hover) and (pointer: fine) {
  .btn--secondary:hover {
    background-color: transparent;
    color: var(--blue-dark);
    border: 0.1rem solid var(--blue-dark);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .btn--secondary:hover {
    background-color: transparent;
    color: var(--blue-dark);
    border: 0.1rem solid var(--blue-dark);
  }
}
.btn--secondary:focus {
  background-color: rgba(3, 50, 124, 0.2);
  box-shadow: none;
  border: 0.1rem solid var(--blue-dark);
  color: var(--blue-dark);
}
.btn--secondary:active {
  background-color: var(--white);
  color: var(--blue-dark);
  border: 0.1rem solid var(--blue-dark);
}
.link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 300;
}
.link svg * {
  fill: var(--grey-800);
}
.link span {
  margin-right: 0.5rem;
}
ul.actions {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: -0.45rem;
  list-style-type: none;
}
ul.actions li {
  padding: 0.45rem;
}
/*  Btn block  */
.btn--block {
  display: block;
  padding-left: 0;
  padding-right: 0;
}
/* ------------------------------------------------------------ *\
	link-line
\* ------------------------------------------------------------ */
.link-line {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--grey--600);
  text-decoration: none;
  display: inline-block;
}
.link-line > svg * {
  fill: var(--grey--600);
}
.link-line span {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.link-line span:before {
  content: "";
  width: 100%;
  border-bottom: 0.1rem solid;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.4s linear;
}
@media (hover: hover) and (pointer: fine) {
  .link-line:hover span:before {
    width: 0;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .link-line:hover span:before {
    width: 0;
  }
}
.link-line--md {
  font-size: 1.6rem;
  /*  Tablet  */
}
@media (max-width: 1023px) {
  .link-line--md {
    font-size: 1.4rem;
  }
}
/* ------------------------------------------------------------ *\
	.form
\* ------------------------------------------------------------ */
.form form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: -1.4rem -1rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form form {
    margin: -0.45rem;
  }
}
.form label {
  display: none !important;
}
.form .field {
  max-width: 50%;
  flex: 0 0 50%;
  padding: 1.4rem 1rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form .field {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0.45rem;
  }
}
.form .hs-submit {
  max-width: 100%;
  flex: 0 0 100%;
  padding: 1.4rem 1rem;
  margin-top: 2rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form .hs-submit {
    padding: 1.4rem 0.5rem 0.5rem;
  }
}
.form .hs-submit input {
  width: auto;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form .hs-submit input {
    width: 100%;
  }
}
.form input,
.form select,
.form textarea {
  height: 3.7rem;
  background-color: transparent;
  border: none;
  font-size: 1.6rem;
  font-weight: 300;
  width: 100%;
  border-bottom: 0.1rem solid var(--grey-600);
  border-radius: 0 !important;
  padding: 0.3rem 1rem 0;
  /*  Mobile  */
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-bottom: 0.1rem solid var(--blue-main);
}
.form input::placeholder,
.form select::placeholder,
.form textarea::placeholder {
  color: var(--grey-600);
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form input,
  .form select,
  .form textarea {
    font-size: 1.6rem;
  }
}
.form textarea {
  height: auto;
}
.form .hs-button {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  appearance: none;
  padding: 1.4rem 1.8rem;
  border-radius: 0.4rem !important;
  letter-spacing: 0.03em;
  font-weight: 400;
  transition: 0.4s;
  font-size: 1.6rem;
  background-color: var(--blue-main);
  border: 0.1rem solid var(--blue-main);
  color: var(--white);
  margin: -1.5rem 0 0;
  height: auto;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form .hs-button {
    margin: -0.6rem 0 0.6rem;
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .form .hs-button:hover {
    background-color: var(--blue-dark);
    border: 0.1rem solid var(--blue-dark);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .form .hs-button:hover {
    background-color: var(--blue-dark);
    border: 0.1rem solid var(--blue-dark);
  }
}
.form .form__head {
  max-width: 39.2rem;
}
.form .form__head h2 {
  margin-bottom: 2.2rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form .form__head h2 {
    margin-bottom: 0.9rem;
  }
}
.form .form__head address {
  font-size: 1.8rem;
  line-height: 1.33;
  margin-bottom: 2.4rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form .form__head address {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }
}
.form .form__head h4 {
  margin-bottom: 2.9rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form .form__head h4 {
    margin-bottom: 1.8rem;
  }
}
.form .form__head .btn {
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form .form__head .btn {
    width: 100%;
  }
}
/* ------------------------------------------------------------ *\
	form--alt
\* ------------------------------------------------------------ */
.form--alt .grid {
  margin: -1rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt .grid {
    margin: 0;
  }
}
.form--alt .grid .grid__col {
  padding: 1rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt .grid .grid__col {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }
}
.form--alt .form__body {
  padding: 1.2rem 0;
}
.form--alt form {
  margin: -1.2rem;
  position: relative;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt form {
    margin: -0.6rem;
    padding-bottom: 3.3rem;
  }
}
.form--alt .field {
  max-width: 100%;
  flex: 0 0 100%;
  padding: 1.2rem;
  position: relative;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt .field {
    padding: 0.6rem;
  }
}
.form--alt .hs-richtext {
  position: absolute;
  left: 12.9rem;
  bottom: 2.4rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt .hs-richtext {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.form--alt .hs-richtext a {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--grey-900);
}
/* ------------------------------------------------------------ *\
	form--alt-dev
\* ------------------------------------------------------------ */
.form--alt-dev form {
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt-dev form {
    margin: 0;
    padding-bottom: 0;
  }
}
.form--alt-dev .field + .field {
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt-dev .field + .field {
    margin-top: 2.4rem;
  }
}
.form--alt-dev .hs-richtext {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding-left: 1.2rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt-dev .hs-richtext {
    padding-left: 0;
    transform: none;
    margin-bottom: 2rem;
  }
}
.form--alt-dev .hs-submit,
.form--alt-dev .hs-form-field {
  max-width: 50.1%;
  margin-left: auto;
  padding-left: 1.2rem;
  position: relative;
  z-index: 2;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt-dev .hs-submit,
  .form--alt-dev .hs-form-field {
    max-width: 100%;
    padding: 0;
  }
}
.form--alt-dev .hs-submit {
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt-dev .hs-submit {
    margin-top: 3.8rem;
  }
}
.form--alt-dev .hs-interests {
  max-width: 100%;
  padding-bottom: 6rem;
  margin-bottom: 5.5rem;
  position: relative;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt-dev .hs-interests {
    padding-bottom: 3.5rem;
    margin-bottom: 3.8rem;
  }
}
.form--alt-dev .hs-interests:after {
  content: "";
  width: 100vw;
  height: 9999rem;
  background-color: var(--grey-50);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
}
/* ------------------------------------------------------------ *\
	list-interests
\* ------------------------------------------------------------ */
.hs-interests ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin: -0.9rem -1rem;
  /*  Small Desktop  */
}
@media (max-width: 1199px) {
  .hs-interests ul {
    margin: -0.6rem;
  }
}
.hs-interests li {
  max-width: 25%;
  flex: 0 0 25%;
  padding: 0.9rem 1rem;
  /*  Small Desktop  */
  /*  Tablet  */
  /*  Mobile  */
}
@media (max-width: 1199px) {
  .hs-interests li {
    padding: 0.6rem;
  }
}
@media (max-width: 1023px) {
  .hs-interests li {
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hs-interests li {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
@media (max-width: 500px) {
  .hs-interests li {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.hs-interests .hs-form-checkbox label {
  border-radius: inherit;
  pointer-events: auto;
  border-radius: 0.8rem;
  padding: 2.2rem 2.4rem 1.5rem;
  position: relative;
  display: block !important;
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--grey-900);
  /*  Small Desktop  */
  /*  Mobile  */
}
@media (max-width: 1199px) {
  .hs-interests .hs-form-checkbox label {
    padding: 2rem 1.5rem;
    font-size: 2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hs-interests .hs-form-checkbox label {
    padding: 1.5rem 1.2rem 1.1rem;
    font-size: 2rem;
  }
}
.hs-interests .hs-form-checkbox label span {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.hs-interests .hs-form-checkbox label small {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.33;
  display: block;
  margin-top: 0.8rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hs-interests .hs-form-checkbox label small {
    margin-top: 0.1rem;
  }
}
.hs-interests .hs-form-checkbox label input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  border: 0.1rem solid var(--grey-300);
  border-radius: inherit;
  pointer-events: auto;
  border-radius: 0.8rem !important;
}
.hs-interests .hs-form-checkbox label input {
  opacity: 1;
}
.hs-interests .hs-form-checkbox label input:checked {
  border: 0.1rem solid var(--blue-main);
  background-color: var(--grey-50);
}

/* ------------------------------------------------------------ *\
	hs-error-msgs
\* ------------------------------------------------------------ */

.hs-error-msgs {
  display: none !important;
}

/* ------------------------------------------------------------ *\
	selectric
\* ------------------------------------------------------------ */
.selectric-wrapper .selectric {
  background: transparent;
  border: none;
}
.selectric-wrapper .selectric .label {
  height: 3.7rem;
  background-color: transparent;
  border: none;
  font-size: 1.6rem;
  font-weight: 400;
  width: 100%;
  height: 3.7rem;
  line-height: 3.7rem;
  border-bottom: 0.1rem solid var(--grey-600);
  color: var(--grey-600);
  padding: 0.3rem 1rem 0;
  margin: 0;
  position: relative;
}
.selectric-wrapper .selectric .label:after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
  background-image: url("https://23541.fs1.hubspotusercontent-na1.net/hubfs/23541/SBI%202023/images/arrow-up.svg");
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(0, -50%) rotate(180deg);
  transition: 0.4s;
}
.selectric-wrapper .selectric .button {
  display: none;
}
.selectric-wrapper .selectric-items {
  border: none;
  box-shadow: none;
  top: calc(100% + 2.1rem);
}
.selectric-wrapper .selectric-scroll {
  box-shadow: 0px 5.5px 5px 0px rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
}
.selectric-wrapper .selectric-scroll li {
  background-color: var(--white);
  border-bottom: 0;
  border: none;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--grey-900);
  padding: 1.4rem 1.6rem;
}
@media (hover: hover) and (pointer: fine) {
  .selectric-wrapper .selectric-scroll li:hover {
    background-color: var(--grey-200);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .selectric-wrapper .selectric-scroll li:hover {
    background-color: var(--grey-200);
  }
}
.selectric-wrapper .selectric-scroll li.disabled {
  display: none;
}
.selectric-wrapper .selectric-scroll li.selected {
  background-color: var(--grey-800);
  color: var(--white);
}
.selectric-wrapper.selectric-open .selectric .label {
  border-bottom: 0.1rem solid var(--blue-main);
}
.selectric-wrapper.selectric-open .selectric .label:after {
  transform: translate(0, -50%) rotate(0);
}

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

.system-container {
    margin: 0 auto;
    min-height: calc(100vh - 300px);
    padding-top: 100px;
    width: 100%;
  }
  
  .error-page {
    padding: 10rem 0;
    position: relative;
    text-align: center;
  }
  
  .error-page:before {
    color: #f3f6f9;
    content: attr(data-error);
    font-size: 40vw;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
  }
  
  @media screen and (min-width: 1100px) {
    .error-page:before {
      font-size: 20rem;
    }
  }
  
  .systems-page {
    margin: 0 auto;
    max-width: 600px;
    padding: 3rem 20px;
  }
  
  .systems-page--search-results {
    max-width: 100%;
  }
  
  .systems-page .header {
    background-color: transparent;
    border-bottom: none;
    padding: 0;
  }
  
  .systems-page .success {
    background-color: #cde3cc;
    border: 1.5px solid #4f7d24;
    border-radius: 6px;
    color: #4f7d24;
    display: inline-block;
    font-size: 0.75rem;
    margin: 2rem 0;
    min-width: 650px;
    padding: 0.1rem 0.75rem;
  }
  
  .systems-page form input {
    max-width: 100%;
  }
  
  .systems-page form input[type='submit'] {
    margin: 0.625rem 0;
    display: block;
  }
  
  .systems-page #hs-pwd-widget-password {
    width: 100%;
  }
  
  .systems-page .hs-login-widget-show-password,
  .systems-page .hs-register-widget-show-password,
  .systems-page .hs-reset-widget-show-password {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .systems-page #hs-login-widget-remember,
  .systems-page #hs-login-widget-remember ~ label {
    display: inline-block;
    margin-bottom: 3px;
  }
  
  form#email-prefs-form .item.disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  form#email-prefs-form .item.disabled input:disabled {
    cursor: not-allowed;
  }
  
  /* Search */
  
  .hs-search-results {
    margin-top: 2rem;
  }
  
  ul.hs-search-results__listing li {
    margin-bottom: 2rem;
  }
  
  .hs-search-results__title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  
  .hs-search-results__description {
    padding-top: 0.5rem;
  }
  
  .hs-search-highlight {
    font-weight: bold;
  }
  
  .hs-search-results__pagination a {
    color: #051f46;
  }
  
  /* Membership error message */
  
  .form-input-validation-message ul {
    margin: 0;
    padding-left: 0;
  }
  
  .form-input-validation-message ul li {
    line-height: 1rem;
  }
  
  /* Password prompt */
  
  .password-prompt input[type='password'] {
    height: auto !important;
  }
.nav-spacer {
        height: 65px;
      }

      .navbar {
        background-color: #ffffff; /* bg-white */
        border-bottom: 1px solid #f3f4f6; /* border-b border-gray-100 */
        position: fixed; /* fixed */
        top: 0; /* top-0 */
        right: 0; /* right-0 */
        left: 0; /* left-0 */
        z-index: 50; /* z-50 */
        transition: box-shadow 0.3s; /* transition-shadow duration-300 */
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
          0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
      }

      .desktop-wrapper {
        max-width: 124rem; /* max-w-7xl (1280px) */
        margin-left: auto; /* mx-auto */
        margin-right: auto; /* mx-auto */
        padding-left: 1rem; /* px-4 (16px) */
        padding-right: 1rem; /* px-4 (16px) */
      }

      .navbar-content {
        display: flex; /* flex */
        justify-content: space-between; /* justify-between */
        align-items: center; /* items-center */
        height: 8rem; /* h-16 (64px) */
      }

      .logo-wrapper {
        flex-shrink: 0; /* flex-shrink-0 */
      }

      .logo-link {
        display: flex; /* flex */
        align-items: center; /* items-center */
        transition: opacity 0.2s; /* transition-opacity duration-200 */
      }

      .logo-link:hover {
        opacity: 0.8; /* hover:opacity-80 */
      }

      .logo-img {
        height: 3rem; /* h-8 (32px) */
        width: auto; /* w-auto */
      }

      .nav-links-container {
        display: none; /* hidden */
      }

      .nav-links-wrapper {
        margin-left: 2.5rem; /* ml-10 (40px) */
        display: flex; /* flex */
        align-items: center; /* items-center */
        gap: 2rem; /* space-x-8 (32px) */
      }

      .nav-dropdown {
        position: relative; /* relative */
      }

      .nav-dropdown-btn {
        color: #374151; /* text-gray-700 */
        cursor: pointer; /* hover:cursor-pointer */
        padding: 0.5rem 0.75rem; /* px-3 py-2 */
        font-size: 1.6rem; /* text-sm (14px) */
        line-height: 1.25rem; /* text-sm */
        font-weight: 500; /* font-medium */
        display: flex; /* flex */
        align-items: center; /* items-center */
        transition: color 0.2s; /* transition-colors duration-200 */
        background: none;
        border: none;
      }

      .nav-dropdown-btn:hover {
        color: #2563eb; /* hover:text-blue-600 */
      }

      .nav-dropdown-icon {
        margin-left: 0.25rem; /* ml-1 */
        height: 1.5rem; /* h-4 */
        width: 2rem; /* w-4 */
        transition: transform 0.2s; /* transition-transform duration-200 */
      }

      /* Replace group-hover with parent hover */
      .nav-dropdown:hover .nav-dropdown-icon {
        transform: rotate(180deg); /* group-hover:rotate-180 */
      }

      .dropdown-menu {
        display: none; /* hidden */
        position: absolute; /* absolute */
        left: 0; /* left-0 */
        top: 100%; /* Position right below the button */
        padding-top: 0.5rem; /* Creates space but maintains hover */
        width: 520px; /* w-[600px] */
        z-index: 50; /* z-50 */
      }

      .dropdown-menu-inner {
        border-radius: 0.5rem; /* rounded-lg (8px) */
        background-color: #ffffff; /* bg-white */
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05),
          0 10px 15px -3px rgba(0, 0, 0, 0.1),
          0 4px 6px -2px rgba(0, 0, 0, 0.05); /* ring-1 ring-black ring-opacity-5 + shadow-lg combined */
      }

      /* Show dropdown on parent hover */
      .nav-dropdown:hover .dropdown-menu {
        display: block;
      }

      /* Bridge any remaining gap to prevent flicker */
      .nav-dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 0.5rem;
        display: none;
      }

      .nav-dropdown:hover::after {
        display: block;
      }

      .grid-2-col {
        display: grid; /* grid */
        grid-template-columns: repeat(2, 1fr); /* grid-cols-2 */
        gap: 1rem; /* gap-4 (16px) */
      }

      .section-label {
        font-size: 1.2rem; /* text-xs (12px) */
        line-height: 1rem; /* text-xs */
        font-weight: 700; /* font-bold */
        color: #1e3a8a; /* text-blue-900 */
        text-transform: uppercase; /* uppercase */
        letter-spacing: 0.05em; /* tracking-wider */
        margin-bottom: 1rem;
        margin-top: 1rem;
      }

      .dropdown-links {
        display: flex; /* space-y-1 creates vertical spacing */
        flex-direction: column;
        gap: 1rem; /* space-y-1 (4px vertical spacing) */
      }

      .dropdown-link {
        display: flex; /* flex */
        align-items: center; /* items-center */
        padding: 0.25rem 0.5rem; /* px-2 py-1 */
        font-size: 1.4rem; /* text-sm (14px) */
        line-height: 1.25rem; /* text-sm */
        color: #374151; /* text-gray-700 */
        border-radius: 0.25rem; /* rounded (4px) */
        transition: color 0.2s, background-color 0.2s; /* transition-colors duration-200 */
        text-decoration: none;
        font-weight: 400;
      }

      .dropdown-link:hover {
        color: #0075c9; /* hover:text-[#0075c9] */
        background-color: #eff6ff; /* hover:bg-blue-50 */
      }

      .dropdown-link-icon {
        height: 1.5rem; /* h-5 (20px) */
        width: 2rem; /* w-5 (20px) */
        margin-right: 0.5rem; /* mr-2 (8px) */
      }

      .dropdown-footer {
        margin-top: 1.5rem; /* mt-6 */
        margin-left: -1rem; /* -mx-4 */
        margin-right: -1rem; /* -mx-4 */
        margin-bottom: -1.5rem; /* -mb-6 */
        background-color: #000000; /* bg-black */
        color: #ffffff; /* text-white */
        padding: 1rem 1.5rem; /* px-6 py-4 */
        border-radius: 0 0 0.5rem 0.5rem; /* rounded-b-lg */
      }

      .dropdown-footer-link {
        display: flex; /* flex */
        align-items: center; /* items-center */
        justify-content: center; /* justify-center */
        transition: opacity 0.2s; /* transition-opacity duration-200 */
        text-decoration: none !important;
        color: inherit;
            font-size: 1.6rem;
    font-weight: 400;

      }

.dropdown-footer-link a{
  text-decoration: none !important;
}

      .dropdown-footer-link:hover {
        opacity: 0.8; /* hover:opacity-80 */
      }

      .dropdown-footer-icon {
        height: 1.5rem; /* h-4 */
        width: 2rem; /* w-4 */
        color: #facc15; /* text-yellow-400 */
        margin-right: 0.5rem; /* mr-2 */
      }

      .dropdown-footer-text {
        font-size: 0.875rem; /* text-sm */
        font-weight: 500; /* font-medium */
      }

      /* Icon color variants */
      .icon-blue {
        color: #3b82f6; /* text-blue-500 */
      }

      .icon-green {
        color: #22c55e; /* text-green-500 */
      }

      .icon-red {
        color: #ef4444; /* text-red-500 */
      }

      .icon-yellow {
        color: #eab308; /* text-yellow-500 */
      }

      /* Additional icon color variants */
      .icon-blue-700 {
        color: #1d4ed8; /* text-blue-700 */
      }

      .icon-blue-600 {
        color: #2563eb; /* text-blue-600 */
      }

      .icon-slate {
        color: #64748b; /* text-slate-500 */
      }

      .icon-orange {
        color: #f97316; /* text-orange-500 */
      }

      /* Nav Actions (right side buttons) */
      .nav-actions {
        display: none; /* hidden */
        align-items: center; /* items-center */
        gap: 1rem; /* space-x-4 */
      }

      /* Search Modal */
      .search-modal {
        display: none; /* hidden */
        position: fixed; /* fixed */
        top: 0; /* inset-0 */
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 100; /* z-[100] */
        overflow-y: auto; /* overflow-y-auto */
      }

      .search-modal-wrapper {
        display: flex; /* flex */
        min-height: 100vh; /* min-h-screen */
        align-items: flex-start; /* items-start */
        justify-content: center; /* justify-center */
        padding: 0 1rem; /* px-4 */
        padding-top: 3.5rem; /* pt-14 (56px) */
      }

      .search-backdrop {
        position: fixed; /* fixed */
        top: 0; /* inset-0 */
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #111827; /* bg-gray-900 */
        opacity: 0.75; /* bg-opacity-75 */
        transition: opacity 0.3s; /* transition-opacity */
      }

      .search-container {
        position: relative; /* relative */
        width: 100%; /* w-full */
        max-width: 55rem; /* max-w-2xl (672px) */
        transform: scale(1); /* transform */
        border-radius: 0.5rem; /* rounded-lg */
        background-color: #ffffff; /* bg-white */
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
        transition: all 0.3s; /* transition-all */
      }

      .search-input-wrapper {
        position: relative; /* relative */
      }

      .search-icon-left {
        position: absolute; /* absolute */
        left: 1rem; /* left-4 */
        top: 1rem; /* top-4 */
        height: 1.5rem; /* h-5 */
        width: 2rem; /* w-5 */
        color: #9ca3af; /* text-gray-400 */
      }

      .search-input {
        width: 100%; /* w-full */
        border: 0; /* border-0 */
        border-bottom: 1px solid #e5e7eb; /* border-b border-gray-200 */
        padding: 1rem; /* py-4 */
        padding-left: 4rem; /* pl-12 */
        padding-right: 4rem; /* pr-12 */
        color: #111827; /* text-gray-900 */
        font-size: 1.2rem; /* text-base */
      }

      .search-input::placeholder {
        color: #9ca3af; /* placeholder-gray-400 */
      }

      .search-input:focus {
        outline: none; /* focus:outline-none */
        box-shadow: none; /* focus:ring-0 */
      }

      .search-close-btn {
        position: absolute; /* absolute */
        right: 1rem; /* right-4 */
        top: 0; /* top-4 */
        color: #9ca3af; /* text-gray-400 */
        transition: color 0.2s; /* transition-colors duration-200 */
        background: none;
        border: none;
        cursor: pointer;
      }

      .search-close-btn:hover {
        color: #4b5563; /* hover:text-gray-600 */
      }

      .search-close-icon {
        height: 1.25rem; /* h-5 */
        width: 1.25rem; /* w-5 */
      }

      .search-placeholder {
        padding: 2rem 1rem; /* px-4 py-8 */
        text-align: center; /* text-center */
        color: #9ca3af; /* text-gray-400 */
      }

      .search-placeholder-icon {
        height: 2.5rem; /* h-10 */
        width: 2.5rem; /* w-10 */
        margin: 0 auto 0.75rem auto; /* mx-auto mb-3 */
      }

      .search-placeholder-text {
        font-size: 1.4rem; /* text-sm */
        margin: 0;
      }

      .search-shortcuts {
        margin-top: 1rem; /* mt-4 */
        display: flex; /* flex */
        align-items: center; /* items-center */
        justify-content: center; /* justify-center */
        gap: 1rem; /* gap-4 */
        font-size: 1.2rem; /* text-xs */
      }

      .search-shortcut {
        display: flex; /* flex */
        align-items: center; /* items-center */
        gap: 0.25rem; /* gap-1 */
      }

      .search-kbd {
        padding: 0.25rem 0.5rem; /* px-2 py-1 */
        background-color: #f3f4f6; /* bg-gray-100 */
        border-radius: 0.25rem; /* rounded */
        color: #4b5563; /* text-gray-600 */
        font-family: monospace; /* font-mono */
      }

      .search-results {
        max-height: 24rem; /* max-h-96 (384px) */
        overflow-y: auto; /* overflow-y-auto */
        border-top: 1px solid #f3f4f6; /* border-t border-gray-100 */
        display: none; /* hidden */
      }

      /* Show modal when active */
      .search-modal.active {
        display: block;
      }

      /* Show results when active */
      .search-results.active {
        display: block;
      }

      /* Search Results Styling */
      .search-result-wrapper {
        padding: 0.5rem 0; /* py-2 */
      }

      .search-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem; /* gap-3 */
        padding: 0.75rem 1rem; /* px-4 py-3 */
        text-decoration: none;
        transition: background-color 0.15s;
        border-radius: 0.25rem;
      }

      .search-item:hover,
      .search-item.active {
        background-color: #f9fafb; /* hover:bg-gray-50 */
      }

      .search-result-icon {
        height: 1.25rem; /* h-5 */
        width: 1.25rem; /* w-5 */
        margin-top: 0.125rem; /* mt-0.5 */
        flex-shrink: 0;
      }

      .search-result-content {
        flex: 1;
        min-width: 0;
      }

      .search-result-title {
        font-size: 1.3rem; /* text-sm */
        font-weight: 500; /* font-medium */
        color: #111827; /* text-gray-900 */
      }

      .search-result-description {
        font-size: 1.2rem; /* text-xs */
        color: #6b7280; /* text-gray-500 */
        margin-top: 0.125rem; /* mt-0.5 */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .search-result-badge {
        font-size: 1.2rem; /* text-xs */
        font-weight: 500; /* font-medium */
        padding: 0.25rem 0.5rem; /* px-2 py-1 */
        border-radius: 0.25rem; /* rounded */
        flex-shrink: 0;
      }

      .search-no-results {
        padding: 1.5rem 1rem; /* py-6 px-4 */
        text-align: center;
        color: #6b7280; /* text-gray-500 */
        font-size: 1.3rem; /* text-sm */
      }

      /* Result type colors */
      .result-type-blue {
        color: #0075c9;
      }

      .result-type-blue.search-result-badge {
        background-color: rgba(0, 117, 201, 0.1);
      }

      .result-type-purple {
        color: #7c3aed; /* text-purple-600 */
      }

      .result-type-purple.search-result-badge {
        background-color: rgba(124, 58, 237, 0.1);
      }

      .result-type-green {
        color: #059669; /* text-green-600 */
      }

      .result-type-green.search-result-badge {
        background-color: rgba(5, 150, 105, 0.1);
      }

      .result-type-orange {
        color: #ea580c; /* text-orange-600 */
      }

      .result-type-orange.search-result-badge {
        background-color: rgba(234, 88, 12, 0.1);
      }

      .social-icon {
        height: 1.8rem; /* h-5 (20px) */
        width: 2.2rem; /* w-5 (20px) */
        margin-right: 0.5rem; /* mr-2 (8px) */
        border-radius: 0.125rem; /* rounded-sm (2px) */
        display: flex; /* flex */
        align-items: center; /* items-center */
        justify-content: center; /* justify-center */
      }

      .social-icon-symbol {
        color: #ffffff; /* text-white */
        font-size: 0.75rem; /* text-xs (12px) */
        line-height: 1rem; /* text-xs */
      }

      .mobile-menu-toggle {
        display: block; /* block */
      }

      .hamburger-btn {
        color: #374151; /* text-gray-700 */
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
      }

      .hamburger-btn:hover {
        color: #0075c9; /* hover:text-[#0075c9] */
      }

      .hamburger-btn:focus {
        outline: none; /* focus:outline-none */
        color: #0075c9; /* focus:text-[#0075c9] */
      }

      .hamburger-icon,
      .close-icon {
        height: 2.5rem;
        width: 3rem;
      }

      .close-icon {
        display: none; /* Initially hidden */
      }

      /* When menu is open, swap icons */
      .hamburger-btn.active .hamburger-icon {
        display: none;
      }

      .hamburger-btn.active .close-icon {
        display: block;
      }

      .mobile-menu-container {
        padding: 0 0.5rem; /* px-2 (8px) */
        display: flex; /* space-y-1 requires flex */
        flex-direction: column; /* for vertical spacing */
        gap: 0.25rem; /* space-y-1 (4px vertical spacing) */
        background-color: #f9fafb; /* bg-gray-50 */
        border-top: 1px solid #e5e7eb; /* border-t border-gray-200 */
        display: none; /* lg:hidden - hidden by default on desktop */
      }

      .mobile-dropdown-btn {
        display: flex; /* flex */
        align-items: center; /* items-center */
        justify-content: space-between; /* justify-between */
        width: 100%; /* w-full */
        padding: 0.5rem 0.75rem; /* px-3 py-2 */
        border-radius: 0.375rem; /* rounded-md */
        font-size: 16px; /* text-base */
        line-height: 1.5rem; /* text-base */
        font-weight: 500; /* font-medium */
        color: #374151; /* text-gray-700 */
        text-align: left; /* text-left */
        background: none;
        border: none;
        cursor: pointer;
        transition: color 0.2s;
      }

      .mobile-dropdown-btn:hover {
        color: #0075c9; /* hover:text-[#0075c9] */
      }

      .mobile-dropdown-icon {
        height: 1.5rem; /* h-4 */
        width: 2rem; /* w-4 */
        transition: transform 0.2s; /* transition-transform duration-200 */
      }

      /* sm: 640px and up */
      @media (min-width: 640px) {
        .desktop-wrapper {
          padding-left: 1.5rem; /* sm:px-6 (24px) */
          padding-right: 1.5rem; /* sm:px-6 (24px) */
        }

        .mobile-menu-container {
          padding: 0 0.75rem; /* sm:px-3 (12px) */
        }
      }

      /* md: 768px */
      @media (min-width: 768px) {
        .mobile-menu-toggle {
          display: block; /* md:block */
        }
      }

      /* lg: 1024px and up */
      @media (min-width: 1024px) {
        .desktop-wrapper {
          padding-left: 2rem; /* lg:px-8 (32px) */
          padding-right: 2rem; /* lg:px-8 (32px) */
        }

        .nav-links-container {
          display: block; /* lg:block */
        }

        .nav-actions {
          display: flex; /* lg:flex */
        }

        .mobile-menu-toggle {
          display: none !important; /* lg:hidden */
        }

        .mobile-menu-container {
          display: none !important; /* lg:hidden */
        }

        .mobile-menu-container.active {
          display: none !important;
        }
      }

      .mobile-menu-container.active {
        display: flex;
      }

      .nav-contact-btn {
        display: flex; /* flex */
        align-items: center; /* items-center */
        background-color: #0075c9; /* bg-sbiBlue */
        color: #ffffff; /* text-white */
        padding: 0.5rem 1rem; /* px-4 py-2 */
        border-radius: 0.5rem; /* rounded-lg */
        font-size: 1.6rem; /* text-sm */
        font-weight: 500; /* font-medium */
        text-decoration: none;
        transition: background-color 0.2s; /* transition-colors duration-200 */
      }

      .nav-contact-btn:hover {
        background-color: #1d4ed8; /* hover:bg-blue-700 */
      }

      .nav-contact-btn-icon {
        height: 1.5rem; /* h-4 */
        width: 2rem; /* w-4 */
        margin-right: 0.5rem; /* mr-2 */
      }

      .nav-login-link {
        display: flex; /* flex */
        align-items: center; /* items-center */
        color: #374151; /* text-gray-700 */
        padding: 0.5rem 0.75rem; /* px-3 py-2 */
        font-size: 1.6rem; /* text-sm */
        font-weight: 500; /* font-medium */
        text-decoration: none;
        transition: color 0.2s; /* transition-colors duration-200 */
      }

      .nav-login-link:hover {
        color: #0075c9; /* hover:text-sbiBlue */
      }

      .nav-login-link-icon {
        height: 1.5rem; /* h-4 */
        width: 2rem; /* w-4 */
        margin-right: 0.5rem; /* mr-2 */
      }

      .nav-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem; /* p-2 */
        color: #374151; /* text-gray-700 */
        background: none;
        border: none;
        cursor: pointer;
        transition: color 0.2s; /* transition-colors duration-200 */
      }

      .nav-search-btn:hover {
        color: #0075c9; /* hover:text-sbiBlue */
      }

      .nav-search-btn-icon {
        height: 1.5rem; /* h-5 */
        width: 2rem; /* w-5 */
      }

      /* Padding utilities - all sides */
      .p-0 {
        padding: 0;
      }
      .p-1 {
        padding: 0.25rem;
      } /* 4px */
      .p-2 {
        padding: 0.5rem;
      } /* 8px */
      .p-3 {
        padding: 0.75rem;
      } /* 12px */
      .p-4 {
        padding: 1rem;
      } /* 16px */
      .p-5 {
        padding: 1.25rem;
      } /* 20px */
      .p-6 {
        padding: 1.5rem;
      } /* 24px */
      .p-8 {
        padding: 2rem;
      } /* 32px */

      /* Horizontal padding */
      .px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }

      /* Vertical padding */
      .py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
      }
      .py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
      }

      /* Individual sides */
      .pt-4 {
        padding-top: 1rem;
      }
      .pb-4 {
        padding-bottom: 1rem;
      }
      .pl-4 {
        padding-left: 1rem;
      }
      .pr-4 {
        padding-right: 1rem;
      }

      #services-dropdown,
      #about-dropdown,
      #insights-dropdown,
      #industries-dropdown,
      #solutions-dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }

      /* Open state */
      #services-dropdown.open,
      #about-dropdown.open,
      #insights-dropdown.open,
      #industries-dropdown.open,
      #solutions-dropdown.open {
        max-height: 500px; /* Your scroll height */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      .mobile-dropdown-content {
        padding-left: 1.5rem; /* pl-6 (24px) */
        display: flex;
        flex-direction: column;
        gap: 0.25rem; /* space-y-1 (4px) */
      }

      .mobile-section-label {
        font-size: 14px; /* text-xs (12px) */
        line-height: 1rem; /* text-xs */
        font-weight: 700; /* font-bold */
        color: #1e3a8a; /* text-blue-900 */
        text-transform: uppercase; /* uppercase */
        letter-spacing: 0.05em; /* tracking-wider */
        margin-bottom: 0.5rem; /* mb-2 (8px) */
      }

      .mobile-dropdown-links {
        display: flex;
        flex-direction: column;
        gap: 0.25rem; /* space-y-1 (4px) */
      }

      .mobile-dropdown-link {
        display: flex; /* flex */
        align-items: center; /* items-center */
        padding: 1.25rem 0.5rem; /* px-2 py-1 */
        font-size: 16px; /* text-sm (14px) */
        line-height: 1.25rem; /* text-sm */
        color: #374151; /* text-gray-700 */
        border-radius: 0.25rem; /* rounded (4px) */
        text-decoration: none;
        transition: color 0.2s, background-color 0.2s; /* transition-colors duration-200 */
        font-weight: 400;
      }

      .mobile-dropdown-link:hover {
        color: #2563eb; /* hover:text-blue-600 */
        background-color: #eff6ff; /* hover:bg-blue-50 */
      }

      .mobile-dropdown-link-icon {
        height: 1.5rem; /* h-5 (20px) */
        width: 2rem; /* w-5 (20px) */
        margin-right: 0.5rem; /* mr-2 (8px) */
      }

      .mobile-actions-wrapper {
        padding-top: 1rem; /* pt-4 */
        display: flex;
        flex-direction: column;
        gap: 0.5rem; /* space-y-2 */
      }

      .mobile-contact-btn {
        display: flex; /* flex */
        align-items: center; /* items-center */
        justify-content: center; /* justify-center */
        background-color: #0075c9; /* bg-[#0075c9] */
        color: #ffffff; /* text-white */
        padding: 0.5rem 0.75rem; /* px-3 py-2 */
        border-radius: 0.375rem; /* rounded-md */
        font-size: 16px; /* text-base */
        line-height: 1.5rem; /* text-base */
        font-weight: 500; /* font-medium */
        text-align: center; /* text-center */
        text-decoration: none;
        transition: background-color 0.2s;
      }

      .mobile-contact-btn:hover {
        background-color: #0066b3; /* hover:bg-[#0066b3] */
      }

      .mobile-contact-btn-icon {
        height: 1.5rem; /* h-4 */
        width: 2rem; /* w-4 */
        margin-right: 0.5rem; /* mr-2 */
      }

      .mobile-login-link {
        display: flex; /* flex */
        align-items: center; /* items-center */
        justify-content: center; /* justify-center */
        color: #374151; /* text-gray-700 */
        padding: 0.5rem 0.75rem; /* px-3 py-2 */
        border-radius: 0.375rem; /* rounded-md */
        font-size: 16px; /* text-base */
        line-height: 1.5rem; /* text-base */
        font-weight: 500; /* font-medium */
        text-decoration: none;
        transition: color 0.2s;
      }

      .mobile-login-link:hover {
        color: #0075c9; /* hover:text-sbiBlue */
      }

      .mobile-login-link-icon {
        height: 1.5rem; /* h-4 */
        width: 2rem; /* w-4 */
        margin-right: 0.5rem; /* mr-2 */
      }

      .mobile-search-btn {
        display: flex; /* flex */
        align-items: center; /* items-center */
        justify-content: center; /* justify-center */
        width: 100%; /* w-full */
        color: #374151; /* text-gray-700 */
        padding: 0.5rem 0.75rem; /* px-3 py-2 */
        border-radius: 0.375rem; /* rounded-md */
        font-size: 16px; /* text-base */
        line-height: 1.5rem; /* text-base */
        font-weight: 500; /* font-medium */
        background: none;
        border: none;
        cursor: pointer;
        transition: color 0.2s;
      }

      .mobile-search-btn:hover {
        color: #0075c9; /* hover:text-[#0075c9] */
      }

      .mobile-search-btn-icon {
        height: 1.5rem; /* h-4 */
        width: 2rem; /* w-4 */
        margin-right: 0.5rem; /* mr-2 */
      }

      .mobile-dropdown-link > .social-icon svg {
        margin-right: unset !important;
      }
/* ------------------------------------------------------------ *\
	footer
\* ------------------------------------------------------------ */
.footer {
  background-color: var(--grey-900);
  color: var(--grey-100);
  padding: 6rem 0;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer {
    padding: 4.8rem 0;
  }
}
.footer .shell-medium {
  padding: 0 2rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer .shell-medium {
    padding: 0 2.4rem;
  }
}
.footer .footer__logo,
.footer .logo {
  display: inline-block;
  margin-bottom: 4.2rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer .footer__logo,
  .footer .logo {
    width: 24.2rem;
    margin-bottom: 3.5rem;
  }
}
.footer .footer__logo img,
.footer .logo img {
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer .footer__logo img,
  .footer .logo img {
    width: 100%;
    height: auto;
  }
}
.footer .footer__socials {
  padding-left: 2rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer .footer__socials {
    padding-left: 0;
  }
}
.footer .footer__info {
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer .footer__info {
    margin-bottom: 3.6rem;
  }
}
.footer .footer__nav {
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer .footer__nav {
    display: none;
  }
}
.footer .footer__nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: calc(var(--space-3) * -1);
  list-style-type: none;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer .footer__nav li {
  padding: var(--space-3);
}
.footer .footer__nav a {
  text-decoration: none;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer__nav a:hover {
    color: var(--blue-light);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .footer .footer__nav a:hover {
    color: var(--blue-light);
  }
}
.footer .footer__navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer .footer__navbar {
    display: block;
    padding: 0;
  }
}
.footer .footer__body {
  margin-bottom: 9.3rem;
  padding-right: 2rem;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer .footer__body {
    margin-bottom: 0.7rem;
  }
}
.footer .footer__body .grid .grid__col {
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer .footer__body .grid .grid__col {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.footer .footer__content {
  max-width: 46rem;
  padding-left: 2rem;
  margin-left: auto;
  font-size: 2rem;
  margin-top: -0.4rem;
  font-weight: 300;
  line-height: 1.3;
  /*  Mobile  */
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer .footer__content {
    font-size: 1.4rem;
    padding-left: 0;
    margin-bottom: 2.3rem;
    margin-left: 0;
  }
}
.footer .footer__content p {
  margin-bottom: 2.6rem;
}
.footer .footer__content br {
  /*  Tablet  */
}
@media (max-width: 1023px) {
  .footer .footer__content br {
    display: none;
  }
}
.footer .footer__copyright {
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Custom footer */
.footer__content h4{ color: #ffffff;}
.footer__content p{ margin-bottom: 0.6rem !important;}
.footer__content a{ text-decoration: none; font-size: 1.8rem; }
.footer__content a:hover{ color: #95d3f3; }
.footer_title_custom_my{margin-top: 2.3rem; margin-bottom: calc(1.28em / 2) !important;}

.footer__nav .hs-menu-item.hs-menu-depth-1{ border-right: 1px solid aliceblue; padding-top: 0; padding-bottom: 0;}
.footer__navbar{justify-content: center !important;}
@media(min-width: 768px){
.footer__copyright{margin-left: 25px; padding-bottom: 10px;}
}