@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans";
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
}

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

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

a:hover {
  color: #ff7f00;
}

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

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: 16px 10px;
  /* 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 10px center;
  background-size: 10px;
}

/* =========================================
   UI ELEMENT: NATIVE GLOBAL INPUTS
   ========================================= */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
select,
textarea {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.9375rem 1rem;
  font-size: 1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  /* 1. Placeholder Styling */
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=password]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #ababab;
  opacity: 1; /* Fixes Firefox fading issue */
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ababab;
  opacity: 1; /* Fixes Firefox fading issue */
}
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
select,
textarea {
  /* 2. Hover State */
}
input[type=text]:hover:not(:disabled):not([readonly]),
input[type=email]:hover:not(:disabled):not([readonly]),
input[type=tel]:hover:not(:disabled):not([readonly]),
input[type=number]:hover:not(:disabled):not([readonly]),
input[type=password]:hover:not(:disabled):not([readonly]),
select:hover:not(:disabled):not([readonly]),
textarea:hover:not(:disabled):not([readonly]) {
  border-color: #b3b3b3;
}
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
select,
textarea {
  /* 3. Focus State */
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
  border-color: #ff7f00;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255, 127, 0, 0.15);
}
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
select,
textarea {
  /* 4. Disabled & Read-only States */
}
input[type=text]:disabled, input[type=text][readonly],
input[type=email]:disabled,
input[type=email][readonly],
input[type=tel]:disabled,
input[type=tel][readonly],
input[type=number]:disabled,
input[type=number][readonly],
input[type=password]:disabled,
input[type=password][readonly],
select:disabled,
select[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #f8f9fa;
  color: #6c757d;
  cursor: not-allowed;
  border-color: #e0e0e0;
  box-shadow: none;
}

/* Select Dropdown Specifics */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%231a1a1a"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 12px;
  cursor: pointer;
  padding-right: 40px;
}

/* Textarea Specifics */
textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

