/* Theme base styles */

/* Fonts
Brand fonts variables for easy reuse.
*/

﻿@font-face {
    font-family: 'Klavika';
    src: url('KlavikaWebBasic_EOT/KlavikaWebBasicRegular.eot');
    src: url('KlavikaWebBasic_WOFF/KlavikaWebBasicRegular.woff') format('woff');       
}

@font-face {
    font-family: 'Klavika-Light';
    src: url('KlavikaWebBasic_EOT/KlavikaWebBasicLight.eot');
    src: url('KlavikaWebBasic_WOFF/KlavikaWebBasicLight.woff') format('woff');       
}

@font-face {
    font-family: 'Klavika-Bold';
    src: url('KlavikaWebBasic_EOT/KlavikaWebBasicBold.eot');
    src: url('KlavikaWebBasic_WOFF/KlavikaWebBasicBold.woff') format('woff');
}

@font-face {
    font-family: 'Clarendon-Regular';
    src: url('Clarendon-Text-Pro/ClarendonTextPro-Regular.eot');
    src: url() ;
    
    /* src: url(); */
    /* src: url('Clarendon-Text-Pro/ClarendonTextPro-Regular.woff') format('woff'); */
    /* src: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/fonts/Clarendon-Text-Pro/ClarendonTextPro-Regular.woff%20format%28%27woff%27%29); */
    /* src: url('Clarendon-Text-Pro/ClarendonTextPro-Regular.woff2') format('woff2'); */
}

/* @font-face {
    font-family: 'Clarendon-Bold';
    src: url('Clarendon-Text-Pro/ClarendonTextPro-Bold.eot');
    src: url('Clarendon-Text-Pro/ClarendonTextPro-Bold.woff') format('woff');
} */

/* 0. Design Tokens
Design token variables for easy reuse.
*/

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

/* 1. Settings
Settings are used for things like type..
*/

@import "../0_Design-Tokens/designtoken.colors";


/* Klavika fonts
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++*/


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

.font-c { font-family: var(--f23-clarendon-regular-font); }
.font-c-b { font-family: var(--f23-clarendon-bold-font); }

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


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

/* @include media-breakpoint-down(md) { */
    @media (max-width: 767.98px) {
        p,
        .body-text {
            font-size: 1rem;
        }
    }

p.smaller-text,
.body-text.smaller-text {
    font-size: 1rem;
}


.title-needs-hr::before {
    background: var(--f23-red-da1f27);
    content: "";
    height: 2px;
    width: 122px;
    position: absolute;
    top: -2.37rem;
}

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

    /* @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%;
    
    /* @include media-breakpoint-down(md) {
    @media (max-width: 767.98px) {
        font-size: 2.5rem;
    } */
    
}

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

.title-md {
    /* color: var(--f23-black-color); */
    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-clarendon-regular-font); */
    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-clarendon-regular-font); */
    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;
}
html {
    scroll-behavior: smooth;
    text-rendering: geometricPrecision;
    font-size: 1rem!important;
}

*: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-grey-171717);
    font-size: 1.25rem;
}

.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(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/world-map.svg);
    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); }


.container-extended {
	width: 100%;
    max-width: 1600px;
    margin: auto;
    border-radius: 1rem;
}

.container-extended.with-lg-circles {
	background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/Circles-lg.svg);
	background-position: 0%;
    background-size: contain;
    background-repeat: no-repeat;
}

.h-circles-lg-red {
    position: relative;
}

.h-circles-lg-red::before {
    content: '';
    background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/Circles-lg-red.svg);
    background-position: 0% top;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 32rem;
    height: 100%;
    /* max-width: 26rem; */
}

.blk-5px-line {
	height: 5px;
	background-color: var(--f23-black-color);
	margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
	.container-extended.f23-blk-bg::before,
	.container-extended.f23-blk-bg::after {
		display: none;
		content: none;
		width: 0;
	}

	.container-extended {
		border-radius: 0;
	}

	.container-extended.with-lg-circles {
		background-size: cover;
	}

	.blk-5px-line {
		margin-bottom: 1rem;
	}

    .h-circles-lg-red::before {
        width: 16rem;
    }
}



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

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

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

/* 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;
  /* Dan */
  background-color: blue;
  /* end dan */
}



  .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 {
    position: relative;


    /* &:hover {
        &:after {
            transform-origin: bottom left;
            transform: scaleX(1);
        }
    } */
}

nav.stroke ul li a:after,
.nav-hover--stroke a:after {
    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.stroke ul li a:hover:after, 
.nav-hover--stroke a:hover:after {
    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 {
    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 {
    color: var(--f23-white-color);
}





.highlights-sticky {
    top: 6rem;
}

.global-header-nav ul li {
	margin-bottom: 0;
}
/* // 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(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/circles.svg);
    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(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/case%20studies/allmed-home-bg.png);
    background-size: cover;
}

.superior-home-cs {
    background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/case%20studies/superior-home-bg.png);
    background-size: cover;
}

.allmed-home-cs {
    background-image: url("/img/allmed-home-bg.png");
    background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/case%20studies/allmed-home-bg.png);
    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;
    }
}
footer {
    color: var(--f23-white-color);
    padding-bottom: 4rem;

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

.locations .col {
    padding: 8rem;
    border: 2px solid var(--f23-black-color);

    /* @include media-breakpoint-down(sm) */
    @media (max-width: 767.98px) {
        padding: 4rem;
    }
}
.cs-block {
    background-color: var(--f23-white-color);
    padding: 5rem;
    border-radius: .5rem;
    box-shadow: 0 14px 34px #e0e0e0;
    transition: box-shadow .25s ease-in-out;

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

.cs-block:hover {
    box-shadow: 0 24px 54px var(--f23-grey-7f7f7f);
}

.ame-challenge-img img {
    position: absolute; 
    bottom: -3rem; 
    right: 0rem;

    /* @include media-breakpoint-down(sm) */
    @media (max-width: 575.98px) {
        position: relative;
        bottom: 0;
        right: 1rem;
    }
}

.fence360-challenge-img img {
    position: absolute; 
    bottom: 0; 
    right: -36px;

    /* @include media-breakpoint-down(sm) */
    @media (max-width: 575.98px) {
        position: relative;
        bottom: 0;
        right: -48px;
    }
}

.ges-intro-cs-block .cs-block-img {
    padding-right: 6rem;

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

.ges-intro-cs-block .cs-block-img img {
    margin-left: 12px;
}

.cs-workcard {
    padding: 4rem;
    z-index: 3;
}

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

.cs-workcard-fff {
    background-color: var(--f23-white-color);
}

.h-fence-cs,
.h-ame-cs,
.cs-workcard {
    position: relative;
}

.h-fence-cs .img {
   position: absolute;
   right: 0;
   top: 0;
   z-index: 0;
   object-fit: cover;
   height: 100%;
   max-width: 65rem;
}

.h-ame-cs .img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

@media (max-width: 575.98px) {
    .cs-workcard {
        padding: 3rem;
    }
}

.challenge-area {
    padding: 8rem;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 24px 44px rgba(218, 31, 39, .33);
    margin-top: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 575.98px) {
    .challenge-area {
        padding: 2rem;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.ame-bg {
    background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/case%20studies/ame/ame-the-challenge-area-white-background.jpg);
    background-size: cover;
}

.suddath-bg {
    background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/case%20studies/Suddath/suddath-challenge-area.jpg);
    background-size: cover;
}

.fence-bg {
    background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/case%20studies/fence360/fence360-the-challenge-area.jpg);
    background-size: cover;
}

.ame-phone {
    max-width: 23rem;
    width: 100%;
    margin: auto;
}

.pic-offset {
    position: absolute; 
    right: -11rem;
}



.testimonial {
    /* background-color: var(--f23-grey-f7f7f7); */
    padding: 4rem;
    border: 1px solid var(--f23-grey-3b3b3b);
    border-radius: 1.25rem;
    box-shadow: 0 54px 44px rgba(0, 0, 0, .55);
    /* Black Radial Gradient */
    background: radial-gradient(44.97% 49.4% at 84.26% 25.78%, #383838 0%, #1F1F1F 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    color: var(--f23-white-color);
}

.cs-cta {
    height: 42rem;
    width: 100%;
    border-radius: 1.25rem;
    background-color: var(--f23-gold-color);
    padding: 3.25rem;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.cs-cta h2 {
    font-weight: var(--f23-inter-font-weight-900);
}


.cta-img {
    position: absolute;
    left: 0;
    z-index: 0;
    bottom: 0px;
}

@media (max-width: 575.98px) {
    .testimonial {
        padding: 2rem;
    }
    
    .pic-offset {
        position: relative;
        right: 0;
    }

    .cs-cta {
        height: 37rem;
        padding: 2.25rem;
    }
}
.section {
    padding-top: 8rem;
    padding-bottom: 8rem;

    /* @include media-breakpoint-down(sm) { */
    /* @media (max-width: 575.98px) {
        padding-top: 4rem;
        padding-bottom: 4rem;
    } */
}

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

    /* @include media-breakpoint-down(sm) { */
    /* @media (max-width: 575.98px) {
        padding-top: 4rem;
        padding-bottom: 4rem;
    } */
}

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

.services-grid {
    display: grid; 
    grid-auto-columns: 1fr; 
    grid-template-rows: auto; 
    grid-column-gap: 2rem; 
    grid-row-gap: 2rem; 
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
    z-index: 1;
}


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

    .services-grid {
        grid-column-gap: 0; 
        grid-row-gap: 1rem;
        grid-template-columns: 1fr;
    }
}
.popover-menu {
    background-color: var(--f23-black-color);
    height: 100vh;
    overflow-x: scroll;
}

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

.offcanvas {
    z-index: 1101;
}


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

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

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

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

.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);
}
.strips {
    border-top: 1px solid var(--f23-red-da1f27);
}

.strip {
    padding: 0.75rem;
    border-bottom: 1px solid var(--f23-red-da1f27);
    background-color: var(--f23-white-color);
    display: flex;
    align-items: center;
}

.strip .hover:hover {
    background-color: var(--f23-grey-efefef);
}

.job-listing:not(:first-child) {
    margin-top: -1px;
}

.job-listing {
    background-color: var(--f23-white-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: color .25s ease, box-shadow .25s ease;
    display: block;
}

.job-listing:hover {
    box-shadow: 
        0 50px 100px -20px rgb(50 50 93 / 25%), 
        0 30px 60px -30px rgb(0 0 0 / 30%);
}

.job-listing:not(:last-child) {
    margin-bottom: 1rem;
}
    

.job-listing a {
    color: inherit;
    text-decoration: none;
    padding: 2rem;
    display: flex;
    transition: color .25s ease, box-shadow .25s ease;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-listing a .icon {
    opacity: 0;
    transform: translateX(-1rem);
    transition: transform .25s ease, opacity .25s ease;

    /* @include media-breakpoint-down(sm) { */
    @media (max-width: 575.98px) {
        opacity: 1;
        transform: translateX(0);
    }
}
        

.job-listing a:hover {
    color: var(--f23-red-da1f27);
}

.job-listing a:hover .icon {
    transform: translateX(0);
    opacity: 1;
}

.list-on-dark-bg .list-item {
    border-color: var(--f23-grey-7f7f7f);
    color: var(--f23-white-color);
}

.list-item {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid transparent;
    display: flex;
}

.list-on-dark-bg .list-item:last-child {
    border-color: var(--f23-grey-7f7f7f);
}

.list-item:last-child {
    border-bottom: 1px solid transparent;
}

.stick-outcome {
    top: 6rem;
    z-index: 99;
}

.outcome-group:not(:last-child) {
    margin-bottom: 8rem;
}



.highlight-strip {
    color: var(--f23-white-color);
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 2rem 0;
}

.highlight-list .highlight-strip:not(:last-child) {
    border-bottom: 1px solid var(--f23-grey-7f7f7f);
}
.newsstand-article {
    position: relative;
    display: flex; 
    flex-direction: column; 
    padding: 4rem 2.5rem 2.5rem 2.5rem; 
    box-shadow: 0 4px 14px #e0e0e0; 
    border-radius: 1.5rem; 
    color: var(--f23-black-color);
    text-decoration: none;
    transition: box-shadow .25s ease-in-out;
}

.newsstand-article img {
    border-radius: 1.5rem;
}

.newsstand-article:hover {
    /* box-shadow: 0 24px 44px var(--f23-grey-7f7f7f); */
    box-shadow: 0 24px 44px rgba(218, 31, 39, .33);
}

.newsstand-article:hover .stroke-link  {
    border-color: inherit;
}

.newsstand-article .stroke-link {
    display: flex;
    align-items: center;
    transition: transform .25s ease-in-out, border .25s ease-in-out;
}

.newsstand-article .stroke-link .bi {
    transition: transform .25s ease-in-out, border .25s ease-in-out;
}

.newsstand-article:hover .stroke-link .bi {
    transform: translateX(1rem);
    transition: transform .25s ease-in-out, border .25s ease-in-out;
}
.insight-card {
    /* background-color: rgba(0, 0, 0, .02); */
}

.insight-card-cta {
    display: block;
    /* padding: 2rem; */
    text-decoration: none;
    color: inherit;
}

.insight-card-title {
    /* font-family: var(--f23-klavika-bold-font); */
    font-family: var(--f23-inter-regular-font);
    font-weight: var(--f23-inter-font-weight-900);
    font-size: 1.75rem;
    letter-spacing: -0.03rem;
    line-height: 125%;
}

.hs-blog-listing > div,
.hs-blog-post > div {
    position: sticky;
    left: 0;
    background-color: var(--f23-white-color);
    top: 0;
    width: 100%;
    z-index: 1000;
}

.blog-post__tag-link,
.blog-post__tag-link.list-inline-item {
    font-size: 0.675rem;
    font-family: var(--f23-inter-regular-font);
    text-transform: uppercase;
    color: var(--f23-red-da1f27);
}






.insight-card-cta {
    position: relative;
    display: flex; 
    flex-direction: column; 
    padding: 2.5rem; 
    background-color: var(--f23-grey-2b2b2b);
    /* box-shadow: 0 4px 14px #e0e0e0;  */
    border-radius: 1.5rem; 
    color: var(--f23-white-color);
    border: 1px solid var(--f23-grey-3b3b3b);
    text-decoration: none;
    transition: box-shadow .25s ease-in-out;
}

.insight-card-title {
    color: var(--f23-white-color);
}

.blog-list-index {
    background-color: var(--f23-black-color);
    color: var(--f23-grey-cccccc);
}

.blog-list-index h1, 
.blog-list-index h2,
.blog-list-index h3,
.blog-list-index h4 {
    color: var(--f23-white-color);
}


.blog-list-index a,
.blog-post__meta a, 
.blog-post__tag-link {
    color: var(--f23-gold-color)!important;
}

.newsstand-article img {
    border-radius: 1.5rem;
}

.insight-card-cta .non-link-cta {
    border: none;
    padding-bottom: 0;
}


.insight-card-cta:hover {
    /* box-shadow: 0 24px 44px var(--f23-grey-7f7f7f); */
    box-shadow: 0 24px 44px rgba(218, 31, 39, .33);
}


.insight-card-cta:hover .non-link-cta {
    border-color: inherit;
}

.insight-card-image img {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}


.insight-card-cta .non-link-cta {
    display: flex;
    align-items: center;
    transition: transform .25s ease-in-out, border .25s ease-in-out;
}


/* .insight-card-cta .stroke-link .bi, */
.insight-card-cta .bi {
    transition: transform .25s ease-in-out, border .25s ease-in-out;
}


/* .insight-card-cta:hover .stroke-link .bi, */
.insight-card-cta:hover .bi {
    transform: translateX(1rem);
    transition: transform .25s ease-in-out, border .25s ease-in-out;
}

.body-container--blog-post ul li,
ul li {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.body-container--blog-post ul li::marker,
ul li::marker {
    color: var(--f23-gold-color);
}


@media (max-width: 575.98px) {
    .body-container--blog-post {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .body-container--blog-post ul li {
        font-size: 1rem;
    }
}

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

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

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

/* 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;
    } */ */
/* 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;
}
a {
    color: var(--f23-red-da1f27);
    transition: color .25s ease, background-color .25s ease;
}

a:hover { color: inherit; }

/* a:hover {
    color: var(--f23-black-color);
} */

.contact-career-link {
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: var(--f23-black-color);
}

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

.stroke-link {
    text-decoration: none;
    border-bottom: 1px solid var(--f23-red-da1f27);
    padding-bottom: 0.5rem;
}

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

.skip-link-btn {
    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;
}

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

.skip-link-btn:focus-within {
    transform: translateY(70px);
    opacity: 1;
    z-index: inherit;
}

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

.stroke-link .bi {
    transform: translateX(0);
}

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




.breadcrumb {
    align-items: baseline;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--f23-grey-cccccc);
    /* font-family: var(--f23-klavika-light-font); */
    font-family: var(--f23-inter-font-weight-300);
    font-size: 0.875rem;
    float: none;
}

.breadcrumb-item a {
    color: var(--f23-black-color);
    /* font-family: var(--f23-klavika-bold-font); */
    font-size: 0.875rem;
    border-bottom: 1px solid var(--f23-grey-7f7f7f);
    text-decoration: none;
    transition: border-color .25s ease, color .25s ease;
}

.breadcrumb-item a:hover {
    color: var(--f23-red-da1f27);
    border-bottom-color: var(--f23-red-da1f27);
}

.breadcrumb-item.active {
    color: var(--f23-red-da1f27);
    /* font-family: var(--f23-klavika-bold-font); */
    font-size: 0.875rem;
    font-weight: var(--f23-inter-font-weight-900)
}


.breadcrumbs.dark-bg .breadcrumb-item a {
    color: var(--f23-grey-cccccc);

    &:hover {
        color: var(--f23-gold-color);
        border-bottom-color: var(--f23-gold-color);
        
    }

}

.breadcrumbs.dark-bg .breadcrumb-item.active {
    color: var(--f23-gold-color);
}


.link-with-bottom-border {
    color: var(--f23-black-color);
    font-family: var(--f23-klavika-light-font);
    border-bottom: 1px solid var(--f23-grey-cccccc);
    text-decoration: none;
    transition: border-color .25s ease, color .25s ease;
}

.link-with-bottom-border:hover {
    color: var(--f23-red-da1f27);
    border-bottom: 1px solid var(--f23-red-da1f27);
    transition: border-color .25s ease, color .25s ease;
}






.highlights-links .nav-link {
    border-bottom: 1px solid transparent;
    padding-bottom: 0.25rem;
    color: var(--f23-grey-7f7f7f);
    transition: border .25s ease, color .25s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    &.active {
        border-bottom-color: var(--f23-gold-color);
        color: var(--f23-gold-color);
    }
}

.highlights-links li {
    display: block;
    width: 100%;
}

.highlights-links .nav-link .bi {
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease, transform .5s ease;
    margin-left: auto;
    transform: translateX(-150%);
    font-size: 2rem;
}

.highlights-links .nav-link.active .bi {
    opacity: 1;
    visibility: visible;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    color: inherit;
    transform: translateX(0);
}

@media (max-width: 575.98px) {
    .highlights-links {
        display: none;
    }
}
.red-line {
    border-top: 1px solid var(--f23-red-da1f27);
    border-bottom: none;
    border-right: none;
    border-left: none;
    width: 8rem;
}



/* // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
//
// New Masthead code
// 
//
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.masthead-content {
	padding: 4rem;
	box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
	grid-column: 1 / 7;
	left: 0;
	z-index: 1;
	background-color: var(--f23-white-color);
	align-self: center;

    /* @include media-breakpoint-down(md) { */
    @media (max-width: 767.98px) {
        grid-column: 1 / 13;
        box-shadow: none;
        padding: 2rem 0 0 0;
    }

    /* @include media-breakpoint-only(md) { */
        @media (min-width: 768px) and (max-width: 991.98px) {
        grid-column: 1 / 9;
        box-shadow: none;
        padding: 2.75rem;
        box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
    }

}

.masthead-wrapper {
	display: grid;
	grid-gap: 2rem;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 1rem;
	position: relative;
}

.masthead-content,
.masthead-image {
	grid-row: 1 / 2;

    /* @include media-breakpoint-down(md) { */
    @media (max-width: 767.98px) {
        grid-row: auto;
    }
}
.masthead-image {
	height: 36rem;
	grid-column: 4 / -1;
	object-fit: contain;

    /* @include media-breakpoint-down(md) { */
    @media (max-width: 767.98px) {
        grid-column: 1 / 13;
        height: 18rem;
    }
}

.masthead-image.offset {
    background-color: $f23-grey-efefef;
}

.masthead-image.black-bg {
    background-color: $f23-grey-171717;
}

.masthead-image img {
    object-fit: cover;
    width: 100%;
    height: 36rem;
    
    /* @include media-breakpoint-down(md) { */
    @media (max-width: 767.98px) {
        height: 18rem;
    }
}

.biz-value-section {
    background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/biz-value-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.home-masthead {
    background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/home-masthead-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
}

.freq-outcomes {
    /* margin-top: -4rem; */
}

.outcomes-list {
    margin-top: -2rem;
}

/* .outcomes-masthead img {
    max-width: 21rem;
}

@media (max-width: 767.98px) {
    .outcomes-masthead img {
        width: 100%;
    }

    .outcomes-masthead {
        padding-bottom: 0;
    }
} */
.f23-badge {
    background-color: var(--f23-white-color);
    color: var(--f23-black-color);
    padding: .5rem 1rem;
    border: 1px solid var(--f23-grey-7f7f7f);
    border-radius: 1000rem;
    font-family: var(--f23-klavika-light-font);
    font-weight: unset;
}

.tech-badges .f23-badge {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}
.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);
}
.callout-bar {
    padding: 4rem;
    border-radius: .85rem;
    transition: box-shadow .3s ease-in-out, transform .3s ease-in-out;
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, .08);
    color: var(--f23-black-color);
    /* background-color: rgba(0, 0, 0, .05); */
}

.callout-bar:hover {
    box-shadow: 0 2rem 2rem rgba(0, 0, 0, .22);
    /* transform: scale(1.015); */
}

.callout-bar.red-bar {
    box-shadow: 0 1.5rem 1.5rem rgba(218, 31, 39, 0.40);
}

.callout-bar.red-bar:hover {
    box-shadow: 0 2rem 2rem rgba(218, 31, 39, 0.56);
    transform: scale(1.015);
}
label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-element,
.form-control,
.form-select,
.hs-form-field input,
.hs-input {
    color: inherit!important;
    border-color: var(--f23-grey-cccccc)!important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16)!important;
}

