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

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--Deep-Gray, #2c3e50);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}

img {
  max-width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

a {
  transition: all 0.3s ease-in-out;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

li,
ol {
  list-style: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

h1 {
  color: #3a3a3a;
  font-family: Inter;
  font-size: 3.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 4.375rem; /* 134.615% */
  margin-bottom: 0.625rem;
}

h2 {
  color: #3a3a3a;
  font-family: Inter;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.875rem; /* 127.778% */
  margin-bottom: 1rem;
}

h3 {
  color: #fff;
  font-family: Inter;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem; /* 118.182% */
  margin-bottom: 1rem;
}

h4 {
  color: #3a3a3a;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}

h5 {
  color: #3a3a3a;
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 133.333% */
  margin-bottom: 1rem;
}

p {
  color: var(--Deep-Gray, #2c3e50);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 1.875rem;
}

select {
  -webkit-appearance: none;
  /* Removes default appearance in Safari */
  -moz-appearance: none;
  /* Removes default appearance in Firefox */
  appearance: none;
  /* Standard */
  outline: none;
  /* Removes the focus outline */
  box-shadow: none;
  /* Removes the box shadow */
  padding: 1rem 0.625rem;
  /* Add padding for better UI */
  background-color: #fff;
  /* Background color */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6z" fill="%23666"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.625rem;
}

button:focus {
  outline: none !important;
}

.btn {
  color: var(--White, #fff);
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem; /* 144.444% */
  display: inline-flex;
  padding: 0.625rem 1.0625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1.875rem;
  background: #ff6b35;
  position: relative;
}
.btn img {
  width: 1.125rem;
  transition: all 0.3s ease-in-out;
}
.btn:before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid #ff6b35;
  border-radius: 50px;
}
.btn:hover {
  background-color: white;
  color: #ff6b35;
}
.btn:hover img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(77%) saturate(3758%) hue-rotate(337deg) brightness(104%) contrast(105%);
}
.btn.white-btn {
  border-radius: 1.875rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: var(--White, #fff);
  color: var(--Deep-Gray, #2c3e50);
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 144.444% */
  display: flex;
  max-width: 218px;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn.white-btn:before {
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.btn.white-btn:hover {
  background-color: rgb(0, 0, 0);
  color: white;
}

.chips {
  display: inline-flex;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 30px;
  background: var(--Teal, #0d7377);
  color: #fff;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 10px;
}
.chips.inlightbg {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.sectiondefaultspacing {
  padding: 5rem 0;
}

section,
div {
  scroll-margin-top: 5.625rem;
}

header {
  z-index: 99;
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  background-color: white;
  border-bottom: 1px solid #ddd;
}
header .head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .head-row .main_logo {
  max-width: 15.125rem;
}
header .head-row .main_logo img {
  width: 100%;
}
header .head-row .main_links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
header .head-row .main_links ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
header .head-row .main_links ul li {
  padding: 0;
}
header .head-row .main_links ul li a {
  color: #3a3a3a;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 2.125rem 0.25rem;
}
header .head-row .top-right-sec {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
header .head-row .top-right-sec a:not(.btn) {
  color: var(--Gold, #ff6b35);
  font-family: "Open Sans";
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
header .head-row .top-right-sec a:not(.btn):hover {
  color: #3a3a3a;
}

.banner {
  background-color: var(--Teal, #0d7377);
  position: relative;
}
.banner .bg {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(50vw - 25px);
  bottom: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .text {
  padding: 4.37rem 0;
}
.banner .text h1 {
  color: white;
}
.banner .text p {
  font-size: 1.125rem;
  color: white;
  max-width: 33.125rem;
  margin-bottom: 1.88rem;
  line-height: 1.875rem; /* 166.667% */
}
.banner .text ul {
  padding-top: 2.5rem;
  padding-bottom: 1.875rem;
  display: flex;
  align-items: center;
  row-gap: 0.625rem;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-wrap: wrap;
}
.banner .text ul li {
  color: #fff;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: calc(50% - 0.9375rem);
  width: 100%;
  position: relative;
  padding-left: 1.0447rem;
}
.banner .text ul li::before {
  content: "";
  background: url(../images/tick.png) no-repeat 0 0;
  background-size: 0.875rem;
  width: 12px;
  height: 9px;
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
}
.banner .text .qstns {
  display: flex;
  padding: 20px 16px;
  row-gap: 64px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  background: #116d71;
}
.banner .text .qstns .lft {
  max-width: 50%;
  width: 100%;
}
.banner .text .qstns .rgt {
  max-width: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.banner .text .qstns .rgt .icon {
  background-color: white;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.125rem;
  flex: 1 0 3rem;
}
.banner .text .qstns .rgt .icon img {
  width: 1.75rem;
  height: 1.75rem;
  aspect-ratio: 1/1;
}
.banner .text .qstns p {
  margin: 0;
  font-weight: 300;
}
.banner .text .qstns p strong {
  font-weight: 700;
}
.banner .text .qstns p a {
  color: white;
}
.banner .text .qstns p a:hover {
  color: #ff6b35;
}
.banner .text .qstns .text {
  padding: 0;
}

.problem {
  position: relative;
}
.problem .prb-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: calc(50vw + 160px);
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.whatweoffer {
  background-color: var(--Teal, #0d7377);
}
.whatweoffer h2,
.whatweoffer p {
  color: white;
}
.whatweoffer h2 + p {
  color: #d5d5d5;
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem; /* 144.444% */
  max-width: 75.125rem;
}
.whatweoffer .offerslider {
  padding-bottom: 5rem;
}
.whatweoffer .offerbx {
  display: flex;
  flex-direction: column;
  min-height: 432px;
  padding: 20px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(225deg, #219ea4 0%, #148488 100%);
  border-radius: 6px;
}
.whatweoffer .offerbx .icon {
  display: flex;
  width: 73px;
  height: 73px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: linear-gradient(225deg, #219ea4 0%, #148488 100%);
}
.whatweoffer .offerbx .text p {
  color: #d5d5d5;
  margin-bottom: 0;
}
.whatweoffer .swiper-button-bottom {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  position: absolute;
  right: 0;
  bottom: 0;
}
.whatweoffer .swiper-button-bottom .swiper-buttons {
  position: static;
  width: 3.125rem;
  height: 3.125rem;
  border: 1px solid white;
  border-radius: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.whatweoffer .swiper-button-bottom .swiper-buttons:hover {
  background-color: white;
}
.whatweoffer .swiper-button-bottom .swiper-buttons:hover img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(19%) saturate(1706%) hue-rotate(133deg) brightness(97%) contrast(95%);
}
.whatweoffer .swiper-button-bottom .swiper-buttons img {
  width: 0.73438rem;
  transition: all 0.3s ease-in-out;
}
.whatweoffer .swiper-button-bottom .swiper-buttons.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.funding {
  background-color: #e6feff;
}
.funding h2 + p {
  color: var(--Deep-Gray, #2c3e50);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.funding .funding-tab-outer {
  box-sizing: border-box;
}
.funding .funding-tab-outer .tab-list {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  justify-content: space-between;
}
.funding .funding-tab-outer .tab-list .tab-item {
  display: flex;
  width: 14.9375rem;
  padding: 0.9688rem 0.75rem;
  flex-direction: column;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0.375rem;
  border: 1px solid #ddebff;
  background: #e6feff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.funding .funding-tab-outer .tab-list .tab-item .tab-title {
  color: #3a3a3a;
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.funding .funding-tab-outer .tab-list .tab-item .tab-desc {
  color: #616161;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}
.funding .funding-tab-outer .tab-list .tab-item.active {
  background-color: #0d7377;
  border-color: #0d7377;
}
.funding .funding-tab-outer .tab-list .tab-item.active .tab-title {
  color: #fff;
}
.funding .funding-tab-outer .tab-list .tab-item.active .tab-desc {
  color: #87b0b2;
}
.funding .funding-tab-outer .tab-content {
  display: none;
  justify-content: space-between;
}
.funding .funding-tab-outer .tab-content.active {
  display: flex;
}
.funding .funding-tab-outer .tab-content .content-left {
  gap: 1.13rem;
  display: flex;
  flex-direction: column;
  max-width: 33.125rem;
  width: 100%;
  justify-content: space-between;
}
.funding .funding-tab-outer .tab-content .content-left .progress-block {
  margin-bottom: 36px;
}
.funding .funding-tab-outer .tab-content .content-left .progress-block h4 {
  color: #3a3a3a;
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.125rem;
}
.funding .funding-tab-outer .tab-content .content-left .progress-block p {
  color: #616161;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.375rem;
}
.funding .funding-tab-outer .tab-content .content-left .progress-block .bar-bg {
  width: 100%;
  height: 8px;
  background-color: #d9d9d9;
}
.funding .funding-tab-outer .tab-content .content-left .progress-block .bar-bg .bar-fill {
  height: 100%;
  background-color: #3a3a3a;
}
.funding .funding-tab-outer .tab-content .content-left .cl-left-bottom h4 {
  margin-bottom: 0.25rem;
}
.funding .funding-tab-outer .tab-content .content-left .cl-left-bottom p:last-of-type {
  margin-bottom: 0;
}
.funding .funding-tab-outer .tab-content .content-right {
  max-width: 646px;
  width: 100%;
}
.funding .funding-tab-outer .tab-content .content-right .info-card {
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.375rem;
  background: #fff;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.625rem;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 1rem;
  width: 100%;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-header .icon-wrap {
  width: 48px;
  height: 48px;
  background-color: #f1f1f1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-header .icon-wrap svg {
  width: 24px;
  height: 24px;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-header .header-text h3 {
  color: #3a3a3a;
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.12em;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-header .header-text p {
  color: #616161;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-details {
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-details .detail-row {
  display: flex;
  gap: 15px;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-details .detail-row.border-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-details .detail-row.border-row .detail-box {
  display: flex;
  padding: 0.875rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #cacaca;
  background: #fff;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-details .detail-row.bg-row {
  border-radius: 0.375rem;
  background: #f5f6f8;
  padding: 0.875rem;
  width: 100%;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-details .detail-row.bg-row .detail-box {
  flex: 1;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-details .detail-row .detail-box h5 {
  color: #3a3a3a;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.25rem;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-details .detail-row .detail-box p {
  color: #616161;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-footer h3 {
  color: #3a3a3a;
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.25rem;
}
.funding .funding-tab-outer .tab-content .content-right .info-card .card-footer p {
  color: #616161;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

.help-row .help-row-repeat {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5rem;
}
.help-row .help-row-repeat .img {
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
}
.help-row .help-row-repeat .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.help-row .help-row-repeat .text h2 + p {
  margin-bottom: 1rem;
}
.help-row .help-row-repeat .text p + ul {
  padding-bottom: 1.87rem;
  margin-bottom: 1.87rem;
  border-bottom: 1px solid #d9d9d9;
}
.help-row .help-row-repeat .text h3 {
  color: var(--Navy-Blue, #1e3a5f);
  margin-bottom: 1rem;
}
.help-row .help-row-repeat .text h3 + ul {
  margin-bottom: 1.87rem;
}
.help-row .help-row-repeat .text h3 + ul li {
  color: #3a3a3a;
  font-weight: 600;
}
.help-row .help-row-repeat .text h3 + ul li:before {
  background: url(../images/list-share.png) no-repeat 0 0;
}
.help-row .help-row-repeat .text h3 + ul + p {
  color: #616161;
  font-size: 1.125rem;
  line-height: 1.5rem; /* 133.333% */
  margin-bottom: 0;
}
.help-row .help-row-repeat .text ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  align-self: stretch;
}
.help-row .help-row-repeat .text ul li {
  color: #616161;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  position: relative;
  padding-left: 1.625rem;
}
.help-row .help-row-repeat .text ul li:before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1/1;
  left: 0;
  top: 0.125rem;
  background: url(../images/circle-tick.png) no-repeat 0 0;
}
.help-row .help-row-repeat .text ul li strong {
  font-weight: 600;
}
.help-row .help-row-repeat .text ul li:last-child {
  margin-bottom: 0;
}
.help-row .help-row-repeat .row:nth-child(2n) {
  flex-direction: row-reverse;
}
.help-row .help-row-repeat .funding-steps-wrapper {
  margin-top: 1.8rem;
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_group {
  margin-bottom: 46px;
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_trigger {
  padding: 0.875rem;
  position: relative;
  cursor: pointer;
  color: #3a3a3a;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 120% */
  padding-left: 60px;
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_trigger .step-num {
  display: flex;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0.1875rem 0.625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  aspect-ratio: 1/1;
  border-radius: 1.25rem;
  background: #ff6b35;
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 133.333% */
  position: absolute;
  left: 0;
  top: 10px;
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_trigger.active {
  background-color: #fff;
  color: #333;
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_container {
  display: none;
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_container .acc_inner {
  padding: 0 0 30px 60px;
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_container .acc_inner p:last-of-type {
  margin-bottom: 0;
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_container .acc_inner .intro-text {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_container .acc_inner ul {
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_container .acc_inner ul li strong {
  color: #3a3a3a;
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_container .acc_inner ul li:before {
  background: url(../images/circle-tick-orange.png);
}
.help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_container .acc_inner h6 {
  color: #3a3a3a;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 10px 0;
}

.pricing-cost {
  background-color: var(--Teal, #0d7377);
  text-align: center;
}
.pricing-cost h2 {
  color: white;
}
.pricing-cost p {
  color: #d5d5d5;
  max-width: 68.125rem;
  margin: 0 auto 1.875rem;
}

.pricing-cost-bx {
  text-align: left;
  height: 100%;
  border-radius: 0.375rem;
  background: #188b90;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}
.pricing-cost-bx h3 {
  color: white;
}
.pricing-cost-bx ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
.pricing-cost-bx ul li {
  color: var(--White, #fff);
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  padding-left: 1.625rem;
}
.pricing-cost-bx ul li:before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1/1;
  left: 0;
  top: 0.125rem;
  background: url(../images/list-share-white.png) no-repeat 0 0;
}

.aboutpratt .about-pratt-top {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 1.88rem;
  margin-bottom: 1.88rem;
}
.aboutpratt .about-pratt-top .img {
  overflow: hidden;
  border-radius: 0.625rem;
  height: 100%;
}
.aboutpratt .about-pratt-top .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutpratt .about-pratt-top .txt p {
  margin-bottom: 1.25rem;
}
.aboutpratt .about-pratt-top .txt p:last-of-type {
  margin-bottom: 0;
}
.aboutpratt .about-pratt-top .txt h6 {
  color: #3a3a3a;
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 133.333% */
  margin: 1rem 0 0.7rem;
}
.aboutpratt .about-pratt-bottom h4 {
  margin-bottom: 1.88rem;
}
.aboutpratt .about-pratt-bottom .about-pratt-bottom-bx {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
}
.aboutpratt .about-pratt-bottom .about-pratt-bottom-bx .icon {
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1/1;
}
.aboutpratt .about-pratt-bottom .about-pratt-bottom-bx .txt h5 {
  margin-bottom: 0.75rem;
}
.aboutpratt .about-pratt-bottom .about-pratt-bottom-bx .txt p {
  margin-bottom: 0;
}

.faq {
  background-color: #e6feff;
  text-align: center;
}
.faq h2 {
  margin-bottom: 1.88rem;
}
.faq .faq_box {
  text-align: center;
  max-width: 65.6rem;
  margin: 0 auto;
}
.faq .faq_group {
  text-align: left;
  margin-bottom: 1.88rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  align-self: stretch;
}
.faq .faq_item {
  padding: 1.25rem;
  width: 100%;
  border-radius: 0.5rem;
  background: var(--White, #fff);
}
.faq .faq_item .acc_trigger {
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #3a3a3a;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 120% */
}
.faq .faq_item .acc_trigger h4:before {
  content: "+";
  position: absolute;
  font-family: fontawesome;
  right: 0;
  top: 0;
}
.faq .faq_item .acc_trigger.active {
  background-color: #fff;
  color: #333;
}
.faq .faq_item .acc_trigger.active h4:before {
  content: "\f068";
}
.faq .faq_item .acc_container {
  display: none;
}
.faq .faq_item .acc_container .acc_inner {
  padding: 0;
  margin-top: 1.88rem;
}
.faq .faq_item .acc_container .acc_inner p {
  color: #616161;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem; /* 162.5% */
}
.faq .faq_item .acc_container .acc_inner p:last-of-type {
  margin-bottom: 0;
}

.rightfunding {
  position: relative;
}
.rightfunding:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #122233 0%, rgba(18, 34, 51, 0.3) 111.34%);
}
.rightfunding .container {
  position: relative;
  z-index: 1;
}
.rightfunding h2 {
  color: var(--White, #fff);
}
.rightfunding p {
  color: #d5d5d5;
}
.rightfunding .mxw61 {
  max-width: 61.125rem;
}
.rightfunding .mxw61 p {
  margin-bottom: 1.06rem;
}
.rightfunding .mxw61 h6 {
  color: var(--White, #fff);
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 133.333% */
  margin-bottom: 0.62rem;
}
.rightfunding .mxw61 ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  align-self: stretch;
  margin-bottom: 1.19rem;
}
.rightfunding .mxw61 ul li {
  color: #d5d5d5;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  position: relative;
  padding-left: 1.625rem;
}
.rightfunding .mxw61 ul li:before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1/1;
  left: 0;
  top: 0.125rem;
  background: url(../images/circle-tick-orange.png) no-repeat 0 0;
}
.rightfunding .mxw61 ul li strong {
  font-weight: 600;
  color: white;
}

.bfa-wrapper .bfa-top {
  max-width: 54.1rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.bfa-wrapper .bfa-top h2 {
  color: #1e3a5f;
}
.bfa-wrapper .bfa-top p {
  margin-bottom: 0;
}
.bfa-wrapper .bfa-top p a {
  color: var(--Navy-Blue, #1e3a5f);
  font-weight: 600;
}
.no-js .bfa-wrapper .multi-step-form fieldset button,
.no-js .bfa-wrapper .multi-step-form h2, .bfa-wrapper .multi-step-form.edit-form fieldset button,
.bfa-wrapper .multi-step-form.edit-form h2 {
  display: none !important;
}
.no-js .bfa-wrapper .multi-step-form fieldset, .bfa-wrapper .multi-step-form.edit-form fieldset {
  display: block !important;
}
.no-js .bfa-wrapper .multi-step-form [type=submit],
.no-js .bfa-wrapper .multi-step-form [type=reset], .bfa-wrapper .multi-step-form.edit-form [type=submit],
.bfa-wrapper .multi-step-form.edit-form [type=reset] {
  display: inline-block !important;
}
.no-js .bfa-wrapper .multi-step-form .steps, .bfa-wrapper .multi-step-form.edit-form .steps {
  display: none;
}
.bfa-wrapper .multi-step-form fieldset {
  display: none;
}
.bfa-wrapper .multi-step-form fieldset:first-of-type {
  display: block;
}
.bfa-wrapper .multi-step-form fieldset.hidden {
  display: none;
}
.bfa-wrapper .multi-step-form fieldset.visible {
  display: block;
}
.bfa-wrapper .multi-step-form .steps button {
  border: 0;
}
.bfa-wrapper .multi-step-form .steps [disabled] {
  background: none;
}
.bfa-wrapper .multi-step-form .steps .active {
  background: #eee;
}
.bfa-wrapper .error {
  color: red;
}
.bfa-wrapper label .optional {
  font-weight: normal;
  font-size: 90%;
}
.bfa-wrapper .bfa-form-wrapper {
  max-width: 54.1rem;
  margin: 0 auto;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-bottom: 2.5rem;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  flex: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  min-height: 4.625rem;
  justify-content: space-between;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:before {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  top: 24%;
  background: rgba(58, 58, 58, 0.25);
  transform: translateY(-50%);
  z-index: -1;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  top: 24%;
  width: 50%;
  z-index: -1;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:first-child {
  align-items: flex-start;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:last-child {
  align-items: flex-end;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button span.num {
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border-radius: 6.25rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: var(--Accent-Color---02, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Primary-Color---02, #3a3a3a);
  text-align: center;
  font-family: "Open Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem; /* 142.857% */
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button span.text {
  color: #616161;
  font-family: "Open Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 171.429% */
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button.active:after {
  background-color: #ff6b35;
  left: 37px;
  top: 24%;
  width: 60%;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button.active span.num {
  outline: 1px solid #ff6b35;
  outline-offset: 3px;
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: white;
  width: 2.125rem;
  height: 2.125rem;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button.active span.text {
  color: var(--Navy-Blue, #1e3a5f);
  font-family: "Open Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem; /* 142.857% */
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:nth-child(2).active:after {
  background-color: #ff6b35;
  z-index: 1;
  left: -108px;
  width: 100%;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:nth-child(3).active:after {
  background-color: #ff6b35;
  z-index: 1;
  left: -66px;
  top: 24%;
  width: 76%;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:nth-child(4).active:after {
  background-color: #ff6b35;
  z-index: 1;
  left: -66px;
  top: 24%;
  width: 76%;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:nth-child(5).active:after {
  background-color: #ff6b35;
  z-index: 1;
  left: -65px;
  top: 24%;
  width: 116%;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form h4 {
  color: var(--Navy-Blue, #1e3a5f);
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem; /* 133.333% */
  margin-bottom: 1.88rem;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row-outer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row.half .inputcontainer {
  width: 50%;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row.fileupload .inputcontainer {
  max-width: 50%;
  width: 100%;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row.fileupload .fileuploadbx {
  width: 100%;
  display: flex;
  height: 180px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  align-self: stretch;
  position: relative;
  border-radius: 6px;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  background: #fff;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row.fileupload .fileuploadbx img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row.fileupload .fileuploadbx h5 {
  color: var(--Deep-Gray, #2c3e50);
  text-align: center;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
  word-break: break-word;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row.fileupload .fileuploadbx h5.file-selected {
  color: #28a745; /* Turn green or bold to show success */
  font-weight: 700;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row.fileupload .fileuploadbx span {
  color: #616161;
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row.fileupload .fileuploadbx input[type=file] {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row.fileupload .fileuploadbx + p {
  color: #616161;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin-bottom: 0;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row.fileupload .fileuploadbx.drag-over {
  background-color: #f0f7ff; /* Light blue tint or your brand color */
  border-color: #007bff; /* Border highlight */
  transform: scale(1.02); /* Subtle "pop" effect */
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 0 0;
  width: 100%;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer label {
  color: #616161;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer label span {
  color: var(--Gold, #ff6b35);
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer input:not([type=radio], [type=checkbox], [type=submit]),
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer select {
  border-radius: 0.375rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 0.907rem 1rem;
  width: 100%;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer select {
  background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6z" fill="%23666"/></svg>') no-repeat;
  background-position: right 1rem center;
  background-size: 13.172px;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .signature-bx {
  display: flex;
  height: 224px;
  padding: 16px 16px 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 6px;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  background: #fff;
  width: 100%;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .signature-bx textarea {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  resize: none;
  background: transparent;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .signature-bx .clearbx {
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .signature-bx .clearbx a.editbtn,
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .signature-bx .clearbx a.keyboard-btn {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: var(--White, #fff);
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .agreebx {
  margin-top: 30px;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .agreebx h4 {
  margin-bottom: 16px;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .agreebx .switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  margin-bottom: 16px;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .agreebx .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .agreebx .switch input:checked + .slider::before {
  transform: translateX(20px);
  background-color: rgb(59, 59, 59);
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .agreebx .switch input:checked + .slider {
  border-color: rgb(59, 59, 59);
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .agreebx .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 34px;
  transition: 0.3s;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer .agreebx .switch .slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: #d3d3d3;
  border-radius: 50%;
  transition: 0.3s;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .radiobx-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .radiobx-inner label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .radiobx-inner label input[type=radio] {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: var(--White, #fff);
  accent-color: #ed6736;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .btn-row {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.bfa-wrapper .bfa-form-wrapper .multi-step-form .btn-row .btn {
  max-width: 218px;
  width: 100%;
}

.submit-wrap .submit-wrap-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}
.submit-wrap .submit-wrap-inner img {
  margin-bottom: 2.5rem;
  width: 4rem;
  height: 4rem;
  aspect-ratio: 1/1;
}
.submit-wrap .submit-wrap-inner h4 {
  color: var(--Navy-Blue, #1e3a5f);
  text-align: center;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem; /* 133.333% */
  margin-bottom: 1rem;
}
.submit-wrap .submit-wrap-inner p {
  margin-bottom: 2.5rem;
}

footer {
  background-color: var(--Teal, #0d7377);
  padding-top: 3.75rem;
}
footer .ft-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
footer .ft-top .ftlogo {
  margin-bottom: 1.88rem;
}
footer .ft-top .ftlogo + p {
  color: #d5d5d5;
  margin-bottom: 0;
}
footer .ft-top p {
  color: white;
  leading-trim: both;
  text-edge: cap;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}
footer .ft-top .mxw19 {
  max-width: 19.1rem;
}
footer .ft-top .mx16 {
  max-width: 16.3rem;
}
footer .ft-top .mx16 h4 {
  color: white;
  margin-bottom: 1.88rem;
}
footer .ft-top .mx16 ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
}
footer .ft-top .mx16 ul li {
  color: #d5d5d5;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}
footer .ft-top .mx16 ul li a {
  color: #d5d5d5;
}
footer .ft-center {
  padding-top: 1.88rem;
  padding-bottom: 1.88rem;
}
footer .ft-center ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
}
footer .ft-center ul li {
  display: flex;
  padding: 0.625rem;
  align-items: center;
  gap: 0.625rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 3.125rem;
  background: var(--White, #fff);
}
footer .ft-bot {
  border-bottom: 1px solid #dadada;
  padding-bottom: 1.88rem;
}
footer .ft-bot p {
  color: white;
}
footer .ft-bot p:last-of-type {
  margin-bottom: 0;
}
footer .ft-copyright {
  padding: 1.88rem 0;
}
footer .ft-copyright p {
  color: #d5d5d5;
  text-align: center;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  html {
    font-size: 80%;
  }
  .whatweoffer .offerbx {
    min-height: 295px;
  }
}
@media screen and (max-width: 1199px) {
  .banner .text .qstns {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .banner .text ul li {
    max-width: calc(50% - 1.2375rem);
  }
  .banner .text ul {
    align-items: flex-start;
  }
  .whatweoffer .offerbx {
    min-height: 300px;
  }
  .help-row .help-row-repeat .text ul li:before,
  .help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_container .acc_inner ul li:before,
  .rightfunding .mxw61 ul li:before {
    background-size: 100% 100%;
  }
  .funding .funding-tab-outer .tab-content-wrapper .tab-content.active {
    display: flex;
    gap: 15px;
  }
  .funding .funding-tab-outer .tab-list .tab-item .tab-desc br {
    display: none;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button.active:after {
    left: 30px;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:nth-child(2).active:after {
    left: -87px;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:nth-child(3).active:after {
    left: -52px;
    width: 75%;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:nth-child(4).active:after {
    left: -52px;
    width: 75%;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:nth-child(5).active:after {
    left: -52px;
    width: 115%;
  }
}
@media screen and (max-width: 991px) {
  html {
    font-size: 70%;
  }
  h1 {
    font-size: 2.85rem;
    line-height: 3.475rem;
  }
  .banner .text ul li {
    max-width: calc(50% - 1.4375rem);
  }
  .banner .text .qstns {
    padding: 10px;
  }
  .mobile-nav-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
  }
  header .head-row {
    padding: 12px 0;
  }
  .stellarnav .menu-toggle {
    background: var(--Teal, #0d7377);
    border-radius: 50px;
    height: 35px;
    width: 35px;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .stellarnav .menu-toggle span.bars {
    position: relative;
    top: 0;
    gap: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .stellarnav .menu-toggle span.bars span {
    display: block;
    width: 20px;
    height: 0.17rem;
    border-radius: 0.375rem;
    background: #fff;
    margin: 0;
  }
  .whatweoffer .offerbx {
    min-height: 240px;
  }
  .help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_trigger {
    padding-left: 30px;
  }
  .help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_container .acc_inner {
    padding: 0 0 30px 30px;
  }
  h2 {
    color: #3a3a3a;
    font-family: Inter;
    font-size: 2.15rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.875rem;
    margin-bottom: 1rem;
  }
  .stellarnav.mobile.right > ul {
    left: auto;
    right: -100%;
  }
  .stellarnav.mobile.right > ul:before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
  }
  .stellarnav.mobile.current-menu-item ul {
    left: auto;
    right: 0;
    background-color: rgba(13, 115, 119, 0.8509803922);
  }
  header .head-row .main_links ul li a {
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 1rem 1.2rem;
  }
  .stellarnav.mobile.right > ul,
  .stellarnav.mobile.left > ul {
    max-width: 20rem;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:nth-child(2).active:after {
    left: -77px;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:nth-child(3).active:after {
    left: -45px;
    width: 75%;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:nth-child(4).active:after {
    left: -45px;
    width: 75%;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:nth-child(5).active:after {
    left: -45px;
    width: 115%;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
  h1 {
    font-size: 2.05rem;
    line-height: 2.575rem;
  }
  h2 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  h4 {
    font-size: 1.05rem;
  }
  h5 {
    font-size: 0.99rem;
    margin-bottom: 0.2rem;
  }
  p {
    font-size: 1rem !important;
    line-height: 1.55rem !important;
    margin-bottom: 1.25rem;
  }
  .problem .prb-bg {
    max-width: 100%;
    width: 100%;
    pointer-events: none;
    scale: 1.3;
    transform-origin: bottom left;
  }
  header .head-row .main_logo {
    max-width: 9rem;
  }
  .banner .bg {
    position: static;
    width: 100%;
    height: unset;
  }
  .banner .text {
    padding: 2rem 0;
  }
  .banner .text p {
    margin-bottom: 1.18rem;
  }
  .banner .text ul li {
    max-width: calc(50% - 0.3375rem);
  }
  .banner .text ul {
    align-items: flex-start;
    gap: 10px;
  }
  .banner .text ul {
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
  }
  .banner .text .qstns .lft,
  .banner .text .qstns .rgt {
    max-width: 100%;
    width: 100%;
  }
  .banner .text .qstns {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .banner .text .qstns .rgt .icon {
    background-color: white;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3.125rem;
    flex: 1 0 3rem;
    max-width: 3rem;
  }
  .stellarnav .menu-toggle {
    height: 40px;
    width: 40px;
  }
  .sectiondefaultspacing {
    padding: 2.5rem 0;
  }
  .help-row .help-row-repeat .text {
    margin-top: 0;
  }
  .help-row .help-row-repeat {
    gap: 2.5rem;
  }
  .help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_trigger {
    padding-left: 45px;
    padding-right: 0;
  }
  .help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_trigger .step-num {
    top: 10px;
  }
  .help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_trigger {
    font-size: 1.125rem;
  }
  .help-row .help-row-repeat .funding-steps-wrapper .faq_group {
    margin-bottom: 15px;
  }
  .help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_container .acc_inner {
    padding: 0 0 15px 45px;
  }
  .help-row .help-row-repeat .funding-steps-wrapper .faq_item .acc_container .acc_inner ul {
    margin-top: 15px;
    padding-bottom: 10px;
  }
  .pricing-cost .row {
    gap: 0.9375rem;
  }
  .aboutpratt .about-pratt-top .img {
    height: unset;
    margin-bottom: 20px;
  }
  .aboutpratt .about-pratt-bottom .about-pratt-bottom-bx {
    gap: 0.575rem;
  }
  .about-pratt-bottom .row {
    gap: 25px;
  }
  .faq .faq_item .acc_trigger h4 {
    padding: 0 30px 0 0px;
    font-size: 1.15rem;
  }
  .problem,
  .whatweoffer,
  .help-row,
  .pricing-cost,
  .aboutpratt,
  .faq,
  .rightfunding,
  .funding,
  footer {
    text-align: center;
  }
  footer .ft-top .mx16 {
    max-width: 100%;
    width: 100%;
  }
  footer .ft-top .mx16 ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    align-self: stretch;
  }
  footer .ft-center ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .rightfunding .mxw61 ul {
    text-align: left;
  }
  .aboutpratt .about-pratt-bottom .about-pratt-bottom-bx .icon {
    margin: 0 auto;
  }
  .aboutpratt .about-pratt-bottom .about-pratt-bottom-bx .txt h5 {
    margin-bottom: 0.35rem;
  }
  .help-row .help-row-repeat .funding-steps-wrapper .faq_group {
    margin-bottom: 15px;
    text-align: left;
  }
  .help-row .help-row-repeat .text ul,
  .banner .text ul,
  .banner .text .qstns .text,
  .banner .text .qstns {
    text-align: left;
  }
  .problem {
    overflow: hidden;
  }
  .whatweoffer .offerbx {
    min-height: 240px;
    display: flex;
    align-items: center;
    text-align: center;
  }
  .banner .text {
    text-align: center;
  }
  footer {
    padding-top: 2.5rem;
  }
  footer .ft-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  footer .ft-top .ftlogo {
    max-width: 10rem;
    margin: 0 auto 1rem;
  }
  footer .ft-top .mxw19 {
    max-width: 100%;
  }
  footer .ft-top .mx16 h4 {
    color: white;
    margin-bottom: 1rem;
  }
  footer .ft-copyright {
    padding: 0.88rem 0;
  }
  footer .ft-copyright p {
    font-size: 0.8rem !important;
  }
  .funding .funding-tab-outer .tab-list {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
    justify-content: space-between;
    flex-direction: column;
  }
  .funding .funding-tab-outer .tab-list .tab-item {
    width: 100%;
  }
  /* Mobile Accordion Styles */
  .funding-tab-outer .tab-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .funding-tab-outer .tab-item {
    cursor: pointer;
    /* Add an arrow icon to indicate it's an accordion */
    position: relative;
  }
  .funding-tab-outer .tab-item::after {
    content: "+"; /* Or use an SVG chevron */
    position: absolute;
    right: 20px;
    top: 20px; /* Adjust based on your title height */
    font-size: 24px;
    transition: transform 0.3s ease;
  }
  .funding-tab-outer .tab-item.active::after {
    content: "-";
    color: white;
  }
  .funding-tab-outer {
    /* Content styling when inside the Accordion */
  }
  .funding-tab-outer .tab-content {
    display: none;
    padding-top: 20px;
    flex-direction: column;
    gap: 30px;
    background-color: white;
    padding: 15px;
    margin-top: 15px;
    border-radius: 7px;
  }
  .funding-tab-outer .tab-content.active {
    display: flex; /* Or block, depending on your desktop setup */
    animation: fadeIn 0.3s ease-in-out;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  header .head-row .top-right-sec {
    background: white;
    /* left: 0; */
    right: 0;
    padding: 0.6rem;
    max-width: 20rem;
  }
  header .head-row .main_links ul li a.btn,
  header .head-row .top-right-sec a:not(.btn) {
    font-size: 1rem;
  }
  header .head-row .main_links ul li a.btn {
    padding: 7px 12px;
    font-size: 0.8rem;
  }
  .mobile-appended-li {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 20rem;
  }
  header .head-row .top-right-sec a:not(.btn) {
    padding: 0;
  }
  header .head-row .top-right-sec {
    justify-content: space-between;
  }
  header .head-row .main_links ul li a {
    font-size: 1rem;
  }
  .funding .funding-tab-outer .tab-content .content-right .info-card {
    padding: 0;
  }
  .funding .funding-tab-outer .tab-content,
  .funding .funding-tab-outer .tab-list .tab-item {
    gap: 0;
    text-align: left;
  }
  .funding .funding-tab-outer .tab-content .content-right .info-card .card-details .detail-row.border-row {
    flex-direction: column;
  }
  .funding .funding-tab-outer .tab-content .content-right .info-card .card-details .detail-row.bg-row {
    flex-direction: column;
  }
  header .head-row .top-right-sec,
  header .head-row .main_links {
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .stellarnav.mobile {
    display: none;
  }
  .loaded header .head-row .main_links,
  .loaded header .head-row .top-right-sec {
    opacity: 1;
  }
  .loaded .stellarnav.mobile {
    display: block;
  }
  .funding .funding-tab-outer .tab-content .content-left .progress-block h4 {
    font-size: 1.05rem;
  }
  section,
  div {
    scroll-margin-top: 4rem;
  }
  .help-row .help-row-repeat .row,
  .help-row .help-row-repeat .row:nth-child(2n) {
    gap: 1.125rem;
  }
  .about-pratt-bottom-bx .txt {
    width: 100%;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:before,
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button.active:after {
    display: none !important;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:first-child,
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button:last-child {
    align-items: center;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 10px;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .steps button {
    max-width: 50%;
    width: 100%;
    flex: 1 0 33%;
    /* gap: 10px; */
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
    flex-direction: column;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer input:not([type=radio], [type=checkbox], [type=submit]),
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer select {
    padding: 0.807rem 1rem;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .btn-row .btn {
    max-width: 50%;
    width: 100%;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .radiobx-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
  .bfa-wrapper .bfa-form-wrapper .multi-step-form .inputcontainer-row.fileupload .inputcontainer {
    max-width: 100%;
  }
  .submit-wrap .submit-wrap-inner p {
    text-align: center;
  }
  .submit-wrap .submit-wrap-inner img {
    margin-bottom: 1rem;
  }
  .submit-wrap .submit-wrap-inner h4 {
    margin-bottom: 0.6rem;
  }
  .submit-wrap .submit-wrap-inner p {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}
/* Ensure Desktop Tab Content is hidden when not active */
@media (min-width: 768px) {
  .tab-content {
    display: none;
  }
  .tab-content.active {
    display: flex; /* Assuming your desktop content-left/right use flex */
  }
}/*# sourceMappingURL=style.css.map */