:root {
  --font: "Quicksand", sans-serif;

  --font2: "Manrope", sans-serif;

  --liner: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );

  --pri: #80bd7f;

  --sec: #272466;

  --text-color: #161629;

  --text-muted: #8d9eb5;

  --text-light: #8c8c8c;

  --para-color: #545454;

  --border-color: #e3e3e3;

  --white: #fff;

  --off-white: #f4f4f4;

  --black: #212529;

  --bs-primary: #0082ff;

  --bs-success: #03b562;

  --bs-info: #0fbcf9;

  --bs-warning: var(--pri);

  --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: 14px;

  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: 14px;

  font-weight: 400;

  margin-bottom: 10px;

  font-family: var(--font2);

  line-height: 1.7;
}

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: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );

  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%;
  text-align: start;
}

.head-sec .sub-tt {
  border-radius: 10px;

  display: inline-block;

  font-size: 15px;

  font-weight: 500;

  color: var(--pri);

  margin-bottom: 3px;

  font-family: var(--font2);

  position: relative;
}

.head-sec .sub-tt::before {
  content: "";

  width: 10px;

  aspect-ratio: 12 / 13;

  background-color: var(--pri);

  display: inline-block;

  margin-right: 4px;

  clip-path: polygon(
    35% 0%,
    35% 35%,
    0% 35%,
    0% 65%,
    35% 65%,
    35% 100%,
    65% 100%,
    65% 65%,
    100% 65%,
    100% 35%,
    65% 35%,
    65% 0%
  );
}

.head-sec .tt {
  font-family: var(--font);

  color: var(--text-color);

  font-weight: 800;

  font-size: 30px;

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

.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(--white);

  color: var(--text-color);

  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: 14px;

  color: var(--text-color);

  font-family: var(--font);

  background-color: transparent;

  border-radius: 20px;
}

.form-label {
  font-size: 14px;

  color: var(--text-color);

  font-family: var(--font);

  font-weight: 400;

  margin-bottom: 0;
}

.form-group {
  position: relative;

  margin-bottom: 15px;
}

.form-control,
.form-select,
.SumoSelect > .CaptionCont {
  font-weight: 400;

  border-radius: 4px;

  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-select {
  background-position: right 0 center;
}

.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: 90px;

  width: auto;

  height: auto;
}

.top-bar {
  padding: 10px 0;

  position: relative;

  overflow: hidden;

  background-color: var(--sec);

  line-height: 1;
}

.top-bar p {
  margin: 0;

  color: var(--white);

  font-size: 13px;

  font-weight: 400;

  position: relative;
}

.top-bar::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 19%;

  height: 41px;

  background-color: var(--pri);

  pointer-events: none;

  border-top-right-radius: 999px;
}

.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(--pri);
}

.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: 0;

  padding-left: 0;

  background-color: #f9f9f9;

  box-shadow: 0 1px 1px 0px rgba(0, 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: 14px;

  min-width: 220px;

  background-color: #f9f9f9;

  height: 40px;

  padding-left: 18px;
}

.search-bx button {
  outline: none;

  border: none;

  height: 40px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 0;

  padding-right: 15px;

  color: var(--para-color);

  background: transparent;
}

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: 115px;

  display: flex;

  flex-direction: column;

  justify-content: end;
}

.menubar {
  padding: 15px 0;

  transition: padding 0.2s ease;
}

header.is-scrolled {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px 0px;

  transform: translateY(-50px);

  height: 115px;

  border-radius: 0 0 15px 15px;
}

header.is-scrolled .menubar {
  border-radius: 0 0 15px 15px;
}

