:root {
  --font: "Instrument Sans", sans-serif;
  --font2: "Instrument Sans", sans-serif;

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

  --pri: #010101;

  --pri-light: #374151;

  --sec: #9e9e9e;

  --third: #4a4a4a;

  --text-color: #161629;

  --text-muted: #8d9eb5;

  --text-light: #8c8c8c;

  --para-color: #646464;

  --border-color: #e3e3e3;

  --white: #fff;

  --off-white: #f4f4f4;

  --black: #212529;
  --black-soft: #121212;

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

  --bg: #f4f4f4;

  --dots: radial-gradient(rgba(12, 33, 29, 0.07) 1.4px, transparent 1.4px);
  --dots-dark: radial-gradient(rgba(203, 255, 84, 0.1) 1.4px,
      transparent 1.4px);
  --graident:
    radial-gradient(ellipse at top right,
      rgba(158, 158, 158, 0.35) 0%,
      transparent 35%),
    radial-gradient(ellipse at bottom left,
      rgba(74, 74, 74, 0.65),
      transparent 45%),
    linear-gradient(120deg, var(--pri), var(--pri) 50%, var(--pri));

  --gridnt2:
    radial-gradient(ellipse at top right,
      rgba(158, 158, 158, 0.35) 0%,
      transparent 35%),
    radial-gradient(ellipse at bottom left,
      rgba(74, 74, 74, 0.65),
      transparent 45%),
    linear-gradient(120deg, var(--pri), var(--pri) 50%, var(--pri));
}

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

  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.3) 0%,

      rgba(0, 0, 0, 0.3) 50%,

      rgba(0, 0, 0, 0.3) 100%);

  height: 1.4px;
}

.bg-black {
  background-color: var(--black);
}

.head-sec {
  text-align: center;

  max-width: 950px;

  margin: 0 auto 35px;
}

.head-sec.text-start,
.head-sec.text-md-start {
  max-width: 100%;
}

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

  display: inline-block;

  font-size: 17px;

  font-weight: 500;

  color: var(--pri);

  margin-bottom: 5px;
  font-family: var(--font2);

  position: relative;
  text-transform: capitalize !important;
}

.head-sec .sub-tt::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  transform: rotate(-45deg);
  margin-right: 7px;
  background-color: var(--pri);
  background-size: contain;
  background-position: center;
}

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

  color: var(--text-color);

  font-weight: 500;

  font-size: 30px;

  line-height: 1;

  margin-bottom: 5px;

  position: relative;
}

.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 {
  background-color: var(--white);
}

.head-sec.text-white .tt,
.head-sec.text-white p {
  color: white;
}

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

.bg-pri-transparent {
  background-color: #f4f2ff !important;

  color: var(--pri) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-pri {
  color: var(--pri) !important;
}

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

.w-btn {
  padding: 10px 15px;

  border-radius: 50px;

  color: white;

  border: 1px solid #00c966;

  display: inline-flex;

  justify-content: center;

  gap: 5px;

  align-items: center;

  font-size: 14px;

  font-weight: 500;

  font-family: var(--font);

  text-transform: capitalize;

  white-space: nowrap;

  background-color: #00c966;

  outline: none;

  transition: 0.2s ease-in-out;

  line-height: 1;
}

.w-btn:hover {
  border-color: #00c966;

  background-color: #00b95d;
}

.main-btn {
  background: var(--pri);
  color: white;
  font-family: inherit;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em var(--pri);
  overflow: hidden;
  position: relative;
  line-height: 1;
  padding-right: 3em;
  cursor: pointer;
}

.main-btn .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em var(--pri);
  right: 0.3em;
  transition: all 0.3s;
}

.main-btn:hover .icon {
  width: calc(100% - 0.6em);
}

.main-btn .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--pri);
}

.main-btn:hover .icon svg {
  transform: translateX(0.1em);
}

.main-btn:active .icon {
  transform: scale(0.95);
}

.main-btn.main-btn3 {
  background: var(--white);
  box-shadow: inset 0 0 1.6em -0.6em var(--white);
  color: var(--pri);
}

.main-btn.main-btn3 .icon {
  box-shadow: 0.1em 0.1em 0.6em 0.2em var(--white);
  background: var(--pri);
}

.main-btn.main-btn3 .icon svg {
  color: var(--white);
}

.main-btn.sm {
  padding: 10px 15px;

  font-size: 13px;
}

.main-btn2 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--pri);
  border-color: var(--pri);
  outline: none;
  box-shadow: none;
  border: none;
  padding: 7px 9px;
  padding-left: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  color: var(--white);
}

.main-btn2.sm {
  padding: 5px 7px;
  padding-left: 8px;
  font-size: 14px;
}

.main-btn2.sm svg {
  height: 28px;
  width: 28px;
  padding: 6px;
}

.main-btn2 svg {
  padding: 8px;
  height: 32px;
  width: 33px;
  background: var(--white);
  color: var(--pri);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.main-btn2.trans {
  background-color: transparent;
  color: var(--pri);
  border-color: var(--pri);
}

.main-btn2.trans svg {
  background-color: var(--pri);
  color: var(--white);
}

.main-btn2.trans:hover {
  background-color: var(--pri);
  color: var(--white);
}

.main-btn2.trans:hover svg {
  background-color: var(--white);
  color: var(--pri);
}

.main-btn2:hover {
  background-color: transparent;
  border-color: var(--pri);
  color: var(--pri);
}

.main-btn2:hover svg {
  color: var(--white);
  background-color: var(--pri);
}

/*  
.main-btn2 {
  color: var(--white);

  background-color: var(--sec);

  border-color: var(--sec);
}

.main-btn2:hover {
  background-color: var(--pri);

  border-color: var(--pri);

  color: var(--white);
} */

.main-btn.light {
  background-color: var(--white);

  border-color: var(--pri);

  color: var(--pri);
}

.main-btn.light:hover {
  background-color: var(--sec);

  border-color: var(--sec);

  color: var(--white);
}

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

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

  color: var(--text-color);

  font-family: var(--font);

  font-weight: 400;

  margin-bottom: 5px;
}

.form-group {
  position: relative;

  margin-bottom: 15px;
}

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

  border-radius: 7px;

  font-size: 15px;

  padding: 8px 12px;

  color: var(--para-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: 85px;

  width: auto;

  height: auto;
}

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;

  display: flex;

  flex-direction: column;

  justify-content: end;
}

header.is-scrolled {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  /* box-shadow: 0px 2px 10px rgba(0,0,0,0.1); */
}

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

  height: 14px;

  pointer-events: none;
}

/* ################### main ###################### */

main,
main img {
  overflow: hidden;

  display: block;

  width: 100%;

  position: relative;
}

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

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

.swiper-button-next,
.swiper-button-prev {
  border: 1px solid #eeebff;

  background-color: #f4f2ff;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0, 2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;

  font-weight: 600;

  color: currentColor;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

.lead-sure-section {
  padding: 60px 0;

  overflow: hidden;

  position: relative;

  z-index: 1;
}

.lead-sure-section.before::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: var(--dots-dark);
  background-position: center;
  background-size: 20px 20px;
  background-repeat: repeat;
  z-index: -1;
}

.lead-sure-section.before2::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  opacity: 0.4;

  background-image: url(../images/bg/parttern.png);

  background-position: 50% 0;

  background-repeat: no-repeat;

  background-size: auto;

  z-index: -1;
}

.bg-sec {
  background-color: var(--off-white) !important;
}

.bg-pri {
  background-color: var(--sec) !important;

  align-content: center;

  color: var(--off-white);
}

.bg-liner {
  background: var(--liner);

  background-color: var(--sec);
}

.bg-light {
  background-color: var(--off-white) !important;
}

.bg-effect {
  background-image: url("../images/bg/bg1.webp"), url("../images/bg/bg2.webp");

  background-position:
    left 0,
    right -70px;

  background-repeat: no-repeat, no-repeat;

  background-size: auto, auto;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: var(--font);

  line-height: 40px;
}

.read-mr {
  font-size: 15px;

  color: var(--pri);

  font-weight: 500;

  transition: 0.2s;

  display: inline-flex;

  align-items: center;

  gap: 3px;

  white-space: nowrap;

  padding: 0;

  background-color: transparent;

  border: 0;

  text-transform: capitalize;
}



.read-mr:hover {
  color: var(--sec);
}

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

.bg-liner .swiper-pagination-bullet {
  background-color: white;

  opacity: 0.3;
}

.bg-liner .swiper-pagination-bullet-active {
  background-color: var(--off-white);

  opacity: 1;
}

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

.breadcum-sec {
  padding: 10px 0;

  border-bottom: 1px solid #eee;
}

.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(0, 0, 0, 0.1); */

  border-radius: 999px;

  line-height: 1;
}

.breadcum-sec ul li {
  color: var(--text-color);

  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(--text-color);

  text-align: center;
}

.breadcum-sec ul li:last-child:before {
  content: none;
}

.breadcum-sec ul li a {
  color: var(--pri);
}

.breadcum-sec ul li a:hover {
  color: var(--sec);
}

.img-breadcum-sec {
  overflow: hidden;

  position: relative;

  z-index: 1;

  padding: 100px 0 70px;

  background-color: var(--off-white);

  background-image: url(../images/bg/parttern.png);

  background-position: left;

  background-repeat: no-repeat;
}

.img-breadcum-sec::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  opacity: 0.4;

  z-index: -1;

  background-image: url(../images/bg/bg2.webp);

  background-position: right -70px;

  background-repeat: no-repeat;

  background-size: auto;
}

.img-breadcum-sec .head-sec .tt {
  font-size: 35px;
}

.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 .tx-bx .tt {
  font-size: 16px;

  font-weight: 600;

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



.map {
  width: 100%;
  padding: 15px;
  background-color: var(--white);
  border-radius: 12px;
  display: block;
  margin-top: 15px;
}

.map-bx {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.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 6px;

  font-size: 14px;
}

th {
  color: var(--text-color);
}

.swiper-wrap {
  position: relative;
}

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

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

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

  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 {
  font-size: 20px;
}

.content-sec .tt {
  font-size: 24px;
}

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

  line-height: 1.6;

  color: var(--para-color);

  text-align: justify;

  font-family: var(--font2);

  font-weight: 400;
}

.content-sec p a {
  color: var(--pri);
}

.content-sec li {
  margin-bottom: 3px;

  position: relative;
}

