@charset "UTF-8";
/*! Normalise CSS !*/
@import url(normalize.css);
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
  scroll-behavior: smooth;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: #615d64;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  background: #fff;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

p {
  padding: 0rem;
  margin: 0rem 0 0.5rem;
  color: #615d64;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}
p:last-child {
  margin: 0;
}

h1 {
  margin: 0rem 0rem 2rem;
  padding: 0rem;
  color: var(--White, #fff);
  font-family: "Montserrat", sans-serif;
  font-size: 2.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.125rem; /* 119.048% */
}

h2 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Violet, #5b2c6f);
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem; /* 142.857% */
}

h3 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: #2b2b2b;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h4 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Charcoal, #2b2b2b);
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.625rem; /* 144.444% */
}

h5 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Charcoal, #2b2b2b);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal; /* 133.333% */
}

h6 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal; /* 133.333% */
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 0;
  padding: 0;
}

a {
  color: var(--Grey, #333);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #000;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 0.25rem 0.25rem 0.25rem 1.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 150% */
  border-radius: 0.25rem;
  border: 1px solid var(--Coral, #ff6b6b);
  background: var(--Coral, #ff6b6b);
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 1;
  gap: 0.75rem;
}
.btn span {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  width: 2.5rem;
  padding: 0.5rem;
  gap: 8px;
  aspect-ratio: 1/1;
  border-radius: 4px;
  background: #fff;
  color: var(--Coral, #ff6b6b);
  overflow: hidden;
}
.btn span i {
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  transform: translate(-17px, 0);
}
.btn span i::before {
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  content: "\f105";
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
  width: 2rem;
}
.btn span i::after {
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  content: "\f105";
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
  width: 2rem;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
  border: 1px solid var(--Coral, #ff6b6b);
  background: var(--Coral, #ff6b6b);
}
.btn:hover {
  color: #fff;
  border: 1px solid var(--Coral, #ff6b6b);
  background: var(--Coral, #ff6b6b);
}
.btn:hover span i {
  transform: translate(16px, 0);
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #9b9b9b;
  opacity: 1;
  font-size: inherit;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  color: #9b9b9b;
  opacity: 1;
  font-size: inherit;
}

/* --- Standard Inputs, Textareas, and Selects --- */
input:not([type=submit], [type=radio], [type=checkbox]),
select,
textarea {
  display: block;
  width: 100%;
  padding: 0.875rem 1.25rem; /* Clean, even padding */
  color: #333333;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  border-radius: 0.25rem; /* Crisp 4px corners */
  border: 1px solid #dcdcdc; /* Subtle grey border */
  background: #ffffff; /* Pure white background */
  box-shadow: none;
  margin-bottom: 1.5rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease-in-out;
}
input:not([type=submit], [type=radio], [type=checkbox])::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #9b9b9b;
  opacity: 1;
}
input:not([type=submit], [type=radio], [type=checkbox])::placeholder,
select::placeholder,
textarea::placeholder {
  color: #9b9b9b;
  opacity: 1;
}
input:not([type=submit], [type=radio], [type=checkbox]),
select,
textarea {
  /* Universal Focus State */
}
input:not([type=submit], [type=radio], [type=checkbox]):focus,
select:focus,
textarea:focus {
  border-color: #5b2c6f; /* Vanguard Brand Purple */
  box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.1); /* Subtle purple glow */
  outline: none;
}

/* --- Textarea Specifics --- */
textarea {
  resize: vertical; /* Let users resize vertically, but not break layout horizontally */
  min-height: 7.5rem;
}

/* --- Select Specifics --- */
select {
  cursor: pointer;
  padding-right: 3rem; /* Make room for the custom arrow */
  background-image: url("../images/select-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 0.75rem;
}
select option {
  color: #333333;
  font-size: 1rem;
}

/* --- Labels --- */
label {
  display: block;
  color: #4a4a4a;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: 600; /* Bolder labels improve readability */
  margin: 0 0 0.5rem;
  padding: 0;
}
label .req {
  color: #ff6b6b; /* Red asterisk for required fields */
  margin-left: 2px;
}

/* --- Checkboxes (Pixel-Perfect Figma Match) --- */
input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.5rem; /* Slightly larger, chunky size to match the mockup */
  height: 1.5rem;
  border: 2px solid #e2e2e2; /* Distinct, soft gray border */
  border-radius: 6px; /* Noticeably rounded corners */
  background-color: #ffffff;
  margin: 0;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  position: relative;
  top: 0.15rem; /* Fine-tunes vertical alignment with the text beside it */
  transition: all 0.2s ease-in-out;
  /* The Coral Checkmark (Using an inline SVG for perfect rounded caps) */
}
input[type=checkbox]::before {
  content: "";
  width: 0.9rem; /* Size of the checkmark inside the box */
  height: 0.9rem;
  transform: scale(0);
  /* A subtle "pop" cubic-bezier animation for a premium feel */
  transition: 120ms transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Inline SVG: stroke='%23ff6b6b' is the hex code #ff6b6b (Coral) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b6b' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
input[type=checkbox] {
  /* Checked State */
}
input[type=checkbox]:checked {
  border-color: #e2e2e2; /* Border remains light gray */
  background-color: #ffffff; /* Background remains white */
}
input[type=checkbox]:checked::before {
  transform: scale(1); /* Animates the checkmark in */
}
input[type=checkbox] {
  /* Accessibility Focus State */
}
input[type=checkbox]:focus {
  outline: none;
  border-color: #d0d0d0; /* Slightly darkens the border so the user knows they are tabbed onto it */
  box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.15); /* Soft purple Vanguard glow */
}
input[type=checkbox] {
  /* Disabled State */
}
input[type=checkbox]:disabled {
  background-color: #f8f8f8;
  border-color: #eaeaea;
  cursor: not-allowed;
}

/* --- Radios (Clean, Circular, Pure CSS) --- */
input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #dcdcdc;
  border-radius: 50%; /* Perfect circle */
  background-color: #ffffff;
  margin: 0;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  position: relative;
  top: 0.125rem;
  transition: all 0.2s ease-in-out;
  /* The Dot */
}
input[type=radio]::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: #5b2c6f; /* Purple dot */
}
input[type=radio]:checked {
  border-color: #5b2c6f;
}
input[type=radio]:checked::before {
  transform: scale(1);
}
input[type=radio]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.15);
}
input[type=radio]:disabled {
  background-color: #f5f5f5;
  border-color: #e0e0e0;
  cursor: not-allowed;
}

section h1,
section h2 {
  margin: 0 0 1rem;
}
section.defaultPadding {
  padding: 5.625rem 0;
}
section.defaultPadding70 {
  padding: 4.375rem 0;
}

header.header_main {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  background: #fff;
  padding: 0.6563rem 0;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
}
header.header_main .d_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header_main .logo {
  position: relative;
  width: 9rem;
  margin-right: 0;
  transition: all 0.3s ease-in-out;
  margin-top: 0;
}
header.header_main .logo a {
  display: block;
}
header.header_main .stellarnav > ul > li > a {
  padding: 1.88rem 0 1.8175rem;
  text-align: left;
}
header.header_main .stellarnav > ul > li:hover a, header.header_main .stellarnav > ul > li.current-menu-item a {
  border-bottom: 1px solid #ff6b6b;
}
header.header_main .stellarnav > ul > li:hover a::before, header.header_main .stellarnav > ul > li.current-menu-item a::before {
  width: 100%;
}
header.header_main .stellarnav > ul > li + li {
  margin-left: 1.75rem;
}
header.header_main .stellarnav > ul ul li + li {
  border-top: 0.0625rem solid #c0c1d1;
}
header.header_main .stellarnav > ul ul li:last-child {
  border-bottom: none;
}
header.header_main .stellarnav > ul ul li a:hover {
  background: #b8860b;
  color: var(--White, #fff);
}
header.header_main .rig_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
header.header_main .rig_btn a.link {
  color: var(--Coral, #ff6b6b);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 150% */
  text-transform: uppercase;
}

.hm_banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--Violet, #5b2c6f) url(../images/banner_bg.png) no-repeat center center;
  background-size: cover;
}
.hm_banner .banner-img-fm {
  width: 50%;
  aspect-ratio: 840/700;
  margin-left: auto;
}
.hm_banner .banner-img-fm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hm_banner .container {
  position: absolute;
  inset: 50% 0 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
}
.hm_banner .banner-content {
  max-width: 36.4375rem;
  color: #fff;
}
.hm_banner .banner-content h1 {
  color: #fff;
  margin: 0 0 1rem;
}
.hm_banner .banner-content h1 + p {
  margin: 0 0 2rem;
}
.hm_banner .banner-content p {
  color: #e6e6e6;
}
.hm_banner .banner-content .banner-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 0 3.75rem;
}
.hm_banner .banner-content .banner-buttons .link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}
.hm_banner .banner-content .banner-buttons .link::before {
  content: "\f095";
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
}
.hm_banner .banner-content .banner-buttons .link:hover {
  opacity: 0.8;
}
.hm_banner .banner-content h4 {
  color: var(--White, #fff);
  font-family: Lato;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 120% */
  margin: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-block;
  padding: 0.375rem;
  margin: 0 0 1.875rem;
}
.hm_banner .banner-content ul {
  display: flex;
}
.hm_banner .banner-content ul li {
  display: inline-flex;
  position: relative;
}
.hm_banner .banner-content ul li + li::before {
  content: " ";
  width: 1px;
  height: 40px;
  background: var(--Coral, #ff6b6b);
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 1rem;
  position: relative;
  display: inline-block;
}
.hm_banner .banner-content ul li .each-info {
  display: flex;
  gap: 0.625rem;
}
.hm_banner .banner-content ul li .each-info span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.hm_banner .banner-content ul li .each-info span img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
.hm_banner .banner-content ul li .each-info .rig-cnt {
  min-width: 8.5rem;
}
.hm_banner .banner-content ul li .each-info .rig-cnt h6 {
  color: var(--White, #fff);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0.25rem;
  padding: 0;
}
.hm_banner .banner-content ul li .each-info .rig-cnt a,
.hm_banner .banner-content ul li .each-info .rig-cnt p {
  color: var(--White, #fff);
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 150% */
  text-transform: uppercase;
}
.hm_banner .banner-content ul li .each-info .rig-cnt p {
  text-transform: capitalize;
}
.hm_banner .banner-content ul li .each-info .rig-cnt a:hover {
  color: var(--Coral, #ff6b6b);
}

section.hm_sec1 {
  text-align: center;
}
section.hm_sec1 h4 + p {
  margin: 0 0 1.875rem;
}
section.hm_sec1 h3 {
  color: var(--Violet, #5b2c6f);
  text-align: center;
  font-family: Lato;
}

.each-box {
  display: flex;
  height: 12.375rem;
  padding: 0.625rem 0.5625rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 0.25rem;
  background: #fff;
  box-shadow: 0 4px 10px 0 rgba(91, 44, 111, 0.08);
  justify-content: space-between;
  margin: 0 0 1.875rem;
}
.each-box span {
  display: flex;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0.4375rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.each-box span img {
  width: 1.5625rem;
  height: 1.5625rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.each-box h6 {
  color: var(--Charcoal, #2b2b2b);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 150% */
  text-align: left;
  margin: 0;
  padding: 0;
}
.each-box:hover span {
  background: var(--Electric-Blue, #00a8e8);
}
.each-box:hover span img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(7%) saturate(64%) hue-rotate(167deg) brightness(117%) contrast(100%);
}

section.hm_sec2 {
  background: #f3f8ff;
}
section.hm_sec2 .build_fm {
  aspect-ratio: 107/102;
  border-radius: 4px;
  overflow: hidden;
}
section.hm_sec2 .build_fm img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content_txt {
  text-align: center;
  margin: 0 0 1.875rem;
}
.content_txt h6 {
  color: var(--Charcoal, #2b2b2b);
  text-align: center;
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin: 0 0 0.75rem;
}
.content_txt p {
  max-width: 59.125rem;
  margin: 0 auto;
}

.arrow_content {
  margin: 0 0 1.875rem;
}
.arrow_content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.arrow_content ul li h6 {
  color: var(--Violet, #5b2c6f);
  font-family: Lato;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1rem auto;
  gap: 0.625rem;
  align-items: center;
  margin: 0 0 0.5rem;
}
.arrow_content ul li h6::before {
  content: "";
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  background-image: url(../images/blue-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.arrow_content ul li p {
  line-height: normal;
}
.arrow_content.p-arrow ul li p strong {
  color: var(--Charcoal, #2b2b2b);
  font-family: Lato;
  margin: 0;
  display: inline-block;
  position: relative;
  padding-left: 25px;
}
.arrow_content.p-arrow ul li p strong::before {
  content: "";
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  background-image: url(../images/blue-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.arrow_content.p-arrow ul li ul {
  padding-left: 0.9375rem;
}
.arrow_content.p-arrow ul li ul li {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 0;
}

.circle_icon {
  margin: 0 0 1.875rem;
}
.circle_icon > p {
  color: var(--Charcoal, #2b2b2b);
  font-family: Lato;
  margin: 0 0 1.25rem;
  line-height: normal;
}
.circle_icon ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.circle_icon ul li {
  color: #615d64;
}
.circle_icon ul li p {
  position: relative;
  padding-left: 1.375rem;
  line-height: normal;
}
.circle_icon ul li p strong {
  color: var(--Charcoal, #2b2b2b);
}
.circle_icon ul li p::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  background-image: url(../images/black-circle-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.circle_icon.purple-color ul li p::before {
  background-image: url(../images/purple-circle-arrow.png);
}
.circle_icon.purple-color ul li p strong {
  color: var(--Violet, #5b2c6f);
}

section.hm_sec3 .content_txt {
  text-align: center;
  margin: 0 0 1.875rem;
}
section.hm_sec3 .content_txt h6 {
  color: var(--Charcoal, #2b2b2b);
  text-align: center;
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin: 0 0 0.75rem;
}
section.hm_sec3 .content_txt p {
  max-width: 59.125rem;
  margin: 0 auto;
}
section.hm_sec3 .build_fm {
  aspect-ratio: 107/102;
  border-radius: 4px;
  overflow: hidden;
}
section.hm_sec3 .build_fm img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hm_sec3 .last-notice {
  text-align: center;
}
section.hm_sec3 .last-notice p {
  color: #615d64;
  text-align: center;
  font-family: Lato;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5rem; /* 150% */
}

/* --- Vanguard Banner (No Variables) --- */
.proof-section {
  position: relative;
  background-color: #f3f8ff;
  padding: 48px 20px 15px;
  margin-top: 50px;
  text-align: center;
  margin: 2.975rem 0 80px;
  z-index: 1;
}
.proof-section::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -3.9375rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/light-curve.png) no-repeat center center;
  background-size: cover;
  z-index: 0;
  height: 4rem;
}
.proof-section {
  /* --- The Trapezoid Header --- */
}
.proof-section .proof-header {
  position: relative;
  top: -49px;
  background-color: #29b6f6;
  padding: 15px 5px;
  background: linear-gradient(180deg, #00a8e8 0%, #60d3ff 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: inline-block;
  margin-top: -25px;
  margin-bottom: -15px;
  z-index: 1;
}
.proof-section .proof-header::before {
  content: " ";
  position: absolute;
  left: -47px;
  top: 0;
  background-image: url(../images/blue-ribbon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 100%;
}
.proof-section .proof-header::after {
  content: " ";
  position: absolute;
  right: -47px;
  top: 0;
  background-image: url(../images/blue-ribbon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 100%;
  transform: scaleX(-1);
}
.proof-section .proof-header h2 {
  margin: 0;
  color: var(--Charcoal, #2b2b2b);
  text-align: center;
  font-family: Lato;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.proof-section {
  /* Point the fill to the gradient ID */
}
.proof-section .svg-shape-blue-1 {
  fill: url(#blue-gradient-1);
}
.proof-section {
  /* Style the text */
}
.proof-section .svg-text {
  fill: var(--Charcoal, #2b2b2b);
  text-align: center;
  font-family: Lato;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.proof-section {
  /* Shared text styles for ALL SVGs */
}
.proof-section .svg-html-text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center; /* Centers the text vertically */
  justify-content: center; /* Centers the text horizontally */
  text-align: center; /* Keeps wrapped lines centered */
  box-sizing: border-box;
  padding: 0 10px; /* Prevents text from touching the absolute edges */
  pointer-events: none; /* Stops text highlighting when clicked */
  color: var(--Charcoal, #2b2b2b);
  text-align: center;
  font-family: Lato;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.proof-section {
  /* --- The CSS Grid --- */
}
.proof-section .proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3.4375rem;
  align-items: start;
}
@media (max-width: 900px) {
  .proof-section .proof-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  }
}
.proof-section {
  /* --- Individual Items --- */
}
.proof-section .proof-item {
  position: relative;
  padding: 10px;
  height: 100%;
}
.proof-section .proof-item .check-icon {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 12px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  margin: auto 12px;
}
.proof-section .proof-item p {
  margin: 0;
  color: var(--Charcoal, #2b2b2b);
  text-align: center;
  font-family: Lato;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.proof-section .proof-item {
  /* --- The Vertical Dividers --- */
}
.proof-section .proof-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1.6563rem;
  top: 0%;
  height: 100%;
  width: 1px;
  background-color: #81d4fa; /* Soft blue line */
}
@media (max-width: 900px) {
  .proof-section .proof-item:not(:last-child)::after {
    display: none;
  }
}

section.hm_sec4 {
  background: #5b2c6f;
  padding: 80px 0;
}
section.hm_sec4 h2,
section.hm_sec4 h3,
section.hm_sec4 h4,
section.hm_sec4 p {
  color: #ffffff;
}
section.hm_sec4 {
  /* --- Top Header Text --- */
}
section.hm_sec4 .content_txt {
  text-align: center;
}
section.hm_sec4 .content_txt.w782 {
  max-width: 48.875rem;
  margin: 0 auto 3.5rem;
}
section.hm_sec4 .content_txt h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
section.hm_sec4 .content_txt p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e0e0e0;
}
section.hm_sec4 {
  /* --- Middle Checklist Section --- */
}
section.hm_sec4 .middle-content {
  margin-bottom: 1.875rem;
}
section.hm_sec4 .fit-list-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
section.hm_sec4 .red-correct ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
section.hm_sec4 .red-correct ul li {
  position: relative; /* Anchor for the ::before element */
  padding-left: 28px; /* Creates the gap for the checkmark */
  margin-bottom: 1.2rem;
  /* Injecting the Checkmark */
}
section.hm_sec4 .red-correct ul li::before {
  content: "✓"; /* Unicode Hex for Checkmark */
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5252; /* Bright Red */
  font-size: 1.1rem;
  font-weight: bold;
}
section.hm_sec4 .red-correct ul li p {
  margin: 0;
  color: #e6e6e6;
  font-family: Lato;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.hm_sec4 .red-correct ul li p strong {
  font-weight: 700;
}
section.hm_sec4 .image-box {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
section.hm_sec4 .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hm_sec4 .industries-card {
  border-radius: 8px;
  background: #68337e;
  box-shadow: 0 4px 20px 0 rgba(63, 25, 80, 0.3);
  padding: 1.25rem;
}
section.hm_sec4 .industries-card h3 {
  color: var(--White, #fff);
  font-family: Montserrat;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 1.875rem;
}
section.hm_sec4 .industries-card .industry-item {
  position: relative; /* Anchor for the ::before element */
  padding-left: 35px; /* Creates the gap for the arrow */
  margin-bottom: 1rem;
  /* Injecting the Arrow */
}
section.hm_sec4 .industries-card .industry-item::before {
  content: "➤"; /* Unicode Hex for Solid Right Arrow */
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
  line-height: 1;
  color: #ffffff;
}
section.hm_sec4 .industries-card .industry-item .ind-text h4 {
  color: var(--White, #fff);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 5px;
}
section.hm_sec4 .industries-card .industry-item .ind-text p {
  color: #e6e6e6;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
@media (max-width: 768px) {
  section.hm_sec4 .industries-card {
    padding: 30px 20px;
  }
}

.content_txt.w782 {
  max-width: 48.875rem;
  margin: 0 auto 1.875rem;
}

section.hm_sec5 {
  padding: 80px 0;
  background-color: #ffffff;
}
section.hm_sec5 .focus_intro_txt {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 1.875rem;
}
section.hm_sec5 .focus_intro_txt h2 {
  margin-bottom: 1rem;
}
section.hm_sec5 .focus_intro_txt p {
  font-size: 1.15rem;
  color: #2b2b2b;
  margin: 0;
}
section.hm_sec5 .focus_intro_txt p strong {
  font-weight: 700;
}
section.hm_sec5 .focus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 1.5rem;
  justify-content: center;
}
section.hm_sec5 .focus-card {
  border: 1px solid #81d4fa;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  width: calc(20% - 12px);
}
section.hm_sec5 .focus-card .fc-header {
  background: #00a8e8;
  padding: 0.875rem 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.hm_sec5 .focus-card .fc-header h4 {
  color: var(--White, #fff);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding-left: 2.625rem;
  position: relative;
}
section.hm_sec5 .focus-card .fc-header h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}
section.hm_sec5 .focus-card .fc-header h4.icon-broadcast::before {
  background-image: url("../images/f-icon1.png");
}
section.hm_sec5 .focus-card .fc-header h4.icon-digital::before {
  background-image: url("../images/f-icon2.png");
}
section.hm_sec5 .focus-card .fc-header h4.icon-boost::before {
  background-image: url("../images/f-icon3.png");
}
section.hm_sec5 .focus-card .fc-header h4.icon-analytics::before {
  background-image: url("../images/f-icon4.png");
}
section.hm_sec5 .focus-card .fc-header h4.icon-campaign::before {
  background-image: url("../images/f-icon5.png");
}
section.hm_sec5 .focus-card .fc-body {
  padding: 20px 15px;
  flex-grow: 1;
}
section.hm_sec5 .focus-card .fc-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
section.hm_sec5 .focus-card .fc-body ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.2rem;
}
section.hm_sec5 .focus-card .fc-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  background-image: url("../images/pink-trick-circle.png");
  background-size: contain;
  background-repeat: no-repeat;
}
section.hm_sec5 .focus-card .fc-body ul li p {
  margin: 0;
  color: #615d64;
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.hm_sec5 .focus-bottom-text {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
}
section.hm_sec5 .focus-bottom-text p {
  font-size: 1.05rem;
  color: #5b2c6f;
  line-height: 1.6;
  margin: 0;
}
section.hm_sec5 .focus-bottom-text p strong {
  font-weight: 700;
}

.dont-do-section {
  position: relative;
  background: #ff6b6b;
  padding: 60px 20px 10px;
  margin-top: 30px;
  margin-bottom: 6.25rem;
  text-align: center;
  z-index: 1;
}
.dont-do-section::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -75px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/pink-curve.png) no-repeat center center;
  background-size: cover;
  z-index: 0;
  height: 75px;
}
.dont-do-section .dont-do-header {
  position: relative;
  top: -49px;
  background: linear-gradient(0deg, #fa8383 0%, #ff4343 100%);
  padding: 18px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin-top: -25px;
  margin-bottom: -15px;
  z-index: 1;
}
.dont-do-section .dont-do-header::before {
  content: " ";
  position: absolute;
  left: -49px;
  top: 0;
  background-image: url(../images/red-ribbon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 100%;
}
.dont-do-section .dont-do-header::after {
  content: " ";
  position: absolute;
  right: -49px;
  top: 0;
  background-image: url(../images/red-ribbon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 100%;
  transform: scaleX(-1);
}
.dont-do-section .dont-do-header h3 {
  margin: 0;
  color: var(--White, #fff);
  text-align: center;
  font-family: Lato;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.dont-do-section {
  /* Point the fill to the gradient ID */
}
.dont-do-section .svg-shape-red {
  fill: url(#red-gradient);
}
.dont-do-section {
  /* Style the text */
}
.dont-do-section .svg-text {
  fill: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.dont-do-section .dont-do-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 65px;
  align-items: start;
  align-items: stretch;
}
.dont-do-section .dd-item {
  position: relative;
  padding: 10px;
}
.dont-do-section .dd-item .check-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  margin: 0 auto 0.8125rem;
}
.dont-do-section .dd-item .check-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.dont-do-section .dd-item p {
  color: var(--White, #fff);
  text-align: center;
  font-family: Lato;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.dont-do-section .dd-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.4);
}

section.hm_sec6 {
  background: #f3f8ff;
}
section.hm_sec6 .fm-img {
  width: 100%;
  aspect-ratio: 643/268;
  overflow: hidden;
  border-radius: 0.5rem;
}
section.hm_sec6 .fm-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hm_sec6 .circle_icon {
  margin: 0;
}

.notice-purple {
  margin-top: 1.125rem;
}
.notice-purple p {
  color: var(--Violet, #5b2c6f);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 150% */
}

section.hm_sec7 {
  text-align: center;
}
section.hm_sec7 .each-box {
  text-align: left;
  height: 11.75rem;
  align-items: flex-start;
}
section.hm_sec7 .each-box .content-below h3 {
  color: var(--Charcoal, #2b2b2b);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
section.hm_sec7 .each-box .content-below h6 {
  color: #615d64;
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.hm_sec7 .last-content p {
  color: var(--Violet, #5b2c6f);
}

.dont-do-section.blueBg {
  background: #00a8e8;
}
.dont-do-section.blueBg::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -64px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/blue-curve.png) no-repeat center center;
  background-size: cover;
  z-index: 0;
  height: 64px;
}
.dont-do-section.blueBg .dont-do-header {
  background: linear-gradient(180deg, #00a8e8 0%, #60d3ff 100%);
}
.dont-do-section.blueBg .dont-do-header::before {
  content: " ";
  position: absolute;
  left: -49px;
  top: 0;
  background-image: url(../images/blue-ribbon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 100%;
}
.dont-do-section.blueBg .dont-do-header::after {
  content: " ";
  position: absolute;
  right: -49px;
  top: 0;
  background-image: url(../images/blue-ribbon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 100%;
  transform: scaleX(-1);
}
.dont-do-section.blueBg {
  /* Connect the second blue shape to its unique gradient ID */
}
.dont-do-section.blueBg .svg-shape-blue-2 {
  fill: url(#blue-gradient-2);
}
.dont-do-section.blueBg .dont-do-grid.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

section.hm_sec8 {
  background-color: #f4f8fc;
}
section.hm_sec8 .content_txt {
  margin-bottom: 2.3125rem;
}
section.hm_sec8 .content_txt h2 {
  margin-bottom: 0;
}
section.hm_sec8 .ht-each {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 8px;
  padding: 0.625rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  gap: 0.625rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section.hm_sec8 .ht-each .icon-cross {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;
  margin-top: 2px;
}
section.hm_sec8 .ht-each .icon-cross img {
  width: 100%;
  height: auto;
  display: block;
}
section.hm_sec8 .ht-each .ht-conten h6 {
  color: var(--Violet, #5b2c6f);
  font-family: Lato;
  font-weight: 700;
  margin: 0;
}
section.hm_sec8 .ht-each .ht-conten p {
  color: var(--Charcoal, #2b2b2b);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3125rem; /* 131.25% */
}
section.hm_sec8 .txt-content {
  text-align: center;
}
section.hm_sec8 .txt-content p {
  color: #5b2c6f;
  margin: 0;
}

section.hm_sec_faq {
  background-color: #5b2c6f;
}
section.hm_sec_faq h2 {
  color: #fff;
  text-align: center;
  margin: 0 0 1.875rem;
}
section.hm_sec_faq .faq_box {
  width: 100%;
  padding: 0;
  margin: 0;
}
section.hm_sec_faq .faq_box .faq_item {
  text-align: left;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 4px;
  background: #6a3780;
  border: none;
  transition: all 0.3s ease-in-out;
}
section.hm_sec_faq .faq_box .faq_item:last-child {
  margin-bottom: 0;
}
section.hm_sec_faq .faq_box .faq_item.main_active .faq_hd h5 {
  color: #ffffff;
}
section.hm_sec_faq .faq_box .faq_item .faq_hd {
  cursor: pointer;
  position: relative;
  padding: 1.875rem 3.125rem 1.875rem 1.5625rem;
  border-radius: 4px;
}
section.hm_sec_faq .faq_box .faq_item .faq_hd::before {
  content: "\f107";
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  color: #ffffff;
  font-size: 1.1rem;
  transition: transform 0.3s ease-in-out;
}
section.hm_sec_faq .faq_box .faq_item .faq_hd.active::before {
  transform: translateY(-50%) rotate(180deg);
}
section.hm_sec_faq .faq_box .faq_item .faq_hd h5 {
  color: var(--White, #fff);
  font-family: Montserrat;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 133.333% */
  margin: 0;
}
section.hm_sec_faq .faq_box .faq_item .faq_cont {
  display: none;
  padding: 0 25px 25px 25px;
  margin: 0;
  border-top: none;
  max-width: 66.1875rem;
}
section.hm_sec_faq .faq_box .faq_item .faq_cont p {
  color: #f3f8ff;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 12px;
}
section.hm_sec_faq .faq_box .faq_item .faq_cont p:last-child {
  margin-bottom: 0;
}
section.hm_sec_faq .faq_box .faq_item .faq_cont ul {
  margin: 0 0 0.625rem;
}
section.hm_sec_faq .faq_box .faq_item .faq_cont ul li {
  color: #f3f8ff;
}

section.hm_sec10 .content_txt {
  margin-bottom: 1.875rem;
}
section.hm_sec10 .content_txt p {
  max-width: 37.6875rem;
  margin: 0 auto;
}
section.hm_sec10 .consult-cards-row {
  margin-bottom: 30px;
}
section.hm_sec10 .consult-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
section.hm_sec10 .consult-card .cc-header {
  background: #00a8e8;
  padding: 15px 30px 15px 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.hm_sec10 .consult-card .cc-header::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}
section.hm_sec10 .consult-card .cc-header.icon-calendar::before {
  background-image: url("../images/icon-calendar.svg");
}
section.hm_sec10 .consult-card .cc-header.icon-email::before {
  background-image: url("../images/icon-email.svg");
}
section.hm_sec10 .consult-card .cc-header h3 {
  color: #ffffff;
  margin: 0 0 5px 0;
}
section.hm_sec10 .consult-card .cc-header p {
  color: #e6e6e6;
  margin: 0;
}
section.hm_sec10 .consult-card .cc-header .header-link {
  color: #e6e6e6;
  text-decoration: none;
  transition: opacity 0.3s;
}
section.hm_sec10 .consult-card .cc-header .header-link:hover {
  opacity: 0.8;
}
section.hm_sec10 .consult-card .cc-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
section.hm_sec10 .consult-card .cc-body .body-intro {
  color: #615d64;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
section.hm_sec10 .consult-card .cc-body .action-list {
  margin-bottom: 0;
  flex-grow: 1;
}
section.hm_sec10 .consult-card .cc-body .action-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 1rem;
}
section.hm_sec10 .consult-card .cc-body .action-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  background: #5b2c6f;
  color: #ffffff;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
section.hm_sec10 .consult-card .cc-body .action-list li p {
  margin: 0;
  line-height: normal;
}
section.hm_sec10 .consult-card .cc-body .cc-footer .body-footer-text {
  margin: 0;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: normal;
}
section.hm_sec10 .after-talk-banner {
  background: #ff6b6b;
  border-radius: 4px;
  padding: 1.875rem 1.25rem;
  margin-top: 0;
}
section.hm_sec10 .after-talk-banner h3 {
  color: var(--White, #fff);
  text-align: center;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1.25rem;
}
section.hm_sec10 .after-talk-banner p,
section.hm_sec10 .after-talk-banner strong {
  color: #ffffff;
}
section.hm_sec10 .after-talk-banner .main-outcome-list ul > li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1rem;
}
section.hm_sec10 .after-talk-banner .main-outcome-list ul > li:last-child {
  margin-bottom: 0;
}
section.hm_sec10 .after-talk-banner .main-outcome-list ul > li::before {
  content: " ";
  position: absolute;
  background: url(../images/white-arrow.png) no-repeat center;
  left: 0;
  top: 0;
  color: #ffffff;
  width: 16px;
  height: 24px;
  aspect-ratio: 2/3;
  background-size: contain;
}
section.hm_sec10 .after-talk-banner .main-outcome-list ul > li > p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}
section.hm_sec10 .after-talk-banner .sub-outcome-list {
  margin-top: 1.2rem;
  margin-bottom: 1rem;
  margin-left: -30px;
}
section.hm_sec10 .after-talk-banner .sub-outcome-list ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.8rem;
}
section.hm_sec10 .after-talk-banner .sub-outcome-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #ffffff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/circle-arrow-white.png) no-repeat center;
  background-size: contain;
}
section.hm_sec10 .after-talk-banner .sub-outcome-list ul li p {
  margin: 0;
  font-size: 0.95rem;
}
section.hm_sec10 .after-talk-banner .final-note {
  margin: 0em 0 0 0;
  font-weight: 600;
  text-align: left;
}

section.hm_sec11 {
  background-color: #f4f8fc;
}
section.hm_sec11 .form-title-wrapper {
  text-align: center;
  margin-bottom: 1.875rem;
}
section.hm_sec11 .form-title-wrapper h2 {
  color: #5b2c6f;
  margin: 0;
}
section.hm_sec11 .consultation-form-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 63px 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
section.hm_sec11 .consultation-form-card .form-group {
  margin-bottom: 25px;
}
section.hm_sec11 .consultation-form-card .form-group label {
  display: block;
  color: #4a4a4a;
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 8px;
}
section.hm_sec11 .consultation-form-card .form-group label .req {
  color: #ff6b6b;
  margin-left: 2px;
}
section.hm_sec11 .consultation-form-card .form-group input[type=text],
section.hm_sec11 .consultation-form-card .form-group input[type=email],
section.hm_sec11 .consultation-form-card .form-group input[type=tel],
section.hm_sec11 .consultation-form-card .form-group select {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 15px;
  font-size: 1rem;
  color: #333333;
  box-shadow: none;
  margin-bottom: 0;
  transition: border-color 0.3s;
}
section.hm_sec11 .consultation-form-card .form-group input[type=text]:focus,
section.hm_sec11 .consultation-form-card .form-group input[type=email]:focus,
section.hm_sec11 .consultation-form-card .form-group input[type=tel]:focus,
section.hm_sec11 .consultation-form-card .form-group select:focus {
  border-color: #5b2c6f;
  outline: none;
}
section.hm_sec11 .consultation-form-card .form-group select {
  background-position: right 1rem center;
  padding-right: 3rem;
}
section.hm_sec11 .consultation-form-card .checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-top: 10px;
}
section.hm_sec11 .consultation-form-card .checkbox-grid .check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}
section.hm_sec11 .consultation-form-card .checkbox-grid .check-label input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #e2e2e2;
  border-radius: 6px;
  background-color: #ffffff;
  margin: 0;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  position: relative;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}
section.hm_sec11 .consultation-form-card .checkbox-grid .check-label input[type=checkbox]::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  transform: scale(0);
  transition: 120ms transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b6b' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
section.hm_sec11 .consultation-form-card .checkbox-grid .check-label input[type=checkbox]:checked {
  border-color: #e2e2e2;
  background-color: #ffffff;
}
section.hm_sec11 .consultation-form-card .checkbox-grid .check-label input[type=checkbox]:checked::before {
  transform: scale(1);
}
section.hm_sec11 .consultation-form-card .checkbox-grid .check-label input[type=checkbox]:focus {
  outline: none;
  border-color: #d0d0d0;
  box-shadow: 0 0 0 3px rgba(91, 44, 111, 0.15);
}
section.hm_sec11 .consultation-form-card .checkbox-grid .check-label span {
  color: #4a4a4a;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  line-height: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
section.hm_sec11 .consultation-form-card .form-submit-wrapper {
  text-align: center;
  margin-top: 0;
}
section.hm_sec11 .consultation-form-card .form-submit-wrapper .btn.submit_button {
  position: relative;
  border: none;
  padding: 0.5rem 0.5rem 0.5rem 1.8rem;
  cursor: pointer;
}
section.hm_sec11 .consultation-form-card .form-submit-wrapper .btn.submit_button input[type=submit] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
section.hm_sec11 .consultation-form-card .form-submit-wrapper .form-disclaimer {
  margin-top: 20px;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background-color: #2b2b2b;
  color: #d1d1d1;
  padding: 80px 0 40px;
}
.site-footer .footer-top {
  margin-bottom: 0;
}
.site-footer .footer-col {
  margin-bottom: 30px;
}
.site-footer .footer-col h3 {
  color: #fff;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 120% */
  margin: 0 0 1.875rem;
}
.site-footer .adjust_space {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.site-footer .footer-brand {
  margin-bottom: 50px;
  max-width: 194px;
  width: 100%;
}
.site-footer .footer-brand a {
  display: block;
  width: 100%;
  height: 100%;
}
.site-footer .footer-brand img {
  width: 100%;
}
.site-footer .social-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}
.site-footer .social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  color: #2b2b2b;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer .social-icons ul li a:hover {
  background-color: #ff6b6b;
  color: #ffffff;
  transform: translateY(-3px);
}
.site-footer .ft-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .ft-info ul li {
  margin-bottom: 1rem;
}
.site-footer .ft-info ul li a {
  color: var(--White, #fff);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer .ft-info ul li a:hover {
  color: #ff6b6b;
}
.site-footer .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-contact ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}
.site-footer .footer-contact ul li i {
  color: #ffffff;
  font-size: 1rem;
  margin-top: 4px;
  margin-right: 12px;
  width: 16px;
  text-align: center;
}
.site-footer .footer-contact ul li a,
.site-footer .footer-contact ul li span {
  color: var(--White, #fff);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s;
}
.site-footer .footer-contact ul li a:hover {
  color: #ff6b6b;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}
.site-footer .footer-bottom .bottom-content .copyright {
  color: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 1rem;
}
.site-footer .footer-bottom .bottom-content .disclaimer {
  color: #adadad;
  text-align: center;
  font-family: Lato;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  max-width: 100%;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */