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

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

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

  --pri: #002d52;

  --sec: #bd1156;

  --text-color: #161629;

  --text-muted: #8d9eb5;

  --text-light: #8c8c8c;

  --para-color: #646464;

  --border-color: #e3e3e3;

  --white: #fff;

  --off-white: #f5f7f8;

  --black: #212529;

  --bs-primary: #0082ff;

  --bs-success: #03b562;

  --bs-info: #0fbcf9;

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

  --bs-danger: #dc3545;

  --bs-primary-rgb: 0, 130, 255;

  --bs-success-rgb: 3, 181, 98;

  --bs-info-rgb: 15, 188, 249;

  --bs-warning-rgb: 255, 169, 9;

  --bs-danger-rgb: 219, 33, 35;

  --bg: #f5f3fb;
}

body {
  background: var(--white);

  font-family: var(--font2);

  color: var(--para-color);

  font-size: 16px;

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

  font-weight: 400;

  margin-bottom: 10px;

  font-family: var(--font2);

  line-height: 1.5;
}

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

  color: var(--sec);

  margin-bottom: 3px;

  font-family: var(--font2);

  position: relative;
}

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

  width: 10px;

  height: 10px;

  aspect-ratio: 1 / 1;

  display: inline-block;

  margin-right: 8px;

  background: url("data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%228%22%20viewBox%3D%220%200%208%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8%205.333V8H0V5.333h2.667V2.667H0V0h2.667v2.667h2.666V0H8z%22%20fill%3D%22%23bd1156%22%2F%3E%3C%2Fsvg%3E") no-repeat;

  background-size: contain;

  background-position: center;
}

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

  color: var(--pri);

  font-weight: 600;

  font-size: 35px;

  line-height: 1.1;

  margin-bottom: 5px;

  position: relative;
}

.head-sec .tt span {
  color: var(--sec);
}

.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: url("data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%228%22%20viewBox%3D%220%200%208%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8%205.333V8H0V5.333h2.667V2.667H0V0h2.667v2.667h2.666V0H8z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") no-repeat;
}

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

.badge {
  font-size: 13px;

  font-weight: 400;

  border: 1px solid;

  border-radius: 18px;

  padding: 7px 11px;
}

.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: #e8ecef !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: 18px;

  font-weight: 600;

  font-family: var(--font);

  text-transform: capitalize;

  white-space: nowrap;

  background-color: #00c966;

  outline: none;

  transition: 0.2s ease-in-out;

  line-height: 1;
}

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

  background-color: #00b95d;
}

.main-btn {
  padding: 11px 18px;

  color: var(--white);

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

  background-color: var(--pri);

  display: inline-flex;

  gap: 3px;

  align-items: center;

  justify-content: center;

  font-size: 15px;

  font-weight: 500;

  font-family: var(--font);

  white-space: nowrap;

  outline: none;

  transition: 0.2s ease-in-out;

  justify-content: center;

  border-radius: 50px;

  line-height: 1;
}

.main-btn.sm {
  padding: 10px 15px;
  font-size: 15px;
  gap: 0;
}

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

  color: var(--pri);

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

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

  background-color: var(--sec);

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

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

  border-color: var(--pri);

  color: var(--white);
}

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

  border-color: var(--pri);

  color: var(--pri);
}

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

  transition: 0.3s;

  font-size: 18px;

  color: var(--text-color);

  font-family: var(--font);

  background-color: transparent;

  border-radius: 20px;

  transition: all .2s ease-in-out;
}

.productBrochureandvideo:hover {
  background-color: #f2f2f2;
}

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

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

  padding: 8px 12px;

  color: var(--text-color);

  font-family: var(--font2);

  border-color: transparent;

  height: 42px;

  align-content: center;

  border-color: #e3e3e3;
}

.form-select {
  background-position: right 0 center;
}

.form-control::placeholder {
  opacity: 0.8;
}

textarea.form-control {
  min-height: 100px;

  resize: none;

  align-content: start;
}

.form-control:focus,
.form-select:focus {
  border-color: #e3e3e3;

  box-shadow: none;
}

input:-webkit-autofill {
  filter: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: currentColor !important;

  /* text color */

  transition: background-color 5000s ease-in-out 0s;

  caret-color: currentColor;

  color: inherit !important;

  background-color: inherit !important;
}

.logo {
  max-width: 200px;

  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;

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

.navigation ul {
  list-style: none;

  margin: 0;

  padding: 0;
}

.menu-list a {
  display: flex;

  align-items: center;

  /* justify-content: space-between; */

  gap: 3px;

  line-height: 1.4;

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

  height: 9px;

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

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

  font-weight: 600;

  color: currentColor;
}

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

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

.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: url(../images/bg/bg-effect.png);

  background-position: center;

  background-size: cover;

  background-repeat: no-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: linear-gradient(90deg,
      rgba(255, 255, 255, 0.95) 0%,

      rgba(255, 255, 255, 0.95) 100%) !important;

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

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

  align-content: center;

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

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

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

.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: 0.9em;

  color: var(--pri);

  font-weight: 400;

  transition: 0.2s;

  display: inline-flex;

  align-items: center;

  gap: 3px;

  white-space: nowrap;

  padding: 0;

  background-color: transparent;

  border: 0;

  text-transform: capitalize;
}

.read-mr.text-decoration:hover {
  text-decoration: underline;
}

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

.swiper-pagination {
  position: static;
}

.swiper-pagination-bullet {
  transition: 0.2s ease;

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

.swiper-pagination-bullet-active {
  background-color: var(--pri);

  width: 18px;

  border-radius: 4px;
}

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

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

  position: relative;

  font-family: var(--font2);

  font-size: 15px;
}

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

.contact-bx .con-bx {
  display: flex;

  align-items: center;

  margin-bottom: 13px;

  gap: 10px;
}

