:root {
  --font: "Manrope", sans-serif;
  --font2: "Manrope", sans-serif;
  --liner: linear-gradient(180deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0));
  --liner2: linear-gradient(135deg, #2C2C82 0%, #1C1C56 100%);
  --pri: #3E3D93;
  --sec: #6C63FF;
  --text-color: #1F2937;
  --para-color: #5E777D;
  --text-muted: #8d9eb5;
  --text-light: #8c8c8c;
  --border-color: #e3e3e3;
  --white: #fff;
  --off-white: #f3f4f6;
  --black: #212529;
  --bs-primary: #0082ff;
  --bs-success: #03b562;
  --bs-info: #0fbcf9;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-primary-rgb: 0, 130, 255;
  --bs-success-rgb: 3, 181, 98;
  --bs-info-rgb: 15, 188, 249;
  --bs-warning-rgb: 255, 169, 9;
  --bs-danger-rgb: 219, 33, 35;
}

body {
  background: var(--white);
  font-family: var(--font2);
  color: var(--para-color);
  font-size: 15px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

p {
  color: var(--para-color);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--font2);
  line-height: 1.6;
}

a {
  display: block;
  text-decoration: none;
}

p a {
  display: inline;
  color: var(--text-muted);
}

p a:hover {
  color: var(--pri);
}

hr {
  border-color: transparent;
  background: #8d8d8d;
  height: 1.4px;
}

.head-sec {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 30px;
}

.head-sec.text-start,
.head-sec.text-md-start {
  max-width: 100%;
}

.head-sec .sub-tt {
  border-radius: 10px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--pri);
  margin-bottom: 3px;
  font-family: var(--font2);
  position: relative;
}

.head-sec .sub-tt::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--pri);
  display: inline-block;
  margin-right: 7px;
  border-radius: 100%;
  margin-bottom: 1px;
}

.head-sec .tt {
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 8px;
  position: relative;
}

.head-sec .tt span {
  color: var(--pri);
}

.head-sec p {
  color: var(--para-color);
  font-weight: 400;
  margin-bottom: 0;
}

.head-sec.text-white .sub-tt {
  color: white;
}

.head-sec.text-white .sub-tt::before {
  content: "";
  background-color: white;
}

.head-sec.text-white .tt,
.head-sec.text-white p {
  color: white;
}

.head-sec.text-white p {
  color: rgba(255, 255, 255, 0.8);
}

.badge {
  font-size: 12px;
  font-weight: 600;
  border: 1px solid;
  border-radius: 18px;
  padding: 6px 10px;
}

.bg-primary-transparent {
  background-color: rgba(var(--bs-primary-rgb), 0.1) !important;
  color: var(--bs-primary) !important;
}

.bg-primary-transparent:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.1) !important;
  color: var(--bs-primary) !important;
}

.bg-info-transparent {
  background-color: rgba(var(--bs-info-rgb), 0.1) !important;
  color: rgb(var(--bs-info-rgb)) !important;
}

.bg-info-transparent:hover {
  background-color: rgba(var(--bs-info-rgb), 0.1) !important;
  color: rgb(var(--bs-info-rgb)) !important;
}

.bg-success-transparent {
  background-color: rgba(var(--bs-success-rgb), 0.1) !important;
  color: rgb(var(--bs-success-rgb)) !important;
}

.bg-success-transparent:hover {
  background-color: rgba(var(--bs-success-rgb), 0.1) !important;
  color: rgb(var(--bs-success-rgb)) !important;
}

.bg-warning-transparent {
  background-color: rgba(var(--bs-warning-rgb), 0.1) !important;
  color: rgb(var(--bs-warning-rgb)) !important;
}

.bg-warning-transparent:hover {
  background-color: rgba(var(--bs-warning-rgb), 0.1) !important;
  color: rgb(var(--bs-warning-rgb)) !important;
}

.bg-danger-transparent {
  background-color: rgba(var(--bs-danger-rgb), 0.1) !important;
  color: rgb(var(--bs-danger-rgb)) !important;
}

.bg-danger-transparent:hover {
  background-color: rgba(var(--bs-danger-rgb), 0.1) !important;
  color: rgb(var(--bs-danger-rgb)) !important;
}

.bg-grey-transparent {
  background-color: var(--off-white) !important;
  color: var(--text-muted) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-pri {
  color: var(--pri) !important;
}

.text-sec {
  color: var(--sec) !important;
}

.w-btn {
  padding: 10px 15px;
  border-radius: 50px;
  color: white;
  border: 1px solid #00c966;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  text-transform: capitalize;
  white-space: nowrap;
  background-color: #00c966;
  outline: none;
  transition: 0.2s ease-in-out;
  line-height: 1;
}

.w-btn:hover {
  border-color: #00c966;
  background-color: #00b95d;
}

.main-btn {
  padding: 13px 20px;
  color: var(--white);
  border: 1px solid var(--pri);
  background-color: var(--pri);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  white-space: nowrap;
  outline: none;
  transition: 0.2s ease-in-out;
  justify-content: center;
  border-radius: 50px;
  line-height: 1;
}

.main-btn.sm {
  padding: 10px 15px;
  font-size: 13px;
}

.main-btn:hover {
  background: var(--white);
  color: var(--pri);
  border-color: var(--pri);
}

.main-btn2 {
  color: var(--white);
  background-color: var(--sec);
  border-color: var(--sec);
}

.main-btn2:hover {
  background-color: var(--pri);
  border-color: var(--pri);
  color: var(--white);
}

.main-btn.light {
  background-color: var(--white);
  border-color: var(--pri);
  color: var(--pri);
  font-weight: 600;
}

.main-btn.light:hover {
  background-color: var(--sec);
  border-color: var(--sec);
  color: var(--white);
}

.link-btn svg {
  margin-right: 2px;
}

.link-btn {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
}

.link-btn.link-btn:hover {
  text-decoration: underline;
}

.productBrochureandvideo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px dashed #b5b5b5;
  padding: 7px 15px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 15px;
  color: var(--text-color);
  font-family: var(--font);
  background-color: transparent;
  border-radius: 20px;
}

.form-label {
  font-size: 13px;
  color: var(--text-color);
  font-family: var(--font);
  font-weight: 600;
  margin-bottom: 3px;
}

.form-group {
  position: relative;
  margin-bottom: 15px;
  color: rgb(1, 48, 118);
}

.form-control,
.form-select,
.SumoSelect>.CaptionCont {
  font-weight: 400;
  border-radius: 10px;
  font-size: 14px;
  padding: 7px 12px;
  color: var(--text-color);
  font-family: var(--font2);
  height: 40px;
  align-content: center;
  border-color: #E5E5F0;
  background: #fafafe;
}

.form-control.sm,
.form-select.sm {
  height: 37px;
  font-size: 14px;
  padding: 5px 12px;
}


.form-control::placeholder {
  opacity: 0.8;
}

textarea.form-control {
  min-height: 100px;
  resize: none;
  align-content: start;
}

.form-control:focus,
.form-select:focus {
  border-color: #e3e3e3;
  box-shadow: none;
}

input:-webkit-autofill {
  filter: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: currentColor !important;
  /* text color */
  transition: background-color 5000s ease-in-out 0s;
  caret-color: currentColor;
  color: inherit !important;
  background-color: inherit !important;
}