.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 0.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: 3 / 1;
  /* 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;

  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  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 {
  right: 5px;
  z-index: 9;
}

.cate-prev {
  left: 5px;
  z-index: 9;
}

.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: 60px 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);
}

.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/product.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/buils-your.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: 12px;

  border-radius: 50%;
}

.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 {
  background: #f4f4f5;

  border-radius: 12px;

  overflow: hidden;
}

.blog-bx .tx-bx {
  padding: 25px;
}

.blog-bx .img-bx {
  overflow: hidden;

  margin-bottom: 0;

  position: relative;

  aspect-ratio: 16 / 9;
}

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

.blog-bx .date {
  display: inline-flex;

  gap: 5px;

  align-items: center;

  font-size: 13px;
}

.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: 700;

  line-height: 1.5;

  padding-bottom: 10px;

  border-bottom: 1px solid #cccccc;

  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 .read-mr {
  gap: 3px;

  color: var(--text-color);

  font-size: 14px;

  width: 100%;

  font-weight: 600;

  justify-content: space-between;
}

.blog-bx .read-mr:hover {
  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;
}

.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: 12px;
}

.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(--pri);
}

.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: #000000c4;

  opacity: 0.9;

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

.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: 14px;

  line-height: 24px;

  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: #d8d8d8;

  border-style: solid;

  border-width: 1px;

  padding: 5px 10px;

  font-size: 14px;
}

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(0.22, 1, 0.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: 75px;

  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: 130px;

  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: 25px;

  font-weight: 700;

  color: var(--text-color);

  text-align: left;

  margin-bottom: 7px;

  line-height: 1.3;
}

.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,
.content-sec .tt {
  font-size: 20px;
}

.content-sec h4,
.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: 14px;

  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: 0px 0 15px;

  position: relative;

  z-index: 1;

  background-color: var(--text-color);

  margin-top: 40px;
}

.ft-bx {
  position: relative;

  z-index: 1;
}

.ft-bx .logo {
  max-width: 130px;
}

.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(--pri);
}

.ft-bx .con-bx a,
.ft-bx .con-bx p {
  font-weight: 400;

  font-size: 14px;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.9);

  margin-bottom: 0px;
}

.ft-bx .con-bx a:hover {
  color: var(--pri);

  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: 14px;

  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(--pri);

  opacity: 1;
}

.ft-bx ul.social {
  display: flex;

  gap: 5px;

  justify-content: start;

  background-color: transparent;
}

.ft-bx ul.social li a {
  background: var(--pri);

  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: 13px;
}

.copyright p a {
  color: rgba(255, 255, 255, 0.6);

  display: inline;

  font-weight: 400;
}

.copyright p a:hover {
  color: var(--pri);
}

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: 417px;

  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: 10px;

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

.feat-icon-bx {
  background-color: #f3fff2;

  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;

  height: 100%;

  border-radius: 15px;

  padding: 20px 25px;
}

.feat-icon-bx .icon {
  width: 50px;

  height: 50px;
}

.feat-icon-bx svg {
  width: 50px;

  height: 50px;

  /* fill: var(--pri); */

  color: var(--pri);
}

.feat-icon-bx .tt {
  margin-top: 6px;

  color: var(--text-color);
  text-transform: capitalize;
  font-size: 17px;

  font-weight: 600;
}

.abt-sec,
.abt-sec2 {
  position: relative;
}

.abt-sec2 img {
  border-radius: 20px;

  width: 100%;
}

.abt-sec2 .abt-counter-bx {
  right: auto;

  left: 20px;

  bottom: 20px;
}

.abt-sec img {
  border-radius: 100%;

  aspect-ratio: 1 / 1;

  width: 100%;

  border-bottom-left-radius: 10px;
}

.abt-counter-bx {
  text-align: center;

  background-color: var(--pri);

  color: white;

  border-radius: 10px;

  padding: 20px 40px;

  position: absolute;

  bottom: 38px;

  right: -15px;
}

.abt-counter-bx .tt {
  font-weight: 700;

  font-size: 45px;

  line-height: 1;
}

.abt-counter-bx p {
  font-weight: 500;

  color: white;

  margin-bottom: 0;

  line-height: 1.4;
}

.img-cate-bx {
  overflow: hidden;

  border-radius: 20px;

  position: relative;
}

.img-cate-bx .img {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.img-cate-bx .img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background-color: #00000054;
  z-index: 2;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.35s ease,
    height 0.35s ease;
}