.contact-bx .tx-bx .tt {
  font-size: 18px;

  font-weight: 600;

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

.contact-bx .con-bx .ic-bx {
  min-width: 40px;

  width: 40px;

  height: 40px;

  border-radius: 100%;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background-color: var(--pri);

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

.contact-bx .con-bx .ic-bx svg {
  min-width: 15px;

  width: 15px;

  height: 15px;

  color: var(--white);
}

.contact-bx .con-bx a,
.contact-bx .con-bx p {
  font-family: var(--font2);

  font-weight: 400;

  font-size: 16px;

  line-height: 24px;

  color: var(--text-color);

  margin-bottom: 0px;
}

.contact-bx .con-bx a {
  font-weight: 600;
}

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

.map-bx {
  width: 100%;

  display: block;
}

.content-sec table {
  margin-bottom: 15px;

  width: 100%;

  text-align: center;
}

.content-sec table strong,
.content-sec table b {
  font-weight: 600;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: #d8d8d8;

  border-style: solid;

  border-width: 1px;

  padding: 5px 10px;

  font-size: 18px;
}

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 a {
  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: 16px;

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

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

  color: var(--text-color);

  text-align: left;

  margin-bottom: 7px;

  line-height: 1.3;
}

.cmTitle {
  color: var(--pri);

  font-size: 18px;

  margin-bottom: 5px;
}

.content-sec h2,
.content-sec h3,
.content-sec h4,
.content-sec h5,
.content-sec h6,
.content-sec .tt {
  font-size: 22px;
}

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

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

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

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

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

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

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

  font-weight: 400;

  margin-bottom: 20px;
}

.ft-bx ul {
  padding: 0;

  list-style: none;

  margin: 0;
}

.ft-bx ul li a {
  font-size: 16px;

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

.contact-bx.ft-bx ul.social li a {
  border: 1px solid rgba(0, 0, 0, 0.4);

  color: var(--sec);
}

.contact-bx.ft-bx ul.social li.facebook a {
  background: #3c5b9b;

  color: white;

  border: 0;
}

.contact-bx.ft-bx ul.social li.twitter a {
  background: var(--liner);

  background-color: #000;

  color: white;

  border: 0;
}

.contact-bx.ft-bx ul.social li.linkedin a {
  background: #027ba5;

  color: white;

  border: 0;
}

.contact-bx.ft-bx ul.social li.youtube a {
  background: #f70000;

  color: white;

  border: 0;
}

.contact-bx.ft-bx ul.social li.instagram a {
  background: radial-gradient(circle at 30% 107%,

      #fdf497 0%,

      #fdf497 5%,

      #fd5949 45%,

      #d6249f 60%,

      #285aeb 90%);

  color: white;

  border: 0;
}

.copyright {
  padding-top: 15px;

  margin-top: 30px;

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

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

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

  margin-bottom: 0;

  font-weight: 400;

  font-size: 15px;
}

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

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

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

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

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

  overflow: hidden;

  position: relative;

  border-radius: 10px;
}

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

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

  margin-top: 15px;

  margin-bottom: 0;

  font-weight: 600;

  font-family: var(--font2);

  line-height: 1.3;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.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 {
  box-shadow: rgb(68 34 189 / 10%) 0px 1px 42px;
}

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

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

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

  font-size: 18px;

  letter-spacing: 0.5px;

  background: linear-gradient(to top,

      rgba(2, 20, 4, 0.75) 10%,

      rgba(0, 0, 0, 0) 70%);

  text-shadow: 1px 1px 5px #000;

  z-index: 2;
}

.contactBx-container {
  background-color: var(--off-white);

  padding: 30px;

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

  height: 100%;

  border-radius: 15px;
}

.contact-bx .head-sec {
  margin-bottom: 20px;
}

.contact-bx .head-sec .tt {
  font-size: 25px;
}

.lsm-filter-design-wrap .filter-accordion-item {
  border: 1px solid #e6ebf1;

  border-radius: 14px;

  overflow: hidden;

  background: #ffffff;

  margin-bottom: 12px;

  transition: all 0.3s ease;

  padding: 0;
}

.lsm-filter-design-wrap .filter-accordion-item:last-child {
  margin-bottom: 0;
}

.lsm-filter-design-wrap .category-head {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  padding: 8px 12px;

  background: #f9f9f9;
}

.lsm-filter-design-wrap .parent-select-area {
  display: flex;

  align-items: center;

  gap: 10px;

  flex: 1;
}

.lsm-filter-design-wrap .parent-checkbox,
.lsm-filter-design-wrap .child-checkbox,
.form-check-input:checked {
  width: 17px;

  height: 17px;

  cursor: pointer;

  accent-color: var(--pri);

  border-color: #e3e3e3;

  box-shadow: none !important;
}

.form-check-input:checked,
.form-check-input[type="checkbox"]:indeterminate {
  background-color: var(--pri);

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

.lsm-filter-design-wrap .parent-title {
  font-size: 18px;

  font-weight: 600;

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

  font-weight: 600;

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

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

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

  background-position: left;

  background-repeat: no-repeat;

  padding: 0;
}

.head-section-img img {
  width: 100%;

  height: 100%;

  display: block;

  aspect-ratio: 10 / 7;

  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

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

  border-radius: 15px;

  padding: 23px;

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

  height: 100%;

  transition: 0.3s ease-in-out;
}

.why-us-bx:hover {
  background-color: white;

  box-shadow: 0 16px 56px rgb(0 45 82 / 13%);

  border-color: transparent;
}

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

  width: 40px;

  height: 40px;

  border-radius: 8px;

  align-content: center;

  text-align: center;

  color: white;

  margin-bottom: 20px;
}

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

  height: 20px;
}

.why-us-bx .icon-bx img {
  height: 25px;
  width: 25px;
}

.why-us-bx .tt {
  font-size: 20px;

  font-weight: 600;

  margin-bottom: 5px;

  color: var(--pri);
}

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

  font-size: 15px;

  line-height: 1.5;
}

.hero-section .tt {
  font-size: 45px;
}

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

  font-size: 33px;
}

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

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

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

  overflow: hidden;

  height: 100%;

  position: relative;

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

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

  width: 100%;

  object-fit: cover;

  object-position: center;

  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-img-bx:hover img {
  transform: scale(1.03);
}

.abt-img-bx .label {
  position: absolute;

  background-color: white;

  color: var(--pri);

  border-radius: 20px;

  padding: 5px 13px;

  top: 15px;

  left: 15px;

  font-size: 13px;

  font-weight: 600;

  z-index: 2;
}

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

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

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

  color: var(--text-color);
  line-height: 1.2;
  font-weight: 600;
}

.loc-bx p {
  margin-bottom: 0;
  font-size: 14px;
}

.compliance-card {
  padding: 10px;

  position: relative;

  border: 1px solid #f1eeff;

  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: 0 16px 56px rgb(0 45 82 / 17%);

  border-color: transparent;
}

.compliance-card .icon {
  background-color: #e8ecef;

  width: 38px;

  height: 38px;

  border-radius: 8px;

  align-content: center;

  text-align: center;

  color: var(--pri);
}

.compliance-card .tt {
  font-weight: 600;

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

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

.testiSlider .swiper-slide {
  height: auto;
}

.texti-bx {
  padding: 25px;

  border-radius: 20px;

  position: relative;

  height: 100%;

  background-color: white;
}

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

  height: 60px;

  border-radius: 100%;

  margin-bottom: 15px;

  background-color: white;

  align-content: center;

  background-color: #e8ecef;

  text-align: center;

  font-family: var(--font);

  font-weight: 600;

  text-transform: uppercase;

  color: var(--pri);

  font-size: 30px;
}

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

  margin-bottom: 15px;

  font-weight: 600;
}

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

  color: var(--para-color);

  font-size: 0.95em;

  font-weight: 400;
}

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

  margin-bottom: 0;
}

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

  gap: 3px;

  position: absolute;

  top: 30px;

  right: 20px;
}

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

  height: 16px;
}

.star-rating-wrap {
  display: flex;

  align-items: center;

  gap: 0;
}

.rating {
  display: flex;

  gap: 0;

  user-select: none;
}

.rating .star {
  width: 30px;

  height: 30px;

  cursor: pointer;

  position: relative;

  display: inline-block;
}

