:root {
  --font: "Barlow", sans-serif;
  --font2: "Barlow", sans-serif;
  --liner: linear-gradient(180deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0));
  --pri: #136d00;
  --sec: #90b90d;
  --tri: #b69310;
  --text-color: #191c18;
  --para-color: #6E777D;
  --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: #E2E2E2;
  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: 16px;
  font-weight: 500;
  color: var(--sec);
  margin-bottom: 3px;
  font-family: var(--font2);
  position: relative;
}

.head-sec .sub-tt::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--pri);
  display: inline-block;
  margin-right: 6px;
  margin-bottom: -3px;
  background: url(../images/icon/top-icon.webp) no-repeat;
  background-size: contain;
  background-position: center;
}

.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: "";
}

.head-sec.text-white .tt,
.head-sec.text-white p {
  color: white;
}

.badge {
  font-size: 11px;
  font-weight: 400;
  border: 1px solid;
  border-radius: 18px;
  padding: 3px 7px;
}

.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;
}

.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(--sec);
  color: var(--sec);
  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: 14px;
  color: var(--para-color);
  font-family: var(--font);
  font-weight: 500;
  margin-bottom: 3px;
}

.form-check .form-check-input {
  margin-left: -20px;
}

.form-check-inline {
  padding-left: 20px;
}

.form-group {
  position: relative;
  margin-bottom: 15px;
}

.form-control,
.form-select,
.SumoSelect>.CaptionCont {
  font-weight: 400;
  border-radius: 10px;
  font-size: 15px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font2);
  border-color: transparent;
  height: 42px;
  align-content: center;
  border-color: #e3e3e3;
}

.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: 150px;
  width: auto;
  height: auto;
  padding: 5px 0;
}

.top-bar {
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--sec);
  line-height: 1;
}

.top-bar p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

.top-bar p a {
  color: var(--white);
  transition: 0.2s ease;
  font-weight: 500;
}

.top-bar p a:hover {
  color: var(--sec);
}


.top-bar p button {
  padding: 0;
  margin: 0;
  border: 0;
  color: var(--text-color);
  font-size: 14px;
  text-decoration: underline;
  background-color: transparent;
  font-weight: 400;
  transition: 0.2s ease;
}

.top-bar p button:hover {
  color: var(--pri);
}

.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;
}

.menubar .dropdown-menu {
  padding: 0;
  border: 0;
  outline: 0;
  background-color: transparent;
}

.menubar .dropdown button[data-bs-toggle="dropdown"] {
  border: 0;
  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, #fff, #f6f6f6);
  box-shadow: 0px -3px 0px 0px #E9E9E9 inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.6980392157) inset, 0px 0px 3px 0px rgba(0, 0, 0, 0.1411764706);
  padding: 8px;
  border-radius: 100%;
}

.menubar .dropdown button[data-bs-toggle="dropdown"] svg {
  width: 20px;
  height: 20px;
  color: var(--pri);
  display: none;
}

.menubar .dropdown button[data-bs-toggle="dropdown"]:not(.show) svg.close {
  display: block;
}

.menubar .dropdown button[data-bs-toggle="dropdown"].show svg.open {
  display: block;
}

.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);
}

.call-now {
  display: flex;
  align-items: center;
}

.call-now .icon-bx {
  min-width: 38px;
  margin-right: 8px;
  color: var(--sec);
}

.call-now .con-bx {
  text-align: left;
}

.call-now .con-bx span {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: var(--text-light);
}

.call-now .con-bx span a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1px;
}

.call-now .con-bx span a:hover {
  color: var(--pri);
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: var(--white);
  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;
}

header.is-scrolled {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px 0px;
  transform: translateY(-112px);
  height: 157px;
}

.menubar {
  background-color: var(--pri);
}

.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 / 750;
}

.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: linear-gradient(120deg, #1e4430, #12301f) !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: 400;
  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;
  gap: 0;
  background-color: var(--off-white);
  padding: 4px;
  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;
}

.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);
}

.ls-pillTabs.dark .nav-link.active {
  color: var(--text-color);
}