.logo {
  max-width: 110px;
  width: auto;
  height: auto;
}

.social {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  gap: 10px;
  color: var(--white);
}

.social li a {
  color: var(--white);
}

.social li a:hover {
  color: var(--sec);
}

.social svg {
  width: 14px;
  height: 14px;
  line-height: 1;
  color: currentColor;
}

header {
  position: fixed;
  top: 20px;
  z-index: 999;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  will-change: transform;
  /* height: 157px; */
  display: flex;
  flex-direction: column;
  justify-content: end;
}


.menubar {
  padding: 16px;
  background-color: rgb(0 0 0 / 33%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  width: 100%;
  position: relative;
  overflow: visible;
  box-shadow: inset 0 2px #fff3;
}

.menubar .main-btn.light {
  background-color: transparent;
  border-color: white;
  color: white;
}

.menubar .main-btn.light:hover {
  background-color: var(--sec);
  color: var(--white);
  border-color: var(--sec);
}

.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  line-height: 1.2;
  position: relative;
}

.kr-dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transform-origin: center;
  transition: transform .2s ease;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.kr-dropdown-icon svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* ################### main ###################### */

main,
main img {
  overflow: hidden;
  display: block;
  width: 100%;
  position: relative;
}


main img {
  aspect-ratio: 1920 / 920;
  object-fit: cover;
}

.carousel-control-next,
.carousel-control-prev {
  line-height: 0;
  position: absolute;
  top: 52%;
  display: block;
  width: 28px;
  height: 28px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: #fff;
  border: 0;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  border-radius: 100%;
  z-index: 9;
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 13px;
  width: 13px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background-color: var(--sec);
  opacity: 1;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

@media (max-width: 980px) {

  .carousel-control-next,
  .carousel-control-prev {
    width: 20px;
    height: 35px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 15px;
    width: 15px;
  }

  .carousel-control-prev {
    left: 0px;
    border-radius: 0 3px 3px 0;
  }

  .carousel-control-next {
    right: 0px;
    border-radius: 3px 0px 0px 3px;
  }
}

.swiper_wrap {
  position: relative;
}

.cate-next,
.cate-prev {
  width: 38px;
  height: 38px;
  background-color: #fff;
  border: 1px solid var(--pri);
  border-radius: 100%;
  color: var(--pri);
  align-content: center;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

.cate-next svg,
.cate-prev svg {
  width: 20px;
  height: 20px;
}

.cate-next:hover,
.cate-prev:hover {
  background-color: var(--pri);
  color: var(--white);
}

.lead-sure-section {
  padding: 55px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bg-sec {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.95) 100%) !important;
  background-color: var(--pri) !important;
}

.bg-pri {
  background-color: var(--pri) !important;
  align-content: center;
  color: var(--off-white);
}

.bg-liner {
  background: var(--liner);
  background-color: var(--pri);
}

.bg-liner2 {
  background: var(--liner2) !important;
}

.img-bg-content .content-sec h1,
.img-bg-content .content-sec h2,
.img-bg-content .content-sec h3,
.img-bg-content .content-sec h4,
.img-bg-content .content-sec h5,
.img-bg-content .content-sec h6 {
  color: var(--white);
}

.img-bg-content .content-sec p,
.img-bg-content .content-sec ul li {
  color: var(--white);
  /* opacity: 0.95; */
}

.bg-light {
  background-color: var(--off-white) !important;
}

.img-bg-content {
  background: url(../images/bg/1.webp) no-repeat;
  color: white;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  align-content: center;
}

.img-bg-content2 {
  background-image: url(../images/bg/2.webp);
}

.img-bg-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5fa05e;
  opacity: 0.9;
  z-index: -1;
}

.img-bg-content2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #24233e;
  opacity: 0.9;
  z-index: -1;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: var(--font);
  line-height: 40px;
}

.read-mr {
  font-size: 0.9em;
  color: var(--pri);
  font-weight: 500;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  padding: 0;
  background-color: transparent;
  border: 0;
  text-transform: capitalize;
}

.read-mr.text-decoration:hover {
  text-decoration: underline;
}

.read-mr:hover {
  color: var(--text-color);
}

.swiper-pagination {
  position: static;
}

.swiper-pagination-bullet {
  transition: 0.2s ease;
  background-color: var(--text-color);
}

.swiper-pagination-bullet-active {
  background-color: var(--pri);
  width: 18px;
  border-radius: 4px;
}

.mobile_nav {
  display: none;
}

.ls-pillTabs {
  position: relative;
  display: inline-flex;
  justify-content: center;
  gap: 0;
  background-color: var(--off-white);
  padding: 8px;
  border-radius: 999px;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #e3e3e3;
}

.ls-pillTabs.dark {
  background:
    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #272727, #272727);
  box-shadow: 0px 3px 3px 0px #00000024,
    0px -3px 0px 0px #080808 inset,
    0px 1px 0px 0px #FFFFFF4D inset;
}

.ls-pillIndicator {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  width: 0;
  border-radius: 999px;
  /* background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, var(--pri), var(--pri)); */
  transform: translateX(0);
  transition:
    transform 0.28s ease,
    width 0.28s ease;
  pointer-events: none;
  z-index: -1;
}

.ls-pillTabs.dark .ls-pillIndicator {
  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, var(--pri), var(--pri));
}

.ls-pillTabs .nav-link {
  color: var(--text-color);
  font-size: 14px;
  padding: 7px 15px;
  border-radius: 20px;
}

.ls-pillTabs.dark .nav-link {
  color: var(--white);
  font-weight: 600;
}

.ls-pillTabs .nav-link:hover {
  color: var(--pri);
}

.ls-pillTabs .nav-link.active {
  color: var(--white);
  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, var(--pri), var(--pri));
}

.ls-pillTabs.dark .nav-link.active {
  color: var(--text-color);
  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, var(--pri), var(--pri));
}

.search-bx {
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  padding: 5px;
  background-color: #f3f4f6;
  box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .05);
}

.search-bx input {
  width: 100%;
  max-width: 100%;
  outline: none;
  border: none;
  color: var(--text-color);
  font-weight: 400;
  height: 20px;
  font-size: 15px;
  min-width: 220px;
  background-color: #f3f4f6;
  /* height: 40px; */
  padding-left: 12px;
}

.search-bx button {
  outline: none;
  border: none;
  /* height: 40px; */
  background-color: var(--pri);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 7px;
  gap: 5px;
  font-weight: 600;
}

.search-bx button:hover {
  background-color: var(--sec);
}

.blog-bx {
  border-radius: 13px;
  padding: 16px;
  background-color: #f5f5f9;
  /* border: 1px solid var(--border-color); */
  overflow: hidden;
}

.blog-bx hr {
  background-color: var(--text-color);
}

.blog-bx .img-bx {
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 13px;
  margin-bottom: 10px;
}

.blog-bx .img-bx .float-date {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--pri);
  color: white;
  padding: 10px 15px;
  font-weight: 600;
  border-radius: 7px;
  text-align: center;
  line-height: 1.2;
  font-size: 22px;
}

.blog-bx .img-bx .float-date span {
  font-weight: 500;
  display: block;
  font-size: 14px;
}