.rating .star i {
  position: absolute;

  inset: 0;

  font-style: normal;
}

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

  position: absolute;

  inset: 0;

  color: #d9d9d9;

  font-size: 30px;

  line-height: 30px;
}

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

  position: absolute;

  inset: 0;

  color: #ffc107;

  font-size: 30px;

  line-height: 30px;

  width: 0%;

  overflow: hidden;
}

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

  background: transparent;

  border: 0;

  border-radius: 0;

  padding: 0;
}

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

.accordion-button {
  background: transparent;

  font-weight: 600;

  outline: 0 !important;

  color: var(--text-color);

  font-size: 18px;

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

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

.blog-bx {
  border: 1px solid var(--border-color);

  border-radius: 15px;

  padding: 20px;

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

  height: 100%;

  transition: 0.3s ease-in-out;
}

.blog-bx:hover {
  background-color: white;

  box-shadow: 0 16px 56px rgb(0 45 82 / 13%);

  border-color: transparent;
}

.blog-bx .img {
  position: relative;

  overflow: hidden;

  aspect-ratio: 16 / 9;

  border-radius: 12px;

  margin-bottom: 15px;
}

.blog-bx .img img {
  aspect-ratio: 16 / 9;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.blog-bx .img .label {
  position: absolute;

  background-color: var(--pri);

  color: var(--white);

  border-radius: 20px;

  padding: 5px 13px;

  top: 15px;

  left: 15px;

  font-size: 13px;

  font-weight: 600;

  z-index: 2;
}

.blog-bx .tt a {
  color: var(--text-color);

  font-family: var(--font);

  font-weight: 600;

  font-size: 18px;

  line-height: 1.5;

  margin-bottom: 5px;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  text-overflow: ellipsis;

  white-space: normal;

  -webkit-line-clamp: 2;

  overflow: hidden;
}

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

.blog-bx p {
  display: -webkit-box;

  -webkit-box-orient: vertical;

  text-overflow: ellipsis;

  white-space: normal;

  -webkit-line-clamp: 2;

  overflow: hidden;
}

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

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

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

.document-list-bx {
  background-color: white;

  border: 1px solid #f0eff8;

  border-radius: 10px;
}

.document-list-bx .tt {
  padding: 8px 10px;

  color: var(--text-color);

  border-bottom: 1px solid #f0eff8;
}

.document-list-bx .tt svg {
  width: 16px;

  height: 16px;

  color: var(--pri);
}

.document-list-bx .list-bx {
  padding: 10px;

  display: flex;

  gap: 10px;

  align-items: center;

  transition: 0.2s ease-in-out;

  border-bottom: 1px solid #f0eff8;
}

.document-list-bx .list-bx:hover {
  background-color: var(--off-white);
}

.document-list-bx .list-bx:last-child {
  border-bottom: 0;
}

.document-list-bx .list-bx .doc-icon {
  background-color: #e8ecef;

  width: 36px;

  height: 36px;

  border-radius: 8px;

  align-content: center;

  text-align: center;

  color: var(--pri);
}

.document-list-bx .list-bx .doc-name {
  color: var(--text-color);

  font-size: 13px;
}

.document-list-bx .list-bx .doc-meta {
  font-size: 12px;

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

.document-list-bx .list-bx .doc-dl {
  color: var(--pri);

  font-size: 12px;

  margin-left: auto;
}

.document-list-bx .list-bx .doc-dl svg {
  width: 13px;

  height: 13px;
}

.white-bx {
  background-color: white;

  border: 1px solid #f0eff8;

  border-radius: 20px;

  padding: 20px;
}

.white-bx .tt svg {
  width: 18px;

  height: 18px;

  color: var(--pri);
}

.white-bx .tt {
  color: var(--text-color);

  font-weight: 600;

  font-size: 17px;

  padding-bottom: 10px;

  margin-bottom: 10px;

  border-bottom: 1px solid #f0eff8;
}

.white-bx p:last-child {
  margin-bottom: 0;
}

.spec-pointer {
  padding: 0;

  margin: 0;

  list-style: none;

  display: flex;

  gap: 15px;

  align-items: center;

  flex-wrap: wrap;
}

.spec-pointer li {
  color: var(--text-light);

  /* font-weight: 600; */
}

.spec-pointer li svg {
  color: var(--pri);

  width: 22px;

  height: 22px;
}

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

  border-bottom: 1px solid transparent;

  font-weight: 600;

  padding-inline: 15px;

  color: var(--para-color);

  background-color: transparent;
}

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

  height: 16px;

  margin-right: 3px;
}

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

  color: var(--pri);
}

.key-features ul {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  list-style: none;

  padding: 0;

  margin: 0;
}

.key-features li {
  width: auto;

  padding: 10px;

  padding-left: 35px;

  font-weight: 600;

  color: var(--text-color);

  position: relative;

  text-align: left;

  line-height: 1.4;

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

  border-radius: 10px;

  border: 1px solid #f0eff8;
}

.key-features li::before {
  content: "";

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  left: 10px;

  width: 18px;

  height: 18px;

  background-color: var(--pri);

  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="white" class="bi bi-check" viewBox="0 0 16 16"> <path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/> </svg>');

  background-position: center;

  background-size: contain;

  border-radius: 100%;
}

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

  margin-top: 10px;

  color: var(--text-color);

  text-align: center;

  font-family: var(--font);

  font-weight: 600;
}

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

  font-weight: 600;
}

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

  top: 10%;

  right: 3%;
}

.tailored-sec .box {
  padding: 30px 40px;

  position: relative;

  border-radius: 12px;

  transition: all 0.2s ease-in-out;

  border: 1px solid transparent;
}

.tailored-sec .box:hover {
  border-color: var(--pri);

  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);

  transform: translateY(-5px);
}

.tailored-sec .box .sub-ttl {
  color: var(--pri);

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

  padding: 6px 10px;

  line-height: 1;

  border-radius: 6px;

  font-weight: 400;

  display: inline-flex;

  gap: 5px;

  align-items: center;

  margin-bottom: 15px;

  font-size: 16px;
}