.content-sec li a {
  display: inline;

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

.content-sec ul {
  padding-left: 0;
}

.content-sec ul li {
  padding-left: 20px;

  display: flow-root;
}

.content-sec ul li::before {
  content: "➤";

  position: absolute;

  left: 0px;

  color: var(--pri);

  font-size: 15px;

  top: 1px;
}

.content-sec ul li a {
  display: inline;

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

.content-sec table {
  width: -webkit-fill-available;

  margin-bottom: 20px;

  overflow: hidden;
}

.content-sec table p {
  margin-bottom: 0;

  color: var(--para-color);

  font-size: 14px;
}

.content-sec table tr:nth-child(even) {
  background-color: #f8f8f8;

  color: var(--para-color);
}

.content-sec table tr:nth-child(odd) {
  background-color: var(--white);

  color: var(--para-color);
}

.content-sec table th {
  background-color: var(--pri);

  color: var(--white);

  font-weight: 500;
}

ul.footer-menu-list {
  display: flex;

  flex-wrap: wrap;

  padding: 0;

  margin-bottom: 18px;

  list-style: none;
}

ul.footer-menu-list li a {
  margin-right: 15px;

  font-weight: 300;

  display: inline-block;

  line-height: 1.3;

  position: relative;

  text-transform: capitalize;

  color: var(--off-white);
}

ul.footer-menu-list li a:hover {
  color: var(--sec);

  opacity: 1;
}

ul.footer-menu-list li a::before {
  content: "|";

  padding: 0;

  font-size: 13px;

  position: absolute;

  right: -9px;

  top: 1px;

  color: var(--white);

  opacity: 0.8;
}

ul.footer-menu-list li:last-child a::before {
  content: none;
}

footer {
  padding: 70px 0 15px;

  position: relative;

  z-index: 1;

  background-color: var(--off-white);
}

.ft-bx {
  position: relative;

  z-index: 1;
}

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

.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: var(--para-color);

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

  text-transform: capitalize;

  margin-bottom: 10px;

  position: relative;
}

.ft-bx p {
  color: var(--para-color);

  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: var(--para-color);

  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: var(--sec);

  /* color: var(--pri); */
}


.copyright {
  padding-top: 15px;

  margin-top: 30px;

  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.copyright svg {
  color: var(--pri);
}

.copyright p {
  color: var(--para-color);

  margin-bottom: 0;

  font-weight: 400;

  font-size: 13px;
}

.copyright p a {
  color: var(--text-color);

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

  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: 8px;
  position: relative;
  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;
}

.cate-bx {
  background-color: white;

  border-radius: 12px;

  overflow: hidden;

  padding: 10px;
}

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

  font-family: var(--font2);

  line-height: 1.3;
}

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

.cate-bx.pro-bx {
  /* background-color: var(--bg);   */
  /* border: 1px solid #e3e3e3; */
}

.cate-bx.pro-bx .tx-bx {
  margin-top: 13px;
}

.cate-bx.pro-bx .tx-bx .sub-tt {
  font-size: 11px;

  background-color: #f8f6ff;

  display: inline-block;

  color: var(--sec);

  padding: 4px 7px;

  border-radius: 15px;

  margin-bottom: 6px;

  line-height: 1;
}

.cate-bx.pro-bx .tx-bx .tt {
  margin: 0;

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

.cate-bx .specs-bx {
  padding: 10px;

  border-radius: 10px;

  background-color: white;
}

.cate-bx .specs-bx .dived {
  display: flex;

  align-items: center;

  justify-content: space-between;

  font-size: 13px;

  padding: 2px 0;
}

.cate-bx .specs-bx .dived span:last-child {
  font-weight: 500;

  color: var(--pri);
}

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

  padding: 30px;

  border: 1px solid var(--white);

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

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

.hero-section {
  background: #000;
  aspect-ratio: 1680/797;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.48) 55%,
      rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-section>.container {
  position: relative;
  z-index: 2;
}

.hero-section .tt {
  font-size: 55px;
  line-height: 1;
  margin-bottom: 15px;
}

.hero-section p {
  font-size: 17px;
}

.hero-section-card {
  padding: 35px;

  background: var(--liner);

  background-color: var(--pri);

  border-radius: 20px;
}

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

.counter-bx .tt {
  color: var(--pri);

  font-weight: 500;

  font-size: 33px;
}

.counter-bx p {
  margin-bottom: 0;

  color: var(--para-color);
}

.step-bx .count {
  box-shadow:
    0 0 0 1px #0a0d122e,
    0 -2px #0a0d120d,
    0 1px 2px #1018280d;

  outline: 2px solid #ffffff1f;

  outline-offset: 0.5px;

  background: white;

  width: 30px;

  height: 30px;

  border-radius: 10px;

  text-align: center;

  align-content: center;

  font-weight: 500;

  color: var(--pri);
}

.step-bx .tt {
  border-top: 1px solid rgba(255, 255, 255, 0.2);

  margin-top: 20px;

  padding-top: 20px;

  color: var(--white);

  font-weight: 500;

  font-size: 18px;

  margin-bottom: 5px;

  position: relative;
}

.step-bx .tt::before {
  content: "";

  position: absolute;

  top: -1px;

  width: 60%;

  height: 2px;

  background-color: var(--sec);
}

.step-bx p {
  margin-bottom: 0;

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

.loc-bx {
  padding: 10px;

  padding-left: 32px;

  position: relative;

  border: 1px solid var(--border-color);

  background-color: var(--off-white);

  border-radius: 18px;
}

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

  position: absolute;

  left: 6px;

  top: 10px;

  width: 25px;

  height: 25px;

  border-radius: 50%;

  background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%233E3D93%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20640%20640%22%3E%3Cpath%20d%3D%22M128%20252.6C128%20148.4%20214%2064%20320%2064s192%2084.4%20192%20188.6c0%20119.3-120.2%20262.3-170.4%20316.8-11.8%2012.8-31.5%2012.8-43.3%200-50.2-54.5-170.4-197.5-170.4-316.8zM320%20320c35.3%200%2064-28.7%2064-64s-28.7-64-64-64-64%2028.7-64%2064%2028.7%2064%2064%2064%22%2F%3E%3C%2Fsvg%3E");

  background-size: 20px;

  background-position: center;

  background-repeat: no-repeat;
}

.loc-bx .tt {
  font-size: 15px;

  color: var(--text-color);

  font-weight: 500;
}

.loc-bx p {
  margin-bottom: 0;

  font-size: 12px;
}

.compliance-card {
  padding: 10px;

  position: relative;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 12px;

  display: flex;

  align-items: center;

  gap: 7px;

  background-color: white;

  transition: 0.3s ease-in-out;
}

.compliance-card:hover {
  background-color: white;

  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);

  border-color: transparent;
}

.compliance-card .icon {
  background-color: var(--off-white);

  width: 38px;

  height: 38px;

  border-radius: 8px;

  align-content: center;

  text-align: center;

  color: var(--pri);
}

.compliance-card .tt {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color);
}

.compliance-card a {
  color: var(--para-color);
}

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


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

  background: transparent;

  border: 0;

  border-radius: 0;

  padding: 0;
}

.accordion-item:last-of-type {
  margin-bottom: 0;
}

.accordion-button {
  background: transparent;

  font-weight: 500;

  outline: 0 !important;

  color: var(--text-color);

  font-size: 16px;

  padding: 0;

  padding-right: 20px;

  padding-bottom: 12px;

  border-bottom: 1px solid var(--border-color);

  font-family: var(--font);

  border-radius: 0 !important;
}

.accordion-body {
  padding: 0;

  padding-top: 12px;

  color: var(--para-color);

  font-size: 15px;
}

.accordion-body p {
  margin-bottom: 0;
}

.accordion-button::after {
  position: absolute;

  right: 3px;

  top: 5px;

  width: 20px;

  height: 20px;

  background-size: 18px;

  background-position: center;

  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.75%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20stroke%3D%22none%22%2F%3E%3Cpath%20d%3D%22m6%209%206%206%206-6%22%2F%3E%3C%2Fsvg%3E");

  transform-origin: center;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;

  background: transparent;

  color: var(--pri);
}

.accordion-button:focus {
  box-shadow: none !important;

  border: 0;

  border-bottom: 1px solid var(--border-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%234422bd%22%20stroke-width%3D%221.75%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20stroke%3D%22none%22%2F%3E%3Cpath%20d%3D%22m6%209%206%206%206-6%22%2F%3E%3C%2Fsvg%3E");
}

.faq-accordion {
  counter-reset: faq-number;
}

.faq-accordion .row {
  --bs-gutter-y: 18px;
}

.faq-accordion .accordion-item {
  counter-increment: faq-number;
  margin-bottom: 18px;
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-item:hover {
  transform: translateY(-2px);
}

.faq-accordion .accordion-button::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 34px;
  height: 34px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background-color: transparent;
  background-image: none;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;

  /* Plus SVG via mask */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 16px 16px;
  mask-size: 16px 16px;
  -webkit-mask-position: center;
  mask-position: center;

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

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%);
  border-color: var(--pri);
  background-color: var(--pri);

  /* Minus SVG via mask */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 16px 16px;
  mask-size: 16px 16px;
  -webkit-mask-position: center;
  mask-position: center;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--sec);
}