.blog-bx .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-bx .img-bx:hover img {
  transform: scale(1.08);
}

.blog-bx .date {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  font-size: 14px;
}

.blog-bx p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog-bx .tt {
  margin-top: 3px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 5px;
}

.blog-bx .tt a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--text-color);
  transition: 0.2s;
}

.blog-bx .tt:hover a {
  color: var(--pri);
}

.blog-bx.blog-card {
  display: flex;
  transition: 0.2s ease;
  gap: 15px;
  border-radius: 10px;
  background-color: var(--off-white);
}

.blog-bx.blog-card .img-bx,
.blog-bx.blog-card .img-bx img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 90px;
  min-width: 90px;
  margin-bottom: 0;
}

.blog-bx.blog-card .tx-bx {
  padding: 0;
  flex-grow: 1;
}

.blog-bx.blog-card .tx-bx .tt a,
.blog-bx.blog-card .tx-bx .tt {
  font-size: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.blog-bx.blog-card .read-mr {
  font-size: 12px;
  width: auto;
  margin-top: 5px;
}

.breadcum-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 4px 15px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  line-height: 1;
}

.breadcum-sec ul li {
  color: var(--white);
  font-weight: 500;
  position: relative;
  font-family: var(--font2);
  font-size: 13px;
}

.breadcum-sec ul li::before {
  content: "/";
  position: absolute;
  top: 0px;
  right: -15px;
  width: 15px;
  height: 20px;
  color: var(--white);
  text-align: center;
}

.breadcum-sec ul li:last-child:before {
  content: none;
}

.breadcum-sec ul li a {
  color: var(--sec);
}

.img-breadcum-sec {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.img-breadcum-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-color);
  opacity: 0.8;
  z-index: -1;
}

.img-breadcum-sec img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.img-breadcum-sec .tx-bx {
  text-align: center;
  padding: 180px 0 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.img-breadcum-sec .tx-bx .tt {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
}

.img-breadcum-sec .tx-bx p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.breadcum-sec.breadcum-sec2 {
  border-bottom: 1px solid var(--border-color);
}

.breadcum-sec.breadcum-sec2 ul {
  padding: 0;
}

.breadcum-sec.breadcum-sec2 ul li::before,
.breadcum-sec.breadcum-sec2 ul li {
  color: var(--para-color);
}

.breadcum-sec.breadcum-sec2 ul li a {
  color: var(--pri);
}

.breadcum-sec.breadcum-sec2 ul li a:hover {
  color: var(--sec);
}

.breadcum-sec.breadcum-sec2 .tx-bx {
  position: static;
  transform: none;
  padding: 10px 0;
  background-color: transparent;
}

.contact-container {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 3px;
  overflow: hidden;
  padding: 30px 25px;
}

.contact-bx .head-sec {
  margin-bottom: 30px;
}

.contact-bx .head-sec .tt {
  font-size: 23px;
}

.contact-bx .head-sec .tt::before {
  top: 40px;
}

.contact-bx .main-btn {
  padding: 13px 15px;
  font-size: 14px;
}

.contact-bx .con-bx {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
  gap: 12px;
}

.contact-bx .tx-bx .tt {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  opacity: 0.5;
}

.contact-bx .con-bx .ic-bx {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(57 57 154 / 47%);
  box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.contact-bx .con-bx .ic-bx svg {
  min-width: 15px;
  width: 15px;
  height: 15px;
  color: var(--white);
}

.contact-bx .con-bx a,
.contact-bx .con-bx p {
  font-family: var(--font2);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 0px;
}

.contact-bx .con-bx a {
  font-weight: 500;
}

.contact-bx .con-bx a:hover {
  color: var(--sec);
}

.map-bx {
  width: 100%;
  display: block;
  margin-bottom: -42px;
}

.content-sec table {
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
}

.content-sec table strong,
.content-sec table b {
  font-weight: 600;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: #d5e3d2;
  border-style: solid;
  border-width: 1px;
  padding: 8px 10px;
  font-size: 14px;
  text-align: start;
}

th {
  color: var(--text-color);
}

.clientSlider .swiper-wrapper {
  transition-timing-function: linear;
}

.clients-bx img {
  aspect-ratio: 25 / 14;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.5s cubic-bezier(.22, 1, .36, 1);
}

.clients-bx img:hover {
  transform: scale(1.04);
}

.table-of-con {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 23px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.table-of-con .title {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 10px;
  font-family: var(--font);
}

.table-of-con ul {
  padding-left: 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.table-of-con ul li {
  padding: 2px 0;
  color: var(--para-color);
  font-weight: 400;
  cursor: pointer;
}

.table-of-con ul li:hover {
  text-decoration: underline;
}


.glow {
  transform-origin: center;
  animation: glowEffect 1s ease-in-out;
  animation-delay: 600ms;
}

@keyframes glowEffect {
  0% {
    background: rgba(255, 255, 0, 0);
    box-shadow: 0 0 0 rgba(255, 255, 0, 0);
  }

  50% {
    background: rgba(255, 255, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
  }

  100% {
    background: rgba(255, 255, 0, 0);
    box-shadow: 0 0 0 rgba(255, 255, 0, 0);
  }
}

.iti {
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  height: 38px;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

.g-recaptcha {
  transform: scale(0.8);
  transform-origin: 0 0;
}

.business-enq {
  position: fixed;
  bottom: 45px;
  right: 20px;
  z-index: 9;
  border: 0;
  outline: 0;
  background-color: var(--pri);
  color: var(--white);
  font-size: 14px;
  padding: 5px;
  padding-right: 15px;
  border-radius: 24px;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  font-weight: 400;
}

.business-enq:hover {
  transform: scale(1.03);
}

.business-enq .icon {
  height: 32px;
  width: 32px;
  border-radius: 100%;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  background: var(--white);
  color: var(--pri);
}

.business-enq .icon svg {
  height: 18px;
  width: 18px;
}

.whatapp_btn {
  background: #01e675;
  width: 40px;
  height: 40px;
  color: var(--white);
  position: fixed;
  right: 20px;
  bottom: 100px;
  cursor: pointer;
  z-index: 9;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
  border: 0;
}

.whatapp_btn svg {
  width: 19px;
  height: 19px;
}

.whatapp_btn:hover {
  transform: scale(1.1);
}

.whatapp_btn:focus,
.whatapp_btn:hover {
  background: #01e675;
  color: var(--white);
}

.error {
  font-size: 14px;
  color: red;
}

.modal-header {
  padding: 0;
  padding-inline: 25px;
  padding-top: 18px;
  border-radius: 0;
  border: 0;
  /* background: var(--off-white); */
}

.modal-header.modal-header2 {
  background: var(--liner);
  background-color: var(--pri);
  color: white;
  padding-block: 12px;
}

.modal-header.modal-header2 .main-tt {
  color: white;
}

.modal-content {
  border-radius: 10px;
  overflow: hidden;
  border: 0;
  background: white;
  /* box-shadow: 0px 7.77px 2.21px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843), 0px -6px 0px 0px rgba(0, 0, 0, 0.1) inset, 0px 4px 0px 0px rgba(255, 255, 255, 0.6) inset; */
}

.modal-header.modal-header2 .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

@media (min-width: 576px) {
  .modal-sm {
    max-width: 300px;
  }
}

.modal-body {
  padding: 10px 25px 20px;
  /* background: var(--off-white); */
}

.modal-content .main-tt {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--font);
  margin-bottom: 15px;
}

.btn-close {
  float: right;
  box-shadow: none;
}

.btn-close:hover,
.btn-close:focus {
  box-shadow: none;
}

.pop-img {
  aspect-ratio: 1 / 1;
}

.pop-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec h4,
.content-sec h5,
.content-sec h6,
.content-sec .tt,
.cmTitle {
  text-transform: capitalize;
  font-size: 23px;
  font-weight: 600;
  color: var(--text-color);
  text-align: left;
  margin-bottom: 7px;
  line-height: 1.4;
}

.cmTitle {
  color: var(--pri);
  font-size: 18px;
  margin-bottom: 5px;
}

.content-sec h2,
.content-sec h3,
.content-sec h4,
.content-sec h5,
.content-sec h6 {
  font-size: 20px;
}

.content-sec h4,
.content-sec h5,
.content-sec h6 {
  font-size: 18px;
}

.content-sec h5,
.content-sec h6 {
  font-size: 16px;
}

.content-sec ul,
.content-sec ol {
  padding-left: 20px;
  margin: 0;
  margin-bottom: 10px;
}

.content-sec p,
.content-sec li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--para-color);
  text-align: justify;
  font-family: var(--font2);
  font-weight: 400;
}

.content-sec p a {
  color: var(--pri);
}

.content-sec li {
  margin-bottom: 3px;
  position: relative;
}

.content-sec li a {
  display: inline;
  color: var(--text-color);
}

.content-sec ul {
  padding-left: 0;
}

.content-sec ul li {
  padding-left: 20px;
  display: flow-root;
}

.content-sec ul li::before {
  content: "➤";
  position: absolute;
  left: 0px;
  color: var(--pri);
  font-size: 15px;
  top: 1px;
}

.content-sec ul li a {
  display: inline;
  color: var(--text-color);
}

.content-sec table {
  width: -webkit-fill-available;
  margin-bottom: 20px;
  overflow: hidden;
}

.content-sec table p {
  margin-bottom: 0;
  color: var(--para-color);
  font-size: 14px;
}

.content-sec table tr:nth-child(even) {
  background-color: #f8f8f8;
  color: var(--para-color);
}

.content-sec table tr:nth-child(odd) {
  background-color: var(--white);
  color: var(--para-color);
}

.content-sec table th {
  background-color: var(--pri);
  color: var(--white);
  font-weight: 500;
}

ul.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 18px;
  list-style: none;
}

ul.footer-menu-list li a {
  margin-right: 15px;
  font-weight: 300;
  display: inline-block;
  line-height: 1.3;
  position: relative;
  text-transform: capitalize;
  color: var(--off-white);
}

ul.footer-menu-list li a:hover {
  color: var(--sec);
  opacity: 1;
}

ul.footer-menu-list li a::before {
  content: "|";
  padding: 0;
  font-size: 13px;
  position: absolute;
  right: -9px;
  top: 1px;
  color: var(--white);
  opacity: 0.8;
}

ul.footer-menu-list li:last-child a::before {
  content: none;
}

footer {
  padding: 60px 0 15px;
  position: relative;
  z-index: 1;
  background-color: #191c18;
  overflow: hidden;
  border-radius: 30px;
}

.ft-bx {
  position: relative;
  z-index: 1;
}

.ft-bx .logo {
  max-width: 180px;
  padding: 0;
}

.ft-bx .con-bx {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
  gap: 10px;
}

.ft-bx .con-bx .ic-bx svg {
  min-width: 17px;
  width: 17px;
  height: 17px;
  color: var(--sec);
}

.ft-bx .con-bx a,
.ft-bx .con-bx p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0px;
}

.ft-bx .con-bx a:hover {
  color: var(--sec);
  opacity: 1;
}

.ft-bx .ft-tt {
  font-family: var(--font);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 10px;
  position: relative;
}

.ft-bx p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 20px;
}