.img-cate-bx:hover .img::after {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.img-cate-bx .img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: 0.4s ease;
}

.img-cate-bx .img.img:hover img {
  transform: scale(1.08);
}

.img-cate-bx .tx-bx {
  background-color: var(--pri);

  color: white;

  border-radius: 15px;

  padding: 12px 20px;

  display: flex;

  align-items: center;

  gap: 10px;

  position: absolute;

  bottom: 20px;

  left: 20px;

  transition: 0.3s ease-in-out;

  opacity: 1;

  z-index: 5;
}

.img-cate-bx:hover .tx-bx {
  bottom: 20px;
  background-color: var(--sec);
}

.img-cate-bx .tx-bx .tt {
  font-size: 20px;

  font-weight: 600;
}

.img-cate-bx .tx-bx span {
  background-color: white;

  color: var(--pri);

  border-radius: 100%;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 30px;

  height: 30px;

  line-height: 1;
}

.mission-sec {
  background-color: var(--off-white);
}

.counter-bx {
  aspect-ratio: 1 / 1;

  width: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-radius: 100%;

  background: #1e1d37;

  border: 1px solid rgba(255, 255, 255, 0.2);
}

.counter-bx img {
  width: 60px;

  height: 60px;
}

.counter-bx .tt {
  font-weight: 700;

  font-size: 35px;

  line-height: 1;

  color: var(--white);

  margin-top: 15px;

  letter-spacing: 1px;
}

.counter-bx p {
  font-weight: 500;

  color: white;

  margin-bottom: 0;
}

.vis-mis-tabs .nav-tabs {
  justify-content: center;

  gap: 0;

  border: 0;
}

.vis-mis-tabs .nav-tabs .nav-link {
  flex-grow: 1;

  font-size: 20px;

  color: var(--white);

  background-color: transparent;

  border: 0;

  font-family: var(--font);

  font-weight: 600;

  padding: 20px 0;

  border-bottom: 1px solid white;
}

.vis-mis-tabs .nav-tabs .nav-link:first-child {
  text-align: left;
}

.vis-mis-tabs .nav-tabs .nav-link:last-child {
  text-align: right;
}

.vis-mis-tabs .nav-tabs .nav-link.active {
  border-color: var(--pri);

  color: var(--pri);
}

.category-sec {
  background: url(../images/shape/shape2.webp) #dbf3da no-repeat center
    center/cover;
}

.cate-bx {
  background-color: white;

  border-radius: 12px;

  overflow: hidden;

  padding: 15px;
}

.cate-bx .img-bx {
  aspect-ratio: 1 / 1;

  overflow: hidden;

  position: relative;

  border-radius: 10px;
}

.cate-bx .img-bx 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-bx:hover img {
  transform: scale(1.05);
}

.cate-bx .tx-bx .tt {
  font-size: 16px;

  margin-top: 15px;

  margin-bottom: 5px;

  font-weight: 700;

  font-family: var(--font2);

  line-height: 1;
}

.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:hover .tx-bx .tt a {
  color: var(--pri);
}

.testiSlider .swiper-slide {
  height: auto;

  margin-bottom: 40px;
}

.testiSlider .swiper-pagination {
  position: absolute;

  bottom: 0;
}

/* 

.testiSlider .swiper-wrapper {

  transition-timing-function: linear;

} */

.texti-bx {
  padding: 25px;

  padding-top: 30px;

  border-radius: 20px;

  position: relative;

  height: 100%;

  background-color: white;

  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
}