.form-element:focus,
.form-control:focus,
.form-select:focus {
    border-color: var(--f23-red-da1f27);
    color: inherit;
    box-shadow: 0 0 0 0.25rem rgba(0, 99, 204, .25);
}

.check-out-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 3rem 2rem 1rem 1rem;
    background-color: var(--f23-grey-efefef);
    border: 1px solid transparent;
    transition: box-shadow .25s ease, border .25s ease, background-color .25s ease;
    font-family: var(--f23-klavika-light-font);
    font-weight: 500;
    /* letter-spacing: -1px; */
}

.check-out-input:hover,
.check-out-input:focus {
    border-bottom-color: var(--f23-red-da1f27);
    box-shadow: 0 1rem 2rem rgb(0 0 0 / 12%);
    background-color: var(--f23-white-color);
}

.check-out-input:focus-visible {
    outline: 0px;
}

.check-out-label {
    z-index: 2;
    position: absolute;
    padding: 1rem 1rem 0 1rem;
    font-size: small;
    /* letter-spacing: -1px; */
    color: var(--f23-grey-4d4c4d);
    font-family: var(--f23-klavika-light-font);
 }



 .validation-error {
    color: var(--f23-red-da1f27);
    margin-bottom: 0;
    font-size: 0.875rem;
 }

