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

/* Tokens
This is where define key colors and tokens
*/
:root {

  /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  // 
  //
  //    Design Tokens
  //        Hubspot's HUBL language does not support the compiling
  //        for SASS. For now, I am using CSS variables in place
  //        of SASS variables. I'd like to eventually leverage
  //        webpack or something simliar on the project so we can
  //        compile SASS files.
  //
  //
  // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

  /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  /* Brand Colors
  /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

    --f23-white-color: #fff;
    --f23-black-color: #171717;
  
    --f23-grey-f7f7f7: #f7f7f7;
    --f23-grey-efefef: #efefef;
    --f23-grey-cccccc: #cccccc;
    --f23-grey-a3a3a3: #a3a3a3;
    --f23-grey-7f7f7f: #7f7f7f;
    --f23-grey-4d4c4d: #4d4c4d;
    --f23-grey-3b3b3b: #3b3b3b;
    --f23-grey-2b2b2b: #2b2b2b;
  
    --f23-red-da1f27: #da1f27;
    --f23-light-red-ff696f: #ff696f;

    --f23-gold-color: #FEC12D;





  /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  /* Typography
  /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  --f23-klavika-light-font: "klavika-light", -apple-system, sans-serif;
  --f23-klavika-regular-font: "klavika-regular", var(--f23-klavika-light-font);
  --f23-klavika-bold-font: "klavika-bold", var(--f23-klavika-light-font);

  /* --f23-clarendon-regular-font: "Clarendon-Regular", "Georgia", serif; */
  --f23-clarendon-regular-font: "Clarendon-Regular";
  --f23-clarendon-bold-font: "Clarendon-Bold", var(--f23-clarendon-regular-font);

  /* Inter */
  --f23-inter-regular-font: "Inter";

  --f23-inter-font-weight-300: 300;
  --f23-inter-font-weight-600: 600;
  --f23-inter-font-weight-900: 900;


  
}/*endofroot*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
 /* font-colors */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.f23-red-font-color {
    color: var(--f23-red-da1f27);
}

.f23-white-font-color   {
    color: var(--f23-white-color);
}

.f23-light-red-font-color { color: var(--f23-light-red-ff696f); }

.f23-grey-4d4c4d-font-color { color: var(--f23-grey-4d4c4d); }

.f23-grey-cccccc { color: var(--f23-grey-cccccc); }

.f23-grey-a3a3a3 { color: var(--f23-grey-a3a3a3); }

.f23-grey-7f7f7f { color: var(--f23-grey-7f7f7f); }

.f23-gold-font-color { color: var(--f23-gold-color); }


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
 /* background-colors */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.f23-bg-color-grey-7f7f7f {
    background-color: var(--f23-grey-7f7f7f);
}

.f23-bg-color-grey-2b2b2b {
    background-color: var(--f23-grey-2b2b2b);
}

.f23-bg-color-grey-4d4c4d {
    background-color: var(--f23-grey-4d4c4d);
}

.f23-bg-color-grey-f7f7f7 {
    background-color: var(--f23-grey-f7f7f7);
}

.f23-bg-color-white-ffffff {
    background-color: var(--f23-white-color);
}

.f23-bg-black-171717 {
    background-color: var(--f23-black-color);
}
:root {
  /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  /* Typography
  /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

  /* Inter */
  --f23-inter-regular-font: "Inter";

  --f23-inter-font-weight-300: 300;
  --f23-inter-font-weight-600: 600;
  --f23-inter-font-weight-900: 900;
}

.font-w-900 {
    font-weight: 900;
}

p,
body,
.body-text {
    font-size: 1.5rem!important;
    line-height: 165%!important;
    font-family: var(--f23-inter-regular-font);
    font-weight: var(--f23-inter-font-weight-300);
    letter-spacing: -0.02rem;
    margin-bottom: 2rem;
    color: var(--f23-white-color);
}


    @media (max-width: 767.98px) {
        p,
        body,
        .body-text {
            font-size: 1.15rem!important;
        }
    }





.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: var(--f23-inter-font-weight-600);
}

.title {
  letter-spacing: -0.05rem;
  /* margin: 2rem 0; */
  line-height: 125%;
  font-family: var(--f23-inter-regular-font);
  font-weight: var(--f23-inter-font-weight-900);
}

.title-xl {
  /* color: var(--f23-black-color); */
  /* font-size: 4rem; */
  letter-spacing: -2px;
  line-height: 125%;
  margin: 2rem 0;
  letter-spacing: -0.06rem;
  font-size: calc(2.25rem + 1.5vw);

  /* @include media-breakpoint-down(md) { */
  @media (max-width: 767.98px) {
      font-size: 2.5rem;
  }
}

.title-lg {
  /* font-size: 3rem; */
  letter-spacing: -2px;
  line-height: 115%;
  font-size: calc(1.18rem + 1.5vw);
}

@media (max-width: 767.98px) {
  .title-lg {
      font-size: 2rem;
  }
}

.title-md {
  width: inherit;
  margin-bottom: 1.25rem;
  font-size: 2.5rem;
  line-height: 125%;
  letter-spacing: -0.06rem;
}

@media (max-width: 767.98px) {
  .title-md {
      font-size: 1.75rem;
  }
}

.title-sm {
  margin-bottom: 1.25rem;
  font-family: var(--f23-inter-regular-font);
  font-weight: var(--f23-inter-font-weight-600);
  font-size: 1.5rem;
  line-height: 130%;
  letter-spacing: -0.02rem;
}

.title-sm.font-k-b {
  font-family: var(--f23-klavika-bold-font);
}

.title-xl,
.title-lg {
  font-family: var(--f23-inter-regular-font);
  font-weight: var(--f23-inter-font-weight-900);
}