.ft-bx ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.ft-bx ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  padding: 3px 0;
  transition: 0.1s;
  display: inline-block;
  font-weight: 400;
}

.ft-bx ul li a:hover {
  color: var(--sec);
  opacity: 1;
}

.ft-bx ul.social {
  display: flex;
  gap: 5px;
  justify-content: start;
  background-color: transparent;
}

.ft-bx ul.social li a {
  background: var(--sec);
  width: 38px;
  height: 38px;
  color: var(--white);
  border-radius: 100%;
  align-content: center;
  text-align: center;
  line-height: 1;
  opacity: 1;
}

.ft-bx ul.social li a svg {
  width: 17px;
  height: 17px;
}

.ft-bx ul.social li a:hover {
  background: white;
  color: var(--pri);
}

.contact-bx.ft-bx ul.social li a {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: var(--sec);
}

.contact-bx.ft-bx ul.social li.facebook a {
  background: #3c5b9b;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.twitter a {
  background: var(--liner);
  background-color: #000;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.linkedin a {
  background: #027ba5;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.youtube a {
  background: #f70000;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.instagram a {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
  color: white;
  border: 0;
}

.copyright {
  padding-top: 15px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright svg {
  color: var(--pri);
}

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
}

.copyright p a {
  color: rgba(255, 255, 255, 0.6);
  display: inline;
  font-weight: 400;
}

.copyright p a:hover {
  color: var(--sec);
}

footer .content-sec h1,
footer .content-sec h2,
footer .content-sec h3,
footer .content-sec .tt {
  color: var(--white);
  font-size: 18px;
  text-transform: capitalize;
}

footer .content-sec p,
footer .content-sec ul li {
  color: var(--off-white);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
}

.sitemap {
  border-left: 1px solid #666;
  padding: 0;
}

.sitemap li {
  list-style: none !important;
  background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0px 9px;
  padding: 0px 0px 0px 15px;
  margin-bottom: 5px;
  font-family: var(--font2);
  color: var(--text-color);
  font-weight: 400;
}

.sitemap li ul {
  border-left: 1px solid #666;
  padding: 0;
}

.sitemap li a {
  color: var(--text-color);
  font-size: 14px;
  padding-bottom: 5px;
  display: inline-block;
}

.sitemap li a:hover {
  color: var(--pri);
}

.market-sec {
  padding: 60px 0;
  font-family: var(--font2);
}

.market-sec h1,
.market-sec .main-tt,
.market-sec h2,
.market-sec h3 {
  font-size: 20px;
  color: var(--text-color);
  line-height: 26px;
  margin: 20px 0 15px;
  font-weight: 600;
}

.market-sec h2,
.market-sec h3 {
  font-size: 18px;
  font-weight: 600;
}

.market-sec .market-bx {
  padding: 10px 12px;
  background-color: var(--off-white);
  color: var(--text-color);
  font-size: 14px;
  transition: 0.2s ease-in-out;
  border-radius: 10px;
}

.market-sec .market-bx:hover {
  background-color: var(--pri);
  color: white;
}

.expend-content-sec {
  overflow: hidden;
}

.expend-content-sec2 {
  max-height: 400px;
  overflow: clip;
}

.expend-content-sec2.expanded {
  overflow-y: auto;
  padding-right: 10px;
}