.tailored-sec .box.bg-black .sub-ttl {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.tailored-sec .box .sub-ttl svg {
  height: 24px;

  width: 22px;
}

.tailored-sec .box .tt {
  font-size: 20px;

  color: var(--text-color);

  font-weight: 600;
}

.tailored-sec .tt.sm {
  font-size: 17px;

  line-height: 1;

  margin-bottom: 6px;

  font-weight: 400;
}

.tailored-sec .bx {
  display: flex;

  gap: 10px;

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

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

  padding: 12px 15px;

  border-radius: 12px;
}

.tailored-sec .bx svg {
  height: 22px;

  width: 22px;

  color: var(--white);
}

.tailored-sec .bx .icon-bx {
  padding: 4px;

  height: max-content;

  width: max-content;

  border-radius: 4px;

  background: var(--pri) !important;

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

.tailored-sec .box p {
  margin-bottom: 15px;
}

.text-off {
  color: #ffffffbf;
}

.tailored-sec .bx p {
  margin: 0;

  line-height: 1.4;

  font-size: 12px;
}

.payment-terms .box-head {
  display: flex;

  align-items: center;

  gap: 10px;
}

.payment-terms .box-head .icon-bx {
  background-color: var(--white);

  padding: 6px;

  border-radius: 6px;
}

.payment-terms .box-head .icon-bx svg {
  height: 28px;

  width: 28px;
}

.payment-terms .box-head p {
  margin: 0;
}

.payment-terms .box-head {
  padding-bottom: 15px;

  margin-bottom: 15px;

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

.payment-terms .box-head .tt {
  font-size: 17px;

  color: var(--text-color);

  font-weight: 600;

  line-height: 1;
}

.payment-terms .box {
  padding: 25px 30px;

  border-radius: 12px;

  height: 100%;

  transition: all 0.2s ease-in-out;

  border: 1px solid rgba(0, 0, 0, 0.1);
}

.payment-terms .box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transform: translateY(-10px);
}

.payment-terms .box .bx .tt {
  font-size: 17px;

  color: var(--pri);

  font-weight: 600;
}

.payment-terms .box .bx p {
  font-size: 13px;

  line-height: 1.4;

  margin: 0;
}

.payment-terms .box .bx {
  background-color: var(--white);

  padding: 10px 15px;

  border-radius: 8px;
}

.supply-commitment .why-us-bx {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.supply-commitment .why-us-bx p {
  text-align: center;
}

.products-have {
  list-style: none;

  margin: 0;

  padding: 0;

  display: flex;

  gap: 8px 10px;

  justify-content: center;

  flex-wrap: wrap;

  margin-top: 15px;
}

.products-have li a {
  padding: 5px 10px;

  border-radius: 100px;

  display: flex;

  align-items: center;

  gap: 5px;

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

  color: var(--pri);

  font-weight: 600;

  font-size: 13px;
}

/* .products-have li:last-child a {
  background-color: var(--pri);

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

.products-have li svg {
  height: 16px;

  width: 16px;
}

.products-have li span {
  line-height: 1;
}

.hw-works .bx .icon-bx {
  height: 60px;

  width: 60px;

  background-color: var(--pri);

  box-shadow: 0 3px 20px rgba(91, 46, 255, 0.35);

  font-size: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: var(--white);

  margin-bottom: 15px;
}

.hw-works .bx .tt {
  font-size: 17px;

  color: var(--text-color);

  font-weight: 600;

  margin-bottom: 5px;
}

.hw-works .bx {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  position: relative;
}

.hw-works .box {
  position: relative;
}

.hw-works .box::after {
  content: "";

  position: absolute;

  height: 5px;

  width: 80%;

  left: 10%;

  top: 28.5px;

  background-color: var(--pri);

  z-index: -1;
}

.hw-works .bx p {
  line-height: 1.4;

  font-size: 13px;

  text-align: center;
}

.hw-works .bx span {
  color: var(--pri);

  padding: 3px 10px;

  font-size: 12px;

  border-radius: 100px;

  background-color: #002d521f;
}

.hw-works .box2 .tt {
  font-size: 19px;

  color: var(--black);

  font-weight: 600;

  margin-bottom: 15px;
}

.hw-works .box2 p {
  margin: 0;

  /* height: 100%; */

  padding-left: 32px;

  position: relative;

  line-height: 1.4;
}

.hw-works .box2 p::before {
  position: absolute;

  content: "✓";

  color: var(--pri);

  font-size: 18px;

  font-weight: 700;

  top: 1px;

  left: 13px;
}

.hw-works .img-bx {
  aspect-ratio: 16/9;

  overflow: hidden;

  border-left: 5px solid var(--pri);

  border-top-right-radius: 12px;

  border-bottom-right-radius: 12px;
}

.growth-partnership.tailored-sec .bx .tt {
  font-size: 18px;

  font-weight: 600;

  color: var(--pri);
}

.growth-partnership.tailored-sec .bx .icon-bx {
  padding: 6px;
  background-color: var(--pri) !important;
}

.growth-partnership.tailored-sec .bx .icon-bx svg {
  height: 28px;

  width: 28px;
}

.growth-partnership.tailored-sec .bx p {
  font-size: 13px;
}

.growth-partnership.tailored-sec .bx.r-bx .tt {
  font-size: 18px;

  margin-bottom: 10px;
}

.growth-partnership.tailored-sec .bx.r-bx p {
  font-size: 18px;

  padding: 7px 10px;

  padding-left: 28px;

  position: relative;

  border-radius: 5px;

  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.95) 0%,

      rgba(255, 255, 255, 0.95) 100%) !important;

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

.growth-partnership.tailored-sec .bx.r-bx p::before {
  content: "";

  position: absolute;

  height: 10px;

  width: 10px;

  top: 50%;

  transform: translateY(-50%);

  left: 10px;

  background-color: var(--pri);

  border-radius: 50%;
}

.growth-partnership.tailored-sec .bx {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.growth-partnership.tailored-sec .bx.r-bx {
  padding: 20px 25px;
}

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

  border-radius: 12px;

  overflow: hidden;
}

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

.who-we .img-bx .overlays {
  padding: 10px 15px;

  background-color: var(--white);

  border-radius: 8px;

  position: absolute;

  top: 20px;

  left: 20px;

  display: flex;

  /* align-items: center; */

  gap: 5px;
}

.who-we .img-bx .overlays svg {
  height: 30px;

  width: 30px;

  color: var(--pri);
}

.who-we .img-bx .overlays .tt {
  font-size: 18px;

  color: var(--text-color);

  font-weight: 600;

  line-height: 1;

  margin-bottom: 5px;
}

.who-we .img-bx .overlays p {
  margin: 0;

  font-size: 13px;

  line-height: 1;
}

.who-we-bx {
  display: flex;

  gap: 10px;

  padding: 15px 20px;

  border-radius: 8px;

  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.95) 0%,

      rgba(255, 255, 255, 0.95) 100%) !important;

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

  transition: all 0.2s ease-in-out;
}

.who-we-bx:hover {
  box-shadow: 0px 6px 20px #002d5221;

  border-color: transparent;
}

.who-we-bx .icon-bx {
  color: var(--white);

  background-color: var(--pri);

  width: 40px;

  height: 40px;

  border-radius: 8px;

  align-content: center;

  text-align: center;

  flex-shrink: 0;
}

.who-we-bx .icon-bx svg {
  height: 22px;

  width: 22px;
}

.who-we-bx .icon-bx img {
  height: 25px;
  width: 25px;
}

.who-we-bx .tt {
  color: var(--text-color);

  font-size: 18px;

  font-weight: 600;
}

.who-we-bx p {
  margin: 0;

  font-size: 14px;

  line-height: 1.6;
}

.jurney .box .item-bx {
  display: flex;

  gap: 30px;

  overflow-x: auto;

  overflow-y: hidden;

  cursor: grab;

  user-select: none;

  scrollbar-width: none;

  -ms-overflow-style: none;

  touch-action: pan-y;
}

.jurney .box .item-bx::-webkit-scrollbar {
  display: none;
}

.jurney .box .item-bx.is-dragging {
  cursor: grabbing;
}

.jurney .box .item-bx>* {
  flex: 0 0 auto;
}

.jurney .box .item-bx .items {
  flex-shrink: 0;

  width: calc(20% - 15px);

  user-select: none;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  padding-top: 50px;

  position: relative;
}

