/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

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

*, *: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 */
	scroll-behavior: smooth;
}

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

.container {
	max-width: 1400px;
	margin-inline: auto;
	width: 100%;
}

@media (min-width: 1280px) {
	.container {
		padding-inline: 0 !important;
	}
}
.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;
}



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

/* added fonts */

@font-face {
  font-family: 'Circular Std';
  src: url("https://4752012.fs1.hubspotusercontent-na1.net/hubfs/4752012/raw_assets/public/betterbunch-2025/fonts/CircularStd-Bold.woff") format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circular Std';
  src: url("https://4752012.fs1.hubspotusercontent-na1.net/hubfs/4752012/raw_assets/public/betterbunch-2025/fonts/CircularStd-Book.woff") format('woff');
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tiempos Headline';
  src: url("https://4752012.fs1.hubspotusercontent-na1.net/hubfs/4752012/raw_assets/public/betterbunch-2025/fonts/Tiempos-Headline-Medium.woff") format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


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

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
	
	color:#3958A0;
	font-weight:700;
	line-height:140%;
	
}

/* 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: 1rem;
  padding: 1.25rem;
  width: 100%;
	
	background:#FBF9F5;
	border:1px solid #C4BFB9;
	border-radius:8px;
}

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


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

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

.wrapper-header {
  background-color:#FBF9F5;
	padding-top:1px;
}

/* ============================================
   HEADER - DND SECTIONS
   ============================================ */

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

/* ============================================
   HEADER - CONTAINER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.header__container {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 85rem; 
  width: 100%; 
  box-sizing: border-box; 
  margin-top: 3.0625rem;
  padding: 1.0625rem 2.5rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 999px;
}

.header__container--scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
   HEADER - NAVIGATION
   ============================================ */

.header__nav,
.header__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-family: Circular Std;
}

.header__nav-item {
  padding: 0.5rem 0.75rem;
  color: #262024;
  font-size: 1rem;
  font-weight: 700;
  line-height: 140%;
	text-decoration: none;
}

.header__logo--desktop {
  display: block;
}

.header__logo--mobile {
  display: none;
}

/* ============================================
   HEADER - BUTTONS
   ============================================ */

.header__button--secondary {
  background: none;
  border: 2px solid #262024;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
	color: #262024;
	text-decoration: none;
}

.header__button--primary {
  color: #FFFFFF;
  background: #082E88;
  border: 1px solid #082E88;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
	text-decoration: none;
}

/* ============================================
   HEADER - DROPDOWN
   ============================================ */

.header__dropdown {
  position: relative;
  display: inline-block;
}

.header__dropdown-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
	text-decoration: none;
	font-weight: 700;
}

.header__dropdown-text {
  margin: 0;
}

.header__dropdown-icon {
  transition: transform 0.3s ease;
}

.header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  margin-top: 0.5rem;
  background: #FFFFFF;
  border-radius: 1.5rem;
  box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.10);
  min-width: 15.9375rem;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.header__dropdown--active .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown--active .header__dropdown-icon {
  transform: rotate(180deg);
}

.header__dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #262024;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

/* ============================================
   MOBILE MENU BUTTON
   ============================================ */

.header__mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}

.header__mobile-menu-icon {
  width: 24px;
  height: 2px;
  background-color: #262024;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */

.header__mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
	background-color:white;
}

.header__mobile-overlay--active {
  opacity: 1;
  visibility: visible;
}

.header__mobile-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin:8px;
  background-color: #FEB100;
  padding: 1.0625rem 1.5rem 1.6875rem 1.5rem;
	border-radius:8px;
  overflow-y: auto;
	font-family:Circular Std;
	display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ============================================
   MOBILE CLOSE BUTTON
   ============================================ */

.header__mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #262024;
  width: auto; /* Changed from fixed 40px */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* Add spacing between text and icon */
}