.blog-bx {
  border-radius: 13px;
  padding: 16px;
  background-color: white;
  border: 1px solid var(--border-color);
  overflow: hidden;
}


.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: 10px;
}

.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: 15px;
  margin: 0;
  padding: 0;
  border: 0;
}

.blog-bx.blog-card .read-mr {
  font-size: 13px;
  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 {
  width: 100%;
  max-height: 280px;
  min-height: 180px;
  object-fit: cover;
  object-position: center;
  filter: blur(2px);
}

.img-breadcum-sec .tx-bx {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
}

.img-breadcum-sec .tx-bx .tt {
  color: var(--white);
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 5px;
}

.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: 13px;
  gap: 10px;
}

.contact-bx .tx-bx .tt {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}

.contact-bx .con-bx .ic-bx {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pri);
  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(--text-color);
  margin-bottom: 0px;
}

.contact-bx .con-bx a {
  font-weight: 500;
}

.contact-bx .con-bx a:hover {
  color: var(--pri);
}

.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: 5px 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: 20px;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  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: 40px;
}

.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;
  left: 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;
  left: 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: 26px;
  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: 23px;
}

.content-sec h4,
.content-sec h5,
.content-sec h6 {
  font-size: 20px;
}

.content-sec h5,
.content-sec h6 {
  font-size: 18px;
}

.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: #e5fbe1;
  color: var(--pri);
  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;
}

.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: 15px;
  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,
.reels-vid {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.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%;
}

.reels-vid iframe {
  aspect-ratio: 35 / 62;
}

.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:last-of-type,
.accordion-item:not(:first-of-type) {
  margin-bottom: 15px;
  background: #f9f9f9;
  border: 0;
  border-radius: 10px;
  padding: 9px 17px;
  border: 1px solid #e6e6e6;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-button {
  background: transparent;
  font-weight: 500;
  outline: 0 !important;
  font-family: var(--font2);
  color: var(--text-color);
  font-size: 17px;
  padding: 6px 0;
}

.accordion-body {
  line-height: 1.6;
  font-size: 15px;
  color: var(--para-color);
  padding: 0;
  padding-top: 1px;
  padding-bottom: 5px;
}

.accordion-body p {
  margin-bottom: 0;
}

.accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background: transparent;
  border: 0;
  color: var(--pri);
}

.accordion-button:focus {
  box-shadow: none !important;
  border: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23164a0b'%3e%3cpath 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'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.cta-sec {
  background-color: var(--pri);
  padding: 30px;
  color: white;
  position: relative;
}

.cta-bx {
  display: flex;
  align-items: center;
  gap: 13px;
}

.cta-bx .icon {
  width: 55px;
  min-width: 55px;
  height: 55px;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.cta-bx .icon svg {
  width: 30px;
  height: 30px;
  fill: var(--pri);
}

.cta-bx .tx-bx .tt,
.cta-bx .tx-bx .tt a {
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}

.cta-bx .tx-bx .sub-tt {
  font-size: 15px;
}

.cta-bx .tx-bx .tt a {
  display: inline;
}

.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);
}

.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: 1px solid var(--border-color);
  padding: 8px 16px;
  text-align: left;
  line-height: 1.2;
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  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: 15px;
  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;
}

.contactBx-container {
  background-color: var(--off-white);
  padding: 30px;
  border: 1px solid var(--off-white);
  height: 100%;
  border-radius: 15px;
}

.contactBx-container.graydient {
  background: radial-gradient(circle at 88% 8%,
      rgba(184, 211, 187, 0.55) 0%,
      rgba(216, 230, 216, 0.32) 18%,
      transparent 42%),
    radial-gradient(circle at 18% 95%,
      rgba(212, 232, 217, 0.55) 0%,
      rgba(232, 241, 234, 0.28) 25%,
      transparent 48%),
    linear-gradient(135deg,
      #ffffff 0%,
      #fafbf9 48%,
      #f2f5f1 100%);
}

.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: 10px;
  border-radius: 5px;
  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: 5px;
}

.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: 8px;
  text-align: center;
}