.validation-error.needs-validating {
    display: block;
}





.f23-checkbox {
    display: flex;
    align-items: center;
}


.f23-checkbox-input {
    position: absolute;
    left: -99999999px;
}

.f23-checkbox-label {
    font-size: 1rem;
    color: var(--f23-black-color);
    font-family: var(--f23-klavika-light-font);
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0;
    cursor: pointer;
}

.f23-checkbox-label::before {
    content: "";
    border: 1px solid var(--f23-grey-cccccc);
    background-color: var(--f23-grey-efefef);
    height: 1rem;
    width: 1rem;
    left: 0;
    position: absolute;
    top: 1px;
    transition-duration: .25s;
    transition-property: background-color, border-color;
    transition-timing-function: ease;
}

.f23-checkbox-input:checked+.f23-checkbox-label::before {
    background-color: var(--f23-red-da1f27);
    border-color: var(--f23-red-da1f27);
}

.f23-checkbox-input:focus + .f23-checkbox-label::before {
    background-color: var(--f23-light-red-ff696f);
    border-color: var(--f23-red-da1f27);
}

.input-validation-error {

}

/* Product design page */
.pd-contact-form {
    max-width: 30rem;
    border-top: 1rem solid var(--f23-red-da1f27);
    border-radius: 0.5rem;
    top: -1rem;
    position: absolute;
    right: 0;
    background-color: var(--f23-white-color);
    width: 100%;

    
    /* @include media-breakpoint-down(md) { */
    @media (max-width: 575.98px) {
        position: relative;
        top: 0;
    }
}

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