.header__mobile-close p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
 
}
.header__logo--mobile-menu {
  display: block;
  margin-bottom: 1.5rem;
  max-width: 150px; /* Adjust as needed */
}
.header__mobile-nav-item {
  display: block;
  padding: 0.75rem 0.5rem;
  color: #262024;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 140%;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}


/* ============================================
   MOBILE SECTION (for dropdown items)
   ============================================ */


.header__mobile-section {

}

.header__mobile-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0.5rem;
  color: #262024;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 140%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  margin: 0 0 0.5rem 0;
	text-decoration: none;
}

.header__mobile-section-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.header__mobile-section--active .header__mobile-section-icon {
  transform: rotate(180deg);
}

.header__mobile-section-content {
  display: none;
  flex-direction: column;
}

.header__mobile-section--active .header__mobile-section-content {
  display: flex;
}

.header__mobile-nav-item--sub {
  font-size: 1rem;
  font-weight: 450;
  line-height: 140%;
}

/* ============================================
   MOBILE ACTION BUTTONS
   ============================================ */

.header__mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.header__mobile-button--secondary {
  display: block;
  text-align: center;
  background: none;
  border: 2px solid #262024;
  border-radius: 999px;
  padding: 0.875rem 1.5rem;
  color: #262024;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header__mobile-button--secondary:hover {
  background-color: #262024;
  color: #FFFFFF;
}