.expend-content-sec2.expanded::-webkit-scrollbar {
  width: 5px;
}

.expend-content-sec2.expanded::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.read-toggle {
  display: inline-block;
  color: currentColor;
  cursor: pointer;
  font-weight: 600;
  margin-top: 5px;
  user-select: none;
  font-size: 0.9em;
}

.read-toggle:hover {
  opacity: 0.8;
}


.abt-vid-bx iframe,
.reels-vid iframe {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  overflow: hidden;
  pointer-events: none;
  transform: scale(1.02);
  transform-origin: 50% 50%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  border-radius: 15px;
  overflow: hidden;
}

.reels-vid iframe {
  aspect-ratio: 35 / 62;
}

.abt-vid-bx .tt {
  text-align: center;
  color: var(--text-color);
  font-weight: 600;
  margin-top: 15px;
  font-size: 16px;
}

.blog-sec h1,
.blog-sec h2,
.blog-sec h3,
.blog-sec h4,
.blog-sec h5,
.blog-sec h6 {
  scroll-margin-top: 100px;
  background: transparent;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: initial !important;
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:not(:first-of-type) {
  margin-bottom: 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.accordion-item:last-of-type {
  margin-bottom: 0;
}

.accordion-button {
  background: transparent;
  font-weight: 500;
  outline: 0 !important;
  color: var(--text-color);
  font-size: 16px;
  padding: 0;
  padding-bottom: 12px;
  padding-right: 30px;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font);
  border-radius: 0 !important;
}

.accordion-body {
  padding: 0;
  padding-top: 12px;
  color: var(--para-color);
  font-size: 15px;
}

.accordion-body p {
  margin-bottom: 0;
  font-size: 15px;
}

.accordion-button::after {
  position: absolute;
  right: 0;
  top: -3px;
  width: 35px;
  height: 35px;
  /* background-color: var(--pri); */
  background-size: 1.1rem;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%2333" class="bi bi-plus-lg" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2"/> </svg>');
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background: transparent;
  color: var(--pri);
}

.accordion-button:focus {
  box-shadow: none !important;
  border: 0;
  border-bottom: 1px solid var(--border-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%2333" class="bi bi-dash-lg" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8"/> </svg>');
  /* background-color: var(--sec); */
  transform: none;
}

/* 

.cate-img {
  max-width: 440px;
  float: right;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
} */

.cate-img.left {
  float: left;
  margin-right: 30px;
  margin-left: 0;
}

.cate-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: white;
}

.nav-cate-style.nav-pills .nav-link {
  background-color: var(--text-light);
  color: white;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 19px;
  font-family: var(--font);
  font-weight: 500;
}

.nav-cate-style.nav-pills .nav-link.active {
  background-color: var(--pri);
  color: white;
}

.faq-sec .nav-pills .nav-link {
  background-color: transparent;
  color: var(--text-color);
  /* box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07); */
  border-radius: 8px;
  /* border-left: 3px solid var(--pri); */
  padding: 10px 18px;
  text-align: left;
  line-height: 1.2;
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  border-radius: 20px;
}

.faq-sec .nav-pills .nav-link:hover {
  color: var(--pri);
}

.faq-sec .nav-pills .nav-link.active,
.faq-sec .nav-pills .show>.nav-link {
  color: var(--white);
  background-color: var(--pri);
}

.cat-nav-img {
  background-image: url(../images/bg/2.webp);
  padding: 30px 25px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

.cat-nav-img .tt {
  color: white;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: var(--font);
}

.cat-nav-img p {
  color: var(--off-white);
  line-height: 1.3;
}

.cat-nav-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #24233e;
  opacity: 0.9;
  z-index: -1;
}

.gallery-bx {
  background: #fff;
  position: relative;
  aspect-ratio: 1 / 1;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
  margin-bottom: 3px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-bx img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s ease;
}

.gallery-bx:hover img {
  filter: blur(3px);
}

.gallery-bx.certificate-bx img,
.gallery-bx.certificate-bx {
  aspect-ratio: 164 / 235;
}

.gallery-bx img {
  max-width: 100%;
}

.gallery-bx .link-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  border-radius: 100%;
}

.gallery-bx .link-wrap svg {
  width: 20px;
  height: 20px;
}

.gallery-bx:hover .link-wrap {
  opacity: 1;
}

.gallery-bx .tt {
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 45px 20px 10px;
  pointer-events: none;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  background: linear-gradient(to top,
      rgba(2, 20, 4, 0.75) 10%,
      rgba(0, 0, 0, 0) 70%);
  text-shadow: 1px 1px 5px #000;
  z-index: 2;
}

.contact-bx .head-sec {
  margin-bottom: 20px;
}

.contact-bx .head-sec .tt {
  font-size: 25px;
}


.lsm-filter-design-wrap .filter-accordion-item {
  border: 1px solid #e6ebf1;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding: 0;
}

.lsm-filter-design-wrap .filter-accordion-item:last-child {
  margin-bottom: 0;
}

.lsm-filter-design-wrap .category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  background: #f9f9f9;
}

.lsm-filter-design-wrap .parent-select-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.lsm-filter-design-wrap .parent-checkbox,
.lsm-filter-design-wrap .child-checkbox,
.form-check-input:checked {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: var(--pri);
  border-color: #e3e3e3;
  box-shadow: none !important;
  margin-top: 0;
}

.form-check-input:checked,
.form-check-input[type=checkbox]:indeterminate {
  background-color: var(--pri);
  border-color: var(--pri);
}

.lsm-filter-design-wrap .parent-title {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
  cursor: pointer;
}

.lsm-filter-design-wrap .accordion-toggle {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: var(--pri);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}


.lsm-filter-design-wrap .accordion-toggle::before,
.lsm-filter-design-wrap .accordion-toggle::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
}

.lsm-filter-design-wrap .accordion-toggle::before {
  width: 10px;
  height: 2px;
}

.lsm-filter-design-wrap .accordion-toggle::after {
  width: 2px;
  height: 10px;
}

.lsm-filter-design-wrap .accordion-toggle:not(.collapsed)::after {
  opacity: 0;
}

.lsm-filter-design-wrap .accordion-body {
  padding: 14px;
  background: #ffffff;
}

.lsm-filter-design-wrap .subcategory-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lsm-filter-design-wrap .subcategory-list li {
  margin-bottom: 8px;
}

.lsm-filter-design-wrap .subcategory-list li:last-child {
  margin-bottom: 0;
}

.lsm-filter-design-wrap .child-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 10px;
  /* background: #f9f9f9; */
  cursor: pointer;
  transition: all 0.25s ease;
}


.lsm-filter-design-wrap .child-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.3;
}

@media (max-width: 575px) {


  .lsm-filter-design-wrap .category-head {
    padding: 12px;
  }

  .lsm-filter-design-wrap .parent-title {
    font-size: 14px;
  }

  .lsm-filter-design-wrap .child-title {
    font-size: 13px;
  }

  .lsm-filter-design-wrap .accordion-toggle {
    width: 25px;
    height: 25px;
  }
}

.custom-from-row {
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  color: var(--text-color);
  border-radius: 10px;
}

.cate-bx {
  /* background-color: var(--off-white); */
  padding: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  height: 100%;
  background-color: white;
}