/* /* Missing Template at Path: \'hubspot-playground\/hs-f23-site\/css\/4.generic\/_reset.css\' */ */
/* /* Missing Template at Path: \'hubspot-playground\/hs-f23-site\/css\/4.generic\/_normalize.css\' */ */

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

/* 6. Templates

*/

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

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



/* 9. Utilities
New 2024 Design page here for now
*/

/* 2024 new design */
.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;
}


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

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

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

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

.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(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/home/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);
}

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

.h-wavy-lines {
    background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/home/wavy-lines.svg);
    background-size: cover;
    position: absolute;
    left: 0;
    width: 100%;
    background-repeat: no-repeat;
    top: -12rem;
    height: 100%;
    opacity: .32;
}

/* @include media-breakpoint-down(md) { */
@media (max-width: 767.98px) {
    .h-wavy-lines {
        top: 8rem;
    }
}





.footer-2024 {
    background-color: #0A0A0A;
    background-color: var(--f23-black-color);
    position: relative;
    padding: 6rem;
    border-radius: 2.5rem;
    background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hubspot-playground/hs-f23-site/images/home/footer-bg-img.svg);
    background-size: cover;
    background-position: top;
    box-shadow: 0 67px 68px rgba(0, 0, 0, .29);
    
}

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

/* .the-footer nav a {
    font-size: 1rem;
} */

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

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