.cate-bx .tx-bx .tt {
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--font2);
}

.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: 1;
  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: 2;
  overflow: hidden;
  font-size: 14px;
  color: var(--para-color);
}

.quailty-sec {
  background-image: url(../images/bg/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.quality_middle_img {
  max-width: 300px;
  margin: auto;
  width: 100%;
}

.img_moving_anim1 {
  position: relative;
  -webkit-animation: glide1 2s ease-in-out alternate infinite;
  animation: glide1 2s ease-in-out alternate infinite;
}

@-webkit-keyframes glide1 {
  from {
    right: 0px;
    top: 0px;
  }

  to {
    right: 0px;
    top: 20px;
  }
}

@keyframes glide1 {
  from {
    right: 0px;
    top: 0px;
  }

  to {
    right: 0px;
    top: 20px;
  }
}

.qty-bx-row {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 50px;
}

.qty-bx {
  display: flex;
  text-align: right;
  align-items: center;
  gap: 20px;
}

.qty-bx:first-child,
.qty-bx:last-child {
  padding-right: 30px;
}

.qty-bx .tx-bx .tt {
  font-weight: 600;
  font-size: 22px;
  color: var(--text-color);
}

.qty-bx .icon-bx {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: white;
  align-content: center;
  text-align: center;
  flex-shrink: 0;
  padding: 15px;
}

.qty-bx p {
  margin-bottom: 0;
  font-size: 16px;
}

.qty-bx-row.right {
  justify-content: start;
}

.qty-bx-row.right .qty-bx:first-child,
.qty-bx-row.right .qty-bx:last-child {
  padding-right: 0;
  padding-left: 30px;
}

.qty-bx-row.right .qty-bx {
  text-align: start;
}

.qty-bx-row.right .qty-bx .tx-bx {
  order: 1;
}

.why-us-bx {
  text-align: center;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 40px;
  padding-top: 60px;
  height: 100%;
}

.why-us-bx .icon-bx {
  position: relative;
  z-index: 1;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #E2E2E2;
}

.why-us-bx .icon-bx .count-bx {
  position: absolute;
  color: #EBEDF1;
  font-size: 120px;
  font-weight: 700;
  left: 50%;
  transform: translateX(-50%);
  top: -70px;
  z-index: -1;
}

.why-us-bx .icon-bx::after {
  position: absolute;
  content: "";
  left: -29px;
  background: linear-gradient(180deg, #ffffff0d 0%, #FFFFFF 100%);
  width: 100%;
  height: 101px;
  z-index: -1;
  top: -29px;
  pointer-events: none;
}

.why-us-bx .tt {
  font-size: 22px;
  color: var(--pri);
  font-weight: 600;
  margin-bottom: 5px;
}

.why-us-bx p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.4;
}

.abt-sec {
  background: url(../images/bg/about.webp) no-repeat;
  background-size: auto;
  background-position: bottom left;
  border-bottom: 1px solid #f5f4eb;
}

.counter-sec {
  background-image: url(../images/bg/bg9.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.counter-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--pri);
  opacity: 0.8;
  z-index: -1;
}

.counter-bx {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-block: 15px;
  justify-content: center;
  height: 100%;
}

.counter-bx .icon svg {
  width: 65px;
  height: 65px;
  color: var(--sec);
  filter: brightness(1.5);
}

.counter-bx .tx-bx .count {
  display: block;
  font-size: 35px;
  color: var(--white);
  line-height: 1.1;
  /* margin-bottom: 0; */
  font-family: var(--font);
  font-weight: 700;
}

.counter-bx .tx-bx p {
  color: white;
  font-size: 16px;
  margin-bottom: 0;
}

.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);
}

.cate-icon {
  display: flex;
  gap: 10px;
}

/* .cate-icon img {
  width: 70px;
} */

.certificate-card {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  padding: 10px;
  gap: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: 0.2s ease;
  border: 1px solid var(--off-white);
}

.certificate-card:hover {
  background-color: var(--off-white);
}

.certificate-card:last-child {
  margin-bottom: 0;
}