strong {
  font-weight: bold;
}

.tiny-title {
  font-size: 0.75rem;
  font-family: var(--f23-inter-regular-font);
  font-weight: var(--f23-inter-font-weight-600);
  letter-spacing: 0.26rem;
  text-transform: uppercase;
  color: var(--f23-grey-7f7f7f);
}

.tiny-title.f23-red-font-color {
  color: var(--f23-red-da1f27);
}

.title-line {
  border-top: 1px solid var(--f23-red-da1f27);
  border-left: none;
  border-right: none;
  border-bottom: none;
  width: 144px;
}

.max-width-50ch {
  max-width: 50ch;
}

.max-width-42ch {
  max-width: 42ch;
}

.max-width-75ch {
  max-width: 75ch;
}

ul.is-a-list li {
  margin-bottom: 1rem;
  list-style: square;
}

.list li {
  padding-left: 0.5rem;
  font-size: 1rem;
}

.list li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.list li::marker {
  content: ">  ";
  padding-right: 1rem;
}



.h3,.h4,h3,h4 {
  color: inherit;
  font-family: inherit;
  text-transform: inherit;
}


/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
html {
    scroll-behavior: smooth;
    text-rendering: geometricPrecision;
    font-size: 1rem!important;
}

a:active {
    color: inherit;
}

*:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
*:focus,
.btn:focus,
.nav-link:focus  {
    outline: 3px solid var(--f23-red-da1f27);
    outline-offset: 3px;
    border-radius: 0.25rem;
    transition: 0.30s outline ease, 0.30s outline-offset ease, 0.30s border-radius ease;
}

body {
    position: relative;
    font-family: var(--f23-inter-regular-font);
    color: var(--f23-white-color);
    font-size: 1.25rem;
    margin: 0;
    -webkit-text-size-adjust: 100%;
}

.blk-thick-line {
    border-top: 5px solid var(--f23-grey-171717);
    border-bottom: none;
    border-left: none;
    border-right: none;
    opacity: 1;
}

::-moz-selection { /* Code for Firefox */
    color: var(--f23-white-color);
    background: var(--f23-red-da1f27);
  }
  
  ::selection {
    color: var(--f23-white-color);
    background: var(--f23-red-da1f27);
  }

  .form-area {
    background-image: url();
    background-repeat: no-repeat;
    background-position: top;

    /* @include media-breakpoint-down(md) {
        background-position: bottom;
    } */
  }

	@media (max-width: 767.98px) {
		.form-area {
			background-position: bottom;
		}
	}

  

.f23-blk-bg { background-color: var(--f23-black-color); }

.f23-offset-white-bg { background-color: var(--f23-grey-efefef); }

.f23-red-bg { background-color: var(--f23-red-da1f27); }

.wht-bg { background-color: var(--f23-white-color); }



.light-red-dropshadow {
    /* box-shadow: 0 14px 24px rgba(218, 31, 39, .13); */
    box-shadow: 0 0.5rem 1rem rgba(218, 31, 39, .13);
}



.f23-content-wrapper {
    max-width: 87.5rem; 
    width: 87.5rem; 
}

.f23-center-content-wrapper {
    margin-left: auto;
    margin-right: auto;
}

/* .container-fluid {
    padding: 0!important;
    
} */


@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 33.75rem; 
    }
}

@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 45rem; 
    }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 60rem; 
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 87.5rem; 
    }
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