.header__mobile-button--primary {
  display: block;
  text-align: center;
  color: #FFFFFF;
  background: #082E88;
  border: 1px solid #082E88;
  border-radius: 999px;
  padding: 0.875rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.header__mobile-button--primary:hover {
  background-color: #062360;
}

/* ============================================
   HEADER - MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
	.header {
		width:auto;
    margin: 0.5rem 0.5rem 0rem 0.5rem;
		position:relative;
    background: #FEB100;
		border-radius: 8px 8px 0 0 ;
	}
  .header__container {
    padding:1rem;
		margin-top:0;
  }
	
  .header__logo--desktop,
	.header__nav-item,
	.header__dropdown,
	.header__button--secondary {
    display: none;
  }
  
  .header__logo--mobile {
    display: block;
		width:31.67px;
		height:auto;
  }

	.header__mobile-menu-toggle {
    display: flex;
  }
  
  .header__mobile-overlay {
    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%;
}
.wrapper-hero {
	background-color:#FBF9F5;
	padding-bottom:1px;
}

/* ============================================
   HERO SECTION
   ============================================ */

section.hero {
  background-color: #FEB100;
  padding: 13rem 0;
  margin: 0.5rem 0.5rem 0 0.5rem;
  border-radius: 0.5rem;
  position: relative;
}

.container {
  max-width: 80rem;
  margin-inline: auto;
	padding-inline: 1rem;
	box-sizing: border-box;
}

.container.hero {
	display: flex;
  flex-direction: row;
	gap:3.75rem;
	margin-bottom:0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  color: #262024;
  font-family: Circular Std;
}

.hero__title {
  font-family: Tiempos Headline;
  font-weight: 600;
  font-size: 5rem;
  line-height: 100%;
  margin: 0 0 1rem 0;
}

.hero__subtitle {
  font-weight: 450;
  font-size: 1.5rem;
  line-height: 140%;
  margin: 0 0 2rem 0;
}

.hero__cta {
  margin-top: 1rem;
}

.hero__form {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.hero__form .hero__input {
  background: #FEFDFD;
  max-width: 21.6875rem;
  border: none;
  border-radius: 1rem;
  padding: 1.3125rem 1rem;
  font-family: Circular Std;
  font-size: 1rem;
}

.hero__input:focus {
  outline: 2px solid #082E88;
}

.hero__button {
  color: #FFFFFF;
  background: #082E88;
  padding: 1.3125rem 2.4375rem;
  border: 1px solid #082E88;
  border-radius: 999px;
  white-space: nowrap;
  font-family: Circular Std;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero__button:hover {
  background: #06245E;
}

.hero__illustration {
  display: flex;
  align-items: center;
	max-width: 508px;
}

.hero__image {
  max-width: 100%;
  height: auto;
}

/* ============================================
   HERO MODAL
   ============================================ */

.hero__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.hero__modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.hero__modal-content {
  position: relative;
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 2.5rem 5.90625rem;
  max-width: 39.25rem;
	width:100%;
  max-height: 43.0625rem;
	height:100%;
  overflow-y: auto;
}

/* Modal Header */

.hero__modal-header {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__modal-header-illustration {
  max-width: 100%;
}

.hero__modal-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero__modal-title {
  font-family: Circular Std;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 130%;
  color: #262024;
  margin: 0;
}

.hero__modal-description {
  font-family: Circular Std;
  font-weight: 450;
  font-size: 1rem;
  line-height: 140%;
  color: #262024;
  margin: 0;
}

/* Modal Form */

.hero__modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}

.hero__modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0;
}

.hero__modal-form-label {
  font-family: Circular Std;
  font-weight: 700;
  font-size: 0.875rem;
  color: #3958A0;
  margin: 0;
}

.hero__modal-form-input {
  padding: 0.75rem 1rem;
  border: 1px solid #E0E0E0;
  border-radius: 0.5rem;
  font-family: Circular Std;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.hero__modal-form-input:focus {
  outline: none;
  border-color: #082E88;
}

.hero__modal-form-input::placeholder {
  color: #999999;
}

.hero__modal-submit {
  background: #6B82B8;
  color: #FFFFFF;
  padding: 1rem 1.25rem;
  border: 1px solid #6B82B8;
  border-radius: 999px;
  font-family: Circular Std;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  width: auto;
  align-self: flex-start;
}

.hero__modal-submit:hover {
  background: #06245E;
}

.hero__modal-submit.hero__modal-submit--active {
  background: #082E88;
  border-color: #082E88;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 46, 136, 0.3);
}

.hero__modal-submit.hero__modal-submit--active:hover {
  background: #06245E;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(8, 46, 136, 0.4);
}

.hero__modal-submit:active {
  transform: translateY(0);
}

/* Modal Success View */

.hero__modal-success {
  text-align: left;
}

.hero__modal-success-image {
  margin-bottom: 1rem;
  max-width: 100%;
}

.hero__modal-success .hero__modal-title {
  margin-bottom: 1rem;
}

.hero__modal-success .hero__modal-description {
  margin-bottom: 1rem;
}

.hero__modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.hero__modal-close:hover {
  opacity: 0.7;
}

.hero__modal-close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.hero__modal-close-btn {
  background: transparent;
  color: #262024;
  padding: 1rem 1.25rem;
  border: 2px solid #262024;
  border-radius: 999px;
  font-family: Circular Std;
  font-weight: 700;
  font-size: 1rem;
  line-height: 140%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.hero__modal-close-btn:hover {
  background: #262024;
  color: #FFFFFF;
}

/* Blue text for filled inputs */
.hero__modal-form-input:not(:placeholder-shown) {
  color: #082E88;
}

/* ============================================
   DEMO SECTION
   ============================================ */

.container.demo {
  /*  position: absolute;
  top: calc(100% - 5rem);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0.5rem; */
	
	margin-top:-6rem;
}

.hero__demo-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #082E88;
  opacity: 0.2;
  pointer-events: none;
  border-radius: 0.5rem;
  z-index: 1;
}

.hero__demo-image-container {
  position: relative;
}

.hero__demo-kicker {
  position: absolute;
	max-width: 18.75rem;
	width:100%;
  top: -3.75rem;
  left: 0;
}

.hero__demo-image {
	width:100%;
  display: block;
  border-radius: 0.5rem;
	cursor: pointer;
}

.hero__demo-pfp {
	position:absolute;
	top:0;
	left:0;
	width:10rem;
	height:auto;
	margin:1.25rem;
	background:#FFFFFF;
	border-radius:100%;
	border:2px solid #FFFFFF;
	z-index:1;
}

.hero__demo-play {
	position:absolute;
	top:40%;
	left:50%;
	transform:translateX(-50%);
	width:7.5rem;
	height:auto;


	border-radius:100%;

	z-index:2;	
}


@media (max-width: 768px  ) {
	section.hero {
		padding: 2rem 0rem;
		margin: 0 0.5rem 0 0.5rem;
		border-radius: 0 0 8px 8px;

	}
	.container.hero {
		display:block;
	}
	.hero__title {
		font-weight: 700;
		font-size: 4rem;
		line-height: 100%;
	}
	.hero__content {
		margin-bottom:8.625rem;
	}
	
	.hero__subtitle {
		margin-bottom: 2.5rem;
	}
	.hero__illustration {
		display:none;
	}
	
	/*.container {
		max-width: 24.375rem;
	}*/
	
	.hero__form {
		display:flex;
		flex-direction:column;
	}
	
	.hero__modal-form-row {
		grid-template-columns: 1fr;
	}
	
	.hero__form .hero__input {
    padding: 1.25rem;
	}
	
	.hero__button {
		padding: 1.25rem;
		width:fit-content;
	}
	
	.hero__demo-image-container {
		width:100%;
		height:auto;
			
	}
	
	.hero__demo-image {
		width:100%;
		height:auto;
	}
	
	.hero__modal-content {
		max-width: 22.375rem;
		max-height: 46.3125rem;
    margin-inline: auto;
		padding:1.5rem;
	}
	
	.hero__modal-header-illustration {
    display:none;	
	}
	
	.hero__demo-pfp {
		width: 2.8rem; 
	}
	
	.hero__demo-play {
		width:3.75rem;
	}

}

.hero__demo-video {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  background: #000;
}

.hero__demo-video--playing {
  display: block;
}

/* Hide overlay when video is playing */
.hero__demo-image-container.hero__demo-image-container--playing::before {
  display: none;
}
.wrapper-testimonial {
	background-color:#FBF9F5;
	padding-bottom:1px;
	overflow:hidden;
}

/* Reviews Section */
section.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
	padding-top:11.25rem !important;
}

.container.testimonial {
	padding-top:0 !important;
	padding-bottom:0;
}

/* Header */
.reviews__header {

  text-align: left;
  width: 100%;
  position: relative;
	display: flex;
  gap: 4.625rem;
}

.reviews__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: Circular Std;
  color: #262024;
  margin-bottom: 4rem;
}

.reviews__illustration {
  position: relative;
  top: 0;
  right: 0;
	max-width:400px;
	width:100%;
	height:auto;
}

.reviews__illustration-img {
	width:100%;
  height:auto;
}

/* Badge */
.reviews__badge {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-bottom: 2rem;
}

.reviews__badge-text {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 150%;
  background-color: #FEB100;
  padding: 4px 8px;
  border-radius: 8px;
  margin: 0;
}

.reviews__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 1rem;
}