.certificate-card .icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  padding: 5px;
  background-color: #e5fbe1;
  color: var(--pri);
}

.certificate-card .tt {
  color: var(--para-color);
  font-weight: 500;
}

.certificate-card .view-btn {
  border: 1px solid var(--pri);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 7px 10px;
  margin-left: auto;
  color: var(--pri);
  border-radius: 10px;
}

.certificate-card .view-btn:hover {
  background-color: var(--pri);
  color: white;
}

.nav-tabs.nav-style-1 .nav-link {
  border: 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
  padding-inline: 0;
}

.nav-tabs.nav-style-1 .nav-link.active {
  border-bottom: 2px solid var(--sec);
  color: var(--sec);
}

.why-us-pointer {
  padding: 15px;
  border-radius: 20px;
  background-color: #e8f5e9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0px 2px 5px #136d0024;
}

.why-us-pointer .icon {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background-color: #c8e6c9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.why-us-pointer .icon svg {
  fill: var(--pri);
  width: 23px;
  height: 23px;
}

.why-us-pointer .tt {
  font-size: 16px;
  font-weight: 500;
  color: var(--pri);
}

.why-bx2 {
  padding: 30px;
  border-top: 5px solid var(--pri);
  border-radius: 20px;
  background-color: white;
  height: 100%;
}

.why-bx2 .count {
  color: var(--pri);
  font-weight: 500;
  font-size: 16px;
}

