.hero-section {
  padding-top: 10.25rem;
  position: relative; /* rw added this */
}

.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-container.hero {
  grid-template-columns: 1fr;
}

.intro-wrapper.hero {
  text-align: left;
}

.heading.hero h1 {
  font-size: var(--display-xl);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0;
}

.light-heading.hero {
  color: var(--gray-900) !important;
}

.light-subheading.hero {
  color: var(--gray-600) !important;
}

.cta-link:: {
  text-transform: capitalize;
}

.light-cta[data-style=secondary] {
    color: var(--gray-900) !important;
}

.heading.hero span {
  background: var(--primary-blue-green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-section[data-section-theme="primary-light-gradient"] {
  background: linear-gradient(134.62deg, #FFFFFF 6.28%, #E9F3FF 51.58%);
}

.hero-section[data-section-theme="primary-light-gradient"] .submitted-message {
  color: #333 !important;
  text-align: center;
}

@media (min-width: 48rem) {
  .intro-wrapper.hero {
    margin-bottom: 0;
  }
  
  .cta-container.hero {
    justify-content: flex-start;
  }
}

@media (min-width: 80rem) {
  .hero-section {
    padding-top: 11.375rem;
  }
  
  .grid-container.hero {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .intro-wrapper.hero {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
  }
}

.hero-section .trustbar-swiper {
	overflow: hidden;
	position: relative;
}

.hero-section .trustbar-swiper::before {
  content: '';
  left: 0;
  height: 100%;
  width: 80px;
  position: absolute;
}
.hero-section .trustbar-logo {
	    filter: brightness(0) invert(1) invert(60%) sepia(14%) saturate(4374%) hue-rotate(154deg) brightness(83%) contrast(104%);
}
.hero-section .trustbar-swiper::after {
  content: '';
  left: auto;
  right: 0;
  transform: rotate(180deg);
  height: 100%;
  width: 80px;
  position: absolute;
}

.hero-section .trustbar-swiper .trustbar-logo-wrapper {
	max-height: 80px;
}

.hero-section .swiper-slide {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
  height: auto;
}

.hero-section .swiper-wrapper {
  -webkit-transition-timing-function: linear !important; 
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important; 
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 48px;
}

.breadcrumb a {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
	text-decoration: none;
	height: fit-content;
}

.breadcrumbs-link {
    color: var(--white);
}

.light-link {
    color: var(--gray-600) !important;
}

.breadcrumbs-divider {
  display: inline-block;
	margin-top: 2px;
}

.breadcrumbs-divider span, .breadcrumbs-link span {
    fill: var(--white);
}
.light-divider span, .light-divider span {
    fill: var(--gray-600);
}

@media (min-width: 48rem) {
  .breadcrumb {
	margin-bottom: 64px;
 }
}
.mb-2 {
  margin-bottom: 32px !important;
}
.subheading.hero ul {
  margin-top: 32px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

.subheading.hero ul {
  padding-left: 0;
}

.subheading.hero ul li {
  font-weight: 800;
  list-style: none;
  position: relative;
  padding-left: 34px;
}

.subheading.hero ul li::before {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  top: 3px;
  left: 0;
  background-image: url(//22036085.fs1.hubspotusercontent-na1.net/hubfs/22036085/raw_assets/public/Glance/images/module-icons/circle-check.svg);
}

.form-component-container {
  display: flex;
  justify-content: center;
}

.form-hero-padding {
  padding-top: 7.5rem; 
}

.open-form-button {
  width: fit-content; 
}

.form-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 0, 0, 0.8);
  flex-flow: column nowrap;
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 100;
  transition: opacity var(--animation-speed) ease, visibility var(--animation-speed) ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.form-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.form-wrapper {
  position: relative;
  padding: 2.5rem;
  width: calc(100% - 2rem);
  max-height: 85vh;
  background: var(--white);
  box-shadow: var(--blue-shadow-xl);
  border-radius: 1.25rem;
  text-align: center;
}

.form-content {
  display: flex;
  flex-direction: column;
  overflow: auto !important;
  height: 100%;
}

.form-content.form-light .form-heading {
  color: var(--black); 
}

.close-form-button {
  background: transparent;
  position: absolute;
  z-index: 10;
  right: 0;
  top: -2.5rem;
}

.form-type-contained {
  padding-top: 4rem; 
}

.form-type-contained .close-form-button {
  top: 2.875rem;
  right: 2rem;
}

.form-subheading {
  color: var(--gray-600); 
}

.light-hero-form form label {
	color: var(--gray-900) !important;
}

.wistia-mb-embed {
	margin-bottom: 64px;
}

@media (min-width: 40rem) {
  .form-wrapper {
    max-width: 704px;
  }
}

@media (min-width: 80rem) {
  .form-type-contained .close-form-button {
    top: 2.25rem;
  }

  .form-wrapper {
    max-width: 592px;
  }

  .form-wrapper.form-type-full {
    max-width: 636px;
  }
}