.jurney .box .item-bx .items::before {
  content: "";

  position: absolute;

  height: 14px;

  width: 14px;

  background-color: var(--pri);

  border-radius: 100%;

  top: 21px;

  left: 50%;

  transform: translateX(-50%);

  box-shadow:
    0 0 0 6px rgba(0, 45, 82, 0.15),
    0 0 0 12px rgba(0, 45, 82, 0.06);

  animation: dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse {
  0% {
    box-shadow:
      0 0 0 6px rgba(0, 45, 82, 0.15),
      0 0 0 12px rgba(0, 45, 82, 0.06);
  }

  50% {
    box-shadow:
      0 0 0 10px rgba(0, 45, 82, 0.25),
      0 0 0 20px rgba(0, 45, 82, 0.1);
  }

  100% {
    box-shadow:
      0 0 0 6px rgba(0, 45, 82, 0.15),
      0 0 0 12px rgba(0, 45, 82, 0.06);
  }
}

.jurney .box .item-bx .items span {
  color: var(--pri);

  font-size: 18px;

  font-weight: 600;

  margin-bottom: 10px;

  line-height: 1;

  margin-top: 10px;
}

.jurney .box .item-bx .items .tt {
  color: var(--black);

  font-size: 18px;

  font-weight: 600;

  text-align: center;

  line-height: 1;

  margin-bottom: 10px;
}

.jurney .box .item-bx .items p {
  text-align: center;

  margin-bottom: 0;

  line-height: 1.4;
}

.jurney .box {
  position: relative;
}

.jurney .box::after {
  content: "";

  position: absolute;

  width: 90%;

  height: 4px;

  left: 5%;

  top: 26px;

  z-index: -1;

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

.miss-vis .bx .tt {
  font-size: 18px;

  color: var(--text-color);

  font-weight: 600;

  /* margin-bottom: 8px; */
  text-align: center;
  line-height: 1.2;
}

.miss-vis .bx .img-bx {
  max-width: 200px;
  height: 200px;
  margin-bottom: 15px;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  border: 5px solid var(--pri);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.miss-vis .bx .img-bx:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.miss-vis .bx .img-bx img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  background: transparent;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.miss-vis .row .col:nth-child(2) .bx {
  margin-top: 110px;
}

.miss-vis .bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.miss-vis .row .col:nth-child(1) .bx .img-bx::after {
  content: "";
  position: absolute;
  /* top: 50%; */
  transform: rotate(28deg);
  bottom: 23px;
  right: -144%;
  background-color: var(--pri);
  height: 5px;
  width: 291px;
  z-index: -1;
}

.miss-vis .row .col:nth-child(3) .bx .img-bx::after {
  content: "";
  position: absolute;

  transform: rotate(-28deg);
  bottom: 23px;
  left: -144%;
  background-color: var(--pri);
  height: 5px;
  width: 291px;
  z-index: -1;
}

.miss-vis .bx span {
  text-align: center;
  color: var(--pri);
}

.miss-vis .bx p {
  margin: 0;

  line-height: 1.4;

  color: #ffffffc2;
}

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

.core-val-bx .tt {
  font-size: 17px;

  color: var(--text-color);

  font-weight: 600;

  margin-bottom: 5px;
}

.core-val-bx {
  background-color: var(--white);

  padding: 10px 15px;

  border-radius: 12px;

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

/* .core.row .col:last-child .core-val-bx{

  border-bottom: none;

} */

.core-val-bx p {
  font-size: 13px;

  margin-bottom: 0;

  line-height: 1.4;
}

.core-val .box {
  background-color: var(--white);

  padding: 25px 30px;

  border-radius: 12px;
}

.core-val .box .img-bx {
  margin-bottom: 15px;
}

.core-val .box .img-bx img {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
}

.core-val .box .tt {
  font-size: 22px;

  color: var(--text-color);

  font-weight: 600;

  margin-bottom: 5px;
}

.core-val .box p {
  line-height: 1.4;
}

.core-val .box span {
  display: block;

  margin-top: 5px;

  padding: 5px 10px;

  columns: var(--pri);

  font-size: 12px;

  border-radius: 12px;

  border-left: 3px solid var(--pri);

  line-height: 1.3;
}

.core-tabs.nav-tabs {
  gap: 10px;
}

.core-tabs.nav-tabs .nav-link {
  padding: 0;

  text-align: start;

  align-items: start;

  justify-content: start;
}

.core-tabs.nav-tabs .nav-link.active {
  background-color: unset !important;

  color: unset !important;

  border: unset !important;
}

.core-tabs.nav-tabs .nav-link.active .core-val-bx {
  background-color: var(--pri);

  border: unset;
}

.core-tabs.nav-tabs .nav-link.active .core-val-bx .tt {
  color: var(--white);
}

.core-tabs.nav-tabs .nav-link.active .core-val-bx p {
  color: #ffffffc2;
}

.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 .overlays {
  position: absolute;

  padding: 7px 10px;

  border-radius: 8px;

  top: 10px;

  right: 10px;

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

.ceo .bx .overlays .tt {
  font-size: 18px;

  margin: 0;

  color: var(--white);
}

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

.corporate-cult .box {
  background-color: var(--pri);

  padding: 15px 20px;

  border-radius: 12px;

  padding-top: 35px;

  position: relative;

  margin-bottom: 18px;
}

.corporate-cult .box::before {
  content: "";

  position: absolute;

  top: 5px;

  left: 10px;

  width: 30px;

  height: 30px;

  background-repeat: no-repeat;

  background-size: contain;

  opacity: 0.3;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M9 5a2 2 0 0 1 2 2v6c0 3.13-1.65 5.193-4.757 5.97a1 1 0 1 1-.486-1.94c2.227-.557 3.243-1.827 3.243-4.03v-1h-3a2 2 0 0 1-1.995-1.85l-.005-.15v-3a2 2 0 0 1 2-2z'/%3E%3Cpath d='M18 5a2 2 0 0 1 2 2v6c0 3.13-1.65 5.193-4.757 5.97a1 1 0 1 1-.486-1.94c2.227-.557 3.243-1.827 3.243-4.03v-1h-3a2 2 0 0 1-1.995-1.85l-.005-.15v-3a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");

  transform: rotate(180deg);
}

.corporate-cult .box .tt {
  font-size: 18px;

  color: var(--white);

  line-height: 1.4;

  margin-bottom: 5px;
}

.corporate-cult .box span {
  color: #ffffffc2;
}

.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: 600;
  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: 600;
  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: 16px;
  font-weight: 600;
}

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

.roadmap-bx {
  padding: 15px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
  height: 100%;
}

.roadmap-bx:hover {
  background-color: var(--off-white);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.06);
  border-color: var(--pri);
}

.roadmap-bx span {
  font-size: 12px;
  color: var(--pri);
  font-weight: 600;
}

.roadmap-bx .tt {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 600;
  margin: 5px 0;
}

.roadmap-bx p {
  line-height: 1.4;
  margin-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: 600;
  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: 16px;
  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;
  }
}

.img-hover {
  overflow: hidden;
  border-radius: 12px;
}

.img-hover img {
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.quality-page .img-bx .overlays {
  position: absolute;
  padding: 8px 15px;
  border-radius: 5px;
  line-height: 1;
  background-color: var(--white);
  color: var(--pri);
  font-size: 17px;
  font-weight: 600;
  top: 10px;
  left: 10px;
}

.qms-bx {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}

.qms .row .col-12:last-child:last-child .qms-bx {
  border-bottom: 0;
  padding-bottom: 0;
}

.qms-bx .icon-bx {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background-color: #4422bd17;
}

.qms-bx .icon-bx svg {
  height: 22px;
  width: 22px;
  color: var(--pri);
  flex-shrink: 0;
}

.qms-bx .icon-bx img {
  height: 25px;
  width: 25px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(4292%) hue-rotate(255deg) brightness(89%) contrast(101%);
}

.qms-bx .clause {
  font-size: 12px;
  color: var(--pri);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.qms-bx .clause-name {
  color: var(--text-color);
  font-size: 17px;
  font-weight: 600;
}

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

.qms-bx .top-sec {
  margin-bottom: 2px;
}

.qms2 .img-bx {
  width: 100%;
}

.qms2 .img-bx img {
  height: 100%;
  width: 100%;

  object-fit: cover;
  border-radius: 12px;
}

.qms2 .bott-card {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  /* width: 80%;
  margin: 0 auto; */
}

.qms2 .bott-card .bx {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
}

.qms2 .bott-card .bx .icon-bx svg {
  height: 25px;
  width: 25px;
  color: var(--pri);
}

.qms2 .bott-card {
  padding: 20px 0;
  background-color: var(--white);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  position: relative;

  margin-top: -30px;
}

.qms2 .bott-card .bx .tt {
  line-height: 1.4;
  font-size: 13px;
  text-align: center;
}

.why-us-bx.testing span {
  font-size: 13px;
  color: var(--para-color);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 600;
}

.why-us-bx.testing ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 5px;
}

.why-us-bx.testing ul li {
  font-size: 12.5px;
  color: var(--para-color);
  font-weight: 400;
  padding-left: 20px;
  position: relative;
}

.why-us-bx.testing ul li::before {
  content: "";
  position: absolute;
  top: 1.5px;
  left: 0;
  width: 16px;
  height: 16px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M5 12l14 0'/%3E%3Cpath d='M15 16l4 -4'/%3E%3Cpath d='M15 8l4 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.why-us-bx.testing {
  position: relative;
  overflow: hidden;
}

.why-us-bx.testing::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 0;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in-out;
  background-color: var(--pri);
  border-radius: 12px;
}

.why-us-bx.testing:hover::before {
  width: 100%;
}

.table-bx {
  padding: 20px 25px;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.table-bx .boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 8px;
}

.table-bx .boxes .bx {
  background-color: #f5f3fb;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.table-bx .boxes .bx span {
  font-size: 12px;
  color: var(--pri);
}

.table-bx .boxes .bx p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
}

.table-bx table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: Arial, sans-serif;
}

.table-bx thead {
  background: var(--sec);
}

.table-bx th {
  padding: 10px 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.table-bx th:first-child {
  border-radius: 5px 0 0 5px;
}

.table-bx th:last-child {
  border-radius: 0 5px 5px 0;
}

.table-bx td {
  padding: 9px 12px;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e9e9f1;
}

.table-bx tbody tr:last-child td {
  border-bottom: none;
}

.table-bx th:nth-child(1),
.table-bx td:nth-child(1) {
  width: 31%;
  padding-left: 20px;
}

.table-bx th:nth-child(2),
.table-bx td:nth-child(2) {
  width: 28%;
}

.table-bx th:nth-child(3),
.table-bx td:nth-child(3) {
  width: 23%;
}

.table-bx th:nth-child(4),
.table-bx td:nth-child(4) {
  width: 18%;
}

.table-bx td:last-child {
  color: #00a95c;
  font-weight: 600;
  white-space: nowrap;
  font-size: 12px;
}

.table-bx sub,
.table-bx sup {
  font-size: 8px;
}

.table-bx tbody,
.table-bx td,
.table-bx tfoot,
.table-bx th,
.table-bx thead,
.table-bx tr {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.table-bx tr .table-bx thead,
.table-bx thead tr,
.table-bx thead th {
  border: none;
}

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

.table-bx table tbody tr:last-child {
  border-bottom: none;
}

.sm-card .img-bx {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
}

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

.sm-card .content-bx {
  padding: 10px 15px;
  background-color: var(--sec);
}

.sm-card {
  overflow: hidden;
  border-radius: 8px;
}

.sm-card .content-bx .ttl {
  color: var(--white);
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
}

.sm-card:hover img {
  filter: brightness(0.65);
}

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

.batch-bx .img-bx {
  aspect-ratio: 16/10;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.batch-bx .img-bx img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.2s cubic-bezier(1, 0, 0, 1);
}

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

.batch-bx .tt span {
  color: var(--pri);
  font-weight: 600;
}

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

.batch-bx {
  padding: 13px;
  border-radius: 6px;
  margin-bottom: 15px;
  transition: all 0.2s cubic-bezier(1, 0, 0, 1);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.15);
  background-color: var(--white);
  height: 100%;
  display: flex;
}

.batch-bx:last-child {
  margin-bottom: 0;
}

.batch-bx:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

  border-color: transparent;
}

.content-table {
  overflow-x: auto;
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: #a9a9a9 #eeeeee;
  /* Thumb / Track */
}

/* Chrome, Edge, Safari */
.content-table::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.content-table::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 20px;
}

.content-table::-webkit-scrollbar-thumb {
  background: #a9a9a9;
  border-radius: 20px;
}

.content-table::-webkit-scrollbar-thumb:hover {
  background: #858585;
}

.content-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

.content-table thead th {
  padding: 13px 16px;
  background: var(--sec);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-bottom: 0;
}

.content-table thead th:first-child {
  text-align: left;
}

.content-table tbody td {
  padding: 10px;
  font-size: 13px;
  color: var(--text-color);
  border-bottom: 1px solid #edf0f6;
  background: #ffffff;
  text-align: start;
  vertical-align: middle;
  transition: 0.25s ease;
}

.content-table tbody tr:nth-child(even) td {
  background: #fbfcff;
}

.content-table tbody tr:hover td {
  background: #f5f7ff;
}

.content-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1e2746;
}

.content-table tbody td[data-status] {
  position: relative;
  padding-left: 25px;
  font-weight: 600;
  white-space: nowrap;
}

.content-table tbody td[data-status]::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.content-table tbody td[data-status="yes"] {
  color: #17a673;
}

.content-table tbody td[data-status="yes"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'><circle cx='12' cy='12' r='12' fill='%23E8FBF4'/><path d='M7 12.5L10.2 15.5L17 8.8' stroke='%2317A673' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.content-table tbody td[data-status="request"] {
  color: #c98a11;
}

.content-table tbody td[data-status="request"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'><circle cx='12' cy='12' r='12' fill='%23FFF6DF'/><path d='M12 7V13' stroke='%23C98A11' stroke-width='2.2' stroke-linecap='round'/><circle cx='12' cy='17' r='1.3' fill='%23C98A11'/></svg>");
}