.reviews__subtitle {
  font-size: 1.125rem;
  font-weight: 450;
  line-height: 140%;
  margin: 0;
	max-width: 518px;
}

/* Slider */
.reviews__slider {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #FEB100;
  padding: 5rem 5rem 3.25rem 5rem;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper {
	max-width:80rem;
  height: auto;
  padding-bottom: 4.25rem;
}

.swiper-slide {
	max-width:658px;
  height: auto;
  font-size: 1.125rem;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  font-family: Circular Std;
  color: #262024;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination {
  bottom: 0 !important;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #262024;
  opacity: 0.3;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #262024;
  width: 16px;
}

/* Navigation Buttons */
.reviews__navigation {
	position: absolute;
	bottom: 0px;
	right: 0;
	display: flex;
	gap: 16px;
	z-index: 10;
}

.reviews__nav-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: transparent;
	border: 2px solid #262024;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;

}

.reviews__nav-btn.swiper-button-disabled {
	background: transparent;
	border: 2px solid #262024;
}

.reviews__nav-btn svg {
	width: 16px;
	height: 16px;
}

/* Slide Content */
.reviews__slide-image {
  position: relative;
}

.reviews__slide-bg {
  display: block;
  width: 100%;
}

.reviews__slide-rating {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  border-radius: 15.46px;
}

.reviews__slide-text {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.9375rem;
}

.reviews__slide-title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 120%;
}

.reviews__slide-subtitle {
  margin: 0;
  margin-top: auto;
  font-size: 1.125rem;
  font-weight: 450;
  line-height: 140%;
}