.cate-bx.lg {
  padding: 12px;
}

.cate-bx .img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  /* border: 1px solid var(--border-color); */
  border-radius: 10px;
}

.cate-bx .img img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cate-bx .img:hover img {
  transform: scale(1.08);
}

.cate-bx .tx-bx {
  padding-top: 15px;
  text-align: center;
}

.cate-bx .tx-bx .tt {
  font-size: 17px;
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--font2);
}

.cate-bx hr {
  margin: 13px 0;
}

.cate-bx.lg .tx-bx .tt {
  font-size: 16px;
}

.cate-bx .tx-bx .tt a {
  color: var(--text-color);
  font-family: var(--font);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.cate-bx .tx-bx .tt:hover a {
  color: var(--pri);
}

.cate-bx .tx-bx p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 13px;
  color: var(--para-color);
}

.ceo-sec {
  background-color: #fcfaf0;
}

.prSlider {
  background-color: #f9f9f9;
  border: 1px solid #dbe5f0;
}

.prSlider .swiper-button-next,
.prSlider .swiper-button-prev {
  width: 25px;
  height: 25px;
  background-color: var(--pri);
  color: white;
  line-height: 1;
  opacity: 0.8;
  border-radius: 100%;
}

.prSlider .swiper-button-next:after,
.prSlider .swiper-button-prev:after {
  font-size: 10px;
}

.prSlider .swiper-button-next:hover,
.prSlider .swiper-button-prev:hover {
  opacity: 1;
}

.prSlider .swiper-slide img {
  /* border: 1px solid #dbe5f0; */
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
}

.prThumbsSlider .swiper-slide {
  border: 1px solid #dbe5f0;
}

.prThumbsSlider .swiper-slide img {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  background-color: #f5f5f5;
  overflow: hidden;
}

.prThumbsSlider .swiper-slide {
  opacity: 1;
}

.prThumbsSlider .swiper-slide-thumb-active {
  border: 1px solid var(--pri);
}

.vis-bx {
  border-radius: 16px;
  padding: 30px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
  background-color: #f5f5f9;
}

.vis-bx .sub-tt {
  font-size: 25px;
  color: var(--pri);
}

.vis-bx .tt {
  font-size: 35px;
  font-weight: 600;
  margin-top: auto;
  color: var(--text-color);
}

.vis-bx p {
  margin-bottom: 0;
}

.mis-bx {
  background: url(../images/about-us.webp) no-repeat;
  background-position: center;
  background-size: cover;
  height: 350px;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  box-shadow: inset 1px 1px 20px 320px #02011782;
}

.mis-bx .icon {
  padding: 8px;
  background-color: #ffffff1f;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  box-shadow: inset 0 2px #fff3;
}

.mis-bx .tt {
  font-size: 22px;
  color: white;
  font-weight: 600;
  margin-top: auto;
}

.mis-bx p {
  margin-bottom: 0;
  color: white;
}

.vule-bx {
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--pri);
}

.vule-bx .sub-tt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
}

.vule-bx .icon-ouline {
  padding: 8px;
  border: .5px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-shrink: 0;
}

.vule-bx .tt {
  font-size: 25px;
  color: white;
  font-weight: 500;
}

.vule-bx p {
  color: rgba(255, 255, 255, 0.8);
}

.cate-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}


.cate-tags li {
  padding: 10px 15px;
  border: 1px solid var(--pri);
  color: var(--pri);
  border-radius: 20px;
}

.abt-sec {
  position: relative;
  overflow: hidden;
}

.abt-sec img {
  border-radius: 30px;
}

.abt-sec .tx-bx {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background-color: white;
  padding: 30px;
  border-radius: 30px;
}

.why-us-bx {
  background-color: #f5f5f9;
  padding: 30px;
  border-radius: 30px;
}

.why-us-bx .icon {
  text-align: center;
  align-content: center;
  background-color: var(--pri);
  width: 48px;
  height: 48px;
  margin-bottom: 50px;
  border-radius: 100%;
}

.why-us-bx .icon svg {
  width: 25px;
  height: 25px;
}

.why-us-bx .tt {
  font-size: 23px;
  color: var(--text-color);
  margin-bottom: 5px;
  font-weight: 500;
}

.why-us-bx p {
  margin-bottom: 0;
}

.why-us-bx.why-us-bx2 .icon {
  background-color: #f5f5f9;
}

.why-us-bx.why-us-bx2 .tt {
  font-size: 18px;
  font-weight: 600;
}

.why-us-bx.why-us-bx2 p {
  font-size: 14px;
}

.why-us-img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.counter-sec {
  background-color: var(--pri);
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 16px;
}

.number-bg {
  z-index: 0;
  position: absolute;
  inset: auto 0% 0%;
  pointer-events: none;
}

.counter-bx .count {
  font-size: 50px;
  color: white;
  font-weight: 600;
  line-height: 1;
}

.counter-bx p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.project-list-items .tx-bx {
  display: flex;
  align-items: start;
  flex-direction: column;
  height: 100%;
}

.project-list-items .tx-bx .sub-tt {
  color: var(--text-color);
  margin-bottom: 5px;
}

.project-list-items .tx-bx .tt {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-color);
}

.project-list-items .tx-bx .read-mr {
  margin-top: auto;
  font-weight: 500;
}

.project-list-items img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.project-list-items .project-info {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--text-color);
}

.project-list-items .project-info p {
  margin-bottom: 0;
  color: var(--text-color);
}

.project-list-items .project-info p:last-child {
  font-weight: 600;
}

.awards-card .img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}

.awards-card .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.awards-card .img:hover img {
  transform: scale(1.05);
}

.awards-card .tx-bx .tt {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.awards-card .tx-bx p {
  display: flex;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-bottom: 0;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}

.policy-nav {
  position: sticky;
  top: 120px;
  align-self: start;
}

.policy-nav-title {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 14px;
}

.policy-nav a {
  display: block;
  font-size: 13.5px;
  color: var(--para-color);
  padding: 9px 0 9px 16px;
  border-left: 2px solid #E5E5F0;
  transition: color .2s, border-color .2s;
}

.policy-nav a.active {
  color: var(--pri);
  font-weight: 600;
  border-color: var(--pri);
}

.policy-item {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #E5E5F0;
  scroll-margin-top: 120px;
}

.policy-item p {
  font-size: 15px;
  padding: 3px 0;
  margin-bottom: 0;
}

.policy-item .tt {
  font-size: 18px;
  font-weight: 600;
  color: var(--pri);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-item .tt .ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #EEEEFB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-item .tt .ico svg {
  width: 16px;
  height: 16px;
  stroke: var(--pri);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #E5E5F0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 0;
}

.policy-table th {
  background: #EEEEFB;
  color: #1C1C56;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: 10px 16px;
  letter-spacing: .02em;
  border: 0;
}

.policy-table td {
  padding: 10px 16px;
  font-size: 15px;
  color: var(--para-color);
  border: 0;
  border-top: 1px solid #E5E5F0;
}

.policy-table .main-btn.sm {
  padding: 8px 13px;
  font-size: 12px;
  gap: 2px;
}

.policy-table td.amount {
  font-weight: 600;
  color: var(--pri);
}

.policy-list {
  list-style: none;
  margin-top: 8px;
  padding: 0;
}

.policy-list li {
  font-size: 15px;
  color: var(--para-color);
  line-height: 1.65;
  padding: 2px 0 2px 18px;
  position: relative;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pri);
}