.why-bx2 .tt {
  color: var(--text-color);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.why-bx2 ul {
  padding-left: 20px;
  margin: 0;
}

.why-bx2 ul li::marker {
  color: var(--pri);
}

.blk-bx {
  overflow: hidden;
  border-radius: 15px;
}

.blk-bx .head-sec {
  background: linear-gradient(180deg, #006d3f 0%, #54a326 100%);
  max-width: 100%;
  padding: 30px;
}

.blk-bx .head-sec .tt {
  font-size: 40px;
  margin-bottom: 0;
}

.blk-bx .head-sec p {
  font-size: 20px;
}

.blk-bx .img-bx {
  padding: 100px 50px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.blk-bx .img-bx::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background: var(--text-color);
  opacity: 0.3;
}

.blk-bx .img-bx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.blk-bx .img-bx .tt {
  font-weight: 600;
  font-size: 40px;
  color: white;
}

.blk-bx .img-bx p {
  color: white;
  font-weight: 600;
  font-size: 20px;
}

.lsm-nutrition-facts {
  border: 1px solid var(--text-color);
  padding: 12px;
  /* font-family: Arial, Helvetica, sans-serif; */
  color: var(--text-color);
  background: #fff;
}

.lsm-nutrition-facts table {
  width: 100%;
  border-collapse: collapse;
}

.lsm-nutrition-facts th,
.lsm-nutrition-facts td {
  padding: 2px 0;
  line-height: 1.15;
}

.lsm-nutrition-facts tr:first-child th {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  padding: 10px;
  letter-spacing: -1px;
}

.lsm-nutrition-facts tr:nth-child(2) td {
  font-size: 15px;
  font-weight: 500;
  padding: 6px;
  border-bottom: 1px solid #cfd5dc;
}

.lsm-nutrition-facts tr:nth-child(3) td {
  padding: 5px 7px;
  border-bottom: 1px solid #cfd5dc;
}

.lsm-nutrition-facts tr:nth-child(3) strong:first-child {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.lsm-nutrition-facts tr:nth-child(3) span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 0;
}

.lsm-nutrition-facts tr:nth-child(3) strong:last-child {
  display: block;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.lsm-nutrition-facts tr:nth-child(4) th {
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  padding: 2px 7px;
  border-bottom: 1px solid var(--text-color);
}

.lsm-nutrition-facts tr:nth-child(4) th:last-child {
  text-align: center;
}

.lsm-nutrition-facts tr:nth-child(n+5):nth-child(-n+20) td {
  font-size: 12px;
  border-bottom: 1px solid #202020;
  padding: 2px 7px;
}

.lsm-nutrition-facts tr:nth-child(5) td,
.lsm-nutrition-facts tr:nth-child(8) td,
.lsm-nutrition-facts tr:nth-child(9) td,
.lsm-nutrition-facts tr:nth-child(12) td,
.lsm-nutrition-facts tr:nth-child(16) td {
  font-weight: 700;
}

.lsm-nutrition-facts tr:nth-child(5) td,
.lsm-nutrition-facts tr:nth-child(16) td {
  border-top: 4px solid #111;
}

/* 
.lsm-nutrition-facts tr:nth-child(6) td:first-child,
.lsm-nutrition-facts tr:nth-child(7) td:first-child,
.lsm-nutrition-facts tr:nth-child(13) td:first-child,
.lsm-nutrition-facts tr:nth-child(14) td:first-child,
.lsm-nutrition-facts tr:nth-child(15) td:first-child,
.lsm-nutrition-facts tr:nth-child(17) td:first-child,
.lsm-nutrition-facts tr:nth-child(18) td:first-child,
.lsm-nutrition-facts tr:nth-child(19) td:first-child,
.lsm-nutrition-facts tr:nth-child(20) td:first-child {
  padding-left: 18px;
} */

.lsm-nutrition-facts td:last-child {
  text-align: center;
  /* white-space: nowrap; */
}

.lsm-nutrition-facts tr:last-child td {
  font-size: 13px;
  line-height: 1.35;
  padding-top: 8px;
  border-bottom: none;
}

.product-pointer {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product-pointer ul {
  padding: 0;
  margin: 0;
}

.product-pointer ul li {
  color: var(--pri);
  margin-left: 18px;
}

.product-pointer ul li:first-child {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-weight: 600;
  color: var(--text-color);
  font-size: 16px;
  margin-bottom: 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;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.certificate-bx .tt svg {
  margin-right: 3px;
}

.ls-pillIndicator {
  background: transparent;
}

.ls-pillTabs .nav-link {
  border-radius: 999px;
}

.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 {
  padding: 10px;
  border-radius: 10px;
  justify-content: center;
}

.stepbx {
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 2px 6px 0px rgb(0 0 0 / 10%);
  position: relative;
  height: 100%;

}

.stepbx .count {
  width: 25px;
  height: 25px;
  background-color: var(--pri);
  color: white;
  border-radius: 100%;
  font-weight: 600;
  margin: -13px auto 0;
  align-content: center;
  line-height: 1;
  text-align: center;
  font-size: 13px;
}

.stepbx svg {
  width: 25px;
  height: 25px;
  fill: var(--pri);
  margin: 3px 0;
}

.stepbx .tt {
  font-size: 18px;
  font-weight: 600;
  color: var(--pri);
  padding: 2px 10px 5px;
}

.stepbx p {
  margin: 0;
  padding: 10px;
  color: var(--text-color);
  line-height: 1.3;
  font-size: 14px;
}

.stepbx img {
  aspect-ratio: 5 / 3;
  object-fit: cover;
  object-position: center;
  width: 100%;
  /* height: 100%; */
  overflow: hidden;
}

.stepbx .arrow {
  width: 25px;
  height: 25px;
  background-color: var(--pri);
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
}

.stepbx .arrow svg {
  width: 14px;
  height: 14px;
  fill: white;
}

.cate-bx.ceo {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  border: 0;
}

.cate-bx.ceo .img {
  border-radius: 15px;
}

.cate-bx.ceo .tx-bx .tt {
  color: var(--pri);
  font-size: 20px;
}

.cate-bx.ceo .tx-bx .read-mr {
  font-size: 16px;
}

.dis-main-container {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  padding-bottom: 110px;
  z-index: 1;
  background: radial-gradient(circle at 82% 20%, rgba(198, 154, 69, .16), transparent 55%), linear-gradient(180deg, #12301f, #1e4430 78%);
}

.growth-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .5;
  pointer-events: none;
}

.dis-main-container .head-sec .tt {
  font-size: 45px;
}

.counter-bar {
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 24px 60px -20px rgba(18, 48, 31, .35);
  position: absolute;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
}

.counter-bar .count-bx {
  text-align: center;
  border-left: 1px solid #e3e1d4;
  padding: 25px;
}

.counter-bar .count-bx .tt {
  color: var(--pri);
  font-size: 30px;
  font-weight: 600;
}

.counter-bar .count-bx p {
  margin-bottom: 0;
  color: var(--text-color);
}

.why-us-bx2 {
  border: 1px solid #e3e1d4;
  padding: 30px;
  background-color: white;
  border-radius: 20px;
  height: 100%;
}

.why-us-bx2 .count {
  font-size: 22px;
  font-weight: 600;
  color: var(--sec);
}

.why-us-bx2 .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e9f2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.why-us-bx2 .tt {
  font-weight: 600;
  color: var(--pri);
  font-size: 20px;
  margin-bottom: 3px;
}

.why-us-bx2 p {
  margin-bottom: 0;
}

.step-bx-row {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.step-bx-row::before {
  content: "";
  position: absolute;
  height: 2px;
  background-color: var(--para-color);
  width: calc(100% - 150px);
  left: 49%;
  transform: translateX(-50%);
  top: 20px;
  z-index: -1;
}

.step-bx-row .step-bx {
  text-align: center;
}

.step-bx-row .step-bx .count {
  border: 2px solid var(--pri);
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin: 0 auto 10px;
  align-content: center;
  font-weight: 700;
  color: var(--pri);
}

.step-bx-row .step-bx .tt {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-color);
}

.step-bx-row .step-bx p {
  margin-bottom: 0;
}

.doc-bx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  background-color: #e9f2e6;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
}

.doc-bx svg {
  width: 20px;
  height: 20px;
  fill: var(--pri);
  flex-shrink: 0;
}

.form-bg {
  background-image: url(../images/bg/bg2.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.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
}

.contract-dropdown {
  position: relative;
  display: inline-flex;
  z-index: 999;
}

.contract-dropdown-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* gap: 10px; */
  /* min-width: 196px; */
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.contract-dropdown-btn .dropdown-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Dropdown menu */
.contract-dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 330px;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid rgba(15, 117, 5, 0.1);
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(19, 49, 9, 0.16);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

/* Hover gap bridge */
.contract-dropdown-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
  background-color: transparent;
}

/* Dropdown top pointer */
.contract-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 48px;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border-top: 1px solid rgba(15, 117, 5, 0.1);
  border-left: 1px solid rgba(15, 117, 5, 0.1);
  transform: rotate(45deg);
}

/* Open dropdown on hover */
.contract-dropdown:hover .contract-dropdown-menu,
.contract-dropdown:focus-within .contract-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Rotate arrow on hover */
.contract-dropdown:hover .dropdown-chevron,
.contract-dropdown:focus-within .dropdown-chevron {
  transform: rotate(180deg);
}

/* Menu item */
.contract-dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 76px;
  padding: 12px 14px;
  color: #222222;
  text-decoration: none;
  border-radius: 11px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.contract-dropdown-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 1px;
  background-color: #eeeeee;
}

.contract-dropdown-item:hover {
  color: #107407;
  background-color: #f4fae9;
}

.contract-item-icon {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pri);
  background-color: #eff8df;
  border-radius: 10px;

  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.contract-dropdown-item:hover .contract-item-icon {
  color: #ffffff;
  background-color: var(--sec);
}

.contract-item-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.contract-item-content strong {
  color: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.contract-item-content small {
  color: #858585;
  font-size: 12px;
  line-height: 1.4;
}

.contract-item-arrow {
  flex-shrink: 0;
  color: #747474;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.contract-dropdown-item:hover .contract-item-arrow {
  color: var(--pri);
  transform: translateX(4px);
}

.mobile-contract-dropdown {
  position: relative;
  overflow: visible;
}

/* Bottom navigation button */
.mobile-contract-trigger {
  padding: 0;
  border: 0;
  background-color: transparent;
}

.mobile-contract-trigger svg {
  flex-shrink: 0;
}

.mobile-contract-trigger span {
  font-size: 12px;
  color: var(--para-color);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.5px;
  display: block;
}

.mobile-contract-dropdown.active .mobile-contract-trigger {
  color: var(--pri);
}

/* Dropdown opens above bottom navigation */
.mobile-contract-menu {
  position: absolute;
  right: 5px;
  bottom: calc(100% + 14px);

  width: min(320px, calc(100vw - 20px));
  padding: 9px;

  background-color: #ffffff;
  border: 1px solid rgba(22, 128, 12, 0.12);
  border-radius: 14px;
  box-shadow: 0 -12px 35px rgba(20, 55, 10, 0.18);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(10px) scale(0.97);
  transform-origin: bottom right;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;

  z-index: 99999;
}

/* Bottom pointer */
.mobile-contract-menu::after {
  content: "";
  position: absolute;
  right: 23px;
  bottom: -7px;

  width: 14px;
  height: 14px;

  background-color: #ffffff;
  border-right: 1px solid rgba(22, 128, 12, 0.12);
  border-bottom: 1px solid rgba(22, 128, 12, 0.12);

  transform: rotate(45deg);
}

/* Open state */
.mobile-contract-dropdown.active .mobile-contract-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Dropdown item */
.mobile-contract-item {
  position: relative;
  width: 100%;

  display: flex;
  align-items: center;
  gap: 11px;

  padding: 12px;
  color: #252525;
  background-color: transparent;
  border: 0;
  border-radius: 10px;

  text-align: left;
  text-decoration: none;
  font: inherit;
  cursor: pointer;

  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.mobile-contract-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 1px;
  background-color: #eeeeee;
}

.mobile-contract-item:hover,
.mobile-contract-item:active {
  color: var(--sec);
  background-color: #f3f9e9;
}

.mobile-contract-icon {
  width: 40px;
  height: 40px;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  color: var(--pri);
  background-color: #eff8e2;
  border-radius: 9px;
}

.mobile-contract-content {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.mobile-contract-content strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
}

.mobile-contract-content small {
  color: #838383;
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1.35;
}

.mobile-contract-arrow {
  flex-shrink: 0;
  color: #777777;
  transition: transform 0.25s ease;
}

.mobile-contract-item:hover .mobile-contract-arrow {
  color: var(--pri);
  transform: translateX(3px);
}


.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
}

.support-feature {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 10px;
  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: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.check-bx {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
.ls-thankyou-modal .ls-thankyou-modal-content {
  background-color: var(--pri);
  border: none;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.ls-thankyou-modal .ls-thankyou-modal-header {
  border-bottom: none;
  padding: 16px 16px 0;
  justify-content: flex-end;
  background: unset;
}

.ls-thankyou-modal .ls-thankyou-modal-header .btn-close {
  filter: invert(1);
  opacity: 0.6;
  box-shadow: none;
}

.ls-thankyou-modal .ls-thankyou-modal-header .btn-close:hover {
  opacity: 1;
}

.ls-thankyou-modal .ls-thankyou-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 40px 16px;
  position: relative;
  z-index: 1;
  background-color: unset;
}

.ls-thankyou-modal .ls-thankyou-modal-footer {
  border-top: none;
  justify-content: center;
  padding: 8px 40px 40px;
  position: relative;
  z-index: 1;
}

.ls-thankyou-modal .ls-thankyou-modal-content::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -5px;
  width: 150px;
  height: 150px;
  background-image: url("../images/svgs/baby-svgrepo-com.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  bottom: 10px;
}

.ls-thankyou-modal .ls-thankyou-modal-content::after {
  content: "";
  position: absolute;
  top: 38px;
  right: 5px;
  width: 90px;
  height: 90px;
  background-image: url("../images/family.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.ls-thankyou-modal .ls-thankyou-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ls-thankyou-modal .ls-thankyou-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

.ls-thankyou-modal .ls-thankyou-btn-home {
  padding: 11px 36px;
  background-color: #ffffff;
  color: var(--pri);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.ls-thankyou-modal .ls-thankyou-btn-home:hover {
  opacity: 0.88;
  color: var(--pri);
}
.ls-thankyou-modal .tt {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}