.texti-bx::before {
  content: "";

  width: 36px;

  height: 36px;

  position: absolute;

  bottom: 32px;

  right: 25px;

  background-image: url("data:image/svg+xml,%3Csvg%20height%3D%22200%22%20width%3D%22200%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%20stroke-width%3D%220%22%2F%3E%3Cg%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M119.472%2066.59C53.489%2066.59%200%20120.094%200%20186.1c0%2065.983%2053.489%20119.487%20119.472%20119.487%200%200-.578%2044.392-36.642%20108.284-4.006%2012.802%203.135%2026.435%2015.945%2030.418%209.089%202.859%2018.653.08%2024.829-6.389%2082.925-90.7%20115.385-197.448%20115.385-251.8%200-66.006-53.488-119.51-119.517-119.51m273.01%200c-65.983%200-119.472%2053.505-119.472%20119.51%200%2065.983%2053.489%20119.487%20119.472%20119.487%200%200-.578%2044.392-36.642%20108.284-4.006%2012.802%203.136%2026.435%2015.945%2030.418%209.089%202.859%2018.653.08%2024.828-6.389C479.539%20347.2%20512%20240.452%20512%20186.1c0-66.006-53.489-119.51-119.518-119.51%22%20style%3D%22fill%3A%2380bd7f%22%2F%3E%3C%2Fsvg%3E");

  background-position: center;

  background-size: contain;
}

.texti-bx .img {
  width: 50px;

  height: 50px;

  border-radius: 100%;

  align-content: center;

  text-align: center;

  font-family: var(--font);

  font-weight: 600;

  text-transform: uppercase;

  color: var(--pri);

  font-size: 25px;

  box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 8px 1px inset;
}

.texti-bx .name {
  color: var(--text-color);
  text-align: start;
  font-weight: 600;
}

.texti-bx .name span {
  display: block;

  color: var(--para-color);

  font-size: 0.95em;

  font-weight: 400;
}

.texti-bx p {
  color: var(--text-color);

  margin-bottom: 0;
}

.texti-bx .star-rating {
  display: flex;

  gap: 3px;

  margin-bottom: 15px;
}

.texti-bx .star-rating svg {
  width: 16px;

  height: 16px;
}

.star-rating-wrap {
  display: flex;

  align-items: center;

  gap: 0;
}

.rating {
  display: flex;

  gap: 0;

  user-select: none;
}

.rating .star {
  width: 30px;

  height: 30px;

  cursor: pointer;

  position: relative;

  display: inline-block;
}

.rating .star i {
  position: absolute;

  inset: 0;

  font-style: normal;
}

.rating .star i::before {
  content: "★";

  position: absolute;

  inset: 0;

  color: #d9d9d9;

  font-size: 30px;

  line-height: 30px;
}

.rating .star i::after {
  content: "★";

  position: absolute;

  inset: 0;

  color: #ffc107;

  font-size: 30px;

  line-height: 30px;

  width: 0%;

  overflow: hidden;
}

.rating .star i::after {
  width: var(--w, 0%);
}

.faq-bx {
  background-color: #f4f4f4;

  position: relative;

  z-index: 1;

  border-radius: 25px;

  overflow: hidden;
}

.faq-bx::before {
  content: "";

  position: absolute;

  z-index: -1;

  inset: 0;

  background: url(../images/shape/shape.webp) no-repeat center top / cover;

  mix-blend-mode: multiply;

  opacity: 8%;
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:not(:first-of-type) {
  margin-bottom: 15px;

  background: transparent !important;

  border: 0;

  border-radius: 10px;

  padding: 9px 17px;

  border: 1px solid #e6e6e6;
}

.faq-bx .accordion-item {
  background: #fff;
}

.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='%2380bd7f'%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);

  border-radius: 15px;

  padding: 30px;

  color: white;

  position: relative;

  top: -65px;
}

.cta-bx {
  background-color: var(--pri);

  display: flex;

  align-items: center;

  gap: 13px;
}

.cta-bx .icon {
  width: 50px;

  min-width: 50px;

  height: 50px;

  border-radius: 100%;

  position: relative;

  border: 1px solid rgba(255, 255, 255, 0.2);

  z-index: 1;

  display: inline-flex;

  align-items: center;

  justify-content: center;
}

.cta-bx .icon::before {
  content: "";

  position: absolute;

  width: 35px;

  height: 35px;

  background-color: white;

  border-radius: 100%;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  z-index: -1;
}