.content-table tbody td[data-status="na"] {
  color: #7f879d;
}

.content-table tbody td[data-status="na"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'><circle cx='12' cy='12' r='12' fill='%23F0F2F7'/><path d='M8 12H16' stroke='%237F879D' stroke-width='2.2' stroke-linecap='round'/></svg>");
}

.table-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 20px;
  background: linear-gradient(180deg, #fafbff 0%, #f6f7fc 100%);
  margin-top: 15px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;

  border-left: 5px solid var(--pri);
}

.table-bottom span {
  position: relative;
  padding-left: 28px;
  font-size: 13px;
  font-weight: 600;
  color: #5b647c;
  line-height: 1.5;
}

.table-bottom span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.table-bottom span[data-status="yes"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'><circle cx='12' cy='12' r='12' fill='%23E8FBF4'/><path d='M7 12.5L10.2 15.5L17 8.8' stroke='%2317A673' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.table-bottom span[data-status="request"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'><circle cx='12' cy='12' r='12' fill='%23FFF6DF'/><path d='M12 7V13' stroke='%23C98A11' stroke-width='2.2' stroke-linecap='round'/><circle cx='12' cy='17' r='1.3' fill='%23C98A11'/></svg>");
}

.table-bottom span[data-status="na"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'><circle cx='12' cy='12' r='12' fill='%23F0F2F7'/><path d='M8 12H16' stroke='%237F879D' stroke-width='2.2' stroke-linecap='round'/></svg>");
}

.content-table tbody,
.content-table td,
.content-table tfoot,
.content-table th,
.content-table thead,
.content-table tr {
  border: none;
}

.content-table thead {
  overflow: hidden;
  border-radius: 5px;
}

.table-bx.table-bx2 {
  padding: 20px 25px;
}

.table-bx.table-bx2 .sm-tt {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.ref-list {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ref-list .list {
  width: calc(50% - 5px);
  padding: 5px 10px;
  border-radius: 6px;
  background-color: var(--bg);
  font-size: 18px;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.ref-list .list strong {
  color: var(--pri);
  font-weight: 600;
}

.table-bx.table-bx3 .tt-bg {
  background-color: var(--sec);
  padding: 10px 15px;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
}

.table-bx.table-bx3 .boxes {
  gap: 10px;
}

.table-bx.table-bx3 .boxes .bx {
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.table-bx.table-bx3 .boxes .bx p {
  color: var(--para-color);
}

.table-bx.table-bx4 {
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25) inset;
}

.table-bx.table-bx4 .bx {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table-bx.table-bx4 .bx p:last-child {
  color: var(--pri);
}

.table-bx.table-bx4 .bx p:first-child {
  color: var(--text-color);
}

.packing-bx .img-bx {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

.packing-bx .img-bx img {
  height: 100%;
  width: 100%;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.packing-bx {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--white);
  padding: 20px 25px;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}

.packing-bx:hover {
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.15);
}

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

.packing-bx span {
  font-size: 18px;
  color: var(--pri);
  font-weight: 600;
}

.packing-bx .tt {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
}

.packing-bx p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.exp-overlays {
  display: flex;
  position: relative;
  width: 90%;
  left: 5%;
  justify-content: space-between;
  background-color: var(--white);
  padding: 20px 30px;
  border-radius: 12px;
  margin-top: -50px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.06);
}

.exp-overlays .tt {
  font-size: 25px;
}

.exp-overlays p {
  line-height: 1;
  font-size: 14 px;
}

.cap-bx {
  background-color: var(--white);
  padding: 10px;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  height: 100%;
}

.cap-bx:hover {
  border-color: var(--pri);
}

.cap-bx .innder {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cap-bx .img-bx {
  width: 29%;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
}

.cap-bx .img-bx img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
}

.cap-bx .tt {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 5px;
}

.cap-bx p {
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 0;
}

.tags {
  display: flex;
  align-items: center;
  gap: 0 5px;
  margin-top: 10px;
  font-size: 18px;
  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;
}

.mark-we-sharve .nav-pills .nav-link {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
}

.mark-we-sharve .nav-pills .nav-link.active {
  background-color: var(--white);
  color: var(--pri);
}

.region-cont {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 15px 20px;
}

.region-cont .tt {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.region-cont p {
  color: #ffffffbd;
  line-height: 1.4;
  font-size: 17px;
  font-weight: 300;
}

.region-cont ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.region-cont ul li {
  color: #ffffffbd;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 3px;
  padding-left: 25px;
  position: relative;
}

.region-cont ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M7 12l5 5l10 -10'/%3E%3Cpath d='M2 12l5 5m5 -5l5 -5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.region-tabs__content .bx {
  background-color: var(--white);
  display: flex;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 5px;
  height: 100%;
}

.region-tabs__content .bx {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}

.region-tabs__content .bx .icon-bx {
  color: var(--white);
  background-color: var(--pri);
  font-size: 17px;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.region-tabs__content .bx .icon-bx img {
  height: 22px;
  width: 22px;
}

.region-tabs__content .bx .tt {
  font-size: 17px;
  color: var(--text-color);
  font-weight: 600;
}

.region-tabs__content .bx ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px 4px;
  flex-wrap: wrap;
  font-size: 12px;
  list-style: none;
  /* color: var(--pri); */
}

.region-tabs__content .bx ul li {
  line-height: 1;
}

.table-bx6 .top-bx {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--pri);
  margin-bottom: 15px;
}

.table-bx6 .who-we-bx {
  border: none;
  border-left: 5px solid var(--pri);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  gap: 15px;
}

.table-bx6 .who-we-bx:hover {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);

  border-left-color: var(--pri);
}

.table-bx6 .who-we-bx .tt {
  font-size: 18px;
}

.table-bx6 .who-we-bx .tags {
  margin: 0;
  font-size: 12px;
}

.table-bx6 .who-we-bx .icon-bx {
  /* margin-bottom: 5px; */
  height: 35px;
  width: 35px;
}

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

.table-bx.table-bx7 .tt {
  font-size: 24px;
}

.table-bx.table-bx7 .boxes .bx {
  padding: 5px 10px;
}

.table-bx.table-bx7 .boxes .bx p {
  font-size: 12px;
}

.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 .sub {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
  margin-top: 2px;
}

.content-table td:first-child {
  font-weight: 600;
  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);
}

.tailored-sec .box .icon-bx img {
  height: 30px;
  width: 30px;
}

.projects-tabs {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 7px;
  gap: 6px;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  background: var(--pri);
  margin-bottom: 30px;
}

.projects-tabs .nav-item {
  margin: 0;
}

.projects-tabs .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 12px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.projects-tabs .nav-link svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  height: 16px;
  width: 16px;
}

.projects-tabs .nav-link.active {
  background-color: var(--white);
  color: var(--pri);
}

.projects-tabs .nav-link:focus {
  box-shadow: none;
}

.video .abt-vid-bx {
  display: block;
  overflow: hidden;
  border-radius: 0;
}

.video .abt-vid-bx.abt-img-bx .g-play {
  display: none;
}