.cta-card .grad-line {
    position: absolute; 
    width: 100%; 
    height: 2px; 
    top: 0; 
    z-index: 2; 
    background-image: linear-gradient(90deg, rgba(218, 31, 39, 0) 0%, #DA1F27 29.25%, #DA1F27 72.5%, rgba(218, 31, 39, 0) 100%);
}

.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%);
}

.cta-card .cta-graphic {
    position: absolute; 
    top: 0; 
    left: 0; 
    z-index: 2;
}

.ai-graphic-img img,
.optimize-graphic img {
    z-index: 4; 
    position: absolute; 
    max-width: 80%; 
    display: flex;
    align-self: center; 
    left: 50%; 
    transform: translateX(-50%);
}

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

/* @include media-breakpoint-down(md) { */
@media (max-width: 767.98px) {
    .ai-graphic-img img {
        top: -3.25rem;
    }
}
.ai-masthead {
  background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hs-f23-site/images/ai-survey-graphic.png); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.scroll-spacer{
  scroll-margin-top: 0;
}

@media (max-width: 767px) {
  .scroll-spacer {
    scroll-margin-top: 1.75rem;
  }
}


/* .progress-section {
  background-color: var(--f23-grey-2b2b2b);
  padding: 1.5rem;
}

@media (max-width: 767px) {
  .progress-section {
    padding: .25rem;
  }
}

.progress-section .progress {
  background-color: var(--f23-grey-efefef);
  height: 0.5rem;
}

.progress-section .progress .progress-bar {
  background-color: var(--f23-red-da1f27);
  height: 0.5rem;
} */




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

.tiny-heading {
  font-size: calc(.7rem + 0.25vw) !important;
  font-weight: 700;
  letter-spacing: .16rem;
  color: var(--f23-grey-7f7f7f);
}


.question-block {
  padding-top: 8rem;
}

@media (max-width: 480px) {
  .question-block {
    padding-top: 4rem;
  }

}

.question {
  color: var(--f23-grey-2b2b2b);
  padding-left: calc(1rem + 0.5vw);
  padding-right: calc(1rem + 0.5vw);
}

@media (max-width: 480px) {
  .question {
    padding: 0;
  }

}

.ai-contact-form {
  padding-left: calc(1rem + 0.5vw);
  padding-right: calc(1rem + 0.5vw);
  padding-bottom: 2rem;
  color: var(--f23-grey-2b2b2b);

}

@media (max-width: 480px) {
  .ai-contact-form {
    padding-left: 0;
    padding-right: 0;
  }

}




/* Custom Form Control CSS*/

.form-selector {
  position: relative;
}

.rad-label {
  display: flex;
  align-items: flex-start;
  padding: calc(1rem + 0.5vw);
  box-shadow: none;
  cursor: pointer;
  border-radius: .5rem;
}

.rad-label:hover {
  box-shadow: 0px 0px 15px 0px rgba(117, 114, 114, 0.25);
}