.faq-accordion .accordion-button {
  padding: 14px 64px 14px 64px;
  border: 0;
  background-color: var(--white);
  color: var(--text-color);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.faq-accordion .accordion-button::before {
  content: counter(faq-number, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid var(--pri);
  color: var(--pri);
  font-size: 12px;
  font-weight: 700;
}

.faq-accordion .accordion-button:not(.collapsed) {
  border: 0;
  background-color: var(--off-white);
  color: var(--pri);
}

.faq-accordion .accordion-button:not(.collapsed)::before {
  background-color: var(--pri);
  color: var(--white);
}

.faq-accordion .accordion-button:focus {
  border: 0;
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 10px 22px 15px 20px;
  border-top: 1px solid rgba(74, 124, 89, 0.12);
  background-color: var(--white);
  color: var(--para-color);
  font-size: 15px;
  line-height: 1.75;
}

.float-name {
  font-size: 120px;

  line-height: 1;

  text-wrap: nowrap;

  font-weight: 600;

  text-transform: uppercase;

  color: var(--pri);

  opacity: 0.05;

  text-align: center;

  margin-top: 20px;

  pointer-events: none;

  user-select: none;
}

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

  object-fit: contain;

  object-position: center;

  width: 100%;

  height: 100%;

  overflow: hidden;

  border: 1px solid #eee;
}

.prSlider {
  background-color: #f9f9f9;
  border: 1px solid #dbe5f0;
  border-radius: 10px;
  user-select: none;
}

.prSlider .swiper-button-next,
.prSlider .swiper-button-prev {
  width: 25px;

  height: 25px;

  background-color: rgba(0, 0, 0, 0.3);

  color: var(--white);

  line-height: 1;

  opacity: 0.8;

  border-radius: 100%;
}

.prSlider .swiper-button-next:after,
.prSlider .swiper-button-prev:after {
  font-size: 11px;

  font-weight: 700;
}

.prSlider .swiper-button-prev {
  left: 10px;
}

.prSlider .swiper-button-next {
  right: 10px;
}

.prSlider .swiper-button-next:hover,
.prSlider .swiper-button-prev:hover {
  /* opacity: 1; */

  background-color: var(--sec);
}

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

  display: block;
}

.prThumbsSlider .swiper-slide {
  border: 1px solid #dbe5f0;

  border-radius: 5px;

  overflow: hidden;
}

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

.nav-tabs.nav-style-2 .nav-link {
  border: 0;

  border-bottom: 1px solid transparent;

  font-weight: 500;

  padding-inline: 14px;

  color: var(--para-color);

  background-color: transparent;

  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
}

.nav-tabs.nav-style-2 .nav-link svg {
  width: 20px;

  height: 20px;
}

.nav-tabs.nav-style-2 .nav-link.active {
  border-bottom: 2px solid var(--pri);

  color: var(--pri);
}

.youtube-player .youtube-thumbnail {
  position: relative;

  overflow: hidden;

  max-width: 100%;

  background: transparent;

  border-radius: 25px;

  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px;
}

.youtube-player img,
.youtube-player iframe {
  aspect-ratio: 16 / 9 !important;

  object-fit: cover;

  object-position: center;

  width: 100%;

  display: block;

  transform: scale(1.01);
}

.youtube-player .play {
  width: 70px;

  height: 70px;

  position: absolute;

  top: 50%;

  left: 50%;

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

  transition: 0.2s ease-in-out;

  background: transparent var(--bs-youtube-bg) center/1em auto no-repeat;

  background: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%3E%3Cg%20stroke-width%3D%220%22%2F%3E%3Cg%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20fill%3D%22red%22%20d%3D%22M14.712%204.633a1.75%201.75%200%200%200-1.234-1.234C12.382%203.11%208%203.11%208%203.11s-4.382%200-5.478.289c-.6.161-1.072.634-1.234%201.234C1%205.728%201%208%201%208s0%202.283.288%203.367c.162.6.635%201.073%201.234%201.234C3.618%2012.89%208%2012.89%208%2012.89s4.382%200%205.478-.289a1.75%201.75%200%200%200%201.234-1.234C15%2010.272%2015%208%2015%208s0-2.272-.288-3.367%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22m6.593%2010.11%203.644-2.098-3.644-2.11z%22%2F%3E%3C%2Fsvg%3E");

  /* background: rebeccapurple; */
}

.youtube-player:hover .play {
  animation: none;

  transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 35px rgba(232, 76, 61, 0);
  }
}

.youtube-player .tt {
  font-size: 16px;

  margin-top: 10px;

  color: var(--text-color);

  text-align: center;

  font-family: var(--font);

  font-weight: 500;
}

.youtube-player img {
  width: 100%;
}

#catalogueListModal .bx {
  display: flex;

  align-items: center;

  gap: 4px;

  padding: 5px 10px;

  background-color: var(--off-white);

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;
}

#catalogueListModal .bx svg {
  height: 20px;

  width: 20px;

  color: var(--pri);
}

#catalogueListModal .bx .download svg {
  color: var(--para-color);
}

#catalogueListModal .bx .tt {
  color: var(--black);

  font-size: 14px;

  font-weight: 500;
}

#catalogueListModal .modal-header .btn-close {
  position: absolute;

  top: 10%;

  right: 3%;
}

.text-off {
  color: #ffffffbf;
}



.who-we .img-bx {
  position: relative;

  border-radius: 12px;

  overflow: hidden;
}

.who-we .img-bx:hover img {
  transform: scale(1.1);
}

.bg-black {
  background-color: var(--black);
}

.ceo .img-bx img {
  height: 100%;

  width: 100%;

  object-fit: cover;

  aspect-ratio: 1/1;

  border-radius: 12px;
}

.ceo .bx .tt {
  font-size: 20px;

  color: var(--text-color);

  font-weight: 600;

  margin-top: 10px;
}

.ceo .bx .img-bx {
  position: relative;
}

.ceo .bx span {
  font-size: 15px;
}

.quality-sec .bx {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quality-sec .bx .img-bx {
  overflow: hidden;
  padding: 0 50px;
}

.quality-sec .bx .img-bx img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 12px;
}

.quality-sec .box {
  max-width: 1100px;
  margin: 0 auto;
}

.quality-sec .bx .content-bx {
  padding: 40px 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quality-sec .bx .content-bx .num {
  color: var(--pri);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 18px;
  margin-bottom: 12px;
}

.quality-sec .bx .content-bx .tt {
  font-size: 20px;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 5px;
  padding-top: 10px;
  border-top: 1px solid #4422bd4d;
  position: relative;
}

.quality-sec .bx .content-bx .tt::before {
  content: "";
  position: absolute;
  background-color: var(--pri);
  height: 3px;
  width: 60%;
  top: -2px;
  left: 0;
}

.quality-sec .bx .content-bx p {
  margin-bottom: 0;
}

.quality-sec .bx .content-bx span {
  margin-top: 5px;
  font-size: 12px;
  color: var(--pri);
}

.quality-sec .container .box .row .col:nth-child(even) .bx {
  flex-direction: row-reverse;
}

/* .quality-sec .container .box .row .col:first-child .bx .img-bx,
.quality-sec .container .box .row .col:first-child .bx .content-bx {
    padding-top: 0;
} */

.quality-sec .container .box .row .col:last-child .bx .img-bx,
.quality-sec .container .box .row .col:last-child .bx .content-bx {
  padding-bottom: 0;
}

.quality-sec .container .box .row .col:nth-child(even) .bx .content-bx {
  align-items: end;
}

.quality-sec .container .box .row .col:nth-child(even) .bx .content-bx p {
  text-align: end;
}

.quality-sec .container .box .row .col:nth-child(even) .bx .content-bx .tt::before {
  right: 0;
  left: unset;
}

.quality-sec .box {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Bootstrap gutter remove */
.quality-sec .box>.row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

/* Exact middle vertical line */
.quality-sec .box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--pri);
  transform: translateX(-50%);
  z-index: 0;
}

.quality-sec .col {
  position: relative;
}