.cta-bx .icon svg {
  width: 16px;

  height: 16px;

  fill: var(--pri);
}

.cta-bx .tx-bx .tt,
.cta-bx .tx-bx .tt a {
  font-weight: 600;

  font-size: 16px;

  color: var(--white);
}

.cta-bx .tx-bx .sub-tt {
  font-size: 15px;

  margin-bottom: 2px;
}

.cta-bx .tx-bx .tt a {
  display: inline;
}

.oem-points {
  display: flex;

  flex-wrap: wrap;

  gap: 6px 22px;

  padding: 0;

  margin: 0 0 20px;

  list-style: none;
}

.oem-points li {
  font-size: 15px;

  font-weight: 600;

  position: relative;

  padding-left: 20px;
}

.oem-points li::before {
  content: "✓";

  position: absolute;

  left: 0;

  top: 0;

  color: #fff;

  font-weight: 700;
}

.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: var(--off-white);

  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 16px;

  text-align: left;

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

.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: 14px;

  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: 17px;

  height: 17px;

  cursor: pointer;

  accent-color: var(--pri);

  border-color: #e3e3e3;

  box-shadow: none !important;
}

.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: 14px;

  font-weight: 700;

  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: 10px 11px;

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

.oem-process-card {
  background: #fff;

  border: 1px solid #eee;

  padding: 25px;

  border-radius: 16px;

  position: relative;

  transition: 0.3s ease;

  height: 100%;
}

.oem-process-card:hover {
  border-color: var(--pri);

  box-shadow: 0 12px 30px rgb(128 189 127 / 15%);
}

.oem-process-number {
  width: 52px;

  height: 52px;

  border-radius: 50%;

  background: var(--pri);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  font-size: 18px;

  margin-bottom: 15px;
}

.oem-process-card .tt {
  font-size: 20px;

  margin-bottom: 5px;

  color: var(--sec);

  font-family: var(--font);

  font-weight: 600;
}

.oem-process-card p {
  margin-bottom: 0;
}

.ls-oem-info-card {
  position: relative;

  overflow: hidden;

  border-radius: 28px;

  color: #ffffff;

  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.28),
      transparent 32%
    ),
    linear-gradient(135deg, #9ed49e 0%, #7abb7d 48%, #68aa6b 100%);

  box-shadow: 0 22px 50px rgba(55, 130, 65, 0.2);
}

.ls-oem-info-card::before {
  content: "";

  position: absolute;

  width: 260px;

  height: 260px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  right: -80px;

  bottom: -80px;
}

.ls-oem-mini-title {
  display: inline-block;

  margin-bottom: 10px;

  padding: 7px 16px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.2);

  color: #ffffff;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.3px;
}

.ls-oem-info-card .title {
  position: relative;

  font-family: var(--font);

  margin: 0 0 10px;

  font-size: 32px;

  line-height: 1.18;

  font-weight: 800;

  letter-spacing: -0.7px;
}

.ls-oem-info-card p {
  position: relative;

  line-height: 1.6;

  margin-bottom: 15px;

  font-weight: 500;

  color: rgba(255, 255, 255, 0.95);
}

.ls-oem-points {
  position: relative;

  list-style: none;

  margin: 0;

  padding: 0;
}

.ls-oem-points li {
  position: relative;

  padding-left: 20px;

  margin-bottom: 2px;

  font-size: 14px;

  line-height: 1.5;

  color: #ffffff;
}

.ls-oem-points li::before {
  content: "";

  position: absolute;

  left: 0;

  top: 9px;

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: #ffffff;

  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.ls-oem-support-box {
  position: relative;

  margin-top: 20px;

  padding: 15px 22px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.18);

  border: 1px solid rgba(255, 255, 255, 0.3);

  backdrop-filter: blur(8px);
}

.ls-oem-support-box strong {
  display: block;

  margin-bottom: 0px;

  font-size: 18px;

  color: #ffffff;
}