@media (max-width: 768px)  {
	section.testimonial {
		padding-top: 5rem !important;
	}
	

	
	.reviews__header {
		flex-direction:column;
		gap:0;
	}
	
	.reviews__text {
		margin-bottom: 2.1875rem;
		order:2;
	}
	
	.reviews__illustration {
		max-width:358px;
		width:100%;
		max-height:261px !important;
		height:100% !important;
		top:0;
		left:50%;
		transform:translateX(-50%);
	}
	
	.reviews__illustration-img {
		width:100%;
		max-height:261px !important;
		height:100% !important;
	  object-fit:cover;
	}
	.reviews__slider {
		padding: 5rem 1rem 3.25rem 1rem;
	}
	
	.swiper-pagination {
		text-align:left;
	}
	
	.reviews__badge-icon {
		max-width:70px !important;
		height:auto;
	}

}
.wrapper-how-it-works {
	background-color:#FBF9F5;
	padding-top:1px;
	padding-bottom:1px;
}
section.how-it-works {
	margin-top: 5rem;
}
.container.reviews {
  

}

.reviews__process-header {
  text-align: center;
  font-family: Circular Std;
  margin-bottom: 2rem;
}

.reviews__process-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 120%;
}

.reviews__process-subtitle {
  font-size: 1.125rem;
  font-weight: 450;
  line-height: 140%;
	max-width: 627px;
	margin-inline: auto;
	width: 100%;
}

.reviews__process-illustration {
	max-width:771px;
	width:100%;
	max-height:482px;
	height:100%;
	display:block;
	margin-inline:auto;
	margin-bottom: 1.5625rem;
}
.reviews__process-img {
	max-width:771px;
	width:100%;
	max-width:482px;
	height:100%;
	object-fit:cover;
	display:block;
  margin-inline:auto;
  
}

/* Process Features */
.reviews__process-features {
  margin-bottom: 2rem;
  display: flex;
	
  gap: 1.5625rem;
  font-family: Circular Std;
}

.reviews__feature-card {
  background: #F5F1E9;
  padding: 4rem 4.375rem 0 4.375rem;
  flex: 1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 782px;
	justify-content: center;
  align-items: center;
}

.reviews__feature-text {
	text-align:center;
}

.reviews__feature-title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 150%;
}

.reviews__feature-subtitle {
  font-size: 1rem;
  font-weight: 450;
  line-height: 140%;
}

.reviews__feature-img {
  padding-top: 4.75rem;
  margin-top: auto;
}

/* CTA Button */
.reviews__cta-btn {
  background: transparent;
  border: 2px solid #262024;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 3.75rem;
  font-family: Circular Std;
  font-size: 1rem;
  font-weight: 700;
  line-height: 140%;
  display: block;
  margin-inline: auto;
  cursor: pointer;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 2.5rem 5.90625rem;
  max-width: 39.25rem;
	width:100%;
	
  max-height: 43.3125rem;
	height:100%;
  overflow-y: auto;
}

.modal__header {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 2rem;
	align-items:center;
}

.modal__header-illustration {
  flex-shrink: 0;
}

.modal__header-text {
  flex: 1;
}

.modal__title {
  font-family: Circular Std;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 130%;
  margin: 0 0 0.5rem 0;
  color: #262024;
}

.modal__description {
  font-family: Circular Std;
  font-size: 1rem;
  font-weight: 450;
  line-height: 140%;
  margin: 0 0 1rem 0;
  color: #262024;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal__form-group label {
  font-family: Circular Std;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3958A0;
	margin:0;
}

.modal__form-group input {
  font-family: Circular Std;
  font-size: 1rem;
  padding: 0.75rem;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
}

.modal__submit {
  background: #6B82B8;
  color: #FFFFFF;
  font-family: Circular Std;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 1rem;
	width:auto;
	margin-right:auto;
}