/* Helper for labels (Still a good idea to keep this as a class for flexibility, or target 'label' globally) */
label {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

::-moz-selection {
  background-color: #0446c2;
  /* The highlight background */
  color: #ffffff;
  /* The text color when selected */
}

::selection {
  background-color: #0446c2;
  /* The highlight background */
  color: #ffffff;
  /* The text color when selected */
}

button:focus {
  outline: none !important;
}

.container {
  max-width: 96%;
  margin: 0 auto;
}

.glb_btn {
  border-radius: 0.125rem;
  background: var(--accent, #0446c2);
  padding: 1.75rem 3.5rem;
  color: var(--White, #fff);
  text-align: center;
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
}
.glb_btn:hover {
  background-color: #013579;
  color: #fff;
}
.glb_btn img {
  width: 1rem;
  height: 1rem;
}
.glb_btn.blur {
  border-radius: 0.125rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  color: #a1a1aa;
  padding: 1rem;
}
.glb_btn.blur span {
  color: #fff;
}
.glb_btn.orange {
  background: var(--Primary, #ff7f00);
}
.glb_btn.orange:hover {
  background: var(--Primary, #d86c00);
}

h1 {
  color: #fff;
  font-family: "Work Sans";
  font-size: 4.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 5.225rem;
}

h2 {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 3.8125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 4.19375rem;
}

h3 {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 1.9375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.13125rem;
}

h4 {
  font-family: "Work Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem;
}

p {
  color: #a1a1aa;
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

header {
  width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 9;
  padding: 0.38rem 0;
}
header .menu_area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .menu_area .main_logo {
  max-width: 7.8rem;
}
header .menu_area .main_logo img {
  width: 100%;
}
header .menu_area .main_links {
  display: flex;
  gap: 4.38rem;
  align-items: center;
}
header .menu_area .main_links ul {
  gap: 2.44rem;
}
header .menu_area .main_links ul li a {
  color: #52525b;
  /* Desktop/xs-1/Medium */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  padding: 0 0 0.38rem;
  border-bottom: 2px solid #fff;
  transition: all 0.5s ease;
}
header .menu_area .main_links ul li a::before {
  display: none;
}
header .menu_area .main_links ul li a:hover {
  border-color: #ff7f00;
  color: #ff7f00;
}
header .hd_cta a {
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: linear-gradient(90deg, #013579 0%, #39bc7d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
header .hd_cta a img {
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.6s ease;
}
header .hd_cta a span {
  padding-right: 10px;
  transition: all 0.6s ease;
}
header .hd_cta a:hover {
  gap: 0.7rem;
}
header .hd_cta a:hover img {
  transform: rotate(42deg);
}
header .hd_cta a:hover span {
  padding-right: 0;
}
header .glb_btn {
  padding: 1.05rem 1.5rem;
}

.sub_heading {
  color: #ff7f00;
  /* Desktop/xs-1/SemiBold */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  position: relative;
  padding-left: 0;
  margin-bottom: 0.63rem;
}
.sub_heading::before {
  content: "";
  width: 3rem;
  height: 2px;
  background-color: #ff7f00;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.5rem;
}

.blue_sub_heading {
  color: var(--accent, #0446c2);
  /* Desktop/xs-2/Bold */
  font-family: "Work Sans";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1rem;
  margin-bottom: 0.62rem;
}

.pd-5 {
  padding: 5rem 0;
}

.pd-6 {
  padding: 6rem 0;
}

.heroSec {
  position: relative;
}
.heroSec::before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
  left: 0;
  top: 0;
  inset: 0;
}
.heroSec h1 {
  margin-bottom: 2rem;
}
.heroSec h1 span {
  color: #ff7f00;
}
.heroSec p {
  max-width: 56rem;
  font-size: 1.25rem;
  color: #d4d4d8;
}
.heroSec .bg {
  width: 100%;
  max-height: 821px;
  -o-object-fit: cover;
     object-fit: cover;
}
.heroSec p.para {
  border-left: 4px solid #ff7f00;
  padding-left: 1.5rem;
  max-width: 42rem;
  margin-bottom: 2rem;
  color: #d4d4d8;
}
.heroSec .top {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heroSec .btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.heroSec .btns .glb_btn {
  padding: 1.06rem 2.5rem;
}
.heroSec .btns .glb_btn.blur {
  gap: 0.31rem;
  padding: 1rem;
}

.homeSec2 {
  background-color: #f9f9f9;
}
.homeSec2 p {
  color: #5e5e5e;
  max-width: 43.125rem;
}
.homeSec2 .row {
  row-gap: 2.5rem;
}
.homeSec2 .g-30 {
  row-gap: 1.88rem;
}
.homeSec2 .cardWrap {
  background-color: #f3f3f3;
  padding: 1.875rem 2.25rem 2.125rem 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4.5rem;
  height: 100%;
}
.homeSec2 .cardWrap img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.homeSec2 .cardWrap h5 {
  color: #1b1b1b;
  /* Desktop/xs-1/SemiBold */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  /* 150% */
  margin: 0;
}
.homeSec2 .annualCard {
  height: 100%;
  position: relative;
  background-color: #fff;
}
.homeSec2 .annualCard .img {
  position: relative;
}
.homeSec2 .annualCard .img::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 22.16%, rgba(255, 255, 255, 0.7) 60.71%, #fff 100%);
  inset: 0;
}
.homeSec2 .annualCard .img img {
  width: 100%;
}
.homeSec2 .annualCard .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1.88rem;
}
.homeSec2 .annualCard .txt .icon {
  margin-bottom: 0.62rem;
  width: 1.5625rem;
  height: 1.5625rem;
}
.homeSec2 .annualCard .txt h5 {
  color: #000;
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  padding-right: 1rem;
  margin-bottom: 1.25rem;
}
.homeSec2 .annualCard .txt h4 {
  color: var(--accent, #0446c2);
  font-family: "Work Sans";
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.68125rem;
  margin-bottom: 0;
}
.homeSec2 .annualCard .txt h4 span {
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  display: block;
  margin-top: 0.62rem;
}

.homeSec3 {
  position: relative;
  background: #18181b;
}
.homeSec3 .sideImg {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.6;
  width: 40rem;
}
.homeSec3 .sideImg img {
  width: 100%;
}
.homeSec3 .sideImg::before {
  content: "";
  position: absolute;
  background: linear-gradient(270deg, #18181b 0%, rgba(24, 24, 27, 0) 57.47%), linear-gradient(0deg, rgba(24, 24, 27, 0) 52.71%, #18181b 94.34%), linear-gradient(270deg, rgba(24, 24, 27, 0) 50%, #18181b 100%), linear-gradient(180deg, rgba(24, 24, 27, 0) 37.62%, #18181b 100%);
  inset: 0;
}
.homeSec3 .row {
  margin-bottom: 4rem;
}
.homeSec3 .row:last-child {
  margin-bottom: 0;
  padding-top: 2rem;
}
.homeSec3 .txtWrap h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.homeSec3 h3 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.homeSec3 .issueWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.homeSec3 .issueWrap .wrapCard {
  width: 24.7%;
  background: #27272a;
  padding: 1.88rem;
}
.homeSec3 .issueWrap .wrapCard .icon {
  width: 1.68rem;
  height: 1.68rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 2.5rem;
}
.homeSec3 .issueWrap .wrapCard h5 {
  margin: 0;
  color: #fff;
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.63rem;
}
.homeSec3 .issueWrap .wrapCard p {
  margin: 0;
}
.homeSec3 .solutionimg {
  width: 100%;
  height: 100%;
  border-radius: 0.125rem;
  border-left: 8px solid var(--accent, #0446c2);
}
.homeSec3 .solutionimg img {
  width: 100%;
  max-width: 92%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.homeSec3 .solutionContent h3 {
  margin-bottom: 2rem;
  color: #fff;
}
.homeSec3 .solutionContent p {
  margin-bottom: 2rem;
  max-width: 36rem;
}
.homeSec3 .solutionContent ul li {
  position: relative;
  padding-left: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
}
.homeSec3 .solutionContent ul li:last-child {
  margin-bottom: 0;
}
.homeSec3 .solutionContent ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../images/check-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.homeSec4 .top {
  margin-bottom: 2.5rem;
}
.homeSec4 p {
  color: #5e5e5e;
}
.homeSec4 .srvcWraps {
  display: flex;
  flex-wrap: wrap;
  gap: 2.38rem;
}
.homeSec4 .srvcCard {
  max-width: calc(33% - 21px);
  width: 100%;
  border: 1px solid #e2e2e2;
  background: #fff;
  padding: 1.88rem 1.88rem 2.38rem;
  margin: 0;
  position: relative;
  transition: all 0.5s ease;
}
.homeSec4 .srvcCard:hover {
  background: transparent;
}
.homeSec4 .srvcCard:hover .bg {
  opacity: 1;
  visibility: visible;
}
.homeSec4 .srvcCard:hover .icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(82deg) brightness(102%) contrast(103%);
}
.homeSec4 .srvcCard:hover h6,
.homeSec4 .srvcCard:hover p {
  color: #fff;
}
.homeSec4 .srvcCard .bg {
  position: absolute;
  inset: 0;
  background-color: #000;
  z-index: -1;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.homeSec4 .srvcCard .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}
.homeSec4 .srvcCard .icon {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1.56rem;
}
.homeSec4 .srvcCard h6 {
  margin: 0 0 0.62rem;
  color: #1b1b1b;
  /* Desktop/xs-1/SemiBold */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}
.homeSec4 .srvcCard p {
  margin: 0;
  color: #5e5e5e;
  max-width: 26rem;
}

.homeSec5 {
  padding: 6rem 0;
  background: #f3f3f3;
}
.homeSec5 h3 {
  margin-bottom: 2rem;
  line-height: 1.2;
}
.homeSec5 .chooseWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.88rem;
}
.homeSec5 .chooseCard {
  width: 48.6%;
  background-color: #fff;
  border-left: 3px solid #1a1a9c;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
}
.homeSec5 .chooseCard p {
  margin: 0;
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem;
}

.homeSec6 {
  text-align: center;
}
.homeSec6 h6 {
  margin-bottom: 0.625rem;
  text-align: center;
}
.homeSec6 h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}
.homeSec6 p {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  color: #5e5e5e;
  text-align: center;
  /* Desktop/xs-1/Medium */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
}
.homeSec6 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2rem;
  margin-bottom: 1.875rem;
}
.homeSec6 ul li {
  position: relative;
  padding-left: 2rem;
  color: #2e2e2e;
  text-align: left;
  /* Desktop/xs-1/Regular */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  /* 150% */
}
.homeSec6 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../images/check-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.homeSec6 .glb_btn {
  margin: 0 auto;
}

.homeSec7 {
  padding: 5rem 0;
  background-color: #fcf9f8;
}
.homeSec7 .sec7Wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.88rem 2.28rem;
}
.homeSec7 .sec7Wrap .sec7Card {
  padding: 2rem 1.25rem;
  background: rgba(243, 243, 243, 0.5);
}
.homeSec7 .sec7Wrap .sec7Card h6 {
  color: var(--accent, #0446c2);
  margin-bottom: 0.63rem;
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem;
  /* 140% */
}
.homeSec7 .sec7Wrap .sec7Card p {
  margin: 0;
  color: #2e2e2e;
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem; /* 175% */
  max-width: 34rem;
}
.homeSec7 .sec7Footer {
  background: transparent;
  display: flex;
  gap: 1.88rem;
  align-items: center;
  flex-wrap: wrap;
  width: -moz-max-content;
  width: max-content;
  margin: 1.88rem auto 0;
}
.homeSec7 .sec7Footer img {
  width: 11rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.homeSec7 .sec7Footer p {
  color: #000;
  /* Desktop/xs-1/Medium */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 0.25rem;
}

.innerbanner {
  position: relative;
}
.innerbanner > img {
  width: 100%;
}
.innerbanner:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.innerbanner .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
}
.innerbanner .banner-text {
  max-width: 44rem;
  width: 100%;
}
.innerbanner .innerbanner-badge {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  align-items: flex-start;
  background: var(--Primary, #ff7f00);
  color: var(--White, #fff);
  /* Desktop/xs-2/Semibold */
  font-family: "Work Sans";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1rem;
  /* 123.077% */
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.innerbanner h1 {
  color: #fff;
  /* Desktop/4xl/SemiBold */
  font-family: "Work Sans";
  font-size: 3.8125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 4.19375rem;
  /* 110% */
  margin-bottom: 2rem;
}
.innerbanner h1 span {
  color: var(--Primary, #ff7f00);
  display: block;
}
.innerbanner p {
  color: #e5e2e1;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2rem;
  /* 133.333% */
  padding-left: 1.5rem;
  border-left: 4px solid #ff7f00;
}

.common-problems h3 {
  margin-bottom: 3rem;
}
.common-problems .row {
  gap: calc(var(--bs-gutter-x)) 0;
}
.common-problems.haslist .solutionimg img {
  width: 100%;
}
.common-problems.haslist .solutionContent {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
}
.common-problems.haslist h3 {
  margin-bottom: 2rem;
}
.common-problems.haslist ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 15px 40px;
  flex-direction: column;
}
.common-problems.haslist ul li {
  color: #1b1b1b;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.common-problems.haslist ul li:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #ff7f00;
  position: absolute;
  top: 8px;
  left: 0;
}

.common-grey-bx {
  padding: 2.5rem;
  border-radius: 0.5rem;
  background: #27272a;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-shrink: 0;
  align-self: stretch;
  height: 100%;
}
.common-grey-bx .icon {
  display: flex;
  width: 3.5rem;
  max-width: 3.5rem;
  height: 3.5rem;
  padding: 0.75rem;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 3.5rem;
  border-radius: 0.5rem;
  background: #ff7f00;
}
.common-grey-bx .text {
  max-width: 21rem;
}
.common-grey-bx .text h5 {
  color: #fff;
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem;
  /* 140% */
  margin-bottom: 0;
}
.common-grey-bx .text h5:has(+ p) {
  margin-bottom: 0.84rem;
}
.common-grey-bx .text p {
  color: #a1a1aa;
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 0;
}

.compliance {
  background: #f6f3f2;
}
.compliance .compliance-inner {
  overflow: hidden;
  border-radius: 2.5rem;
  position: relative;
}
.compliance .compliance-inner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  bottom: -120px;
}
.compliance .compliance-inner h4 {
  color: #fff;
  font-family: "Work Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem;
  /* 133.333% */
  position: absolute;
  left: 3.13rem;
  bottom: 2.5rem;
  z-index: 1;
  margin-bottom: 0;
}

.difference .difference-outer {
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  padding: 3.00638rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
  border-radius: 0.5rem;
  background: #f3f3f3;
}
.difference .difference-outer .difference-inner {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}
.difference .difference-outer .difference-inner .blue_sub_heading {
  margin-bottom: 1.44rem;
}
.difference .difference-outer .difference-inner h3 {
  margin-bottom: 1.52rem;
}
.difference .difference-outer .difference-inner p {
  color: #5e5e5e;
  text-align: center;
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 0;
}

.precision {
  background-color: #000;
  text-align: center;
}
.precision h2 {
  color: var(--White, #fff);
  text-align: center;
  /* Desktop/3xl/SemiBold */
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  line-height: 3.36875rem;
  /* 110% */
  margin-bottom: 1.5rem;
}
.precision p {
  max-width: 37.10813rem;
  width: 100%;
  color: var(--Light-BG, #ebf2ff);
  text-align: center;
  /* Desktop/base/Regular */
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 140% */
  margin: 0 auto;
  margin-bottom: 2.5rem;
}
.precision .btn-container {
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.precision .btn-container a.glb_btn {
  padding: 1.75rem 3.5rem;
}

.prepforce {
  text-align: center;
}
.prepforce h3 {
  color: #1b1b1b;
  text-align: center;
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem;
  /* 111.111% */
  margin-bottom: 1.3rem;
}
.prepforce p {
  color: #5e5e5e;
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  margin: 0 auto 1.5rem;
  max-width: 43.125rem;
  width: 100%;
}
.prepforce .log-row {
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.41rem;
}
.prepforce .log-row .log-row-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.prepforce .log-row .log-row-inner .icon {
  display: flex;
  width: 3.75rem;
  height: 4.3125rem;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  background: #eae7e7;
}
.prepforce .log-row .log-row-inner .text {
  text-align: left;
}
.prepforce .log-row .log-row-inner .text h6 {
  color: #444;
  font-family: Inter;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 0.9375rem;
  /* 125% */
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.prepforce .log-row .log-row-inner .text h5 {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5625rem;
  /* 125% */
  margin-bottom: 0;
}
.prepforce .log-row .log-row-inner .text h5 a {
  color: #1b1b1b;
}
.prepforce .log-row .log-row-inner .text h5 a:hover {
  color: #0446c2;
}
.prepforce .textcontent {
  text-align: center;
}
.prepforce .textcontent p {
  margin-bottom: 0;
  max-width: 100%;
  color: #5e5e5e;
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
}
.prepforce .bluebx {
  display: flex;
  padding: 2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
  background: var(--accent, #0446c2);
}
.prepforce .bluebx h6 {
  color: #fff;
  font-family: "Work Sans";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1rem;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0;
}
.prepforce .bluebx .bluebx-bottom {
  width: 100%;
}
.prepforce .bluebx ul {
  text-align: left;
  display: inline-grid;
  row-gap: 1rem;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-self: stretch;
  grid-template-rows: repeat(2, fit-content(100%));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}
.prepforce .bluebx ul li {
  color: #fff;
  /* Desktop/xs-1/Medium */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  /* 150% */
  position: relative;
  padding-left: 2rem;
}
.prepforce .bluebx ul li img {
  position: absolute;
  left: 0;
  top: 2px;
}

/* FAQ Section Styles */
.faq-main {
  background-color: #fcf9f8;
}
.faq-main .faq-header {
  text-align: center;
  margin-bottom: 1.88rem;
}
.faq-main .faq-header h3 {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-style: normal;
  line-height: 2.25rem;
  /* 100% */
  margin-bottom: 0.75rem;
}
.faq-main .faq-header p {
  color: #5e5e5e;
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  /* 162.5% */
  max-width: 46.0625rem;
  margin: 0 auto;
  width: 100%;
}
.faq-main .faq-accordion {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.faq-main .faq-accordion .faq-item {
  padding: 1rem 2rem;
  border: 1px solid rgba(174, 174, 174, 0.1);
  background: #fff;
}
.faq-main .faq-accordion .faq-item .faq-title {
  padding: 0;
  padding-bottom: 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem;
  /* 160% */
  letter-spacing: -0.0375rem;
  transition: all 0.3s ease;
}
.faq-main .faq-accordion .faq-item .faq-title .icon {
  width: 2.125rem;
  height: 2.125rem;
  background-color: #0446c2;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 1.5rem;
}
.faq-main .faq-accordion .faq-item .faq-title .icon i {
  transition: transform 0.3s ease;
  color: white;
}
.faq-main .faq-accordion .faq-item .faq-content {
  display: none;
  padding: 0;
}
.faq-main .faq-accordion .faq-item .faq-content p {
  color: #584235;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  margin-bottom: 0;
  max-width: 68rem;
  width: 100%;
}
.faq-main .faq-accordion .faq-item .faq-content ul {
  margin-top: 0.625rem;
}
.faq-main .faq-accordion .faq-item .faq-content ul li {
  padding-left: 1.5rem;
  position: relative;
}
.faq-main .faq-accordion .faq-item .faq-content ul li:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #ff7f00;
  position: absolute;
  top: 8px;
  left: 0;
}
.faq-main .faq-accordion .faq-item.active .faq-title .icon {
  background-color: #f3f4f6;
  color: #1b1b1b;
}
.faq-main .faq-accordion .faq-item.active .faq-title .icon i {
  transform: rotate(180deg);
  color: #72809e;
}

.join-the-network {
  background: #000;
  padding: 3.75rem 0;
}
.join-the-network .join-the-network-row {
  display: flex;
  align-items: center;
  gap: 6rem;
  justify-content: space-between;
  padding: 0 2rem;
}
.join-the-network .join-the-network-row .left-part {
  flex: 0 0 45%;
  max-width: 45%;
}
.join-the-network .join-the-network-row .left-part h3 {
  color: #fff;
  text-transform: uppercase;
  /* Desktop/2xl/SemiBold */
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  line-height: 2.3rem;
  /* 110% */
}
.join-the-network .join-the-network-row .left-part p {
  color: #a1a1aa;
  /* Desktop/lg/Regular */
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 1.82813rem;
  /* 162.5% */
  margin-bottom: 0;
}
.join-the-network .join-the-network-row .right-part {
  flex: auto;
  max-width: -moz-max-content;
  max-width: max-content;
}
.join-the-network .join-the-network-row .right-part p {
  margin-bottom: 3rem;
}

.leadership {
  background: #f6f3f2;
}
.leadership .leadership-bx h3 {
  color: #1b1b1b;
  /* Desktop/2xl/SemiBold */
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  line-height: 2.3rem;
  /* 110% */
  margin-bottom: 1.5rem;
}
.leadership .leadership-bx p {
  padding: 2rem;
  border-left: 4px solid #ff7f00;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #584235;
  font-family: Inter;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.82813rem;
  /* 162.5% */
}
.leadership .leadership-bx.blackline p {
  border-color: #1b1b1b;
}

/* Methodology Section Styles */
.methodlogy {
  background-color: #fcf9f8;
}
.methodlogy .blue_sub_heading {
  color: #974900;
}
.methodlogy .methodology-top {
  margin-bottom: 4rem;
}
.methodlogy .methodology-top h2 {
  margin-bottom: 0;
}
.methodlogy .methodology-top p {
  margin-bottom: 0;
  color: #584235;
}
.methodlogy .methodology-grid .meth-card {
  height: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.methodlogy .methodology-grid .meth-card .icon {
  margin-bottom: 7.56rem;
}
.methodlogy .methodology-grid .meth-card .icon svg {
  width: 32px;
  height: 32px;
}
.methodlogy .methodology-grid .meth-card h4 {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem;
  /* 133.333% */
}
.methodlogy .methodology-grid .meth-card p {
  color: #584235;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 0;
}
.methodlogy .methodology-grid .meth-card.light-card {
  background-color: #f2f1ef;
}
.methodlogy .methodology-grid .meth-card.light-card h4 {
  color: #1b1b1b;
}
.methodlogy .methodology-grid .meth-card.light-card p {
  color: #584235;
}
.methodlogy .methodology-grid .meth-card.dark-card {
  background-color: #1c1c1c;
}
.methodlogy .methodology-grid .meth-card.dark-card h4 {
  color: #ffffff;
}
.methodlogy .methodology-grid .meth-card.dark-card p {
  color: #a1a1aa;
}
.methodlogy .methodology-grid .meth-card.blue-card {
  background-color: #0446c2;
  padding: 2.5rem;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  justify-content: flex-start;
}
.methodlogy .methodology-grid .meth-card.blue-card .content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}
.methodlogy .methodology-grid .meth-card.blue-card h3 {
  color: white;
}
.methodlogy .methodology-grid .meth-card.blue-card p {
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 0;
  color: white;
}
.methodlogy .methodology-grid .meth-card.blue-card .bg-icon {
  position: absolute;
  right: 2rem;
  bottom: auto;
  z-index: 1;
  max-width: 5rem;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.methodlogy .methodology-grid .meth-card.blue-card .bg-icon svg {
  width: 100%;
  height: unset;
  opacity: 0.8;
}

/* Partnership Section Styles */
.partnership-section {
  background-color: #1f1f1f;
}
.partnership-section .partnership-content {
  border-left: 6px solid #ff7f00;
  padding-left: 2.5rem;
}
.partnership-section .partnership-content .blue_sub_heading {
  color: #ff7f00;
}
.partnership-section .partnership-content h2 {
  color: white;
}
.partnership-section .partnership-content h2 span {
  color: #ff7f00;
}
.partnership-section .partnership-content .priority-box {
  background-color: #2c2c2c;
  padding: 2.5rem 3rem;
}
.partnership-section .partnership-content .priority-box h4 {
  font-weight: 400;
  margin-bottom: 0;
}
.partnership-section .partnership-content .priority-box .priority-sub {
  color: #ff7f00;
  font-family: "Work Sans";
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.partnership-section .partnership-content .priority-box ul {
  margin: 0;
  padding-left: 1.5rem;
}
.partnership-section .partnership-content .priority-box ul li {
  color: #ffffff;
  font-family: "Inter";
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  position: relative;
  list-style-type: disc;
}
.partnership-section .partnership-content .priority-box ul li::marker {
  color: #ffffff;
}
.partnership-section .partnership-content .priority-box ul li:last-child {
  margin-bottom: 0;
}
.partnership-section .partnership-content .partner-btn {
  color: #1b1b1b !important;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.partnership-section .partnership-content .partner-btn:hover {
  color: #ffffff !important;
}
.partnership-section .partnership-content .part-footer-txt {
  color: #e4e4e7;
  font-family: "Inter";
  font-size: 1rem;
  margin-bottom: 0;
}

.srvcSec2 {
  background-color: #000;
  padding: 6rem 0 5.06rem;
}
.srvcSec2 .rateWrap {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 3rem;
}
.srvcSec2 .rateWrap .rateCard {
  flex: 1;
  background-color: #1a1a1a;
  padding: 3rem;
  border-left: 3px solid #ff7f00;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.srvcSec2 .rateWrap .rateCard:first-child {
  margin-right: 1px;
}
.srvcSec2 .rateWrap .rateCard .rateLabel {
  color: #ff7f00;
  font-family: Inter;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.225rem;
  text-transform: uppercase;
}
.srvcSec2 .rateWrap .rateCard .ratePrice {
  color: #fff;
  font-family: "Work Sans";
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: 4.1rem;
  margin-bottom: 1rem;
}
.srvcSec2 .rateWrap .rateCard .rateDesc {
  color: #a3a3a3;
  font-family: "Work Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.srvcSec2 .rateNote {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1rem;
  letter-spacing: 0.15rem;
  margin: 0 auto;
  max-width: 38rem;
}

.srvcSec3 {
  background: #f6f3f2;
}
.srvcSec3 h3 {
  margin-bottom: 1rem;
}
.srvcSec3 p {
  max-width: 37rem;
  color: #5e5e5e;
  font-family: Inter;
}
.srvcSec3 .srvcWraps {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.srvcSec3 .srvcWraps .srvcCard {
  background: #fcf9f8;
  padding: 2rem 2rem 1rem;
  max-width: calc(25% - 3px);
  width: 100%;
  min-height: 11rem;
}
.srvcSec3 .srvcWraps .srvcCard .icon {
  width: 1.5rem;
  margin-bottom: 1.5rem;
}
.srvcSec3 .srvcWraps .srvcCard h6 {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.0875rem;
}
.srvcSec3 .srvcWraps .srvcCard h5 {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: 2rem;
  margin-bottom: 0.5rem;
}
.srvcSec3 .srvcWraps .srvcCard p {
  color: #5e5e5e;
  font-family: Inter;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

.srvcSec4 {
  position: relative;
  overflow: hidden;
}
.srvcSec4 .abs_txt {
  position: absolute;
  left: 0;
  top: 3.7rem;
}
.srvcSec4 .abs_txt h6 {
  color: rgba(0, 0, 0, 0.05);
  font-family: Inter;
  font-size: 10rem;
  font-style: normal;
  font-weight: 900;
  line-height: 9rem;
  margin-bottom: 0;
}
.srvcSec4 .imgDv {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #f6f3f2;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.srvcSec4 .imgDv img {
  width: 100%;
  border-radius: 0.125rem;
  max-height: 35.5rem;
}
.srvcSec4 .imgDv .txt {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  width: 15.625rem;
  background-color: #ebf2ff;
}
.srvcSec4 .imgDv .txt span {
  color: #2e2e2e;
  font-family: Inter;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9375rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.srvcSec4 .imgDv .txt h6 {
  color: #2e2e2e;
  font-family: "Work Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.125rem;
  margin-bottom: 0;
}
.srvcSec4 h5 {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 900;
  line-height: 2.5rem;
  margin-bottom: 3rem;
  letter-spacing: -0.1125rem;
  margin-top: 2rem;
}
.srvcSec4 .infoList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.srvcSec4 .infoList li {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e8e8e8;
}
.srvcSec4 .infoList li:last-child {
  border: none;
}
.srvcSec4 .infoList li .hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.srvcSec4 .infoList li .hd h6 {
  margin: 0;
  color: #1b1b1b;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1rem;
  /* 133.333% */
  letter-spacing: 0.075rem;
  text-transform: uppercase;
}
.srvcSec4 .infoList li .hd span {
  width: 8.5rem;
  background-color: #ff7f00;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  padding: 0.35rem 1.25rem;
}
.srvcSec4 .infoList li p {
  margin: 0;
  color: #5e5e5e;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: Inter;
}

footer {
  background-color: #18181b;
  padding: 5rem 0 0;
}
footer .footerLogo {
  max-width: 8.75rem;
  margin-bottom: 1.5rem;
}
footer .txt {
  margin-bottom: 1.5rem;
}
footer .txt p {
  margin-bottom: 0.5rem;
}
footer .link {
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer .link li a {
  background-color: #27272a;
  border-radius: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .link li a img {
  width: 0.7rem;
}
footer h5 {
  color: #ff7f00;
  /* Desktop/xs-2/Semibold */
  font-family: "Work Sans";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1rem;
  margin-bottom: 1rem;
}
footer .navLink li {
  margin-bottom: 0.75rem;
}
footer .navLink li:last-child {
  margin-bottom: 0;
}
footer .navLink li a {
  color: #a1a1aa;
  /* Desktop/xs-2/Regular */
  font-family: "Work Sans";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
footer .navLink li a img {
  width: 0.8rem;
}
footer .midTxt {
  margin-top: 5rem;
  width: 100%;
  background: #1c1c1f;
  padding: 0.63rem 0;
}
footer .midTxt p {
  color: var(--Light-BG, #ebf2ff);
  text-align: center;
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 0;
}
footer .btmPart {
  padding: 2rem 3rem 2.62rem;
  border-top: 1px solid #27272a;
}
footer .btmPart p {
  color: #71717a;
  font-family: "Work Sans";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem;
  margin-bottom: 0;
}

.srvcSec5 {
  background-color: #eae7e7;
  padding: 2.5rem 0;
}
.srvcSec5 .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 4rem;
}
.srvcSec5 .txt h3 {
  max-width: 48rem;
  margin: 0 auto 1.75rem;
  position: relative;
}
.srvcSec5 .txt h3::before, .srvcSec5 .txt h3::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
}
.srvcSec5 .txt h3::before {
  background-image: url("../images/qoute-1.png");
  left: -10px;
}
.srvcSec5 .txt h3::after {
  background-image: url("../images/qoute-2.png");
  right: -10px;
}

.operating-hours .opearationbx {
  margin-right: 10px;
}
.operating-hours .opearationbx .hours-card {
  background-color: #f4f4f4;
  border-left: 4px solid #ff7f00;
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.operating-hours .opearationbx .hours-card .hours-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.operating-hours .opearationbx .hours-card .hours-header img {
  flex-shrink: 0;
}
.operating-hours .opearationbx .hours-card .hours-header h4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1b1b1b;
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.operating-hours .opearationbx .hours-card .hours-sub {
  color: #584235;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
  letter-spacing: -0.025rem;
  margin-bottom: 2rem;
}
.operating-hours .opearationbx .hours-card .hours-time {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
}
.operating-hours .opearationbx .hours-card .hours-time .time-big {
  color: #1b1b1b;
  font-family: Inter;
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 900;
  line-height: 3.75rem; /* 100% */
  letter-spacing: -0.1875rem;
}
.operating-hours .opearationbx .hours-card .hours-time .time-sm {
  font-family: "Work Sans";
  font-size: 1.75rem;
  font-weight: 600;
  color: #1b1b1b;
  margin-left: 0.25rem;
}
.operating-hours .opearationbx .hours-card .hours-time .time-dash {
  font-family: "Work Sans";
  font-size: 4rem;
  font-weight: 800;
  color: #1b1b1b;
  margin: 0 1rem;
  line-height: 1;
}
.operating-hours .opearationbx .hours-card .hours-days {
  color: #ff7f00;
  font-family: "Work Sans";
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.operating-hours .opearationbx .hours-card .hours-zone {
  color: #584235;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
  letter-spacing: -0.025rem;
  margin-bottom: 0;
}
.operating-hours .receiving-window-bx {
  background-color: #1f1f1f;
  padding: 3rem;
  position: relative;
  margin-top: 3rem;
  margin-right: 10px;
}
.operating-hours .receiving-window-bx .cutoff-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ff7f00;
  color: #1b1b1b;
  font-family: "Work Sans";
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.operating-hours .receiving-window-bx h4 {
  color: #fff;
  font-family: "Work Sans";
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.25rem; /* 120% */
  letter-spacing: -0.04688rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.operating-hours .receiving-window-bx .receiving-time {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1.5rem;
}
.operating-hours .receiving-window-bx .receiving-time .time-big {
  color: #ff7f00;
  font-family: Inter;
  font-size: 3rem;
  font-style: normal;
  font-weight: 900;
  line-height: 3rem; /* 100% */
  letter-spacing: -0.15rem;
}
.operating-hours .receiving-window-bx .receiving-time .time-big .time-dash {
  margin: 0 0.5rem;
}
.operating-hours .receiving-window-bx .receiving-time .time-days {
  color: rgba(255, 255, 255, 0.6);
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.operating-hours .receiving-window-bx .processing-note {
  display: flex;
  padding: 1.5rem;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
  border-left: 4px solid #ba1a1a;
  background: rgba(255, 255, 255, 0.05);
}
.operating-hours .receiving-window-bx .processing-note .note-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.operating-hours .receiving-window-bx .processing-note .note-icon img {
  width: 24px;
  height: 24px;
}
.operating-hours .receiving-window-bx .processing-note .note-text {
  color: rgba(255, 255, 255, 0.8);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
}
.operating-hours .receiving-window-bx .processing-note .note-text strong {
  font-weight: 700;
  color: #fff;
}
.operating-hours .operation-calender {
  padding: 2.5rem;
  background: #f0eded;
  margin-left: 10px;
}
.operating-hours .operation-calender .operation-calender-bx {
  border-bottom: 1px solid rgba(223, 192, 175, 0.3);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.operating-hours .operation-calender .operation-calender-bx h4 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2rem;
  padding-left: 1.87rem;
  position: relative;
}
.operating-hours .operation-calender .operation-calender-bx h4 img {
  max-width: 1.125rem;
  width: 100%;
  position: absolute;
  left: 0;
  top: 5px;
}
.operating-hours .operation-calender .operation-calender-bx span {
  color: #1b1b1b;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem; /* 142.857% */
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.operating-hours .operation-calender .operation-calender-bx p {
  color: #584235;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem; /* 175% */
  margin: 0;
}
.operating-hours .operation-calender .operation-calender-bx h6 {
  color: #974900;
  font-family: "Work Sans";
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.75rem; /* 155.556% */
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1125rem;
}
.operating-hours .operation-calender .operation-calender-bx ul {
  display: flex;
  padding-bottom: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.operating-hours .operation-calender .operation-calender-bx ul li {
  position: relative;
  color: #1b1b1b;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
  padding-left: 1.5rem;
}
.operating-hours .operation-calender .operation-calender-bx ul li:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #ff7f00;
  position: absolute;
  left: 0;
  top: 8px;
}
.operating-hours .operation-calender .operation-calender-bx + p {
  max-width: 20.6875rem;
  width: 100%;
  color: #584235;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.21875rem; /* 162.5% */
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.operating-hours .bluebox {
  margin-top: 2rem;
  display: flex;
  padding: 2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
  margin-left: 10px;
  background: var(--accent, #0446c2);
}
.operating-hours .bluebox h4 {
  color: #fff;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem; /* 140% */
  letter-spacing: -0.0625rem;
  text-transform: uppercase;
}
.operating-hours .bluebox p {
  color: #fff;
}
.operating-hours .bluebox a {
  color: #fff;
  font-family: Inter;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1rem; /* 133.333% */
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.operating-hours .bluebox a img {
  width: 0.58331rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.location {
  padding: 3rem 0;
  background: #e5e2e1;
}
.location .location-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.location .location-row .locationbx {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-self: stretch;
}
.location .location-row .locationbx span {
  color: #1b1b1b;
  font-family: Inter;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1rem; /* 133.333% */
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.location .location-row .locationbx p {
  color: #584235;
  font-family: Inter;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25rem; /* 142.857% */
  margin-bottom: 0;
}
.location .location-row .locationbx p a {
  color: #584235;
}
.location .location-row .locationbx .img {
  margin-top: 0.3125rem;
}

.thresholds {
  background: #f6f3f2;
}
.thresholds .left-col {
  margin-right: 10px;
  padding: 3rem;
  border-radius: 0.125rem;
  border-bottom: 8px solid var(--accent, #0446c2);
  background: #fff;
  border-radius: 0.125rem;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.thresholds .left-col span {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 4.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 5.225rem;
  margin-bottom: 0.5rem;
  display: block;
}
.thresholds .left-col p {
  color: var(--Primary, #ff7f00);
  /* Desktop/lg/SemiBold */
  font-family: "Work Sans";
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.71875rem; /* 110% */
}
.thresholds .right-col {
  margin-left: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.thresholds .right-col h3 {
  margin-bottom: 1.5rem;
}
.thresholds .right-col p {
  color: #584235;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.03125rem; /* 162.5% */
  margin-bottom: 0;
}

.requirement {
  background: #fcf9f8;
}
.requirement .requirement-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
  padding-bottom: 2rem;
  border-bottom: 1px solid #dfc0af;
  /* Desktop/base/SemiBold */
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem; /* 140% */
}
.requirement .requirement-top h2 span {
  color: #ff7f00;
}
.requirement .requirement-top p {
  color: var(--accent, #0446c2);
  /* Desktop/base/SemiBold */
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem; /* 140% */
}
.requirement .requirement-row {
  margin-top: 4rem;
  border-bottom: 8px solid #0446c2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.requirement .requirementbx {
  background-color: #fff;
  padding: 3rem 3rem 3.375rem 3rem;
  border-right: 2px solid #0446c2;
  height: 338px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.requirement .requirementbx:last-child {
  border-right: none;
}
.requirement .requirementbx .icon {
  display: flex;
  width: 4rem;
  height: 4rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: #f6f3f2;
}
.requirement .requirementbx .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: start;
  justify-self: stretch;
  background: #fff;
}
.requirement .requirementbx .text h4 {
  margin-bottom: 0;
  color: #1b1b1b;
  /* Desktop/lg/SemiBold */
  font-family: "Work Sans";
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.71875rem; /* 110% */
}
.requirement .requirementbx .text p {
  margin-bottom: 0;
  color: #584235;
  /* Desktop/xs-1/Regular */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}

.preffered {
  background: #000;
}
.preffered h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.preffered h2 span {
  color: #ff7f00;
}
.preffered h2 + p {
  max-width: 42rem;
  width: 100%;
  color: #9ca3af;
  /* Desktop/xs-1/Regular */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 4rem;
}
.preffered .preferred-bx {
  display: flex;
  padding: 1.875rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  justify-self: stretch;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}
.preffered .preferred-bx h5 {
  color: var(--Primary, #ff7f00);
  /* Desktop/xl/SemiBold */
  font-family: "Work Sans";
  font-size: 1.9375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.13125rem; /* 110% */
  margin-bottom: 0;
}
.preffered .preferred-bx p {
  color: #9ca3af;
  /* Desktop/xs-1/Regular */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 0;
}

.scheduling {
  background: #eae7e7;
}
.scheduling .scheduling-row {
  display: flex;
  padding: 3rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border: 1px solid #dfc0af;
  background: #fff;
}
.scheduling .scheduling-row .scheduling-left {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 44.25rem;
  width: 100%;
}
.scheduling .scheduling-row .scheduling-left .icon {
  display: flex;
  padding: 0.8rem;
  flex-direction: column;
  align-items: center;
  border-radius: 0.125rem;
  background: var(--accent, #0446c2);
  max-width: 3.68rem;
  width: 100%;
}
.scheduling .scheduling-row .scheduling-left .text {
  margin-top: -5px;
}
.scheduling .scheduling-row .scheduling-left .text h4 {
  color: #1b1b1b;
  /* Desktop/lg/SemiBold */
  font-family: "Work Sans";
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.71875rem; /* 110% */
}
.scheduling .scheduling-row .scheduling-left .text p {
  color: #584235;
  font-family: Inter;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 155.556% */
  margin-bottom: 0;
}

.who-we-work {
  background-color: #f6f3f2;
}
.who-we-work .who-we-work-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.who-we-work .who-we-work-row h4 {
  color: #1b1b1b;
  /* Desktop/2xl/SemiBold */
  font-family: "Work Sans";
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.68125rem; /* 110% */
  padding-bottom: 1.5rem;
  position: relative;
}
.who-we-work .who-we-work-row h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 0.25rem;
  background: var(--accent, #0446c2);
}
.who-we-work .who-we-work-row p {
  color: #584235;
  /* Desktop/base/Regular */
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  margin-bottom: 0;
}
.who-we-work .who-we-work-row .who-we-work-left {
  max-width: 19rem;
  width: 100%;
}
.who-we-work .who-we-work-row .who-we-work-right {
  max-width: 49rem;
  width: 100%;
}

.best-suite {
  background: #000;
  padding: 2rem 0;
  border-top: 1px solid #dfc0af;
}
.best-suite p {
  max-width: 55rem;
  margin: 0 auto;
  color: #a3a3a3;
  text-align: center;
  /* Desktop/base/Regular */
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  margin-bottom: 0;
}
.best-suite p:has(+ p) {
  margin-bottom: 0.75rem;
}

.prepforce-container {
  background-color: #f6f3f2;
}
.prepforce-container .card-row-top {
  margin-bottom: 1rem;
}
.prepforce-container .card-row-bottom {
  margin-bottom: 4rem;
}
.prepforce-container .prep-card {
  height: 100%;
  padding: 40px;
  border-radius: 0;
  border: none;
  display: flex;
  flex-direction: column;
}
.prepforce-container .prep-card .card-icon {
  margin-bottom: 1.25rem;
}
.prepforce-container .prep-card .card-icon.icon-blue {
  color: #0047ff;
}
.prepforce-container .prep-card .card-title {
  color: #1b1b1b;
  /* Desktop/lg/SemiBold */
  font-family: "Work Sans";
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.71875rem; /* 110% */
  margin: 0 0 0.93rem;
}
.prepforce-container .prep-card .card-description {
  color: #584235;
  /* Desktop/xs-1/Regular */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin: 0;
}
.prepforce-container .card-dark {
  background-color: #000;
}
.prepforce-container .card-dark .card-title {
  color: #fff;
}
.prepforce-container .card-dark .card-description {
  color: #888;
}
.prepforce-container .card-light-gray {
  background-color: #e8e7e6;
}
.prepforce-container .card-white {
  background-color: #fff;
}
.prepforce-container .card-white.border-top-blue {
  border-top: 3px solid #0047ff;
}
.prepforce-container .middle-statement {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 50px;
}
.prepforce-container .middle-statement p {
  color: #584235;
  text-align: center;
  /* Desktop/base/Regular */
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  margin: 0 0 4rem 0;
}
.prepforce-container .exclusions-banner {
  background-color: #0042c0;
  padding: 2rem;
  color: #fff;
  margin-bottom: 2rem;
}
.prepforce-container .exclusions-banner .banner-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.prepforce-container .exclusions-banner .banner-header .lightning-bolt {
  color: #ff9900;
  margin-right: 10px;
  font-size: 1.2rem;
}
.prepforce-container .exclusions-banner .banner-header .banner-heading {
  color: #fff;
  font-family: "Work Sans";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1rem; /* 133.333% */
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  margin: 0;
}
.prepforce-container .exclusions-banner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.prepforce-container .exclusions-banner ul li {
  color: #fff;
  max-width: calc(50% - 8px);
  width: 100%;
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  position: relative;
  padding-left: 2.5rem;
  display: flex;
  align-items: center;
  height: 100%;
}
.prepforce-container .exclusions-banner ul li .cross-icon {
  margin-right: 12px;
  font-size: 1.1rem;
  line-height: 1;
  width: 20px;
  position: absolute;
  top: 2px;
  left: 0;
}
.prepforce-container .footer-statement {
  text-align: center;
}
.prepforce-container .footer-statement p {
  color: #584235;
  text-align: center;
  /* Desktop/base/Regular */
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  margin-bottom: 0;
}

.discipline-section {
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}
.discipline-section .discipline-main-row {
  margin-bottom: 6rem;
  align-items: center;
}
.discipline-section .visual-wrapper {
  position: relative;
  padding-right: 20px;
}
.discipline-section .visual-wrapper .main-image {
  width: 100%;
  height: auto;
  display: block;
}
.discipline-section .visual-wrapper .orange-overlay-box {
  position: absolute;
  bottom: -20px;
  right: 0;
  background-color: #ff7b00;
  padding: 25px;
  width: 280px;
}
.discipline-section .visual-wrapper .orange-overlay-box p {
  color: var(--Light-BG, #ebf2ff);
  text-align: center;
  /* Desktop/xs-2/Semibold */
  font-family: "Work Sans";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1rem; /* 123.077% */
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
}
.discipline-section .content-wrapper {
  padding-left: 40px;
}
.discipline-section .content-wrapper h2 {
  margin-bottom: 2rem;
}
.discipline-section .content-wrapper h2 span {
  color: #ff7f00;
}
.discipline-section .discipline-list .list-item {
  display: flex;
  margin-bottom: 2rem;
}
.discipline-section .discipline-list .list-item .item-number {
  color: var(--accent, #0446c2);
  /* Desktop/lg/SemiBold */
  font-family: "Work Sans";
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.71875rem; /* 110% */
  margin-right: 1.5rem;
}
.discipline-section .discipline-list .list-item .item-text h3 {
  color: #1b1b1b;
  /* Desktop/base/SemiBold */
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem; /* 140% */
  margin-bottom: 0.5em;
}
.discipline-section .discipline-list .list-item .item-text p {
  color: #584235;
  /* Desktop/xs-1/Regular */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin: 0;
}
.discipline-section .statement-banner {
  background-color: #0047cc;
  padding: 3.25rem 20px;
  text-align: center;
}
.discipline-section .statement-banner p {
  color: var(--Light-BG, #ebf2ff);
  text-align: center;
  /* Desktop/base/Regular */
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  max-width: 61rem;
  margin: 0 auto;
}

.services_price {
  padding: 6rem 0;
  background: #000;
}
.services_price .grids_price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 3rem;
  gap: 0.25rem;
}
.services_price .grids_price .grids_price-columns {
  border-left: 4px solid #ff7f00;
  background: #171717;
  padding: 3rem;
}
.services_price .grids_price .grids_price-columns p {
  color: #fff;
  font-size: 4.5rem !important;
  font-weight: 900;
  line-height: 4.5rem !important;
}
.services_price .grids_price .grids_price-columns p:last-of-type {
  margin-bottom: 0;
}
.services_price .grids_price .grids_price-columns p.title_h6 {
  color: #ff7f00;
  font-family: Inter;
  font-size: 0.75rem !important;
  font-style: normal;
  font-weight: 600;
  line-height: 1rem !important;
  letter-spacing: 0.225rem;
  text-transform: uppercase;
}
.services_price .grids_price .grids_price-columns p.para {
  color: #a3a3a3;
  font-family: "Work Sans";
  font-size: 0.875rem !important;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25rem !important;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
}
.services_price .grids_price ~ p {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.services_price .max_606_p {
  max-width: 37.875rem;
  margin: 0 auto;
}

.additional_services {
  padding: 6rem 0;
  background: #f6f3f2;
}
.additional_services .mb64 {
  margin-bottom: 4rem;
}
.additional_services h3 {
  margin-bottom: 1rem;
}
.additional_services p {
  color: #5e5e5e;
}
.additional_services p:last-of-type {
  margin-bottom: 0;
}
.additional_services .grids_fours {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
}
.additional_services .ad_services {
  background: #fcf9f8;
  padding: 2rem;
  height: 100%;
}
.additional_services .ad_services .ad_services-icon {
  width: 1.5625rem;
  height: 1.5625rem;
  aspect-ratio: 1/1;
  margin-bottom: 1.5rem;
}
.additional_services .ad_services .ad_services-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.additional_services .ad_services span {
  display: inline-block;
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.additional_services .ad_services p {
  color: #5e5e5e;
  font-family: Inter;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0.5rem;
}
.additional_services .ad_services p strong {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: 2rem; /* 133.333% */
}

.operational_services {
  padding: 6rem 0;
  overflow: hidden;
}
.operational_services h3 {
  position: relative;
  margin-bottom: 3rem;
}
.operational_services h3::before {
  content: attr(data-text);
  display: block;
  color: rgba(0, 0, 0, 0.1);
  font-size: 0.8em;
  text-transform: uppercase;
  position: absolute;
  left: -2.25375rem;
  top: -5.2rem;
  color: rgba(0, 0, 0, 0.05);
  font-family: Inter;
  font-size: 10rem;
  font-style: normal;
  font-weight: 900;
  line-height: 10rem;
}
.operational_services .grp_listing {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.operational_services .grp_listing-list {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(139, 114, 99, 0.15);
  display: grid;
  grid-template-columns: auto auto;
  gap: 1rem;
  justify-content: space-between;
}
.operational_services .grp_listing-left span {
  display: inline-block;
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1rem; /* 133.333% */
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.operational_services .grp_listing-left p {
  color: #5e5e5e;
  font-family: Inter;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem; /* 142.857% */
}
.operational_services .grp_listing-right span.tag_bx {
  display: flex;
  width: 6.9375rem;
  padding: 0.25rem 0.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ff7f00;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 150% */
}
.operational_services .frame_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 566/566;
  position: relative;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #f6f3f2;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-left: auto;
}
.operational_services .frame_img img {
  width: 100%;
}
.operational_services .frame_img .frame_img-caption {
  width: 18.75rem;
  height: auto;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  position: absolute;
  background: var(--Light-BG, #ebf2ff);
}
.operational_services .frame_img .frame_img-caption p {
  color: #2e2e2e;
  font-family: Inter;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9375rem; /* 150% */
  letter-spacing: 1px;
  text-transform: uppercase;
}
.operational_services .frame_img .frame_img-caption p strong {
  color: #2e2e2e;
  font-family: "Work Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.125rem; /* 100% */
  text-transform: none;
}

.testimonials_services {
  padding: 4rem 0 2.5rem;
  background: #eae7e7;
}
.testimonials_services .testimonials_content {
  position: relative;
  width: 100%;
  max-width: 50rem;
  margin: auto;
  text-align: center;
}
.testimonials_services .testimonials_content::before {
  content: " ";
  position: absolute;
  width: 4rem;
  height: 4rem;
  aspect-ratio: 1/1;
  background-image: url(../images/topic-gray.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: -15px;
  top: -30px;
  transform: rotateY(180deg);
}
.testimonials_services .testimonials_content::before img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonials_services .testimonials_content::after {
  content: " ";
  position: absolute;
  width: 4rem;
  height: 4rem;
  aspect-ratio: 1/1;
  background-image: url(../images/topic-gray.png);
  background-repeat: no-repeat;
  background-size: contain;
  right: -15px;
  top: -30px;
}
.testimonials_services .testimonials_content::after img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonials_services .testimonials_content h3 {
  margin-bottom: 1.75rem;
}

.process_section {
  padding: 8.125rem 0;
  counter-reset: section;
}
.process_section .mb138 {
  margin-bottom: 8.625rem;
}
.process_section .process_content .heading-line {
  display: flex;
  grid-template-columns: auto auto;
  margin-bottom: 2rem;
  gap: 1.3rem;
  align-items: center;
}
.process_section .process_content .heading-line span.title_counter {
  color: var(--Primary, #ff7f00);
  /* Desktop/5xl/SemiBold */
  font-family: "Work Sans";
  font-size: 4.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 5.225rem; /* 110% */
}
.process_section .process_content .heading-line span.title_counter::before {
  counter-increment: section;
  content: counter(section, decimal-leading-zero);
  display: inline-block;
}
.process_section .process_content .heading-line .line {
  display: inline-block;
  width: 100%;
  height: 1px;
  background: rgba(255, 127, 0, 0.25);
}
.process_section .process_content h3,
.process_section .process_content p {
  margin-bottom: 1.5rem;
}
.process_section .process_content .process_label {
  border-left: 2px solid var(--accent, #0446c2);
  background: rgba(4, 70, 194, 0.1);
  padding: 1.5rem;
}
.process_section .process_content .process_label h5 {
  color: var(--accent, #0446c2);
  /* Desktop/xs-1/Bold */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 150% */
}
.process_section .process_content .process_label p {
  color: rgba(27, 27, 27, 0.7);
  /* Desktop/xs-1/Medium */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
  margin: 0;
  padding: 0;
}
.process_section .process_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 119/67;
}
.process_section .process_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.structured {
  background: #f6f3f2;
  padding: 6rem 0;
}
.structured .title_bar {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1.2rem;
}
.structured .title_bar::before {
  position: absolute;
  content: " ";
  display: inline-block;
  width: 6rem;
  height: 0.25rem;
  background: var(--accent, #0446c2);
  left: 0;
  bottom: 0;
}
.structured p {
  color: #584235;
}
.structured .note_bar {
  border-left: 4px solid var(--accent, #0446c2);
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem 2rem 2rem;
}
.structured .note_bar p {
  color: #1b1b1b;
  /* Desktop/xs-1/SemiBold */
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5rem; /* 150% */
  margin: 0;
  padding: 0;
}
.structured .row.group_number {
  gap: 2rem 0;
  counter-reset: section;
}
.structured .structure_item {
  background: #27272a;
  padding: 0.75rem 2rem;
  display: flex;
  flex-direction: column;
}
.structured .structure_item .counter_no {
  display: inline-block;
  position: relative;
  color: #ff7f00;
  /* Desktop/3xl/SemiBold */
  font-family: "Work Sans";
  font-size: 3.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.36875rem; /* 110% */
  margin-bottom: 1.03rem;
}
.structured .structure_item .counter_no::before {
  counter-increment: section;
  content: counter(section, decimal-leading-zero);
  display: inline-block;
}
.structured .structure_item h3 {
  color: var(--White, #fff);
  /* Desktop/base/SemiBold */
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem; /* 140% */
}
.structured .structure_item p {
  margin-top: auto;
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem; /* 142.857% */
}
.structured .qty_details {
  background: var(--accent, #0446c2);
  padding: 1.25rem 2rem;
  gap: 1.25rem;
  display: flex;
  align-items: center;
}
.structured .qty_details .qty_icon {
  width: 2.75rem;
  height: 2.75rem;
}
.structured .qty_details .qty_txt p strong {
  color: var(--White, #fff);
  /* Desktop/lg/Bold */
  font-family: "Work Sans";
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.71875rem; /* 110% */
}
.structured .qty_details .qty_txt p {
  color: var(--Light-BG, #ebf2ff);
  /* Desktop/xs-2/Medium */
  font-family: "Work Sans";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1rem; /* 123.077% */
}
.structured .qty_details .qty_txt p:last-of-type {
  margin: 0;
  padding: 0;
}

.compliance_sec {
  padding: 8.03rem 0;
  background: url(../images/cm_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.compliance_sec .compliance_bx {
  max-width: 53rem;
  width: 100%;
  margin: 0 auto 0;
  padding: 3.5rem;
  border-top: 8px solid var(--accent, #0446c2);
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
}
.compliance_sec .compliance_bx .cm_icon {
  border-radius: 12px;
  background: #f6f3f2;
  width: 4.5rem;
  padding: 1rem;
  margin: 0 auto 2rem;
}
.compliance_sec .compliance_bx h2 {
  text-align: center;
  /* Desktop/3xl/SemiBold */
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.compliance_sec .compliance_bx > p {
  max-width: 40.3125rem;
  color: #584235;
  text-align: center;
  /* Desktop/base/Regular */
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  margin: 0 auto 2rem;
}
.compliance_sec .compliance_bx .compliance_item {
  border: 1px solid #e2e2e2;
  background: rgba(241, 241, 241, 0.5);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 18px auto;
  gap: 1rem;
}
.compliance_sec .compliance_bx .compliance_item .com_icon {
  width: 1.125rem;
  height: 1.125rem;
  aspect-ratio: 1/1;
}
.compliance_sec .compliance_bx .compliance_item .com_txt {
  text-align: left;
}
.compliance_sec .compliance_bx .compliance_item .com_txt p {
  color: #6c6c6c;
  /* Desktop/xs-2/Regular */
  font-family: "Work Sans";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 123.077% */
  margin-bottom: 0.25rem;
}
.compliance_sec .compliance_bx .compliance_item .com_txt p strong {
  color: #1b1b1b;
  /* Desktop/xs-2/Semibold */
  font-family: "Work Sans";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1rem; /* 123.077% */
  text-transform: uppercase;
}

.banner-text.inlineBlock span {
  display: inline-block;
}

.precision.otherPg h2 {
  margin-bottom: 3rem;
}

section.partnership_form {
  padding: 2.5rem 0;
}
section.partnership_form h2 {
  margin-bottom: 1.125rem;
}
section.partnership_form p {
  color: #5e5e5e;
}
section.partnership_form p + .form-container {
  margin-top: 2.9688rem;
}
section.partnership_form .form-section {
  background-color: #f3f3f3;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  section.partnership_form .form-section {
    padding: 1rem;
  }
}
section.partnership_form .form-group {
  margin-bottom: 1.5rem;
}
section.partnership_form .form-group:last-child {
  margin-bottom: 0;
}
section.partnership_form label {
  display: inline-block;
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem; /* 142.857% */
  margin-bottom: 8.5px;
}
section.partnership_form .section-title {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem; /* 140% */
  margin-bottom: 1.5rem;
}
section.partnership_form .section-subtitle {
  font-size: 14px;
  color: #666666;
  margin-top: -16px;
  margin-bottom: 20px;
}
section.partnership_form .question-text {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem; /* 142.857% */
  margin-bottom: 12px;
}
section.partnership_form .required-asterisk {
  color: #dc3545;
}
section.partnership_form {
  /* =========================================
  CUSTOM CHECKBOXES & RADIOS
  ========================================= */
}
section.partnership_form .checkbox-wrapper,
section.partnership_form .radio-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
section.partnership_form .input-check-item,
section.partnership_form .input-radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.partnership_form .input-check-item input[type=checkbox],
section.partnership_form .input-check-item input[type=radio],
section.partnership_form .input-radio-item input[type=checkbox],
section.partnership_form .input-radio-item input[type=radio] {
  width: 18px;
  height: 18px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  padding: 0;
}
section.partnership_form .input-check-item input[type=checkbox]:checked,
section.partnership_form .input-check-item input[type=radio]:checked,
section.partnership_form .input-radio-item input[type=checkbox]:checked,
section.partnership_form .input-radio-item input[type=radio]:checked {
  background-color: #0446c2;
  border-color: #0446c2;
}
section.partnership_form .input-check-item input[type=checkbox]:focus,
section.partnership_form .input-check-item input[type=radio]:focus,
section.partnership_form .input-radio-item input[type=checkbox]:focus,
section.partnership_form .input-radio-item input[type=radio]:focus {
  border-color: #0446c2;
  box-shadow: none;
  outline: none;
}
section.partnership_form .input-check-item input[type=checkbox],
section.partnership_form .input-radio-item input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  border-radius: 0.25rem;
  border: 1px solid #949191;
}
section.partnership_form .input-check-item input[type=checkbox]:checked::after,
section.partnership_form .input-radio-item input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
section.partnership_form .input-check-item input[type=radio],
section.partnership_form .input-radio-item input[type=radio] {
  width: 20px;
  height: 20px;
  accent-color: #0446c2;
}
section.partnership_form .input-check-item label,
section.partnership_form .input-radio-item label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 0;
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
}
section.partnership_form {
  /* =========================================
   QUALIFICATION BOX SPECIFICS
  ========================================= */
}
section.partnership_form .qualification-box {
  background-color: #fdf6ec;
  border: 2px solid #ff7f00;
}
section.partnership_form .qualification-prompt {
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 1rem;
}
section.partnership_form .qualification-radios label {
  color: #1b1b1b;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 150% */
}
section.partnership_form .text-form-submit {
  text-align: center;
}
section.partnership_form .text-form-submit .glb_btn {
  padding: 20.5px 63.969px 19.5px 64px;
  margin: auto;
  display: inline-block;
  outline: none;
  border: none;
}
section.partnership_form .wpcf7-list-item {
  margin: 0;
}
section.partnership_form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.partnership_form .wpcf7-list-item input[type=checkbox],
section.partnership_form .wpcf7-list-item input[type=radio] {
  width: 18px;
  height: 18px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  padding: 0;
}
section.partnership_form .wpcf7-list-item input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  border-radius: 0.25rem;
  border: 1px solid #949191;
}
section.partnership_form .wpcf7-list-item input[type=checkbox]:checked,
section.partnership_form .wpcf7-list-item input[type=radio]:checked {
  background-color: #0446c2;
  border-color: #0446c2;
}
section.partnership_form .wpcf7-list-item input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
section.partnership_form .wpcf7-list-item input[type=radio] {
  width: 20px;
  height: 20px;
  accent-color: #0446c2;
}
section.partnership_form .wpcf7-list-item-label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 0;
  color: #1b1b1b;
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
}
section.partnership_form .wpcf7 form .wpcf7-response-output {
  margin: 1rem 0 0;
}

.structured-workflow {
  background-color: #fcf9f8;
}
.structured-workflow .workflow-header {
  margin-bottom: 3rem;
}
.structured-workflow .workflow-header h2 {
  color: #1b1b1b;
  /* Desktop/2xl/SemiBold */
  font-family: "Work Sans";
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.68125rem; /* 110% */
  margin-bottom: 1rem;
}
.structured-workflow .workflow-header p {
  max-width: 56rem;
  color: #3d3d3d;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.structured-workflow .workflow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background-color: #fff;
  gap: 0.5rem;
}
.structured-workflow .workflow-card {
  padding: 2rem 1.5rem 3.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.25s ease;
  border-bottom: 4px solid var(--accent, #0446c2);
  background: #efefef;
}
.structured-workflow .workflow-card:last-child {
  border-right: none;
}
.structured-workflow .workflow-card:hover {
  background-color: #f9f9f9;
}
.structured-workflow .workflow-card .step-number {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0446c2;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.structured-workflow .workflow-card .step-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.structured-workflow .workflow-card .step-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.structured-workflow .workflow-card h4 {
  color: #1b1b1b;
  /* Desktop/xs-1/Bold */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 0.5rem;
}
.structured-workflow .workflow-card p {
  color: #5e5e5e;
  /* Desktop/xs-2/Regular */
  font-family: "Work Sans";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem; /* 123.077% */
  margin-bottom: 0;
}

/* Structural Operational Zones */
.structural-zones {
  background-color: #ffffff;
}
.structural-zones .row {
  align-items: center;
}
.structural-zones .zones-content {
  padding-right: 2rem;
}
.structural-zones .zones-content h2 {
  color: #1b1b1b;
  /* Desktop/2xl/SemiBold */
  font-family: "Work Sans";
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.68125rem; /* 110% */
  margin-bottom: 0.5rem;
}
.structural-zones .zones-content .zones-subtitle {
  color: var(--accent, #0446c2);
  /* Desktop/xs-2/Semibold */
  font-family: "Work Sans";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1rem; /* 123.077% */
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
}
.structural-zones .zones-content .zones-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.structural-zones .zones-content .zones-list .zone-item {
  display: flex;
  align-items: center;
  background-color: #f6f3f2;
  padding: 1.5rem;
  gap: 1.5rem;
}
.structural-zones .zones-content .zones-list .zone-item .zone-icon {
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  flex-direction: column;
  background: var(--accent, #0446c2);
}
.structural-zones .zones-content .zones-list .zone-item h4 {
  color: #1b1b1b;
  /* Desktop/base/SemiBold */
  font-family: "Work Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem; /* 140% */
  margin-bottom: 0;
}
.structural-zones .zones-content .zones-text-block {
  border-left: 2px solid #0446c2;
  padding-left: 1.5rem;
}
.structural-zones .zones-content .zones-text-block p {
  color: #584235;
  /* Desktop/xs-1/Regular */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 1.5rem;
}
.structural-zones .zones-content .zones-text-block p:last-child {
  margin-bottom: 0;
}
.structural-zones .zones-image {
  position: relative;
  z-index: 1;
  margin-left: 2rem;
  margin-right: 2rem;
}
.structural-zones .zones-image img {
  width: 100%;
  height: auto;
  display: block;
}
.structural-zones .zones-image::after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: -20px;
  left: 20px;
  right: -20px;
  background-color: #0446c2;
  z-index: -1;
}

/* Technology-Backed Accuracy Control */
.accuracy-control .accuracy-control-inner {
  background-color: #000000;
}
.accuracy-control .accuracy-image {
  height: 100%;
  position: relative;
}
.accuracy-control .accuracy-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #000 -0.76%, rgba(0, 0, 0, 0) 18.99%);
}
.accuracy-control .accuracy-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.accuracy-control .accuracy-content {
  height: 100%;
  display: flex;
  align-items: center;
}
.accuracy-control .accuracy-content .accuracy-content-inner {
  padding: 3rem;
}
.accuracy-control .accuracy-content .accuracy-content-inner h2 {
  color: #fff;
  /* Desktop/xl/SemiBold */
  font-family: "Work Sans";
  font-size: 1.9375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.13125rem; /* 110% */
  margin-bottom: 1.5rem;
}
.accuracy-control .accuracy-content .accuracy-content-inner p {
  color: #a1a1aa;
  /* Desktop/xs-1/Regular */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 1.5rem;
}
.accuracy-control .accuracy-content .accuracy-content-inner ul {
  display: flex;
  padding-top: 0.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.96875rem;
}
.accuracy-control .accuracy-content .accuracy-content-inner ul li {
  color: var(--Primary, #ff7f00);
  /* Desktop/xs-1/Medium */
  font-family: "Work Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
  padding-left: 1.48rem;
  position: relative;
}
.accuracy-control .accuracy-content .accuracy-content-inner ul li img {
  position: absolute;
  left: 0;
  top: 6px;
  width: 0.72919rem;
  height: 0.72919rem;
}

@media (max-width: 1399px) {
  html {
    font-size: 80%;
  }
  .stellarnav .menu-toggle,
  .stellarnav .call-btn-mobile,
  .stellarnav .location-btn-mobile,
  .stellarnav .close-menu {
    padding: 10px 10px;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 70%;
  }
  h1 {
    font-size: 3.7rem;
    line-height: 4.225rem;
  }
  h2 {
    font-size: 3.2rem;
    line-height: 3.7rem;
  }
  p {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  header .menu_area .main_links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-direction: row-reverse;
  }
  header .menu_area .main_links ul li a {
    color: white;
    font-family: "Work Sans";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    padding: 1.2rem;
    border-bottom: 2px solid #fff;
    transition: all 0.5s ease;
  }
  .homeSec3 .sideImg {
    width: 33rem;
    pointer-events: none;
  }
  .homeSec5 .chooseCard {
    width: calc(50% - 11px);
  }
  .heroSec h1 {
    margin-bottom: 2rem;
    max-width: 42rem;
  }
  .prepforce .bluebx ul li {
    font-size: 1rem;
    line-height: 1.8rem;
    padding-left: 3rem;
  }
  .prepforce .bluebx ul li img {
    position: absolute;
    left: 0;
    top: 0;
  }
  .methodlogy .methodology-grid .meth-card.blue-card .bg-icon {
    position: static;
  }
  .methodlogy .methodology-grid .meth-card.blue-card {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: space-between;
  }
  .methodlogy .methodology-grid .meth-card.blue-card .bg-icon {
    max-width: 2.5rem;
    margin-top: 10px;
  }
  .operating-hours .operation-calender,
  .operating-hours .bluebox {
    margin-left: 0 !important;
  }
  .operating-hours .opearationbx,
  .receiving-window-bx {
    margin-right: 0 !important;
  }
  .operating-hours .receiving-window-bx,
  .operating-hours .bluebox {
    margin-top: 2rem;
  }
  .thresholds .left-col p {
    margin-bottom: 0;
  }
  .requirement .requirement-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9375rem;
  }
  .requirement .requirement-row {
    margin-top: 2.5rem;
  }
  .scheduling .scheduling-row {
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .scheduling .scheduling-row .scheduling-left .icon {
    padding: 0.7rem;
    flex-direction: column;
    align-items: flex-start;
    background: var(--accent, #0446c2);
    flex: 1 0 3rem;
  }
  .srvcSec4 .abs_txt h6 {
    margin-bottom: 0;
    margin-top: -4%;
  }
  .structured-workflow .workflow-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .structural-zones .zones-image {
    position: relative;
    z-index: 1;
    margin-left: 0;
    margin-right: 2rem;
    margin-top: 4rem;
  }
  .accuracy-control .accuracy-image:before {
    background: linear-gradient(0deg, #000 9.24%, rgba(0, 0, 0, 0) 35.29%);
    bottom: -2px;
  }
  .structural-zones {
    margin-bottom: 2rem;
  }
  .requirement .requirementbx {
    height: 258px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  h2 {
    font-size: 2.7rem;
    line-height: 3rem;
  }
  p,
  ul li,
  ol li {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
  .homeSec7 .sec7Footer {
    width: auto;
  }
  .homeSec3 .issueWrap .wrapCard {
    width: calc(50% - 9px);
    background: #27272a;
    padding: 1rem;
  }
  .heroSec .top {
    position: static;
    width: 100%;
    height: unset;
    background: #18181b;
    padding: 40px var(--bs-gutter-x, 0.75rem);
  }
  .heroSec::before {
    display: none;
  }
  .heroSec .btns {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    flex-direction: column;
  }
  .homeSec2 .g-30 .col-md-3 {
    max-width: 50%;
  }
  .homeSec2 .annualCard .img::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 22.86%, rgba(255, 255, 255, 0.7) 35%, #fff 100%);
  }
  .discipline-section .content-wrapper {
    padding-left: 0;
    margin-top: 60px;
  }
  .discipline-section .visual-wrapper {
    padding-right: 0;
  }
  .discipline-section .visual-wrapper .orange-overlay-box {
    position: relative;
    bottom: 0;
    width: 100%;
  }
  .discipline-section .statement-banner {
    padding: 30px 20px;
  }
  .homeSec3 .sideImg {
    z-index: 0;
  }
  .homeSec3 .container {
    position: relative;
  }
  .homeSec3 .issueWrap {
    gap: 1.5rem;
  }
  .homeSec3 .solutionimg img {
    width: 100%;
    max-width: 100%;
  }
  .homeSec3 .row {
    margin-bottom: 2rem;
  }
  .homeSec3 .solutionContent {
    margin-top: 2.5em;
  }
  .homeSec4 .srvcCard {
    max-width: calc(50% - 6px);
    padding: 1rem;
  }
  .homeSec4 .srvcWraps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .pd-6,
  .process_section,
  .srvcSec2,
  .services_price,
  .additional_services,
  .operational_services {
    padding: 3rem 0;
  }
  .pd-5,
  .homeSec7 {
    padding: 2.5rem 0;
  }
  .homeSec6 ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .homeSec7 .sec7Wrap {
    gap: 1rem;
  }
  footer {
    padding-top: 2.5rem;
  }
  .homeSec6,
  .homeSec6 p,
  .homeSec6 h2,
  .homeSec6 h6 {
    text-align: left;
  }
  footer .midTxt {
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
  }
  footer .btmPart {
    padding: 2rem var(--bs-gutter-x, 0.75rem);
    border-top: 1px solid #27272a;
    text-align: center;
  }
  footer .row {
    gap: 2.5rem;
  }
  footer .col-md-3:nth-child(2), footer .col-md-3:nth-child(3) {
    max-width: calc(50% - 14px);
    width: 100%;
  }
  footer .midTxt {
    margin-top: 3rem;
  }
  .homeSec5 .chooseCard p {
    line-height: 1.55rem;
  }
  .heroSec .btns + p {
    margin-bottom: 0;
  }
  .homeSec2 .cardWrap {
    background-color: #f3f3f3;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    height: 100%;
  }
  section.partnership_form .form-section .row {
    gap: 1.5rem;
  }
  section.partnership_form .section-subtitle {
    font-size: 0.75rem;
    color: #666666;
    margin-top: -0.75rem;
    margin-bottom: 1.25rem;
  }
  section.partnership_form .checkbox-wrapper,
  section.partnership_form .radio-wrapper {
    gap: 1rem;
  }
  section.partnership_form .input-check-item,
  section.partnership_form .input-radio-item {
    gap: 0.4375rem;
  }
  .innerbanner:before {
    display: none;
  }
  .innerbanner .container {
    position: static;
    width: 100%;
    height: unset;
    background: #18181b;
    padding: 40px;
    margin: 0;
    max-width: 100%;
  }
  .structured .row {
    gap: 2.5rem;
  }
  .structured .row.group_number .col-md-6 {
    max-width: 50%;
    width: 100%;
  }
  .structured,
  .compliance_sec {
    padding: 3rem 0;
  }
  .structured .qty_details .qty_icon {
    width: 2.75rem;
    height: 2.75rem;
    flex: 1 0 2.75rem;
  }
  .compliance_sec .compliance_bx {
    padding: 2rem;
  }
  .structured .row {
    gap: 2rem;
  }
  .structured .structure_item {
    padding: 2rem 1rem;
  }
  .innerbanner p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  .faq-main .faq-header p br {
    display: none;
  }
  .join-the-network .join-the-network-row .left-part {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .join-the-network .join-the-network-row .right-part {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .join-the-network .join-the-network-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    justify-content: space-between;
    padding: 0;
    flex-direction: column;
  }
  .join-the-network {
    padding: 3rem 0;
  }
  .faq-main .faq-accordion .faq-item {
    padding: 1rem;
  }
  .faq-main .faq-accordion .faq-item .faq-title {
    font-size: 1.25rem;
    line-height: 1.8rem;
  }
  .faq-main .faq-accordion .faq-item .faq-title .icon i {
    margin: 0 0 0 -1px;
  }
  .prepforce .log-row {
    gap: 2rem;
  }
  .prepforce .log-row .log-row-inner {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-direction: column;
    max-width: 33%;
    width: 100%;
  }
  .prepforce .log-row .log-row-inner .text {
    text-align: center;
  }
  .prepforce .log-row .log-row-inner .text h5 a {
    color: #1b1b1b;
    word-break: break-word;
  }
  .prepforce .log-row .log-row-inner .text h5 {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-bottom: 0;
  }
  .prepforce,
  .prepforce h3,
  .prepforce p,
  .prepforce .log-row .log-row-inner .text,
  .prepforce .textcontent p {
    text-align: left;
  }
  .prepforce .log-row .log-row-inner {
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    text-align: left;
  }
  .leadership .leadership-bx h3 br {
    display: none;
  }
  .leadership .row {
    gap: 2rem;
  }
  br {
    display: none !important;
  }
  .methodlogy .methodology-top h2 {
    margin-bottom: 0.625rem !important;
  }
  .methodology-grid .col-md-6 {
    max-width: 50%;
    width: 100%;
  }
  .methodology-grid .col-md-4 {
    max-width: 33.33333333%;
    width: 100%;
  }
  .methodology-grid .col-md-8 {
    max-width: 66.66666667%;
    width: 100%;
  }
  .methodlogy .methodology-grid .meth-card,
  .methodlogy .methodology-grid .meth-card.blue-card {
    padding: 1rem;
  }
  .operating-hours .row {
    gap: 2rem;
  }
  .operating-hours .operation-calender .operation-calender-bx + p {
    max-width: 100%;
  }
  .process_section .row {
    gap: 1rem;
  }
  .process_section .process_content .heading-line span.title_counter {
    font-size: 3.55rem;
    line-height: 3.55rem;
  }
  .process_section .process_content .heading-line {
    margin-bottom: 1rem;
  }
  .process_section .mb138 {
    margin-bottom: 4rem;
    flex-direction: column-reverse;
  }
  .srvcSec3 .srvcWraps .srvcCard {
    max-width: calc(33.4% - 2.4px);
  }
  .additional_services .grids_fours {
    grid-template-columns: repeat(3, 1fr);
  }
  .services_price .grids_price .grids_price-columns p {
    font-size: 3.4rem !important;
    line-height: 3.4rem !important;
  }
  .common-problems .row .col-md-6 {
    width: 50%;
  }
  .common-grey-bx {
    padding: 1.5rem;
    align-items: flex-start;
  }
  .compliance .compliance-inner {
    height: 25rem;
  }
  .compliance .compliance-inner img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .common-problems.haslist ul {
    gap: 6px 20px;
  }
  .common-problems.haslist ul li:before {
    top: 6px;
  }
  .structured-workflow .workflow-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .structured-workflow .workflow-card {
    padding: 1.5rem;
  }
  .accuracy-control .accuracy-content,
  .accuracy-control .accuracy-content .accuracy-content-inner {
    width: 100%;
  }
  .accuracy-control .accuracy-content .accuracy-content-inner {
    padding: 1.5rem;
  }
  .accuracy-control .accuracy-content .accuracy-content-inner ul li img {
    top: 4px;
  }
  .homeSec6 p {
    margin: 0;
    margin-bottom: 2.5rem;
  }
  .additional_services .ad_services {
    padding: 1rem;
  }
  .requirement .requirementbx {
    width: 100%;
    padding: 1.5rem;
    height: unset;
    border-right: none;
    border-bottom: 2px solid #0446c2;
  }
  .requirement .requirement-top p {
    margin-bottom: 0;
  }
  .requirement .requirement-row {
    flex-direction: column;
  }
  .thresholds .row {
    gap: 2rem;
    flex-direction: column-reverse;
  }
  .location .location-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .services_price .grids_price {
    grid-template-columns: repeat(1, 1fr);
  }
  .additional_services .ad_services span {
    font-size: 0.875rem;
    line-height: 14px;
    margin-bottom: 1rem;
  }
  header .glb_btn {
    padding: 1rem 0.7rem;
    font-size: 0.7rem;
  }
  .innerbanner .container {
    padding: 20px;
  }
  .innerbanner h1 {
    font-size: 3.3rem;
    line-height: 4rem;
    margin-bottom: 2rem;
  }
  .compliance_sec .compliance_bx {
    padding: 1rem;
  }
  .prepforce .log-row {
    flex-direction: column;
    padding: 2rem 0;
  }
  .prepforce .log-row .log-row-inner .text h5 br {
    display: none;
  }
  .innerbanner h1 {
    font-size: 2.8rem;
    line-height: 3rem;
    margin-bottom: 2rem;
  }
  .innerbanner h1 {
    font-size: 2.6rem;
    line-height: 3rem;
    margin-bottom: 2rem;
  }
  .methodlogy .methodology-top {
    margin-bottom: 3rem;
  }
  .leadership .leadership-bx p {
    margin-bottom: 0;
  }
  h2 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
  .prepforce .bluebx ul {
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .prepforce .bluebx h6 {
    align-items: center;
    margin: 0;
  }
  .methodology-grid .col-md-6 {
    max-width: 100%;
    width: 100%;
  }
  .methodology-grid .col-md-4 {
    max-width: 100%;
    width: 100%;
  }
  .methodology-grid .col-md-8 {
    max-width: 100%;
    width: 100%;
  }
  .methodlogy .methodology-grid .meth-card h4 {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
  .methodlogy .methodology-grid .meth-card.blue-card h3 {
    font-size: 1.4rem;
  }
  .methodlogy .methodology-grid .meth-card .icon {
    margin-bottom: 1rem;
  }
  .partnership-section .partnership-content {
    border-left: 3px solid #ff7f00;
    padding-left: 2rem;
  }
  .partnership-section .partnership-content .priority-box {
    background-color: #2c2c2c;
    padding: 1rem;
  }
  .partnership-section .partnership-content .priority-box h4 {
    font-size: 1.3rem;
  }
  .operating-hours .opearationbx .hours-card,
  .operating-hours .receiving-window-bx,
  .operating-hours .operation-calender,
  .operating-hours .bluebox {
    border-width: 2px;
    padding: 1rem;
    padding-left: 1rem;
  }
  .operating-hours .opearationbx .hours-card .hours-time .time-big {
    font-size: 2rem;
    line-height: 3rem;
    letter-spacing: 0.0125rem;
  }
  .operating-hours .opearationbx .hours-card .hours-time .time-dash {
    font-size: 2rem;
    line-height: 1;
  }
  .operating-hours .opearationbx .hours-card .hours-time .time-sm {
    font-size: 1rem;
  }
  .operating-hours .opearationbx .hours-card .hours-header h4 {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .operating-hours .opearationbx .hours-card .hours-header img {
    flex-shrink: 0;
    flex: 1 0 20px;
    max-width: 20px;
  }
  .operating-hours .receiving-window-bx .receiving-time {
    align-items: flex-start;
    flex-direction: column;
  }
  .operating-hours .receiving-window-bx .cutoff-badge {
    position: static;
    display: inline-flex;
    margin: 0 0 1rem 0;
  }
  .operating-hours .opearationbx .hours-card {
    padding-left: 2rem;
  }
  .precision h2 {
    line-height: 2.6rem;
    margin-bottom: 1.5rem;
  }
  .precision .btn-container {
    flex-direction: column;
    width: 100%;
  }
  .precision h2,
  .precision p {
    text-align: left !important;
  }
  .srvcSec2 .rateWrap .rateCard {
    padding: 2rem;
  }
  .srvcSec2 .rateWrap {
    margin-bottom: 2rem;
    flex-direction: column;
  }
  .srvcSec2 .rateWrap .rateCard .rateLabel,
  .srvcSec2 .rateWrap .rateCard .ratePrice {
    margin-bottom: 0;
  }
  .srvcSec2 .rateWrap .rateCard .ratePrice {
    font-size: 3.7rem;
    line-height: 4rem;
  }
  .srvcSec4 .abs_txt h6 {
    font-size: 6.1rem;
    margin-top: -8%;
    text-align: center;
  }
  .srvcSec3 .srvcWraps .srvcCard {
    max-width: calc(50% - 1.4px);
  }
  .srvcSec3 .srvcWraps .srvcCard {
    padding: 1rem;
  }
  .srvcSec3 .srvcWraps {
    margin-top: 2rem;
  }
  .srvcSec5 .txt {
    padding: 0 2rem;
  }
  .additional_services .grids_fours {
    grid-template-columns: repeat(2, 1fr);
  }
  .prepforce-container .exclusions-banner ul li {
    color: #fff;
    max-width: 100%;
  }
  .who-we-work .who-we-work-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-direction: column;
  }
  .prepforce-container .prep-card {
    padding: 1.5rem;
  }
  .prepforce-container .card-row-top,
  .prepforce-container .card-row-bottom {
    gap: 1rem;
  }
  .discipline-section .content-wrapper {
    margin-top: 2rem;
  }
  .discipline-section .discipline-main-row {
    margin-bottom: 2rem;
  }
  .common-grey-bx {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .common-problems .row .col-md-6 {
    width: 100%;
  }
  .compliance .compliance-inner h4 {
    font-size: 1.2rem;
    line-height: 1.5rem;
    left: 1rem;
    bottom: 1.5rem;
    right: 1rem;
  }
  .difference .difference-outer {
    max-width: 100%;
    padding: 2rem;
  }
  .difference .difference-outer .difference-inner {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .difference .difference-outer .difference-inner p {
    text-align: left;
  }
  .common-problems h3 {
    margin-bottom: 2rem;
  }
  .structured-workflow .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 2000px) {
  .operational_services .align-items-md-end {
    align-items: center !important;
  }
}/*# sourceMappingURL=style.css.map */