.rad-input:focus-visible~.rad-label {
  outline: 3px solid var(--f23-red-da1f27);
  outline-offset: 3px;
  border-radius: 0.25rem;
  transition: 0.30s outline ease, 0.30s border-radius ease;
}

.rad-input {
  opacity: 0;
  position: absolute;
}

.rad-text {
  color: var(--f23-grey-4d4c4d);
  margin-left: 1rem;
  font-size: 1.125rem;
  font-weight: 400;
}

.rad-icons {
  display: flex;
  align-items: center;
  transform: translateY(0.1rem);
  color: var(--f23-grey-cccccc);
}

.rad-icons .inactive {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hs-f23-site/images/radio-unchecked.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}



.rad-icons .active {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(//8891792.fs1.hubspotusercontent-na1.net/hubfs/8891792/raw_assets/public/hs-f23-site/images/radio-checked.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.form-selector .rad-input:checked~.rad-label .rad-icons .active {
  display: block;
  color: var(--f23-red-da1f27);
}

.form-selector .rad-input:checked~.rad-label .rad-icons .inactive {
  display: none;
}

.rad-input:checked~.rad-label .rad-text {
  color: var(--f23-grey-2b2b2b);
  font-weight: 500;
}

.form-selector .rad-input:checked~.rad-label {
  background-color: #fff;
}


.ai-contact-form input[type=text] {
  color: var(--f23-grey-2b2b2b);
  box-shadow: none;
  border: solid 1px #cccccc;
  border-radius: 3px;
  padding: 1rem;
  display: flex;
  width: 100%;
}

.ai-contact-form input[type=email] {
  color: var(--f23-grey-2b2b2b);
  box-shadow: none;
  border: solid 1px #cccccc;
  border-radius: 3px;
  padding: 1rem;
  display: flex;
  width: 100%;
}

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


.text-input:focus {
  outline: 3px solid var(--f23-red-da1f27);
  outline-offset: -1px;
  border-radius: 0.25rem;
  transition: 0.30s outline ease, 0.30s border-radius ease;
}

.submit-form input[type=submit] {
  border-radius: 0;
  font-size: 1rem;
  font-family: var(--f23-inter-regular-font);
  background-color: var(--f23-red-da1f27);
  color: var(--f23-white-color);
}

.submit-form input[type=submit]:hover {
  background-color: var(--f23-grey-2b2b2b);
}

.submit-form input[type=submit]:focus-visible {
  background-color: var(--f23-grey-2b2b2b);
  outline: 3px solid var(--f23-red-da1f27);
  outline-offset: 3px;
  border-radius: 0.25rem;
  transition: 0.30s outline ease, 0.30s border-radius ease;
}

.submit-form input[type=submit]:focus {
  background-color: var(--f23-grey-2b2b2b);
  outline: 3px solid var(--f23-red-da1f27);
  outline-offset: 3px;
  border-radius: 0.25rem;
  transition: 0.30s outline ease, 0.30s border-radius ease;
}

.submit-form input[type=submit]:active {
  color: var(--f23-white-color);
  background-color: var(--f23-grey-2b2b2b);
  border-color: var(--bs-btn-active-border-color);
}