.ls-oem-support-box span {
  display: block;

  /* font-size: 15px; */

  line-height: 1.6;

  color: rgba(255, 255, 255, 0.92);
}

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

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

.modal .tt {
  color: var(--white);
  font-size: 19px;
}

.name {
  font-size: 15px;
  color: var(--sec);
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member-slide:hover {
  background-color: var(--sec);
}
.team-member-slide:hover .descript {
  background-color: var(--sec);
}

.team-member-slide:hover .name {
  color: var(--white);
}

.designation {
  font-size: 12px;
  color: var(--sec);
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.team-member-slide:hover .designation {
  color: var(--white);
}

.descript {
  padding: 10px 5px;
  background-color: var(--off-white);
  transition: all 0.3s ease;
}

.app-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.sidebar {
  position: relative;
  width: 38%;
  flex-shrink: 0;
  overflow: hidden;
}

.sidebar .img-bx {
  width: 100%;
  height: 100%;
}
.sidebar .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.sidebar:hover .img-bx img {
  transform: scale(1.08);
}

.sidebar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 60%, #060c14 100%),
    linear-gradient(
      to bottom,
      rgba(6, 12, 20, 0.3) 0%,
      transparent 40%,
      rgba(6, 12, 20, 0.5) 100%
    );
  pointer-events: none;
}

.sidebar-label {
  position: absolute;
  bottom: 40px;
  left: 32px;
  z-index: 2;
  color: #fff;
}

.sidebar-line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    color-mix(in srgb, var(--sec) 40%, transparent) 30%,
    color-mix(in srgb, var(--pri) 40%, transparent) 70%,
    transparent
  );
  z-index: 3;
}

.main-slider {
  flex: 1;
  height: 65vh;
  position: relative;
  overflow: hidden;
  background-color: var(--white);
}

.main-slider .swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide.slide {
  position: relative;
  display: flex;
  align-items: center;
  padding: 56px 52px;
  overflow: hidden;
}

.slide-num {
  position: absolute;
  top: 20px;
  right: 52px;
  font-family: "Cormorant Garamond", serif;
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
  color: color-mix(in srgb, var(--pri) 12%, transparent);
  user-select: none;
  pointer-events: none;
}

.slide-content {
  position: relative;
  z-index: 2;
}
.slide-content .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sec);
  font-weight: 500;
  margin-bottom: 14px;
}
.slide-content .chip::before {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--sec);
}

.slide-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0%;
  background: linear-gradient(to bottom, var(--pri), var(--sec));
  transition: height 0.8s ease;
  z-index: 10;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(--black);
  z-index: 10;
  pointer-events: none;
}
.scroll-hint .wheel {
  width: 20px;
  height: 32px;
  border: 1.5px solid var(--sec);
  border-radius: 10px;
  position: relative;
}
.scroll-hint .wheel::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: var(--sec);
  animation: wheelScroll 1.6s ease infinite;
}
@keyframes wheelScroll {
  0% {
    opacity: 1;
    top: 5px;
  }
  100% {
    opacity: 0;
    top: 18px;
  }
}

.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.swiper-slide-active .slide-content {
  animation: slideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  bottom: -1px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.5;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}
.swiper-pagination-bullet-active {
  background: var(--pri);
  width: 10px;
  height: 10px;
}

.sidebar-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.sidebar-img.active {
  opacity: 1;
}

.nav-pills .nav-link {
  background: var(--pri);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 20px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--sec);
}

.nav-pills {
  gap: 10px;
}

.index-form-bx {
  overflow: hidden;
  border-radius: 20px;
}

.head-sec .sub-tt2 {
  color: var(--white);
}

.head-sec .sub-tt2::before {
  background-color: var(--white);
}

.sco-bx {
  overflow: hidden;
  border-radius: 20px;
}

.cta-sec p {
  color: var(--white);
}

.product-details {
  padding-top: 0;
}