.video {
  transition: all 0.2s ease-in-out;
}

.video:hover {
  box-shadow: 0px 3px 7px #4422bd3d;
}

.g-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.g-play svg {
  width: 22px;
  height: 22px;
  color: var(--white);
  margin-left: 4px;
  margin-top: 2px;
}

.video .abt-vid-bx img {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
}

.video .badge2 {
  position: absolute;
  top: 5px;
  left: 5px;
  color: var(--white);
  background-color: var(--pri);
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 600;
  z-index: 999;
  line-height: 1;
}

.vid-top-bx {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-between;

  margin-bottom: 5px;
}

.vid-top-bx .sm-tt {
  color: var(--pri);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.vid-top-bx .badge3 {
  background: var(--sec);

  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  padding: 1px 6px;
  padding-top: 3px;
  border-radius: 4px;
}

.video .cont-bx .tt {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.2;
  /* padding-bottom: 10px;   */
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
  transition: all 0.1s ease-in-out;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video .cont-bx .tt:hover {
  color: var(--pri);
}

.date-loc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.date-loc .loc,
.date-loc .date {
  font-size: 12px;
  font-weight: 400;
  color: var(--para-color);
}

.date-loc .loc {
  position: relative;
  padding-left: 18px;
  display: flex;
  align-items: center;
}

.date-loc .loc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0'/%3E%3Cpath d='M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.video {
  overflow: hidden;
  border-radius: 6px;
  background-color: var(--bg);
}

.video .cont-bx {
  padding: 10px 15px;
}

.bg-sec .video {
  background-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: 18px;
  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: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-line-clamp: 1;
}

.blog-bx.blog-card .read-mr {
  font-size: 13px;
  width: auto;
  margin-top: 5px;
}

.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: 17px;
  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: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.ls-thankyou-modal .ls-thankyou-btn-home:hover {
  opacity: 0.88;
  color: var(--pri);
}

.ls-thankyou-modal .tt {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.content-sec2 ul {
  display: flex;
  gap: 6px 15px;
  flex-wrap: wrap;
  margin: 0;
  margin-top: 15px;
}

.content-sec2 ul li {
  margin: 0;
}

.project-card {
  position: relative;
  cursor: pointer;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
  color: #fff;
  transition: transform 0.25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

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

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-box {
  display: flex;
  width: 90%;
  max-width: 1000px;
  max-height: 80vh;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 24px;
  margin-top: 50px;
  gap: 20px;
}

.lightbox-main {
  flex: 1;
  display: flex;
  align-items: center;
  width: calc(80% - 10px);
  padding: 15px;
  background: #000;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-main img {
  max-width: 100%;
  object-fit: contain;
  height: 100%;
  border-radius: 8px;
}

.lightbox-thumbs {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 6px;
  width: calc(20% - 10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #000;
}

.lightbox-thumbs img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition:
    opacity 0.2s,
    border-color 0.2s;
}

.lightbox-thumbs img:hover {
  opacity: 0.85;
}

.lightbox-thumbs img.active {
  opacity: 1;
  border-color: #fff;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #000;
  border: none;
  background-color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .lightbox-box {
    flex-direction: column;
  }

  .lightbox-thumbs {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }

  .lightbox-thumbs img {
    width: 70px;
    height: 55px;
    flex: none;
  }
}

.lightbox-thumbs::-webkit-scrollbar {
  width: 5px;
}

.lightbox-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.lightbox-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}

.lightbox-thumbs .thumb-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.lightbox-thumbs .thumb-item img {
  width: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.5;
  transform: scale(1.02);
  transition:
    opacity 0.25s ease,
    transform 0.35s ease;
}

.lightbox-thumbs .thumb-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 1;
  transition: opacity 0.25s ease;
}

.lightbox-thumbs .thumb-item:hover {
  transform: translateY(-2px);
}

.lightbox-thumbs .thumb-item:hover img {
  opacity: 0.8;
  transform: scale(1.08);
}

.lightbox-thumbs .thumb-item:hover::after {
  opacity: 0;
}

.lightbox-thumbs .thumb-item.active {
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.lightbox-thumbs .thumb-item.active img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-thumbs .thumb-item.active::after {
  opacity: 0;
}

@media (max-width: 640px) {
  .lightbox-thumbs {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .lightbox-thumbs .thumb-item {
    width: 90px;
  }

  .lightbox-thumbs .thumb-item img {
    height: 60px;
  }
}

.lightbox-thumbs::-webkit-slider-thumb {
  display: none;
}

.vid-top-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--pri);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.project-card {
  position: relative;
  cursor: pointer;
}

.project-image-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  padding: 5px 9px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.lightbox-main {
  position: relative;
}

.lightbox-image-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 5px 9px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.white-bx .tt .icon-box {
  background-color: var(--pri);
  height: 25px;
  width: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.white-bx .tt .icon-box img {
  height: 15px;
  width: 15px;
}

.cate-bx .specs-bx p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.cate-bx table {
  width: 100%;
}

.cate-bx tbody,
.cate-bx td,
.cate-bx tfoot,
.cate-bx th,
.cate-bx thead,
.cate-bx tr {
  font-size: 13px;
}

.pills-bx {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ls-pillSwiper {
  background-color: var(--pri);
  border-radius: 1000px;
  padding: 8px 9px;
  overflow: hidden;
  width: 100%;
}

.ls-pillSwiper .swiper-wrapper {
  align-items: center;
}

.ls-pillSwiper .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}

.ls-pillSwiper .nav-link {
  color: var(--white);
  border-radius: 100px;
  white-space: nowrap;
  padding: 9px 15px;
  border: none;
  background: transparent;
  line-height: 1;
}

.ls-pillSwiper .nav-link.active {
  background-color: var(--white);
  color: var(--pri);
}

.ls-pillPrev,
.ls-pillNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pri);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.ls-pillPrev svg,
.ls-pillNext svg {
  width: 20px;
  height: 20px;
  display: block;
}

.ls-pillPrev {
  left: -52px;
}

.ls-pillNext {
  right: -52px;
}

.ls-pillPrev.swiper-button-disabled,
.ls-pillNext.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

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

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

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

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


.catalogue-selection {
  width: 100%;
  max-width: 625px;
  font-family: Arial, sans-serif;
}

.catalogue-option {
  display: flex;
  align-items: center;
  /* min-height: 56px; */
  margin-bottom: 7px;
  padding: 9px 12px;
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--pri);
  border-radius: 5px;
  background-color: #fff;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  box-sizing: border-box;
  transition: 0.25s ease;
}

.catalogue-option:hover {
  border-color: var(--pri);
  background-color: var(--off-white);
}

.catalogue-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.custom-checkbox {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  border: 2px solid var(--pri);
  border-radius: 50%;
  box-sizing: border-box;
  transition: 0.25s ease;
}

.catalogue-option input:checked+.custom-checkbox {
  border-color: var(--pri);
}

.catalogue-option input:checked+.custom-checkbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--pri);
  transform: translate(-50%, -50%);
}

.catalogue-option:has(input:checked) {
  border-color: var(--pri);
  border-left-color: var(--pri);
  background-color: #f4f7fb;
}