.info-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.info-pill {
  flex: 1;
  min-width: 200px;
  background: #FAFAFE;
  border: 1px solid #E5E5F0;
  border-radius: 10px;
  padding: 16px 18px;
}

.info-pill .label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--para-color);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.info-pill .val {
  font-size: 14px;
  color: var(--pri);
  font-weight: 500;
}

.policy-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.youtube-player .youtube-thumbnail {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  background: transparent;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px;
}

.youtube-player img,
.youtube-player iframe {
  aspect-ratio: 16 / 9 !important;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  transform: scale(1.01);
}

.youtube-player .play {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s ease-in-out;
  background: transparent var(--bs-youtube-bg) center/1em auto no-repeat;
  background: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%3E%3Cg%20stroke-width%3D%220%22%2F%3E%3Cg%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20fill%3D%22red%22%20d%3D%22M14.712%204.633a1.75%201.75%200%200%200-1.234-1.234C12.382%203.11%208%203.11%208%203.11s-4.382%200-5.478.289c-.6.161-1.072.634-1.234%201.234C1%205.728%201%208%201%208s0%202.283.288%203.367c.162.6.635%201.073%201.234%201.234C3.618%2012.89%208%2012.89%208%2012.89s4.382%200%205.478-.289a1.75%201.75%200%200%200%201.234-1.234C15%2010.272%2015%208%2015%208s0-2.272-.288-3.367%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22m6.593%2010.11%203.644-2.098-3.644-2.11z%22%2F%3E%3C%2Fsvg%3E');
  /* background: rebeccapurple; */
}

.youtube-player:hover .play {
  animation: none;
  transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 35px rgba(232, 76, 61, 0);
  }
}

.youtube-player .tt {
  font-size: 16px;
  margin-top: 10px;
  color: var(--text-color);
  text-align: center;
  font-family: var(--font);
  font-weight: 600;
}

.youtube-player img {
  width: 100%;
}

.project-tabs .nav-link {
  background-color: white;
  padding: 7px 15px;
  font-size: 14px;
  border-radius: 17px;
  border: 1px solid var(--border-color);
  color: var(--para-color);
  font-weight: 500;
}

.project-tabs .nav-link.active {
  background-color: var(--pri);
}

.project-card {
  border: 1px solid #e3e3e3;
  background-color: white;
  overflow: hidden;
  border-radius: 13px;
  height: 100%;
}

.project-card .tx-bx .img img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-fit: contain;
}

.project-card .tx-bx {
  padding: 20px;
}

.project-card .tx-bx .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.project-card .tx-bx .top .label {
  padding: 8px 10px;
  line-height: 1;
  display: block;
  background-color: #f5f5f9;
  color: var(--pri);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.project-card .tx-bx .top span {
  color: var(--text-color);
  font-weight: 600;
}

.project-card .tx-bx .top small {
  font-size: 0.8em;
  color: var(--para-color);
}

.project-card .tx-bx .tt {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.project-card .tx-bx p {
  font-size: 14px;
}

.project-card .tx-bx hr {
  background-color: var(--para-color);
}

.project-card .tx-bx ul {
  margin-bottom: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
}

.project-card .tx-bx ul span {
  color: var(--para-color);
}

.plan-bx {
  background-color: white;
  height: 100%;
  padding: 30px;
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.plan-bx .sub-tt {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 5px;
}

.plan-bx .tt {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.plan-bx ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-bx ul li {
  padding: 5px 0;
  padding-left: 25px;
  position: relative;
}

.plan-bx ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f5f5f9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233E3D93' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.plan-bx.comprehensive {
  border: 1px solid var(--pri);
  background: #e7e7f1;
}

.plan-bx.comprehensive .label {
  background-color: var(--pri);
  color: var(--white);
  display: inline-block;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1;
  border-radius: 20px;
  position: absolute;
  top: -15px;
  font-weight: 600;
}

.plan-bx.comprehensive ul li::before {
  background-color: white;
}

.branch-bx {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-color);
  font-weight: 500;
  padding-left: 29px;
  position: relative;
  transition: 0.2s ease-in-out;
}

.branch-bx:hover {
  background-color: #f5f5f9;
}

.branch-bx::before {
  content: "";
  position: absolute;
      left: 4px;
    top: 7px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%233E3D93%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20640%20640%22%3E%3Cpath%20d%3D%22M128%20252.6C128%20148.4%20214%2064%20320%2064s192%2084.4%20192%20188.6c0%20119.3-120.2%20262.3-170.4%20316.8-11.8%2012.8-31.5%2012.8-43.3%200-50.2-54.5-170.4-197.5-170.4-316.8zM320%20320c35.3%200%2064-28.7%2064-64s-28.7-64-64-64-64%2028.7-64%2064%2028.7%2064%2064%2064%22%2F%3E%3C%2Fsvg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

#branchVideo {
  max-width: 100%;
  min-width: 100%;
  object-position: center;
  object-fit: cover;
  display: block;
}

.support-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.support-feature:last-child {
  margin-bottom: 0;
}

.support-feature svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.support-feature span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.single-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px 20px;
  background: white;
}

.single-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.single-row-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #EEEEFB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.single-row-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--pri);
}

.single-row-title {
  font-size: 15px;
  color: var(--text-color);
  font-weight: 600;
}

.single-row-meta {
  font-size: 13px;
  color: var(--para-color);
}

.policy-layout.policy-layout2 .policy-item {
  border: 0;
}

.policy-layout.policy-layout2 .policy-item .tt {
  font-size: 19px;
  color: var(--text-color);
}

.policy-layout.policy-layout2 {
  grid-template-columns: 266px 1fr;
  gap: 30px;
}

.dues-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 18px 20px;
  background: white;
}

.dues-card .lbl {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.dues-card .amt {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
}

.dues-card .amt span {
  font-size: 13px;
  font-weight: 500;
  color: var(--para-color);
  margin-left: 3px;
}

.fin-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}

.fin-table thead th {
  background: #283749;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #C3CEDB;
  text-align: left;
  padding: 11px 18px;
  border: 0;
}

.fin-table thead th.right {
  text-align: right;
}

.fin-table tbody td {
  padding: 12px 18px;
  font-size: 13.5px;
  color: var(--text-color);
  border: 0;
  border-bottom: 1px solid var(--border-color);
}

.fin-table tbody td.right {
  text-align: right;
  font-size: 13px
}

.fin-table tbody tr.total {
  background: #EBEFF3;
  font-weight: 600
}

.fin-table tbody tr.total td {
  color: #283749;
  border-bottom: none
}

.fin-table tbody tr:last-child td {
  border-bottom: none
}

.fin-note {
  font-size: 12.5px;
  color: var(--para-color);
  line-height: 1.7;
  background: #FAFAFC;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 14px 18px;
  margin-top: 4px;
  margin-bottom: 22px;
}

.compliance-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #EEEEFB;
  border: 1px solid #E2E2F7;
  border-radius: 10px;
  padding: 15px 20px;
}