.product-details .left-bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-image: url("../images/products-details.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.product-details .left-bx::after {
  z-index: -1;
  background-color: #000000c4;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.product-details .button-bx {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.product-details .button-bx a {
  color: white;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.product-details .button-bx a:hover {
  background-color: #89c288;
  border-color: #89c288;
}

.color-sec {
  color: var(--bs-success) !important;
}

.img-bg-content2 .tt {
  color: var(--white);
}

.img-bg-content2 .head-sec p {
  color: var(--white);
}

.foot08-head {
  color: var(--white);
}

.ft-sep {
  margin-right: 30px;
}

.foot08-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 3px 3px;
  font-size: 15px;
}

.foot08-popular-list li {
  position: relative;
  display: flex;
}

.foot08-popular-list li::after {
  content: "|";
  margin: 0 4px;
  color: #efe8e873;

  position: relative;
  top: 50%;
  transform: translatey(-50%);
  right: 0;
}

.foot08-popular-list li:last-child::after {
  content: "";
}

.foot08-popular-list a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.1s ease-in;
  font-size: var(--para-size);
}

.foot08-popular-list a:hover {
  color: var(--pri);
}

.leadsureheading {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

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

.mySwiperUnique,
.mySwiperUnique .swiper-wrapper,
.mySwiperUnique .swiper-slide {
  width: 100%;
}

.mySwiperUnique .swiper-slide {
  background: var(--white);
}

@media (max-width: 768px) {
  .main-slider {
    height: auto;
    min-height: 560px;
  }

  .main-slider .swiper {
    height: auto;
    min-height: 560px;
  }

  .swiper-slide.slide {
    width: 100% !important;
    height: auto !important;
    min-height: 560px;
    padding: 45px 20px 70px;
    align-items: flex-start;
  }

  .slide-progress {
    top: auto;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
  }

  .swiper-pagination {
    bottom: 15px !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    flex-direction: row !important;
  }

 

  .scroll-hint {
    display: none;
  }

  .slide-num {
    top: 18px;
    right: 20px;
    font-size: 55px;
  }
}

.brand-gallery-card {
  overflow: auto;
}

.brand-gallery-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.brand-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 22px;
  text-shadow: 0px 0px 1px rgba(255, 255, 255, 1);
}

.brand-gall .bx {
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
}

.brand-gall .bx:hover {
  /* box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3); */
  border: 2px solid var(--pri);
}

.brand-prev {
  left: 15px;
}

.brand-next {
  right: 15px;
}

.brand-name {
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  text-align: center;
  background-color: var(--pri);
  padding: 10px 15px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.brand-name:hover {
  background-color: var(--sec);
}

.main-product-image {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.main-product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 5px;
  display: block;
}

.unique-product-swiper {
  position: relative;
  flex-shrink: 0;

}

.unique-product-swiper .img-bx {
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  border: 2px dashed rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.unique-product-swiper .img-bx img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.unique-product-swiper .img-bx.active {
  border: 2px solid var(--pri);
}

.unique-product-swiper .img-bx.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff80;

  pointer-events: none;
  z-index: 2;
}

.unique-swiper-prev,
.unique-swiper-next {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  width: 35px;
  height: 35px;
  background: #374151;
  color: #fff;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.unique-swiper-prev:hover,
.unique-swiper-next:hover {
  background: var(--sec);
}

.unique-swiper-prev {
  left: 6px;
}

.unique-swiper-next {
  right: 6px;
}

.gall-det-tab .nav-pills .nav-link {
  padding: 10px 15px;
  border-radius: 7px;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--black);
  outline: 2px solid var(--black);
  /* transition: all  .3s ease-in-out; */
  font-weight: 700;
}

.gall-det-tab .nav-pills .nav-link.active {
  color: var(--sec);
  outline: 3px solid var(--sec);
}

.gall-det-tab .nav-pills .nav-link:hover {
  outline: 3px solid var(--sec);
}

.gall-det-tab .size {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-color);
}
.gall-det-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.content-sec2 .head-sec p {
  color: var(--white);
}

.content-sec2 p {
  color: var(--white);
}

.content-sec2 ul {
  color: var(--white);
}