.modal__success-view {
  text-align: left;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.modal__close img {
  width: 24px;
  height: 24px;
}

.modal__illustration {
	max-width:262px;
	width:100%;
	height:auto;
}

.modal__close-btn {
  background: transparent;
  color: #262024;
  font-family: Circular Std;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  border: 2px solid #262024 ;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 6.073125rem;
}

.modal__close-btn:hover {
  background: #262024;
  color: #FFFFFF;
}

/* Blue text for filled inputs */
.modal__form-group input:not(:placeholder-shown) {
  color: #082E88;
}

.modal__submit {
  background: #6B82B8;
  color: #FFFFFF;
  padding: 1rem 1.25rem;
  border: 1px solid #6B82B8;
  border-radius: 999px;
  font-family: Circular Std;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  width: auto;
  align-self: flex-start;
}

.modal__submit.modal__submit--active {
  background: #082E88;
  border-color: #082E88;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 46, 136, 0.3);
}

.modal__submit.modal__submit--active:hover {
  background: #06245E;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(8, 46, 136, 0.4);
}

.modal__submit:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
	
	.reviews__process-illustration {

	}
	
	.reviews__process-header {

	}
	.reviews__process-img {

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

	}
	
	.reviews__feature-card {
		padding: 2.5rem 1.25rem 0 1.25rem;
		min-height:667px;
	}
	
	.reviews__feature-img {
		padding-top: 2.5rem;
		
	}
	
  .modal__content {
		max-width: 22.375rem;
		max-height: 46.3125rem;
    margin-inline: auto;
		padding:1.5rem;
	}
}
.wrapper-two-column-content {
	background-color:#FBF9F5;
  scroll-margin-top: 200px;
}

#hs_cos_wrapper_widget_1764946290667 .two-column-content {
	padding:0 1rem !important;
}

/* Listings Section */
section.two-column {
	background-color:white;
	border-radius: 8px 8px 0 0 ;
	margin:5rem  0.5rem 0 0.5rem;
}

.container.two-column-content {
	padding-top:0 !important;
	padding-bottom:0 !important;
	

}
/* Header */
.listings__header {
  width: 100%;
  text-align: left;
  position: relative;
  margin-bottom: 4rem;
	display:flex;
}

.listings__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: Circular Std;
  color: #262024;
}

.listings__illustration {
  position: relative;
  top: -150px;
  right: -100px;
  max-width: 536px;
  width: 100%;
  max-height: 423px;
  height: 100%
}

.listings__illustration-img {
  max-width: 536px;
  width: 100%;
  max-height: 423px;
  height: 100%;
  object-fit: cover;
}

/* Badge */
.listings__badge {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-bottom: 2rem;
}

.listings__badge-text {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 150%;
  background-color: #328AF9;
	color:#FFFFFF;
  padding: 4px 8px;
  border-radius: 8px;
  margin: 0;
}

.listings__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 1rem;
}

.listings__subtitle {
  font-size: 1.125rem;
  font-weight: 450;
  line-height: 140%;
  margin-bottom: 2rem;
}

/* Features */
.listings__features {
  display: flex;
  flex-direction: row;
  gap: 1.3125rem;
}

.listings__feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.5px;
}

.listings__feature-icon {
  width: 59px;
  height: 59px;
}

.listings__feature-text {
  margin: 0;
}

/* Content Cards */
.listings__content {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.listings__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5rem 5.625rem;
  border-radius: 8px;
  background: #F3F3F3;
  font-family: Circular Std;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 130%;
  color: #262024;
}

.listings__card--after {
  background: #328AF9;
  color: #FFFFFF;
	position:relative;
}

.listings__card-title {
  margin-bottom: 1.5rem;
}

.listings__card-img {
  margin: auto 0;
}

.listings__card-illustration.top {
	width: 111px;
  height: 71px;
  object-fit: cover;
  position:absolute;
	top:3.375rem;
	right:1.3125rem;
	z-index:1;
}

.listings__card-illustration.mid {
	width: 130px;
  height: 101px;
  object-fit: cover;
  position:absolute;
	top:50%;
	right:2.5625rem;
	z-index:1;
}

@media (max-width: 1399px) {
  .listings__illustration {
    right: 0; 
    top: -100px; 
  }
}