.compliance-note svg {
  width: 18px;
  height: 18px;
  stroke: var(--pri);
  flex-shrink: 0;
  margin-top: 1px;
}

.compliance-note p {
  font-size: 12.5px;
  color: #1C1C56;
  line-height: 1.7;
  padding: 0;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap
}

.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.chip {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s
}

.chip:hover {
  border-color: var(--pri);
  color: var(--pri)
}

.chip.active {
  background: var(--pri);
  border-color: var(--pri);
  color: #fff
}

.result-count {
  font-size: 13px;
  color: var(--para-color)
}

/* ============ JOB CARDS ============ */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.job-card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  transition: border-color .2s
}

.job-card:hover {
  border-color: var(--pri)
}

.job-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  flex-wrap: wrap
}

.job-summary-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 260px
}

.job-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f5f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.job-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--pri)
}

.job-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--pri);
  margin-bottom: 5px
}

.job-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.job-meta-item {
  font-size: 12px;
  color: var(--para-color);
  display: flex;
  align-items: center;
  gap: 4px
}

.job-meta-item svg {
  width: 12px;
  height: 12px;
  stroke: var(--para-color)
}

.job-summary-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.job-dept-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--pri);
  background: #f5f5f9;
  padding: 4px 11px;
  border-radius: 999px;
  white-space: nowrap
}

.job-chevron {
  width: 18px;
  height: 18px;
  stroke: var(--para-color);
  transition: transform .25s
}

.job-card.open .job-chevron {
  transform: rotate(180deg)
}

.job-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease
}

.job-card.open .job-detail {
  max-height: 900px
}

.job-detail-inner {
  padding: 0 26px 28px;
  border-top: 1px solid var(--border-color);
  margin-top: 0
}

.job-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  padding-top: 22px
}

.job-detail-block h4 {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--para-color);
  margin-bottom: 12px
}

.job-detail-block ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 5px;
  margin-bottom: 10px;
}

.job-detail-block ul li {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
  margin-bottom: 0
}

.job-detail-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pri)
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pri);
  color: #fff;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 4px
}

.apply-btn:hover {
  background: var(--pri)
}

.apply-btn svg {
  width: 14px;
  height: 14px;
  stroke: #fff
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--para-color);
  font-size: 14px;
  display: none
}

.apply-selected {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 22px
}

.apply-selected .lbl {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px
}

.apply-selected .val {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff
}

.file-drop {
  border: 1.5px dashed var(--border-color);
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
  background: var(--white);
  cursor: pointer;
  transition: border-color .15s
}

.file-drop:hover {
  border-color: var(--pri)
}

.file-drop svg {
  width: 22px;
  height: 22px;
  stroke: var(--para-color);
  margin: 0 auto 8px
}

.file-drop .ft {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500
}

.file-drop .fs {
  font-size: 11.5px;
  color: var(--para-color);
  margin-top: 3px
}

.file-drop.has-file {
  border-color: var(--pri);
  border-style: solid;
  background: #f5f5f9
}

.file-drop.has-file svg {
  stroke: var(--pri)
}

.file-drop.has-file .ft {
  color: var(--pri);
  font-weight: 600
}

.nav-tabs.nav-style-1 .nav-link {
  border: 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
  padding-inline: 0;
  color: var(--text-color);
  padding: 10px 20px;
  font-size: 18px;
}

.nav-tabs.nav-style-1 .nav-link.active {
  border-bottom: 2px solid var(--sec);
  color: var(--sec);
}

.about-visual-card {
  border-radius: 20px;
  background: var(--liner2);
  height: 100%;
  padding: 40px;
}

.about-visual-card .head-sec.text-white .sub-tt::before {
  content: none;
}

.about-visual-card .head-sec.text-white .sub-tt {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.about-mini-stat {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
}

.about-mini-stat .tt {
  font-size: 25px;
  color: var(--white);
  font-weight: 600;
}

.about-mini-stat .tt span {
  color: var(--sec);
}

.about-mini-stat p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.md-msg {
  padding-left: 20px;
  border-left: 3px solid var(--sec);
  font-size: 20px;
  color: var(--pri);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
}

.office-card {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.office-card .sub-tt {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--sec);
  font-weight: 600;
  margin-bottom: 8px;
}

.office-card .sub-tt svg {
  stroke: currentColor;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.office-card .tt {
  display: flex;
  gap: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 3px;
}

.office-card .tt svg {
  stroke: currentColor;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}

.office-card .tt p,
.office-card .tt a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 0;
}

.office-card.office-card2 {
  padding: 20px;
  font-size: 15px;
  color: var(--para-color);
  background-color: white;
  border: 1px solid #E5E5F0;
  height: 100%;
  padding-bottom: 5px;
}

.office-card.office-card2 .sub-tt {
  color: var(--pri);
  font-size: 17px;
  margin-bottom: 10px;
}

.office-card.office-card2 .tt p,
.office-card.office-card2 .tt a,
.office-card.office-card2 .tt {
  font-size: 15px;
  color: var(--para-color);
  margin-bottom: 8px;
}

.office-card.office-card2 .tt svg,
.office-card.office-card2 .sub-tt svg {
  width: 20px;
  height: 20px;
  stroke: var(--pri);
  fill: var(--pri);
  opacity: 1;
  margin-top: 2px;
}

.certificate-bx {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px;
  transition: 0.2s ease-in-out;
}

.certificate-bx:hover {
  transform: scale(1.02);
}

.certificate-bx .img-bx {
  aspect-ratio: 1 / 1;
}

.certificate-bx .img-bx img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}

.certificate-bx .tt {
  background-color: var(--off-white);
  padding: 10px;
  line-height: 1;
  align-content: center;
  color: var(--text-color);
  font-family: var(--font);
  font-size: 15px !important;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.certificate-bx .tt svg {
  margin-right: 3px;
}

.client-pointer .tt {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.client-pointer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.client-pointer ul li {
  padding: 6px 15px;
  background-color: #f5f5f5;
  border-radius: 15px;
  font-size: 13px;
  color: var(--text-color);
  padding-left: 30px;
  position: relative;
  font-weight: 400;
  transition: 0.2s ease-in-out;
}

.client-pointer ul li:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 1px 1px 3px 0px;
}

.client-pointer ul li::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20viewBox%3D%220%200%20640%20640%22%3E%3Cpath%20d%3D%22M530.8%20134.1c14.3%2010.4%2017.5%2030.4%207.1%2044.7l-256%20352c-5.5%207.6-14%2012.3-23.4%2013.1s-18.5-2.7-25.1-9.3l-128-128c-12.5-12.5-12.5-32.8%200-45.3s32.8-12.5%2045.3%200l101.5%20101.5%20234-321.7c10.4-14.3%2030.4-17.5%2044.7-7.1z%22%2F%3E%3C%2Fsvg%3E');
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
  background-color: var(--pri);
  position: absolute;
  left: 10px;
  top: 8px;
  padding: 6px;
  border-radius: 100%;
}

.color-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgb(63 62 144 / 35%);
  border-radius: 30px;
}

.float-name {
  font-size: 125px;
  line-height: 1;
  text-wrap: nowrap;
  font-weight: bolder;
  text-transform: uppercase;
  color: white;
  opacity: 0.05;
  text-align: center;
  margin-top: 20px;
}