.section {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.section-xl {
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.section-sm {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (max-width: 575.98px) {
    .section-xl,
    .section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .section-sm {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .container {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-content-between {
    justify-content: space-between;
}

.full-width-img img {
    width: 100%;
    border-radius: 0.75rem;
}

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

.small,
p.small {
    font-size: 0.875em!important;
}

@media (min-width: 992px) {
    .justify-content-lg-between {
        justify-content: space-between !important;
    }

    .flex-lg-row {
        flex-direction: row;
    }
}








.ps-0 { padding-left: 0; }
.ps-half { padding-left: 0.5rem; }
.ps-1 { padding-left: 1rem; }
.ps-1-half { padding-left: 1.5rem; }
.ps-2 { padding-left: 2rem; }
.ps-2-half { padding-left: 2.5rem; }
.ps-3 { padding-left: 3rem; }
.ps-3-half { padding-left: 3.5rem; }


.pe-0 { padding-right: 0; }
.pe-half { padding-right: 0.5rem; }
.pe-1 { padding-right: 1rem; }
.pe-1-half { padding-right: 1.5rem; }
.pe-2 { padding-right: 2rem; }
.pe-2-half { padding-right: 2.5rem; }
.pe-3 { padding-right: 3rem; }
.pe-3-half { padding-right: 3.5rem; }


.px-0 { padding-left: 0; padding-right: 0; }
.px-half { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-1 { padding-left: 1rem; padding-right: 1rem; }
.px-1-half { padding-left: 2rem; padding-right: 1.5rem; }
.px-2 { padding-left: 2.5rem; padding-right: 2rem; }
.px-2-half { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-3 { padding-left: 3rem; padding-right: 3rem; }
.px-3-half { padding-left: 3.5rem; padding-right: 3.5rem; }



.pt-0 { padding-top: 0; }
.pt-half { padding-top: 0.5rem; }
.pt-1 { padding-top: 1rem; }
.pt-1-half { padding-top: 1.5rem; }
.pt-2 { padding-top: 2rem; }
.pt-2-half { padding-top: 2.5rem; }
.pt-3 { padding-top: 3rem; }
.pt-3-half { padding-top: 3.5rem; }


.pb-0 { padding-bottom: 0; }
.pb-half { padding-bottom: 0.5rem; }
.pb-1 { padding-bottom: 1rem; }
.pb-1-half { padding-bottom: 1.5rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-2-half { padding-bottom: 2.5rem; }
.pb-3 { padding-bottom: 3rem; }
.pb-3-half { padding-bottom: 3.5rem; }


 .py-0 { padding-top: 0; padding-bottom: 0; }
.py-half { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-1 { padding-left: 1rem; padding-right: 1rem; }
.py-1-half { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-left: 2rem; padding-right: 2rem; }
.py-2-half { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-3 { padding-left: 3rem; padding-right: 3rem; }
.py-3-half { padding-left: 3.5rem; padding-right: 3.5rem; }






 .ms-0 { margin-left: 0; }
.ms-half { margin-left: 0.5rem; }
.ms-1 { margin-left: 1rem; }
.ms-1-half { margin-left: 1.5rem; }
.ms-2 { margin-left: 2rem; }
.ms-2-half { margin-left: 2.5rem; }
.ms-3 { margin-left: 3rem; }
.ms-3-half { margin-left: 3.5rem; }


 .me-0 { margin-right: 0; }
.me-half { margin-right: 0.5rem; }
.me-1 { margin-right: 1rem; }
.me-1-half { margin-right: 1.5rem; }
.me-2 { margin-right: 2rem; }
.me-2-half { margin-right: 2.5rem; }
.me-3 { margin-right: 3rem; }
.me-3-half { margin-right: 3.5rem; }


 .mx-0 { margin-left: 0; margin-right: 0; }
.mx-half { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-1 { margin-left: 1rem; margin-right: 1rem; }
.mx-1-half { margin-left: 2rem; margin-right: 1.5rem; }
.mx-2 { margin-left: 2.5rem; margin-right: 2rem; }
.mx-2-half { margin-left: 2.5rem; margin-right: 2.5rem; }
.mx-3 { margin-left: 3rem; margin-right: 3rem; }
.mx-3-half { margin-left: 3.5rem; margin-right: 3.5rem; }



 .mt-0 { margin-top: 0; }
.mt-half { margin-top: 0.5rem; }
.mt-1 { margin-top: 1rem; }
.mt-1-half { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.mt-2-half { margin-top: 2.5rem; }
.mt-3 { margin-top: 3rem; }
.mt-3-half { margin-top: 3.5rem; }


 .mb-0 { margin-bottom: 0; }
.mb-half { margin-bottom: 0.5rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-1-half { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-2-half { margin-bottom: 2.5rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-3-half { margin-bottom: 3.5rem; }


 .my-0 { margin-top: 0; margin-bottom: 0; }
.my-half { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-1 { margin-top: 1rem; margin-bottom: 1rem; }
.my-1-half { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-2 { margin-top: 2rem; margin-bottom: 2rem; }
.my-2-half { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.my-3 { margin-top: 3rem; margin-bottom: 3rem; }
.my-3-half { margin-top: 3.5rem; margin-bottom: 3.5rem; }



.row-fluid-wrapper,
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}






.row-fluid,
.f23-card,
.card-item,
.row-fluid-wrapper,
.hs_cos_wrapper {
    /* height: 100%; */
}

@media (max-width: 768px) {
    .row-fluid,
    .f23-card,
    .card-item,
    .row-fluid-wrapper,
    .hs_cos_wrapper {
        height: inherit;
    }

    .full-width-img img {
        margin-top: 1.5rem;
    }

}

.row-fluid .span1, .row-fluid .span10, .row-fluid .span11, .row-fluid .span12, .row-fluid .span2, .row-fluid .span3, .row-fluid .span4, .row-fluid .span5, .row-fluid .span6, .row-fluid .span7, .row-fluid .span8, .row-fluid .span9 {
    display: flex;
    flex-direction: column;
}



.cta-sidebar,
.two-column-w-cta .dnd-column:nth-child(2) {
    background-color: var(--f23-grey-2b2b2b);
    border-radius: 1rem;
    border: 1px solid var(--f23-grey-3b3b3b);
}

.two-column-w-cta-form .dnd-column:nth-child(2) {
    background-color: var(--f23-gold-color);
    border-radius: 1rem;
    color: var(--f23-black-color);
    padding: 4rem;
}

.two-column-w-cta-form .dnd-column:nth-child(2) p {
    color: var(--f23-black-color);
}

.cta-sidebar-with-form {
    background-color: var(--f23-white-color);
    border-radius: 1rem;
    border: 1px solid var(--f23-grey-3b3b3b);
    color: var(--f23-black-color);
}

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

/* Body Styling */

.f23-body {
    background-color: var(--f23-black-color); 
}
/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

.btn {
    border-radius: 0;
    padding: 1rem 1.5rem;
    /* transition: padding-left .25s ease-in-out; */
}

.btn:hover {
color: inherit;
    /* transition: padding-left .25s ease-in-out; */
}

.bi {
    transition: padding-left .15s cubic-bezier(.43,.23,.04,1.07);
}

.btn:hover .bi {
    padding-left: 1rem;
    /* transform: translateX(1rem); */
    /* transition: padding-left .25s ease-in-out; */
}

.f23-red-btn {
    background-color: var(--f23-red-da1f27);
    color: var(--f23-white-color);
}


.f23-red-btn:hover {
    color: var(--f23-white-color);
    background-color: var(--f23-red-da1f27);
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.btn {
    border-radius: 0;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    
    /* transition: padding-left .25s ease-in-out; */
}

.btn:hover {
color: inherit;
    /* transition: padding-left .25s ease-in-out; */
}

.bi {
    transition: padding-left .15s cubic-bezier(.43,.23,.04,1.07);
}

.btn:hover .bi {
    padding-left: 1rem;
    /* transform: translateX(1rem); */
    /* transition: padding-left .25s ease-in-out; */
}

.f23-red-btn {
    background-color: var(--f23-red-da1f27);
    color: var(--f23-white-color);
}


.f23-red-btn:hover {
    color: var(--f23-white-color);
    background-color: var(--f23-red-da1f27);
}

.f23-outline-white-bg {
    background-color: var(--f23-white-color);
    border: 1px solid var(--f23-grey-cccccc);
}


.f23-outline-white-bg:hover {
    background-color: var(--f23-grey-efefef);
}


.f23-white-outline-tp-bg-white-hover {
    background-color: transparent;
    color: var(--f23-white-color);
    border-color: var(--f23-white-color);
}

.f23-white-outline-tp-bg-white-hover:hover {
    background-color: var(--f23-white-color);
    color: var(--f23-red-da1f27);
}

.f23-red-btn.rounded-pill {
    padding: 1rem 2rem;;
    background: #DA1F27;
    border: 1px solid #E57171;
    box-shadow: 0px 0px 0px 5px rgba(218, 31, 39, 0.3), inset 0px 3px 3px #F48E93;
    border-radius: 108px;
    transition: box-shadow .45s ease, border .25s ease;
}

.f23-red-btn.rounded-pill:hover,
.f23-red-btn.rounded-pill:focus-visible {
    background: #DA1F27;
    border: 1px solid #C01118;
    box-shadow: 0px 0px 0px 5px rgba(218, 31, 39, 0.3), inset 0px 3px 4px #941F24;
}

.f23-black-btn.rounded-pill {
    padding: 1rem 2rem;;
    background: var(--f23-black-color);
    border: 1px solid var(--f23-black-color);
    border-radius: 108px;
    color: var(--f23-white-color);
}

.f23-black-btn.rounded-pill:hover {
    padding: 1rem 2rem;;
    background: transparent;
    border: 1px solid var(--f23-black-color);
    border-radius: 108px;
    color: var(--f23-grey-2b2b2b);
}


.button:active, .hs-blog-post-listing__post-button:active, .hs-button:active, button:active {
    font-family: inherit;
    font-weight: inherit;
}

.offcanvas-header .btn-close {
    color: inherit;
}

.offcanvas .btn-close:hover {
    background-color: transparent;
    border: 0;
    opacity: 1;
}

.offcanvas .btn-close:active {
    background-color: var(--f23-red-da1f27);
    border: 0;
    --bs-btn-close-white-filter: invert(0) grayscale(0%) brightness(300%);
    opacity: 1;
}

.offcanvas-footer .nav-link {
    font-size: 1rem;
}
.btn {
    border-radius: 0;
    padding: 1rem 1.5rem;
    /* transition: padding-left .25s ease-in-out; */
}

.btn:hover {
color: inherit;
    /* transition: padding-left .25s ease-in-out; */
}

.bi {
    transition: padding-left .15s cubic-bezier(.43,.23,.04,1.07);
}

.btn:hover .bi {
    padding-left: 1rem;
    /* transform: translateX(1rem); */
    /* transition: padding-left .25s ease-in-out; */
}

.f23-red-btn {
    background-color: var(--f23-red-da1f27);
    color: var(--f23-white-color);
}


.f23-red-btn:hover {
    color: var(--f23-white-color);
    background-color: var(--f23-red-da1f27);
}

.f23-outline-white-bg {
    background-color: var(--f23-white-color);
    border: 1px solid var(--f23-grey-cccccc);
}


.f23-outline-white-bg:hover {
    background-color: var(--f23-grey-efefef);
}


.f23-white-outline-tp-bg-white-hover {
    background-color: transparent;
    color: var(--f23-white-color);
    border-color: var(--f23-white-color);
}

.f23-white-outline-tp-bg-white-hover:hover {
    background-color: var(--f23-white-color);
    color: var(--f23-red-da1f27);
}

.f23-red-btn.rounded-pill {
    padding: 1rem 2rem;;
    background: #DA1F27;
    border: 1px solid #E57171;
    box-shadow: 0px 0px 0px 5px rgba(218, 31, 39, 0.3), inset 0px 3px 3px #F48E93;
    border-radius: 108px;
    transition: box-shadow .45s ease, border .25s ease;
}

.f23-red-btn.rounded-pill:hover,
.f23-red-btn.rounded-pill:focus-visible {
    background: #DA1F27;
    border: 1px solid #C01118;
    box-shadow: 0px 0px 0px 5px rgba(218, 31, 39, 0.3), inset 0px 3px 4px #941F24;
}

.f23-black-btn.rounded-pill {
    padding: 1rem 2rem;;
    background: var(--f23-black-color);
    border: 1px solid var(--f23-black-color);
    border-radius: 108px;
    color: var(--f23-white-color);
}

.f23-black-btn.rounded-pill:hover {
    padding: 1rem 2rem;;
    background: transparent;
    border: 1px solid var(--f23-black-color);
    border-radius: 108px;
    color: var(--f23-grey-2b2b2b);
}




.skip-link-btn,
.header__skip {
    background-color: var(--f23-red-da1f27);
    color: var(--f23-white-color);
    text-decoration: none;
    padding: .25rem 1rem;
    border-radius: .5rem;
    line-height: 200%;
    position: absolute;
    transform: translateY(-300%);
    transition: transform .35s ease-in-out, opacity .35s ease-in-out;
    opacity: 0;
    z-index: -1;
    left: 0!important;
}

.skip-link-btn:hover,
.header__skip:hover {
    color: var(--f23-white-color);
}

.skip-link-btn:focus-within,
.header__skip:focus-within,
.header__skip:focus {
    transform: translateY(0.5rem);
    opacity: 1;
    z-index: inherit;
    color: var(--f23-white-color);
    left: 0.5rem;
}

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

.h-masthead-wrapper {    
    background: linear-gradient(154deg, rgba(218, 31, 39, 0) 75.18%, #DA1F27 99.52%);
    box-shadow: 0 67px 68px #200001;
    padding: 2px;
    z-index: 1;
    border-radius: 2.5rem;
}

.h-masthead {
    background-image: url(https://8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/h-masthead-red-wave.svg);
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 2.5rem;
    padding: 6rem;
    overflow: hidden;
    z-index: 2;
    background-color: var(--f23-black-color);
    color: var(--f23-white-color);
}

/* @include media-breakpoint-down(md) { */
@media (max-width: 767.98px) {
    .h-masthead {
        padding: 6rem 2rem 4rem 2rem;
    }
}

.h-masthead::before {
    content: '';
    position: absolute;
    width: 840.75px;
    height: 890.1px;
    left: -35%;
    top: 0;

    background: radial-gradient(50% 50% at 50% 50%, #636363 0%, rgba(62, 62, 62, 0) 100%);
    opacity: 0.3;
    border-radius: 2.5rem;
    z-index: 4;

}

.h-masthead::after {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 10000rem;
    right: -35%;
    top: 14rem;
    background: radial-gradient(50% 50% at 50% 50%, rgba(218, 31, 39, 0.9) 0%, rgba(116, 16, 21, 0) 100%);
    opacity: 0.3;

}

.h-masthead-line {
    border: 1px solid trasparent;
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
    width: 100%;
    z-index: 34;
    border-radius: 3rem;
}
.f23-footer {
    background-color: #0A0A0A;
    background-color: var(--f23-black-color);
    position: relative;
    padding: 6rem;
    border-radius: 2.5rem;
    background-image: url(https://8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/footer-bg-img.svg);
    background-size: cover;
    background-position: top;
    box-shadow: 0 67px 68px rgba(0, 0, 0, .29);
    
}

.footer-links {
    border-bottom: 1px solid rgba(33, 37, 41);
    margin-bottom: 2rem;
}

footer a:hover {
    color: var(--f23-gold-color);
    transition: color .3s ease;
}

/* @include media-breakpoint-down(md) { */
@media (max-width: 767.98px) {
    .f23-footer {
        padding: 2rem;
    }
}

.grad-line {
    position: absolute; 
    width: 100%; 
    height: 2px; 
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 75%;
    margin-left: 50%;
    transform: translateX(-50%);
    background-image: linear-gradient(90deg, rgba(218, 31, 39, 0) 0%, #DA1F27 29.25%, #DA1F27 72.5%, rgba(218, 31, 39, 0) 100%);
}

.the-footer {
    font-size: 1rem;
    margin-top: 8rem;
}

/* @include media-breakpoint-down(md) { */
@media (max-width: 767.98px) {
    .the-footer {
        margin-top: 4rem;
    }
}

footer {
    color: var(--f23-white-color);
    padding-bottom: 4rem;

    /* @include media-breakpoint-down(md) */
    @media (max-width: 767.98px) {
        padding: 4rem 2rem;
    }
}

.f23-footer p.copyright {
    font-size: 0.75rem!important;
}
/* // Offer cards on homepage */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.offer-card-inside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    height: 100%;
    /* height: 36rem; (Links currently hidden at the bottom of the card. When the links come back, use this height) */
    height: 26rem;
    background-color: var(--f23-grey-f7f7f7);
    padding: 4rem;
    border-radius: 1.25rem;
    transition: box-shadow .25s ease-in-out;
    overflow: hidden;
    position: relative;
    z-index: 2;
}


.offer-card-inside::before {
    content: "";
    background-image: url();
    position: absolute;
    z-index: 1;
    top: 24%;
    height: 312px;
    width: 312px;
    right: -40%;
}

.offer-card-inside:hover {
    box-shadow: 0 18px 22px rgba(0, 0, 0, .12), 0 34px 28px rgba(0, 0, 0, .08);
}

.offer-card-inside:hover .stroke-link {
    border-color: inherit;
}

.offer-card-inside .stroke-link {
    display: flex;
    align-items: center;
    transition: transform .25s ease-in-out;
}

.offer-card-inside .stroke-link .bi {
    transition: transform .25s ease-in-out;
}

.offer-card-inside:hover .stroke-link .bi {
    transform: translateX(1rem);
    transition: transform .25s ease-in-out;
}

.offer-card-inside .title-md, p {
    z-index: 2;
    position: relative;
}

.offer-card .title-md {
    margin-bottom: 4rem;
}



/* // Case study cards on homepage */
/* //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.casestudy-card-inside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: var(--f23-white-color);
    height: 100%;
    height: 28rem;
    background-color: var(--f23-grey-f7f7f7);
    padding: 4rem;
    border-radius: 1.25rem;
    transition: box-shadow .25s ease-in-out, transform .25s ease-in-out;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: translateY(0);

    /* @include media-breakpoint-down(md) { */
    @media (max-width: 767.98px) {
        height: 25rem;
        padding: 2.5rem;
    }
}



.casestudy-card-inside:hover {
    box-shadow: 0 18px 22px rgba(0, 0, 0, .12), 0 34px 28px rgba(0, 0, 0, .08);
    color: var(--f23-white-color);
    transform: translateY(-1rem);
    transition: transform .25s ease-in-out
}

.casestudy-card-inside:hover .stroke-link {
    border-color: inherit;
}

.casestudy-card-inside .stroke-link {
    display: flex;
    align-items: center;
    transition: transform .25s ease-in-out;
}

.casestudy-card-inside .stroke-link .bi {
    transition: transform .25s ease-in-out;
}

.casestudy-card-inside:hover .stroke-link .bi {
    transform: translateX(1rem);
    transition: transform .25s ease-in-out;
}

.casestudy-card-inside .title-md, p {
    z-index: 2;
    position: relative;
}

.ges-home-cs {
    /* background-image: url("/img/ges-home-bg.png"); */
    background-image: url();
    background-size: cover;
}

.superior-home-cs {
    background-image: url();
    background-size: cover;
}

.allmed-home-cs {
    background-image: url("/img/allmed-home-bg.png");
    background-image: url();
    background-size: cover;
}



.feature-home-cs {
    background-color: var(--f23-black-color);
    padding: 4rem;
    border-radius: 1.25rem;
    color: var(--f23-white-color);
    display: flex;
    text-decoration: none;
    transition: transform .25s ease-in-out, background-color .25s ease-in-out;

    /* @include media-breakpoint-down(md) { */
    @media (max-width: 767.98px) {
        padding: 2.5rem;
    }
}

.feature-home-cs:hover {
    background-color: var(--f23-red-da1f27);
    background-color: var(--f23-black-color);
    color: var(--f23-white-color);
    transition: transform .25s ease-in-out, background-color .25s ease-in-out;
}


.feature-home-cs:hover .feature-home-cs-img {
    transform: translateX(0);
    transition: transform .25s ease-in-out, background-color .25s ease-in-out;
}

.feature-home-cs:hover .stroke-link {
    border-color: inherit;
}

.feature-home-cs .stroke-link {
    display: flex;
    align-items: center;
    transition: transform .25s ease-in-out;
}

.feature-home-cs .stroke-link .bi {
    transition: transform .25s ease-in-out;
}

.feature-home-cs :hover .stroke-link .bi {
    transform: translateX(1rem);
    transition: transform .25s ease-in-out;
}

.feature-home-cs-img {
    transform: translateX(-18%);
    object-fit: cover;
    width: 100%;
    transition: transform .25s ease-in-out;
    border-radius: 1rem;

    /* @include media-breakpoint-down(md) { */
    @media (max-width: 767.98px) {
        transform: translateX(0);
    }
}




.highlight-card {
    color: var(--f23-white-color);
    background-color: var(--f23-grey-2b2b2b); 
    border-radius: 1rem; 
    padding: 4rem; 
    box-shadow: -40px 14px 44px rgba(0, 0, 0, .25);
}

.m-highlight-item {
    border-bottom: 1px solid var(--f23-grey-7f7f7f);
}

@media (max-width: 575.98px) {
    .highlight-card {
        padding: 2.25rem 1.75rem;
        font-size: 1rem;
    }
}



.title-xl.font-inter,
.title-lg.font-inter {
    font-family: var(--f23-inter-regular-font);
}

.font-inter {
    font-family: var(--f23-inter-regular-font);
}

.font-w-900 {
    font-weight: 900;
}






.f23-card {
	background-color: #1f1f1f;
	border: 1px solid #3b3b3b;
	border-radius: 1rem;
	position: relative;
	z-index: 2;
    padding: 4rem;
    display: flex;
    height: inherit;
}

.card-item {
    min-height: 39rem;
	background-color: #1f1f1f;
	border: 1px solid #3b3b3b;
	border-radius: 1rem;
	position: relative;
	z-index: 2;
    padding: 2rem;
    overflow: hidden;
    display: flex;
}

    /* @include media-breakpoint-down(md) { */
    @media (max-width: 767.98px) {
		.card-item {
			/* flex-direction: column; */
		}
	}

.card-item--large {
    height: 43rem;
    padding: 4rem;
}

    /* @include media-breakpoint-down(md) { */
    @media (max-width: 767.98px) {
		.card-item--large {
			height: 32rem;
            padding: 2rem;
            min-height: 35rem;

            height: 30rem;
            min-height: 30rem;
		}
	}

.card-item--cta {
    padding-top: 8rem;
    padding-bottom: 8rem;
    padding-left: 4rem;
    padding-right: 4rem;
    height: auto;
    min-height: auto;
}

.card-item:before {
	content: '';
	background: radial-gradient(44.97% 49.4% at 84.26% 25.78%, #383838 0%, #1F1F1F 100%);
	position: absolute;
	top: 0;
    left: 0;
	z-index: 2;
	height: 100%;
	width: 100%;
	border-radius: 1rem;
}

.card-item .lines {
	position: absolute;
	background: linear-gradient(to right, #3b3b3b, transparent 1px);
	background-size: 48px;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 3;
}

.card-item-content {
    color: var(--f23-white-color);
    font-family: var(--f23-inter-regular-font);
    z-index: 5;
    position: relative;
    align-self: flex-start;
}

.card-item-content p {
    margin-bottom: 0;
}

.card-item-content h3,
.card-item-content p {
    font-family: var(--f23-inter-regular-font);
}

.accelerate-graphic,
.amplify-graphic,
.data-eng-graphic {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 4;
    height: inherit;
}



.accelerate-graphic {
    padding: 2rem;
}

.accelerate-graphic img {
    border-radius: 0.85rem;
    box-shadow: 10px 4px 74px rgba(0, 0, 0, .25);
}


.amplify-graphic img {
    top: -10rem;
    max-width: 32rem;
    position: absolute;
    right: -6rem;
    z-index: 4;
    height: inherit;
}

    /* @include media-breakpoint-down(md) { */
    @media (max-width: 767.98px) {
		.amplify-graphic img {
			top: -13rem;
		}
	}

    
    /* @include media-breakpoint-down(md) { */
    /* @media (max-width: 767.98px) {
		.accelerate-graphic,
        .amplify-graphic,
        .data-eng-graphic,
        .optimize-graphic,
        .optimize-graphic img,
        .amplify-graphic img {
            position: relative;
        }
	} */


.accelerate-graphic,
.data-eng-graphic { left: 0; }

.accelerate-graphic svg,
.amplify-graphic svg { height: 100%; }

.amplify-graphic { right: 0; }

.amplify-graphic svg { position: absolute; right: -6rem; }

.unlock-graphic {
    display: flex;
    justify-content: unset;
}

.unlock-graphic svg {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 4;
}

.how-we-solve {
    padding: 8rem; 
    /*background-color: rgba(255, 255, 255, 0.125); 
    background: linear-gradient(141.13deg, rgba(204, 97, 254, 0.84) 3.92%, rgba(131, 97, 254, 0.84) 49.93%, rgba(78, 58, 152, 0.84) 95.95%); 
    /* backdrop-filter: blur(32px);  */
    border-radius: 2rem;
}

/* @include media-breakpoint-down(md) { */
@media (max-width: 767.98px) {
    .accelerate-graphic,
    .data-eng-graphic {
        top: 0;
    }

    .accelerate-graphic {
        top: 0rem;
        padding: 2rem;
    }

    .how-we-solve {
        padding: 4rem 3.5rem;
    }

    .f23-card {
        padding: 2rem;
    }
}


.ai-graphic-img img {
    top: -2rem;
}

/* @include media-breakpoint-down(md) { */
@media (max-width: 767.98px) {
    .ai-graphic-img img {
        top: -3.25rem;
    }
}
/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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


.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* White hover links */
nav.w-h-links a {
    /* color: $f23-grey-cccccc; */
    color: var(--f23-grey-cccccc);    
}

nav.w-h-links a:hover {
    /* color: $f23-white; */
    color: var(--f23-white-color);
}

nav.w-h-links a:focus {
    /* color: $f23-grey-efefef; */
    color: var(--f23-grey-efefef);
}

/* Black hover links */
nav.b-h-links a {
    /* color: $f23-grey-4d4c4d; */
    color: var(--f23-grey-4d4c4d);
}


nav.b-h-links a:hover {
    /* color: $f23-red-da1f27; */
    color: var(--f23-red-da1f27);
}

nav.b-h-links a.active {
    /* color: $f23-red-da1f27; */
    color: var(--f23-red-da1f27);
}

nav.b-h-links.stroke ul li a.nav-link.active {
    /* color: $f23-red-da1f27; */
    color: var(--f23-red-da1f27);
}



nav.stroke ul li a,
.nav-hover--stroke a,
.f23-header nav.stroke ul li {
    position: relative;
}


.nav-hover--stroke a:after,
.f23-header nav.stroke ul li:after a {
    content:'';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    /* background-color: $f23-red-da1f27; */
    background-color: var(--f23-gold-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}

 
.nav-hover--stroke a:hover:after,
.f23-header nav.stroke ul li:hover:after a {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.stroke ul li a.active {
    /* color: $f23-grey-171717; */
    color: var(--f23-gold-color);
}

.stroke ul li a.active:hover {
    /* color: $f23-red-da1f27; */
    color: var(--f23-gold-color);
}

.stroke ul li a.active:after,
nav.stroke ul li.active:after {
    <!--active nav item-->
    content:'';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    /* background-color: $f23-red-da1f27; */
    background-color: var(--f23-gold-color);
    transform-origin: bottom right;
    transition: transform 0.3s;
    transform-origin: bottom left;
    transform: scaleX(1);
}

.stroke ul li a.active:hover:after {
    transform-origin: bottom left;
    transform: scaleX(1);        
}


.nav-hover--stroke a {
    color: inherit;
    text-decoration: none;
}

.nav-link:hover,
.nav-link:focus {
    /* color: $f23-red-da1f27; */
    /* color: var(--f23-red-da1f27); */
}

/* =====================================================================
// =====================================================================
// ========================= Hamburger Icon  ===========================
// =====================================================================
// ===================================================================== */

#hamburger {
	width: 44px;
	height: 44px;
	position: relative;
	cursor: pointer;
	-webkit-appearance: none;
	border: none;
	background-color: transparent;
    border: 0;
    padding: 0;
}

#hamburger span.line {
    background-color: var(--f23-white-color);
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    transition-property: opacity, transform;
}

#hamburger span.line:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger span.line:nth-child(2) {
    top: 9px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger span.line:nth-child(3) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger span.line {
	display: block;
    transition-property: opacity, transform;
    transition: 0.25s ease-in-out;
}

#hamburger.open span.line:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 2px;
	left: 0px;
    transition-property: opacity, transform;
}

#hamburger.open span.line:nth-child(2) {
	/* top: 24px; */
	position: relative;
	opacity: 0;
    transition-property: opacity, transform;
    transition: 0.25s ease-in-out;
}

#hamburger.open span.line:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 19px;
	left: 0px;
    transition-property: opacity, transform;
    transition: 0.25s ease-in-out;
}

#hamburger:hover span.line {
    background-color: var(--f23-gold-color);
    transition: .25s background-color ease-in-out;
    transition: 0.25s ease-in-out;
}

.hamburger-icon {
    position: relative;
    margin: 0 auto;
    display: block;
    width: 24px;
    height: 20px;
}

.global-header-nav,
.page > div:first-child {
    position: sticky;
    left: 0;
    background-color: var(--f23-black-color);
    top: 0;
    width: 100%;
    z-index: 1100;
}

.global-navbar .nav-link {
    color: var(--f23-white-color);
    margin-right: 1.5rem;
    padding: 0;
}

.global-navbar .nav-link:hover {
    background-color: transparent;
    color: var(--f23-gold-color);
}

.global-navbar .nav-link:focus {
    /* color: $f23-red-da1f27; */
    /* color: var(--f23-red-da1f27); */
    color: var(--f23-gold-color);
}

.global-header-nav .navbar-nav a.nav-link.active, 
.global-header-nav .navbar-nav a.nav-link.show,
nav.stroke ul li.active {
    color: var(--f23-white-color);
}

.f23-header {
    position: relative;
}



.highlights-sticky {
    top: 6rem;
}








.header__container {
    align-items: center;
    justify-content: center;
}

@media (max-width: 575.98px) {
    .header__container {
        align-items: flex-start;
        justify-content: flex-start;
        padding-left: 2rem;
    }

    .header__logo {
        margin-left: 0;
    }

    .hs-menu-wrapper {
        display: none;
    }
}

@media (max-width: 767px) {
    .header__logo {
        margin: 0;
        margin-left: 0;
    }

    #hamburger {
        margin-left: auto;
    }
}





nav.stroke ul li a,
.nav-hover--stroke a,
.f23-header .hs-menu-wrapper ul li a {
    position: relative;
}

.f23-header .hs-menu-wrapper ul li a:hover,
.stroke ul li.active:hover a {
    color: var(--f23-gold-color);
    transition: color .3s ease;
}

nav.stroke ul li a:after,
.nav-hover--stroke a:after {
    content:'';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--f23-gold-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}

nav.stroke ul li a:hover:after,
.nav-hover--stroke a:hover:after,
.f23-header .hs-menu-wrapper ul li a:hover:after,
nav.stroke ul li.active a:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}







.f23-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
}  

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

  @media (max-width: 767.98px) {
    .f23-header .hs-menu-wrapper ul {
        display: none;
    }
   }



  .f23-header .hs-menu-wrapper ul li:not(:last-child) {
    margin-right: 1.25rem;
  }

  .f23-header .hs-menu-wrapper ul li a {
    color: var(--f23-white-color);
  }
  
  /* Horizontal menu */
  
  .hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
    flex-direction: column;
  }
  
  @media (max-width: 767px) {
    .hs-menu-wrapper.hs-menu-flow-horizontal ul {
      flex-direction: column;
    }

    .header__container {
        flex-direction: row;
        padding-right: 2rem;
        padding-top: 0;
        align-items: center;
        justify-content: flex-start;
    }

    .cta-offcanvas {
        min-width: 97vw;
        max-width: 97vw;
    }
  }






  .popover-menu {
    background-color: var(--f23-black-color);
    height: 100vh;
    overflow-x: scroll;
}

.popover-menu .nav-item {
    position: relative;
}

.offcanvas {
    z-index: 1101;
}


.popover-menu .offcanvas-footer {
    border-top: 1px solid var(--f23-grey-cccccc);
    padding: 2rem 0;
    margin-top: 8rem;

    /* @include media-breakpoint-down(md) { */
    @media (max-width: 767.98px) {
        margin-top: 2rem;
    }
}

.popover-menu .offcanvas-header,
.popover-menu .offcanvas-body {
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

.popover-menu .offcanvas-header .nav-link,
.popover-menu .offcanvas-body .nav-link {
    padding-left: 0;
    padding-right: 0;
    color: var(--f23-white-color);
    position: relative;
    display: inline-flex;
}

.popover-menu .offcanvas-header .title-md,
.popover-menu .offcanvas-body .title-md {
    font-family: var(--f23-inter-regular-font);
    font-weight: var(--f23-inter-font-weight-600);
}

.popover-menu .offcanvas-body {
    overflow-y: unset;
}

.popover-menu .stroke ul li a {
    color: var(--f23-white-color);
}

    
.popover-menu .nav-hover--stroke a {
    color: inherit;
    text-decoration: none;
}

.popover-menu .nav-link:hover,
.popover-menu .nav-link:focus {
    color: var(--f23-white-color);
}

.popover-menu .stroke ul li a.active {
    color: $f23-white;
}

.popover-menu .stroke ul li a.active:hover {
    color: var(--f23-white-color);
}

.popover-menu .stroke ul li a.active:hover:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.popover-menu .stroke ul li a.active:after {
    content:'';
        position: absolute;
        width: 100%;
        height: 1px;
        bottom: 0;
        left: 0;
        background-color: var(--f23-red-da1f27);
        transform-origin: bottom right;
        transition: transform 0.3s;
        transform-origin: bottom left;
        transform: scaleX(1);
}





.popover-menu nav.stroke ul li a,
.pop0ver-menu .nav-hover--stroke a {
    position: relative;
    color: var(--f23-grey-cccccc);
}


.popover-menu nav.stroke ul li a:after,
.pop0ver-menu .nav-hover--stroke a:after {
    content:'';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--f23-red-da1f27);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}

.popover-menu nav.stroke ul li a:hover:after,
.pop0ver-menu .nav-hover--stroke a:hover:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}


.header__logo--main {
    padding-top: 0; 
}

.header__logo {
    overflow: visible; 
}

.header ul.navbar .nav-item {
    margin-bottom: 0;
}

.global-header-nav .navbar-nav .nav-item,
.f23-header .header__container .hs-menu-item a {
	font-size: 1.25rem;
}




.cta-offcanvas {
    max-width: 40rem;
    width: 97vw;
    box-shadow: -190px 4px 104px rgba(0, 0, 0, .80); 
    color: var(--f23-black-color);
    background-color: var(--f23-white-color);
    min-width: 31.25rem;
}

.cta-offcanvas p {
    color: var(--f23-grey-4d4c4d);
    font-size: 1rem!important;
}

.cta-offcanvas .offcanvas-header,
.cta-offcanvas .offcanvas-body {
    padding-left: 2rem;
    padding-right: 2rem;
}

.offcanvas-header {
    padding-bottom: 0rem;
}

@media (max-width: 767px) {
    .cta-offcanvas {
        min-width: 97vw;
        max-width: 97vw;
    }
  }

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

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

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

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