@media (max-width: 768px) {
	.two-column-content {

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

	}
	.listings__text {
		order:2;
	}
	
	.listings__illustration {
		
		top: 0;
    left: 50%;
		transform:translateX(-50%);
    max-width: 40.5rem;
		width:100%;
		
		
	}
	
	.listings__badge-icon {
		max-width: 70px !important;
    height: auto !important;
	}
	
	.listings__card {
		padding: 2.25rem 1.5rem;
	}
	
	.listings__card-illustration {
		display:none;
	}
	
	.listings__features {
		flex-direction:column;
	}
}
.wrapper-two-column-cards {
	background-color:#FBF9F5;
	padding-bottom:1px;
}

/* Overview */
section.two-column-cards {
	background-color:white;
	margin: 4.75rem 0.5rem 0 0.5rem;
	border-radius: 0 0 8px 8px ;
	padding-bottom:70px;
}

.container.listings {
	display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Circular Std;
}

.listings__overview-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 2rem 0 ;
}

.listings__overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Steps */
.listings__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.listings__step {
  background: #FBF9F5;
  padding: 2rem;
  border-radius: 8px;
}

.listings__step-number {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 150%;
  background: #328AF9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.listings__step-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 1rem;
}

.listings__step-description {
  font-size: 1.125rem;
  font-weight: 450;
  line-height: 140%;
  margin: 0;
}

/* Benefits */
.listings__benefits {
  background: #EAF3FE;
  padding: 5.84375rem 5.4375rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
	border-radius:0.5rem;
}

.listings__benefits-title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 150%;
  margin: 0;
}

.listings__benefit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.125rem;
	
}

.listings__benefit-icon {
	max-width:2.1875rem;
	height:auto;
  flex-shrink: 0;
}

.listings__benefit-description {
  font-size: 1.125rem;
  font-weight: 450;
  line-height: 140%;
  margin: 0;
}

@media (max-width: 900px) {
  .listings__steps {
    grid-template-columns:1fr; 
  }
	.listings__benefits {
		padding: 3.84375rem 3.4375rem;
	}
}

@media (max-width: 768px) {
	section.two-column-cards {
		padding-bottom:40px !important;
	}

	.listings__overview-title {
		text-align:center; 
		
	}
	.listings__overview-content {
		grid-template-columns: 1fr;
	}
	
	.listings__steps {
		grid-template-columns: 1fr;
	}
	
	.listings__benefits {
		padding: 2rem;
		
	}
	
}
.wrapper-cta-form {
	background-color: #FBF9F5;
	padding-bottom: 1px;
	padding-top: 1px;
}

section.cta-form {
	margin-top: 5rem;
}

.container.cta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 3.8125rem;
	gap: 0;
}

.footer__cta-img-container {
	width: 100%;
	height: auto;
}

.footer__cta-img {
	width: 100%;
	height: auto;
	display: block;
}

.footer__cta-text {
	max-width: 33rem;
	width: 100%;
	height: auto;
	margin-right: auto;
}

.footer__cta-title {
	font-family: Tiempos Headline;
	font-size: 5rem;
	font-weight: 600;
	line-height: 100%;
	color: #262024;
	margin-bottom: 1rem;
}

.footer__cta-subtitle {
	font-family: Circular Std;
	font-size: 1.125rem;
	font-weight: 450;
	line-height: 140%;
	color: #262024;
	margin: 0;
}

/* Inline Modal (Footer) */
.modal--inline {
	display: block;
	background: transparent;
	position: relative;
	max-width: 628px;
	width: 100%;
	z-index: 0;
}

.modal--inline .modal__content {
	padding: 2.5rem 5.90625rem;
	background: #FFFFFF;
	border-radius: 8px;
	position: relative;
	max-width: 100%;
	width: 100%;
	max-height: none;
	overflow-y: visible;
	z-index: auto;
	box-sizing: border-box;
}

.modal__form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 0;
}

.modal--inline .modal__close-btn {
	background: transparent;
	color: #262024;
	padding: 1rem 1.25rem;
	border: 2px solid #262024;
	border-radius: 999px;
	font-family: Circular Std;
	font-weight: 700;
	font-size: 1rem;
	line-height: 140%;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 1rem;
}