.quality-sec .col::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background-color: var(--pri);
  border: 5px solid var(--pri);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.quality-sec .bx {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  min-height: 300px;
}

/* Odd row image: left side */
.quality-sec .bx .img-bx {
  grid-column: 1;
  grid-row: 1;
  padding: 35px 55px 35px 0;
  overflow: hidden;
}

.quality-sec .bx .img-bx img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}

/* Odd row content: right side */
.quality-sec .bx .content-bx {
  grid-column: 2;
  grid-row: 1;
  padding: 35px 0 35px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Even row image: right side */
.quality-sec .col:nth-child(even) .bx .img-bx {
  grid-column: 2;
  padding: 35px 0 35px 55px;
}

/* Even row content: left side */
.quality-sec .col:nth-child(even) .bx .content-bx {
  grid-column: 1;
  padding: 35px 55px 35px 0;
  align-items: flex-end;
  text-align: right;
}

/* Number */
.quality-sec .bx .content-bx .num {
  width: 45px;
  height: 45px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pri);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--white);
}

/* Title */
.quality-sec .bx .content-bx .tt {
  position: relative;
  width: 100%;
  padding-top: 12px;
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 500;
  border-top: 1px solid rgba(68, 34, 189, 0.3);
}

.quality-sec .bx .content-bx .tt::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 60%;
  height: 3px;
  background-color: var(--pri);
}

/* Even row title line from right */
.quality-sec .col:nth-child(even) .bx .content-bx .tt::before {
  right: 0;
  left: auto;
}

.quality-sec .bx .content-bx p {
  margin: 0;
}

.quality-sec .bx .content-bx span {
  display: block;
  margin-top: 7px;
  color: var(--pri);
  font-size: 12px;
  font-weight: 500;
}

/* Remove extra top and bottom space */
.quality-sec .col:first-child .bx .img-bx,
.quality-sec .col:first-child .bx .content-bx {
  padding-top: 0;
}

.quality-sec .col:last-child .bx .img-bx,
.quality-sec .col:last-child .bx .content-bx {
  padding-bottom: 0;
}

.breadcrum2-wrap {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  display: block;
}

.breadcrum2-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(5, 5, 25, 0.55) 0%,
      rgba(5, 5, 25, 0.82) 60%,
      rgba(5, 5, 25, 0.92) 100%);
  z-index: 1;
}

.breadcrum2-wrap::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: var(--pri);
  filter: blur(120px);
  opacity: 0.35;
  z-index: 1;
  border-radius: 50%;
}

.breadcrum2-imgbx {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: center;
}

.breadcrum2-imgbx img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.05);
}

.breadcrum2-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrum2-title {
  font-size: 36px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  animation: breadcrum2FadeInUp 0.6s ease;
  font-family: var(--font2);
  margin-bottom: 5px;
}

.breadcrum2-list {
  list-style: none;
  padding: 6px 12px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  animation: breadcrum2FadeInUp 0.8s ease 0.1s both;
}

.breadcrum2-item {
  font-size: 14px;
  color: #ffffffad;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrum2-item:not(:last-child)::after {
  content: "/";
  font-weight: 400;
  font-size: 11px;
  color: var(--white);
}

.breadcrum2-link {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.breadcrum2-link:hover {
  color: var(--sec);
  opacity: 0.85;
}

.breadcrum2-link svg {
  height: 19px;
  width: 19px;
  margin-bottom: 2px;
}

@keyframes breadcrum2FadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breadcrum2GrowLine {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 56px;
    opacity: 1;
  }
}

.breadcrum-wrap {
  position: relative;

  padding: 70px 0 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pri);
  border-bottom: 1px solid rgba(158, 158, 158, 0.24);
  isolation: isolate;
}

.breadcrum-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(1, 1, 1, 0.98) 0%,
      rgba(1, 1, 1, 0.88) 42%,
      rgba(1, 1, 1, 0.42) 100%),
    linear-gradient(0deg, rgba(1, 1, 1, 0.72), transparent 65%);
  z-index: 1;
}

.breadcrum-wrap::before {
  content: "";
  position: absolute;
  top: auto;
  right: 8%;
  bottom: -180px;
  width: 460px;
  height: 460px;
  background: var(--sec);
  filter: blur(150px);
  opacity: 0.22;
  border-radius: 50%;
  z-index: 2;
}

.breadcrum-imgbx {
  position: absolute;
  inset: 0;
}

.breadcrum-imgbx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.03);
  filter: grayscale(1) contrast(1.08) brightness(0.72);
}

.breadcrum-container {
  position: relative;
  z-index: 3;
  text-align: left;
}

.breadcrum-content {
  position: relative;
  width: min(680px, 100%);
  padding-left: 28px;
}

.breadcrum-content::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 3px;
  border-radius: 10px;
  background: linear-gradient(to bottom, var(--sec), var(--third));
}

.breadcrum-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--sec);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  animation: breadcrumFadeInUp 0.5s ease both;
}

.breadcrum-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.breadcrum-title {
  margin: 0 0 5px;
font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--white);
  font-family: var(--font2);
  text-shadow: none;
  animation: breadcrumFadeInUp 0.6s ease both;
}

.breadcrum-text {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
  animation: breadcrumFadeInUp 0.7s ease 0.08s both;
}

.breadcrum-list {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  list-style: none;
  padding: 9px 15px;
  gap: 10px;
  justify-content: flex-start;
  background: rgba(158, 158, 158, 0.1);
  border-color: rgba(158, 158, 158, 0.3);
  border-style: solid;
  border-width: 1px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: breadcrumFadeInUp 0.8s ease 0.12s both;
}

.breadcrum-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sec);
  font-size: 13px;
}

.breadcrum-item:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--sec);
  border-right: 1px solid var(--sec);
  transform: rotate(45deg);
}

.breadcrum-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  transition: color 0.3s ease;
}

.breadcrum-link svg {
  width: 18px;
  height: 18px;
}

.breadcrum-link:hover {
  color: var(--sec);
  opacity: 1;
}

@keyframes breadcrumFadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partnership .img-bx:hover img {
  transform: scale(1.1);
}

.comp-bx {
  display: flex;
  gap: 10px;
}

.comp-bx .icon-bx svg {
  height: 30px;
  width: 30px;
  color: var(--pri);
}

.comp-bx .tt {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 5px;
}

.comp-bx p {
  margin: 0;
  line-height: 1.4;
  font-size: 13px;
}

.indus-comp {
  padding: 20px 25px;
  border-radius: 6px;
  margin-bottom: 25px;
  background-color: var(--white);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.15);
}

.tags {
  display: flex;
  align-items: center;
  gap: 0 5px;
  margin-top: 10px;
  font-size: 14px;
  color: var(--pri);
  font-weight: 400;
  flex-wrap: wrap;
}

.tags span {
  list-style: 1;
  color: var(--white);
}

.region-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.code-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  background: var(--pri);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.who-we-bx.who-we-bx2 {
  flex-direction: column;
}