.btns-bxs button {
  padding: 10px 15px;
  border: 2px solid var(--black);
  font-size: 15px;
  font-weight: 600;
  background-color: transparent;
  border-radius: 5px;
  color: var(--black);
  line-height: 1;
  text-transform: uppercase;
}

.btns-bxs button.active {
  background-color: #374151;
  color: var(--white);
}

.btns-bxs .size {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.size-description-front {
  padding: 12px 15px;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
}

.technical-table-box {
  margin-top: 25px;
  padding: 20px;
  border: 1px solid #eeeeee;
  background: #ffffff;
  border-radius: 8px;
}

.technical-table-box .table-responsive {
  margin-bottom: 0;
}

.technical-table-box table {
  width: 100%;
  border-collapse: collapse;
}

.technical-table-box table th,
.technical-table-box table td {
  border: 1px solid #dddddd;
  padding: 10px;
  font-size: 14px;
  vertical-align: top;
}

.technical-table-box table th {
  background: #f6f6f6;
  font-weight: 600;
}

.product-image-gallery {
}

.product-image-gallery .main-product-image {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.unique-product-swiper {
  
  /* height: 459px; */
  height: 402px;
  overflow: hidden;
}

.unique-product-swiper .swiper-slide {
  height: auto !important;
}

.unique-product-swiper .img-bx {
  width: 100%;
  cursor: pointer;
}

.unique-product-swiper .img-bx img {
  width: 70px;

  object-fit: cover;
  display: block;
}

.content-sec2 {
  height: 413px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 15px;
}

.tt2 {
  text-transform: capitalize;

  font-size: 25px;

  font-weight: 700;

  color: var(--text-color);

  text-align: left;

  margin-bottom: 7px;

  line-height: 1.3;
}

.content-sec2::-webkit-scrollbar {
  width: 5px;
}

.content-sec2::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.content-sec2::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.content-sec2::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.content-sec2 {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.btns-bxs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-tabs iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.unique-product-swiper {
  max-height: 480px;
  overflow: hidden;
}

.unique-product-swiper .swiper-wrapper {
  align-items: stretch;
}
.main-img-bx {
  position: relative;
  width: 100%;
}

.product-tabs {
  padding: 30px;
  background-color: #f3fff2;
  border-radius: 12px;
}

.product-tabs .nav-pills .nav-link {
  border-radius: 4px;
  background-color: transparent;
  color: #374151;
  border: 2px solid #374151;
  font-weight: 500;
  padding: 10px 15px;
  line-height: 1;
}

.product-tabs .nav-pills .nav-link.active {
  background-color: #374151;
  color: var(--white);
}

.product-image-gallery .main-btn.sm {
  padding: 10px 10px;
  font-size: 12px;
}

.product-image-gallery .productBrochureandvideo {
  font-size: 13px;
  padding: 10px;
}

.product-image-gallery2 {
  display: flex;
    
  gap: 15px;
}

.product-image-gallery2 .unique-product-swiper {
      max-height: 355px;
}

.youtube-video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
}

.youtube-video-box iframe {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.youtube-video-box .video-click {
    display: block;
    width: 100%;
    height: 100%;
}

   

  

 

  .gall-bx .item::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #0000003f;
    top: -100%;
    left: -100%;
    transition: all 0.3s ease-in-out;
  }
  .gall-bx .item::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #0000003f;
    right: -100%;
    bottom: -100%;
    transition: all 0.3s ease-in-out;
  }

  .gall-bx .item:hover::after {
    left: 0;
    top: 0;
  }
  .gall-bx .item:hover::before {
    right: 0;
    bottom: 0;
  }

  .gall-bx .item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
  }

  ul.brand-details-tab  .nav-link {
            border: none !important;
            background: none !important;
            width: 100% !important;
            padding: 0;
        }

        ul.brand-details-tab  .nav-link.active {
        border: none !important;
            background: none !important;
            width: 100% !important;
            
        }

         ul.brand-details-tab {
          gap: 10px !important;
         }