.modal--inline .modal__submit {
	background: #6B82B8;
	color: #FFFFFF;
	padding: 1rem 1.25rem;
	border: 1px solid #6B82B8;
	border-radius: 999px;
	font-family: Circular Std;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 0.5rem;
	width: auto;
}

.modal--inline .modal__submit.modal__submit--active {
	background: #082E88;
	border-color: #082E88;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(8, 46, 136, 0.3);
}

.modal--inline .modal__submit.modal__submit--active:hover {
	background: #06245E;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(8, 46, 136, 0.4);
}

.modal--inline .modal__submit:active {
	transform: translateY(0);
}

@media (max-width: 1399px) {
	.container.cta {
		gap:1rem;
	}
  .modal--inline .modal__content {
		max-width: 100%;
		margin-inline: auto;
		padding: 1.5rem;
	}
}

@media (max-width: 768px) {
	.container.cta {
		grid-template-columns: 1fr;
		margin-bottom: 2.5rem;
		gap: 0;
	}
	
	.modal__form-row {
		grid-template-columns: 1fr;
	}
	
	.footer__cta-text {
		order: 2;
	}
	
	.footer__cta-text {
		padding-top: 40px;
		margin-right: 0;
		max-width:100%;
	}
	
	.footer__cta-img-container {
		width: 100%;
		height: auto;
	}
	
	.footer__cta-title {
		font-size: 4rem;
	}
	.modal--inline {
		max-width:none;
	}
	.modal--inline .modal__content {
		max-width: 100%;
		margin-inline: auto;
		padding: 1.5rem;
	}
}
.wrapper-footer {
	background-color:#FBF9F5;
	padding-top:1px;
	padding-bottom:1px;
}

/* Footer Container */

footer.footer {
	background: #FEB100;
	margin: 8px;
	border-radius: 8px;
}
.container.footer {
  font-family: Circular Std;
  color: #262024;
}

.footer__top {
  display: flex;
  flex-direction: row;
  padding-top: 3.8125rem;
  margin-bottom: 2.0625rem;
}

.footer__nav {
  display: flex;
  flex-direction: row;
  gap: 2.125rem;
}

.footer__column {
  gap: 2.125rem;
}

.footer__column-heading {
  font-weight: 700;
  white-space: nowrap;
}

.footer__column-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__column-heading,
.footer__column-links li {
		margin-bottom:12px;
}

.footer__column-links a {
  text-decoration: none;
  color: #262024;
}

.footer__column-links button {
  text-decoration: none;
  color: #262024;
	appearance: none;
	border: none;
	background: none;
	margin: 0;
	padding: 0;
}

.footer__badge {
  max-width: 306px;
  margin-top: auto;
  margin-left: auto;
}

.footer__badge-text {
	font-size: 1.125rem;
  margin: 0 0 1rem 0;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
}

.footer__social-icon {
  display: block;
}

.footer__bottom {
  padding-bottom: 1.375rem;
	display:flex;
	gap:50px;
}

.footer__logo {
	
	max-width:1064px !important;
	width:100%;
	height:auto;
}

.footer__character {
  
	max-width:199px !important;
	width:100%;
	height:100%;
	object-fit:cover;
  align-self:center;

}

@media (max-width: 768px)  {
	.footer__top {

		flex-direction:column;
		gap:16px;
		padding-top:31px;
	}
	
	.footer__nav {
		flex-direction:column;
		gap:16px;
	}
  
	.footer__column-heading,
	.footer__column-links li {
		margin-bottom:12px;
	}

	.footer__column {
		display:flex;
		flex-direction:column;
		gap:0;
	}
	
	.footer__badge {
		margin:0;
	}
	.footer__bottom {
    flex-direction:column;
		gap:0;
		margin-top:-78px;
	}
	.footer__logo {
		order:2;
		
		
	}
	
	.footer__character {
		max-width:129px !important;
		height:auto;
		top:0;
		align-self:flex-end;
	}

}

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