.who-we-bx.who-we-bx2 .tt {
  margin-bottom: 5px;
  font-size: 18px;
}

.who-we-bx.who-we-bx2 .tags span {
  color: var(--pri);
}

.doc-img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.doc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 
.exp-img {
  max-height: 400px;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  margin-top: 30px;
  position: relative;
   
}

.exp-img::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #2125298c;
 
}

.exp-img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
   
}

.exp-img .head-sec{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,  -50%);
}

.exp-img .head-sec .tt{
  -webkit-text-stroke: 2px var(--white);   
    color: var(--pri);  
} */

.content-table td:first-child {
  font-weight: 500;
  color: #111827;
}

.tailored-sec .box .icon-bx {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tailored-sec .box .icon-bx svg {
  height: 30px;
  width: 30px;
  color: var(--white);
}




.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, .05); */
  border: 1px solid #eee;
}

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

.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: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-line-clamp: 1;
}

.blog-bx.blog-card .read-mr {
  font-size: 13px;
  width: auto;
  margin-top: 5px;
  color: rgba(0, 0, 0, 0.75);
  justify-content: start;
  gap: 10px;
}



/* -------------------Alok CSS----------------------- */
.cta-eye-animation {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 6%;
  height: 10%;
}

.cta-eye-animation-whole-wrap {
  width: 100%;
  max-width: 120px;
  position: absolute;
  top: 31%;
  left: 35%;
}

.cta-eye-animation {
  top: 26%;
  left: 35%;
}

.cta-eye-animation.right {
  left: 53%;
}

.cta-eye {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: var(--white);
  box-shadow: 0 0 12px color-mix(in srgb, var(--white) 45%, transparent);
  transform-origin: center;
  animation: clean-eye-blink 3.5s ease-in-out infinite;
}

@keyframes clean-eye-blink {

  0%,
  42%,
  58%,
  100% {
    transform: scaleY(1);
  }

  48%,
  52% {
    transform: scaleY(0.08);
  }
}

.brandSlider .img-bx {
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
}

.brandSlider .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.abt-bx .img-bx {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.abt-bx .img-bx::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -85%;
  z-index: 2;
  width: 42%;
  height: 160%;
  background: linear-gradient(100deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 35%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0.08) 65%,
      transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
}

.abt-bx .img-bx:hover::before {
  animation: abtImageShine 0.9s ease-in-out;
}

.abt-bx .img-bx::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      var(--pri) 0%,
      rgba(1, 1, 1, 0.16) 48%,
      transparent 72%);
  pointer-events: none;
}

.abt-bx .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.abt-bx .img-overlay-content {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

@keyframes abtImageShine {
  from {
    left: -85%;
  }

  to {
    left: 145%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .abt-bx .img-bx:hover::before {
    animation: none;
  }
}

.abt-bx .img-overlay-content small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.85;
}

.abt-bx .img-overlay-content strong {
  font-size: 18px;
  font-weight: 600;
}

.productSlider .product-pagination {
  position: relative;
  bottom: auto;
  margin-top: 20px;
}

.productSlider .product-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: var(--pri);
  opacity: 0.45;
}

.productSlider .product-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 10px;
  background-color: var(--pri);
  opacity: 1;
}

.productSlider .pro-bx {
  position: relative;
}

.productSlider .pro-bx .pro-badge {
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 2;
  width: auto;
  padding: 4px 11px;
  border-radius: 6px;
  background-color: var(--white);
  color: var(--text-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  margin: 0;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
}

.abt-bx {
  background-color: var(--white);
  padding: 20px 25px;
  border-radius: 12px;
}

.bg-greadient {
  background:
    radial-gradient(ellipse at top right,
      rgba(158, 158, 158, 0.35) 0%,
      transparent 35%),
    radial-gradient(ellipse at bottom left,
      rgba(74, 74, 74, 0.65),
      transparent 45%),
    linear-gradient(120deg, var(--pri), var(--pri) 50%, var(--pri));
}

.pattern1 {
  background-image:
    url("../images/shape/service-bg.png"),
    radial-gradient(ellipse at top right,
      rgba(158, 158, 158, 0.35) 0%,
      transparent 35%),
    radial-gradient(ellipse at bottom left,
      rgba(74, 74, 74, 0.65),
      transparent 45%);

  background-color: var(--pri);
  background-size: cover, cover, cover;
  background-position:
    center,
    top right,
    bottom left;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.abt-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.abt-list li {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  padding-left: 25px;
  position: relative;
  margin-bottom: 5px;
}

.abt-list li:last-child {
  margin-bottom: 0;
}

.abt-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--third);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}

.productSlider .pro-bx .content-bx {
  padding: 10px 15px;
  padding-bottom: 10px;
}

.productSlider .pro-bx .content-bx .tt {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 6px;
}

.productSlider .pro-bx .content-bx ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.productSlider .pro-bx .content-bx ul li {
  font-size: 13px;
  border-radius: 3px;
  font-weight: 500;
  padding: 4px 6px;
  line-height: 1;
  color: var(--para-color);
  background-color: var(--bg);
}

.pro-bx .content-bx p {
  line-height: 1.3;
  margin-top: 8px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.app-bx .icon-bx {
  height: 40px;
  width: 40px;
  border-radius: 7px;
  background-color: #ffffff30;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.app-bx .tt {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.app-bx p {
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 0;
  font-weight: 400;
}

.app-bx {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.why-us-bx .icon-bx {
  height: 45px;
  width: 45px;
  border-radius: 6px;
  background-color: var(--pri);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.why-us-bx .icon-bx svg {
  height: 25px;
  width: 25px;
  color: var(--white);
}

.why-us-bx .tt {
  font-size: 22px;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 3px;
}

.why-us-bx p {
  line-height: 1.4;
  font-size: 16px;
  margin: 0;
}

.why-us-bx {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.why-us-bx.middle {
  padding-bottom: 0;
  border-bottom: none;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
  /* background: var(--graident); */
  height: 100%;
  transition: all 0.2s ease-in-out;
}

.why-us-bx.middle:hover {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.why-us-bx.middle .img-bx {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 10px;
}

.why-us-bx.middle .img-bx img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.left-testi-bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  padding: 15px 15px;
  justify-content: space-between;
}

.left-testi-bx .tt {
  font-size: 22px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 40px;
  color: var(--white);
  padding-left: 20px;
}

.left-testi-bx .img-bx {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.testi-slider-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 5;
  display: none;
}

.testi-slider-nav button {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  color: var(--text-color);
  background-color: transparent;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.testi-slider-nav button svg {
  width: 24px;
  height: 24px;
}

.testi-slider-nav button:hover {
  color: var(--white);
  background-color: var(--text-color);
}

.testi-slider-nav button.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.testi-slider .testi-bx {
  padding: 15px;
  background-color: var(--bg);
  width: 100%;
  position: relative;
  border-radius: 12px;
}

.testi-slider .testi-bx .desp {
  font-size: 15px;
  font-weight: 500;
  color: var(--pri);
  margin-bottom: 10px;
}

.star-rating {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.star-rating svg {
  height: 16px;
  width: 16px;
}

.testi-slider .testi-bx .profile-bx {
  display: flex;
  gap: 15px;
  align-items: center;
}

.testi-slider .testi-bx .profile-bx .avatar {
  height: 44px;
  width: 44px;
  background-color: var(--pri);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  border-radius: 50%;
}

.testi-slider .testi-bx .profile-bx .name {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 3px;
  line-height: 1;
}

.testi-slider .testi-bx .profile-bx .deg {
  font-size: 16px;
  color: var(--para-color);
}

.mat-bx {
  background-color: var(--bg);
  padding: 15px 20px;
  border-radius: 20px;
  border-left: 5px solid var(--pri);
  margin-bottom: 20px;
}

.mat-bx .tt {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-color);
}

.mat-bx p {
  margin-bottom: 0;
}

.country-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 7px 10px;
  flex-wrap: wrap;
}

.country-list li {
  background-color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 100px;
}

.map-img-bx {
  width: 100%;
  height: 100%;
}

.map-img-bx {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blog-bx {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.blog-bx .img-bx {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  user-select: none;
}



.blog-bx .img-bx img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all .2s ease-in-out;
}

.blog-bx:hover img {
  transform: scale(1.1);
}

.blog-bx .cont-bx {
  padding: 20px 20px;

  background: var(--off-white);
}

.bg-sec .blog-bx .cont-bx {
  background-color: var(--white);
}

.blog-bx .read-mr {
  position: relative;
  display: flex;
  color: rgb(0, 0, 0, .75);
  font-weight: 500;
  justify-content: space-between;
}

.blog-bx .read-mr:hover {
  color: var(--pri);
}



.blog-bx .date {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
  color: rgba(0, 0, 0, 0.6)
}

.blog-bx .tt {
  color: var(--pri);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--pri);
}

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

.viss-miss {
  background: var(--pri);
  color: var(--white);
}

.vm-panel {
  overflow: hidden;
  border: 1px solid #ffffff26;
  border-radius: 20px;
}

.vm-visual {
  position: relative;
  height: 100%;

  margin: 0;
  overflow: hidden;
}

.vm-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #010101d9, transparent 55%);
}

.vm-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: 0.6s ease;
}

.vm-panel:hover .vm-visual img {
  transform: scale(1.04);
  filter: grayscale(0.35);
}

.vm-visual figcaption {
  position: absolute;
  z-index: 1;
  left: 28px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
}

.vm-visual figcaption strong {
  font-size: 18px;
}

.vm-visual figcaption span {
  color: #ffffff99;
  font-size: 13px;
}

.vm-statement {
  padding: 26px;
  border-bottom: 1px solid #ffffff1f;
  transition: background 0.3s ease;
}

.vm-statement:last-child {
  border: 0;
}

.vm-label {
  display: block;
  color: var(--para-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vm-statement p {
  margin: 0;
  color: var(--text-color);
  line-height: 1.7;
}

.vm-statement .tt {
  font-size: 24px;
  color: var(--pri);
  font-weight: 600;
}

.why-us-bx2 {
  border: 1px solid var(--border-color);

  border-radius: 15px;

  padding: 23px;

  background-color: var(--white);

  height: 100%;

  transition: 0.3s ease-in-out;
}

.why-us-bx2:hover {
  background-color: white;
  border-color: transparent;
}

.why-us-bx2 .icon-bx {
  background-color: var(--pri);

  width: 40px;

  height: 40px;

  border-radius: 8px;

  align-content: center;

  text-align: center;

  color: white;

  margin-bottom: 10px;
}

.why-us-bx2 .icon-bx svg {
  width: 20px;

  height: 20px;
}

.why-us-bx2 .tt {
  font-size: 18px;

  font-weight: 500;

  margin-bottom: 5px;

  color: var(--pri);
}

.why-us-bx2 p {
  margin-bottom: 0;

  font-size: 15px;

  line-height: 1.5;
}

.home .hero-section {
  background: #10110f;
}

.home .hero-section::after {
  background:
    linear-gradient(90deg,
      rgba(8, 10, 8, 0.9) 0%,
      rgba(8, 10, 8, 0.68) 48%,
      rgba(8, 10, 8, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 10, 8, 0.56) 0%, transparent 45%);
}

.home .hero-bg-video {
  object-position: center;
  filter: saturate(0.82) contrast(1.08);
}

.home .hero-bx .row {
  justify-content: flex-start;
}

.home .hero-section .head-sec {
  margin-bottom: 30px;
}

.home .hero-section .tt {
  margin-top: 10px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(21px, 3.3vw, 40px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

/* .home .hero-section .tt span{
  color:#0ed297;
} */

.home .hero-section .head-sec p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.4;
}

.hero-bx {
  max-width: 680px;
}

@media (prefers-reduced-motion: reduce) {
  .home .hero-bg-video {
    display: none;
  }
}

.footer-top .main-btn2 {
  border: 1px solid var(--white);
  background-color: transparent;
}

.footer-top .main-btn2:hover {
  background-color: var(--white);
}

.formate-bx label {
  columns: var(--para-color);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.formate-bx .tt {
  font-size: 20px;
  font-weight: 600;
  color: var(--pri);
}

.formate-bx ul.formate-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
  gap: 2px;
}

.formate-bx p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.formate-bx ul li {
  position: relative;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.formate-bx ul li svg {
  height: 17px;
  width: 17px;
}

.formate-bx .formate-btn {
  color: var(--pri);
  border: 1px solid var(--pri);
  background-color: transparent;
  padding: 5px 12px;
  display: inline-flex;
  font-size: 14px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

.formate-bx .formate-btn:hover {
  background-color: var(--pri);
  color: var(--white);
}

.formate-bx {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  transition: all 0.2s ease-in-out;
}

.formate-bx:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
}

.formate-bx.active {
  background: var(--gridnt2);
  transform: translateY(-10px);
}

.formate-bx.active label {
  color: var(--white);
}

.formate-bx.active .tt {
  color: var(--white);
}

.formate-bx.active p {
  color: rgba(255, 255, 255, 0.75);
}

.formate-bx.active ul li {
  color: var(--white);
}

.formate-bx.active .formate-btn {
  color: var(--white);
  border-color: var(--white);
}

.formate-bx.active .formate-btn:hover {
  color: var(--pri);
  background-color: var(--white);
}

.formate-bx .img-bx {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
  margin-top: 10px;
}

.formate-bx .img-bx img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.form-main-bx {
  max-width: 1100px;
  margin: 0 auto;
}

.oem-overlays {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: var(--white);
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.08);
}

.oem-overlays .counter-bx {
  text-align: start;
}

.oem-overlays .counter-bx .tt {
  font-size: 30px;
  line-height: 1;
}

.oem-overlays .counter-bx p {
  line-height: 1;
}

.content-sec2 table {
  margin: 0;
}

.r-main-bx {
  position: relative;
  padding-left: 30px;
  /* margin-left: 10px; */
}

.r-main-bx::before {
  height: 100%;
  width: 3px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--pri);
  border-radius: 5px;
}

.r-main-bx .bx {
  position: relative;
  margin-bottom: 20px;
}

.r-main-bx .bx .icon-bx {
  background-color: var(--pri);
  padding: 6px;
  border: 1.5px solid var(--pri);
  border-radius: 50%;
  width: max-content;
  height: max-content;
  position: absolute;
  top: 0px;
  left: -47px;
}

.r-main-bx .bx .icon-bx svg {
  height: 24px;
  width: 24px;
  color: var(--white);
}

.r-main-bx .bx .tt {
  font-size: 17px;
  color: var(--text-color);
  font-weight: 500;
}

.ttl {
  border-radius: 0px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--pri);
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.stage-bx {
  background-color: var(--white);
  padding: 20px;
  border-left: 5px solid var(--pri);
  border-right: 5px solid var(--pri);
  border-radius: 16px;
}

.expo-overlays {
  box-shadow: none;
  padding: 0;
  margin-top: 10px;
  left: 0;
  bottom: 0;
}

.expo-overlays .counter-bx {
  display: flex;
  gap: 10px;
}

.expo-overlays .counter-bx .tt {
  font-size: 38px;
}

.expo-overlays .counter-bx p {
  color: var(--text-color);
  line-height: 1.1;
  font-size: 18px;
  font-weight: 500;
}

.content-sec a {
  display: inline;
}

.table-bx {
  background-color: var(--white);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}

.table-bx:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.table-bx table {
  border-radius: 6px;
}

.timeline-bx .num {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
  line-height: 1;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.1);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 5px;
}

.timeline-bx {
  background: var(--off-white);
  padding: 15px;
  border-top: 4px solid var(--pri);
  border-radius: 8px;
  transform-style: preserve-3d;
  transition:
    transform 1s ease-in-out,
    box-shadow 0.4s ease,
    background-color 0.4s ease;
  height: 100%;
}

.timeline-bx:hover {
  background-color: var(--white);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  transform: rotateY(360deg);
}


.timeline-bx .tt {
  color: var(--pri);
  font-size: 20px;
  font-weight: 500;
}

.timeline-bx p {
  line-height: 1.4;
  margin: 0;
}


.cont-tt {
  font-size: 22px;
  color: var(--pri);
  font-weight: 500;
  margin-bottom: 10px;
}

.why-us-bx2 a {
  color: var(--para-color);
  font-size: 15px;
  transition: all.2s cubic-bezier(0.23, 1, 0.320, 1);
}

.why-us-bx2 a:hover {
  color: var(--pri);
}

.contact-bx2 {

  border-top: 4px solid var(--pri);
}

.contact-bx2:hover {
  border-top: 4px solid var(--pri);
  background-color: var(--white) !important;

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


.review-page .testi-slider .testi-bx .desp {
  font-size: 16px;
  margin-bottom: 10px;
}

.review-page .testi-slider .testi-bx .profile-bx .name {
  font-size: 16px;
}

.review-page .testi-slider .testi-bx {
  padding: 20px;
}


.blog-bx.blog-card .tt a {
  color: var(--pri);
}

.tds-offcanvas {
  width: min(900px, 100vw) !important;
}

.tds-offcanvas .offcanvas-header {
  gap: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tds-offcanvas .offcanvas-title {
  margin-right: auto;
  font-size: 20px;
}

.tds-open-pdf {
  color: var(--pri);
  font-weight: 600;
}

.tds-pdf-frame {
  display: block;
  width: 100%;
  height: calc(100vh - 66px);
  border: 0;
}

.tds-pdf-error {
  padding: 30px;
  text-align: center;
}

.ls-thankyou-modal .tt {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 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);
}

.mat-bx2 ul {
  list-style: none;
  margin: 0;
  padding: 24px 28px;
  background: #f3f3f3;
  border-left: 6px solid var(--pri);
  border-radius: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 35px;
  row-gap: 6px;
}

/* Heading positions */
.mat-bx2 ul li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.mat-bx2 ul li:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}

.mat-bx2 ul li:nth-child(5) {
  grid-column: 3;
  grid-row: 1;
}

.mat-bx2 ul li:nth-child(7) {
  grid-column: 4;
  grid-row: 1;
}

/* Description positions */
.mat-bx2 ul li:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.mat-bx2 ul li:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.mat-bx2 ul li:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}

.mat-bx2 ul li:nth-child(8) {
  grid-column: 4;
  grid-row: 2;
}

.mat-bx2 ul li {
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 1.4;
}

.mat-bx2 ul li strong {
  display: block;
  color: var(--pri);
  font-size: 27px;
  line-height: 1.2;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 991px) {
  .mat-bx2 ul {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 8px;
  }

  .mat-bx2 ul li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .mat-bx2 ul li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .mat-bx2 ul li:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .mat-bx2 ul li:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .mat-bx2 ul li:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
    margin-top: 18px;
  }

  .mat-bx2 ul li:nth-child(6) {
    grid-column: 1;
    grid-row: 4;
  }

  .mat-bx2 ul li:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
    margin-top: 18px;
  }

  .mat-bx2 ul li:nth-child(8) {
    grid-column: 2;
    grid-row: 4;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .mat-bx2 ul {
    grid-template-columns: 1fr;
    padding: 22px;
    border-radius: 22px;
  }

  .mat-bx2 ul li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .mat-bx2 ul li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .mat-bx2 ul li:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    margin-top: 16px;
  }

  .mat-bx2 ul li:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }

  .mat-bx2 ul li:nth-child(5) {
    grid-column: 1;
    grid-row: 5;
    margin-top: 16px;
  }

  .mat-bx2 ul li:nth-child(6) {
    grid-column: 1;
    grid-row: 6;
  }

  .mat-bx2 ul li:nth-child(7) {
    grid-column: 1;
    grid-row: 7;
    margin-top: 16px;
  }

  .mat-bx2 ul li:nth-child(8) {
    grid-column: 1;
    grid-row: 8;
  }

  .mat-bx2 ul li strong {
    font-size: 23px;
  }
}

.testi-slider .swiper-wrapper {
  align-items: stretch;
}

.testi-slider .swiper-slide {
  height: auto;
}

.testi-slider .swiper-slide .testi-bx {
  height: 100%;
  display: flex;

  justify-content: space-around;
  flex-direction: column;
}

.seo-content-bx {
  padding: 30px;
  background-color: var(--off-white);
  border-radius: 20px;
  position: relative;
}

.seo-content-bx .main-title {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  color: var(--text-color);
  padding-right: 50px;
}

.seo-content-bx .main-title span {
  color: var(--pri);
}

.seo-content-bx .read-toggle {
  position: absolute;
  right: 20px;
  top: 35px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  color: var(--pri);
  margin: 0;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}