:root {

  --font: "Mona Sans", sans-serif;

  --font2: "Geist", sans-serif;

  --liner: linear-gradient(180deg,

      rgba(255, 255, 255, 0.15),

      rgba(255, 255, 255, 0));

  --pri: #8e4c14;

  --sec: #c1895b;

  --text-color: #151515;

  --text-muted: #4d575b;

  --text-light: #8c8c8c;

  --para-color: #5c5c5c;

  --border-color: #d1d1d1;

  --white: #fff;

  --off-white: #F4F4F4;

  --black: #212529;

  --bs-primary: #0082ff;

  --bs-success: #03b562;

  --bs-info: #0fbcf9;

  --bs-warning: var(--pri);

  --bs-danger: #dc3545;

  --bs-primary-rgb: 0, 130, 255;

  --bs-success-rgb: 3, 181, 98;

  --bs-info-rgb: 15, 188, 249;

  --bs-warning-rgb: 255, 169, 9;

  --bs-danger-rgb: 219, 33, 35;

}



body {

  background: var(--white);

  font-family: var(--font2);

  color: var(--para-color);

  font-size: 14px;

  margin: 0;

  padding: 0;

  font-weight: 400;

  line-height: 1.5;

  min-height: 100vh;

}



h1,

h2,

h3,

h4,

h5,

h6 {

  font-family: var(--font);

}



img {

  max-width: 100%;

  width: auto;

  height: auto;

}



p {

  color: var(--para-color);

  font-size: 15px;

  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.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);

  height: 1.4px;

}



.head-sec {

  text-align: center;

  max-width: 950px;

  margin: 0 auto 30px;

}



.head-sec.text-start,

.head-sec.text-md-start {

  max-width: 100%;

}



.head-sec .sub-tt {

  display: inline-block;

  font-size: 14px;

  font-weight: 500;

  color: var(--text-color);

  margin-bottom: 8px;

  font-family: var(--font2);

  position: relative;

  padding: 6px 14px;

  border: 1px solid var(--border-color);

  border-radius: 20px;

}



.head-sec .sub-tt::before {

  content: "";

  width: 8px;

  height: 8px;

  background-color: var(--pri);

  display: inline-block;

  margin-right: 6px;

  /* border-radius: 100%; */

}



.head-sec .tt {

  font-family: var(--font);

  color: var(--text-color);

  font-weight: 700;

  font-size: 35px;

  line-height: 1.3;

  margin-bottom: 8px;

  position: relative;

}



.head-sec .tt span {

  color: var(--pri);

}



.head-sec p {

  color: var(--para-color);

  font-weight: 400;

  margin-bottom: 0;

}



.head-sec.text-white .sub-tt {

  color: white;

}



.head-sec.text-white .tt {

  color: white;

}



.head-sec.text-white p {

  color: rgba(255, 255, 255, 0.8);

}



.badge {

  font-size: 11px;

  font-weight: 400;

  border: 1px solid;

  border-radius: 18px;

  padding: 3px 7px;

}



.bg-primary-transparent {

  background-color: rgba(var(--bs-primary-rgb), 0.1) !important;

  color: var(--bs-primary) !important;

}



.bg-primary-transparent:hover {

  background-color: rgba(var(--bs-primary-rgb), 0.1) !important;

  color: var(--bs-primary) !important;

}



.bg-info-transparent {

  background-color: rgba(var(--bs-info-rgb), 0.1) !important;

  color: rgb(var(--bs-info-rgb)) !important;

}



.bg-info-transparent:hover {

  background-color: rgba(var(--bs-info-rgb), 0.1) !important;

  color: rgb(var(--bs-info-rgb)) !important;

}



.bg-success-transparent {

  background-color: rgba(var(--bs-success-rgb), 0.1) !important;

  color: rgb(var(--bs-success-rgb)) !important;

}



.bg-success-transparent:hover {

  background-color: rgba(var(--bs-success-rgb), 0.1) !important;

  color: rgb(var(--bs-success-rgb)) !important;

}



.bg-warning-transparent {

  background-color: rgba(var(--bs-warning-rgb), 0.1) !important;

  color: rgb(var(--bs-warning-rgb)) !important;

}



.bg-warning-transparent:hover {

  background-color: rgba(var(--bs-warning-rgb), 0.1) !important;

  color: rgb(var(--bs-warning-rgb)) !important;

}



.bg-danger-transparent {

  background-color: rgba(var(--bs-danger-rgb), 0.1) !important;

  color: rgb(var(--bs-danger-rgb)) !important;

}



.bg-danger-transparent:hover {

  background-color: rgba(var(--bs-danger-rgb), 0.1) !important;

  color: rgb(var(--bs-danger-rgb)) !important;

}



.bg-grey-transparent {

  background-color: var(--off-white) !important;

  color: var(--text-muted) !important;

}



.bg-pri-transparent {

  background-color: rgb(241 91 44 / 10%) !important;

  color: var(--pri) !important;

}



.text-muted {

  color: var(--text-muted) !important;

}



.text-pri {

  color: var(--pri) !important;

}



.w-btn {

  padding: 10px 15px;

  border-radius: 50px;

  color: white;

  border: 1px solid #00c966;

  display: inline-flex;

  justify-content: center;

  gap: 5px;

  align-items: center;

  font-size: 14px;

  font-weight: 500;

  font-family: var(--font);

  text-transform: capitalize;

  white-space: nowrap;

  background-color: #00c966;

  outline: none;

  transition: 0.2s ease-in-out;

  line-height: 1;

}



.w-btn:hover {

  border-color: #00c966;

  background-color: #00b95d;

}



.main-btn {

  padding: 5px;

  padding-left: 15px;

  color: var(--white);

  border: 1px solid var(--text-color);

  background-color: var(--text-color);

  display: inline-flex;

  gap: 10px;

  align-items: center;

  justify-content: center;

  font-size: 14px;

  font-weight: 500;

  font-family: var(--font);

  white-space: nowrap;

  outline: none;

  transition: 0.2s ease-in-out;

  justify-content: center;

  line-height: 1;

  border-radius: 10px;

  border-bottom-right-radius: 16px;

}



.main-btn svg {

  padding: 9px;

  width: 35px;

  height: 35px;

  background-color: var(--pri);

  border-radius: 5px;

  border-bottom-right-radius: 13px;

  color: var(--white);

}



.main-btn.sm {

  padding: 6px;

  font-size: 14px;

  gap: 7px;

  padding-left: 10px;

}



.main-btn:hover {

  background: var(--white);

  color: var(--pri);

  border-color: var(--pri);

}



.main-btn2 {

  color: var(--white);

  background-color: var(--pri);

  border-color: var(--pri);

}



.main-btn.main-btn2 svg {

  background-color: var(--text-color);

}



.main-btn2:hover {

  background-color: transparent;

  border-color: var(--text-color);

  color: var(--text-color);

}



.main-btn.light {

  background-color: var(--white);

  border-color: var(--white);

  color: var(--text-color);

  font-weight: 600;

}



.main-btn.light:hover {

  background-color: var(--sec);

  border-color: var(--sec);

  color: var(--white);

}



.link-btn svg {

  margin-right: 2px;

}



.link-btn {

  color: var(--text-color);

  font-size: 14px;

  font-weight: 500;

}



.link-btn.link-btn:hover {

  text-decoration: underline;

}



.productBrochureandvideo {

  display: inline-flex;

  justify-content: center;

  align-items: center;

  gap: 5px;

  border: 1px dashed #b5b5b5;

  padding: 7px 15px;

  font-weight: 500;

  transition: 0.3s;

  font-size: 14px;

  color: var(--text-color);

  font-family: var(--font);

  background-color: transparent;

  border-radius: 10px;

}



.productBrochureandvideo:hover {

  border-color: #5e5e5e;

}



.form-label {

  font-size: 14px;

  color: var(--text-color);

  font-family: var(--font);

  font-weight: 500;

  margin-bottom: 2px;

}



.form-group {

  position: relative;

  margin-bottom: 15px;

}



.form-control,

.form-select,

.SumoSelect>.CaptionCont {

  font-weight: 400;

  border-radius: 4px;

  font-size: 15px;

  padding: 8px 12px;

  color: var(--text-color);

  font-family: var(--font2);

  border-color: transparent;

  height: 42px;

  align-content: center;

  border-color: #e3e3e3;

  background-color: #f5f5f5;

}



.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: 80px;

  width: auto;

  height: auto;

  padding: 7px 0;

  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.3));

}



.social {

  display: flex;

  align-items: center;

  list-style: none;

  margin: 0;

  gap: 10px;

  color: var(--white);

}



.social li a {

  color: var(--white);

}



.social li a:hover {

  color: var(--pri);

}



.social svg {

  width: 14px;

  height: 14px;

  line-height: 1;

  color: currentColor;

}



.menubar .dropdown-menu {

  padding: 0;

  border: 0;

  outline: 0;

  background-color: transparent;

}



.menubar .dropdown button[data-bs-toggle="dropdown"] {

  border: 0;

  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #fff, #f6f6f6);

  box-shadow: 0px -3px 0px 0px #E9E9E9 inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.6980392157) inset, 0px 0px 3px 0px rgba(0, 0, 0, 0.1411764706);

  padding: 8px;

  border-radius: 100%;

}



.menubar .dropdown button[data-bs-toggle="dropdown"] svg {

  width: 20px;

  height: 20px;

  color: var(--pri);

  display: none;

}



.menubar .dropdown button[data-bs-toggle="dropdown"]:not(.show) svg.close {

  display: block;

}



.menubar .dropdown button[data-bs-toggle="dropdown"].show svg.open {

  display: block;

}



.search-bx {

  display: flex;

  align-items: center;

  border-radius: 10px;

  overflow: hidden;

  padding: 0;

  padding-left: 0;

  background-color: #f9f9f9;

  /* box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .05); */

  border: 1px solid #eee;

}



.search-bx input {

  width: 100%;

  max-width: 100%;

  outline: none;

  border: none;

  color: var(--text-color);

  font-weight: 400;

  height: 20px;

  font-size: 14px;

  min-width: 220px;

  background-color: #f9f9f9;

  height: 40px;

  padding-left: 18px;

}



.search-bx button {

  outline: none;

  border: none;

  height: 40px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 0;

  padding-right: 15px;

  color: var(--para-color);

  background: transparent;

}



header {

  position: fixed;

  top: 15px;

  z-index: 999;

  width: 100%;

  background: transparent;

  transform: translateY(0);

  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;

  will-change: transform;

  /* height: 115px; */

  display: flex;

  flex-direction: column;

  justify-content: end;

}



 .menubar {

    transition: 0.3s ease-in-out;
    border: 1px solid transparent;
    border-radius: 20px;
    background: #ffffffc2;
    padding: 0px 40px;

  }



header.is-scrolled .menubar {

  background-color: rgba(230, 230, 230, 0.4);

  -webkit-backdrop-filter: blur(10px);

  backdrop-filter: blur(10px);

  width: 100%;

  position: relative;

  overflow: visible;

  box-shadow: inset 0 2px #fff3;

  border: 1px solid rgba(149, 149, 149, 0.2);

  padding-inline: 15px;

}



.navigation ul {

  list-style: none;

  margin: 0;

  padding: 0;

}



.menu-list a {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 1px;

  line-height: 1.2;

  position: relative;

}



.kr-dropdown-icon {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 16px;

  height: 16px;

  flex: 0 0 auto;

  transform-origin: center;

  transition: transform .2s ease;

  padding: 0;

  border: 0;

  background: transparent;

  color: currentColor;

  cursor: pointer;

}



.kr-dropdown-icon svg {

  width: 16px;

  height: 16px;

  pointer-events: none;

}



/* ################### main ###################### */



main,

main img {

  overflow: hidden;

  display: block;

  width: 100%;

  position: relative;

}



main img {

  aspect-ratio: 1920 / 960;

}



.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);

}



.lead-sure-section {

  padding: 60px 0;

  overflow: hidden;

  position: relative;

  z-index: 1;

}



.bg-sec {

  background: linear-gradient(90deg,

      rgba(255, 255, 255, 0.95) 0%,

      rgba(255, 255, 255, 0.95) 100%) !important;

  background-color: var(--pri) !important;

}



.bg-pri {

  background-color: var(--pri) !important;

  align-content: center;

  color: var(--off-white);

}



.bg-liner {

  background: var(--liner);

  background-color: var(--pri);

}



.bg-light {

  background-color: var(--off-white) !important;

}



.odometer.odometer-auto-theme,

.odometer.odometer-theme-default {

  font-family: var(--font);

  line-height: 40px;

}



.read-mr {

  font-size: 0.9em;

  color: var(--pri);

  font-weight: 400;

  transition: 0.2s;

  display: inline-flex;

  align-items: center;

  gap: 3px;

  white-space: nowrap;

  padding: 0;

  background-color: transparent;

  border: 0;

  text-transform: capitalize;

}



.read-mr.text-decoration:hover {

  text-decoration: underline;

}



.read-mr:hover {

  color: var(--text-color);

}



.swiper-pagination {

  position: static;

}



.swiper-pagination-bullet {

  transition: 0.2s ease;

  background-color: var(--text-color);

}



.swiper-pagination-bullet-active {

  background-color: var(--pri);

  width: 18px;

  border-radius: 4px;

}



.mobile_nav {

  display: none;

}



.ls-pillTabs {

  position: relative;

  display: inline-flex;

  gap: 0;

  background-color: var(--off-white);

  padding: 4px;

  border-radius: 999px;

  overflow: hidden;

  z-index: 1;

  border: 1px solid #e3e3e3;

}



.ls-pillTabs.dark {

  background:

    radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #272727, #272727);

  box-shadow: 0px 3px 3px 0px #00000024,

    0px -3px 0px 0px #080808 inset,

    0px 1px 0px 0px #FFFFFF4D inset;

}



.ls-pillIndicator {

  position: absolute;

  top: 4px;

  left: 0;

  height: calc(100% - 8px);

  width: 0;

  border-radius: 999px;

  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, var(--pri), var(--pri));

  transform: translateX(0);

  transition:

    transform 0.28s ease,

    width 0.28s ease;

  pointer-events: none;

  z-index: -1;

}



.ls-pillTabs.dark .ls-pillIndicator {

  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, var(--pri), var(--pri));

}



.ls-pillTabs .nav-link {

  color: var(--text-color);

  font-size: 14px;

  padding: 7px 15px;

  border-radius: 20px;

}



.ls-pillTabs.dark .nav-link {

  color: var(--white);

  font-weight: 600;

}



.ls-pillTabs .nav-link:hover {

  color: var(--pri);

}



.ls-pillTabs .nav-link.active {

  color: var(--white);

}



.ls-pillTabs.dark .nav-link.active {

  color: var(--text-color);

}



.blog-bx {

  background: white;

  border-radius: 12px;

  overflow: hidden;

  border: 1px solid #eee;

  /* box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px; */

}



.blog-bx .tx-bx {

  padding: 25px;

}



.blog-bx .img-bx {

  overflow: hidden;

  margin-bottom: 0;

  position: relative;

  aspect-ratio: 16 / 9;

}



.blog-bx .img-bx .float-date {

  position: absolute;

  bottom: 20px;

  right: 20px;

  background-color: var(--pri);

  color: white;

  padding: 10px 15px;

  font-weight: 600;

  border-radius: 7px;

  text-align: center;

  line-height: 1.2;

  font-size: 22px;

}



.blog-bx .img-bx .float-date span {

  font-weight: 500;

  display: block;

  font-size: 14px;

}



.blog-bx .img-bx img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);

}



.blog-bx .img-bx:hover img {

  transform: scale(1.05);

}



.blog-bx .date {

  display: inline-flex;

  gap: 5px;

  align-items: center;

  font-size: 13px;

}



.blog-bx p {

  display: -webkit-box;

  -webkit-box-orient: vertical;

  text-overflow: ellipsis;

  white-space: normal;

  -webkit-line-clamp: 2;

  overflow: hidden;

}



.blog-bx .tt {

  margin-top: 3px;

  margin-bottom: 5px;

  font-size: 18px;

  font-weight: 600;

  line-height: 1.5;

  padding-bottom: 10px;

  border-bottom: 1px solid #cccccc;

  margin-bottom: 10px;

}



.blog-bx .tt a {

  display: -webkit-box;

  -webkit-box-orient: vertical;

  text-overflow: ellipsis;

  white-space: normal;

  -webkit-line-clamp: 2;

  overflow: hidden;

  color: var(--text-color);

  transition: 0.2s;

}



.blog-bx .tt:hover a {

  color: var(--pri);

}



.blog-bx .read-mr {

  gap: 3px;

  color: var(--text-color);

  font-size: 14px;

  width: 100%;

  font-weight: 400;

  justify-content: space-between;

}



.blog-bx .read-mr:hover {

  color: var(--pri);

}



.blog-bx.blog-card {

  display: flex;

  transition: 0.2s ease;

  gap: 15px;

  border-radius: 10px;

  background-color: var(--off-white);

}



.blog-bx.blog-card .img-bx,

.blog-bx.blog-card .img-bx img {

  width: 100%;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  width: 90px;

  min-width: 90px;

}



.blog-bx.blog-card .tx-bx {

  padding: 0;

  flex-grow: 1;

}



.blog-bx.blog-card .tx-bx .tt a,

.blog-bx.blog-card .tx-bx .tt {

  font-size: 14px;

  margin: 0;

  padding: 0;

  border: 0;

  -webkit-line-clamp: 1;

}



.blog-bx.blog-card .read-mr {

  font-size: 13px;

  width: auto;

  margin-top: 5px;

}



.breadcum-sec ul {

  list-style: none;

  padding: 0;

  margin: 0;

  display: inline-flex;

  gap: 4px 15px;

  flex-wrap: wrap;

  justify-content: center;

  /* padding: 10px 15px; */

  /* background-color: rgba(0, 0, 0, 0.1); */

  border-radius: 999px;

  line-height: 1;

}



.breadcum-sec ul li {

  color: var(--text-color);

  font-weight: 500;

  position: relative;

  font-family: var(--font2);

  font-size: 12px;

}



.breadcum-sec ul li::before {

  content: "/";

  position: absolute;

  top: 0px;

  right: -15px;

  width: 15px;

  height: 20px;

  color: var(--text-color);

  text-align: center;

}



.breadcum-sec ul li:last-child:before {

  content: none;

}



.breadcum-sec ul li a {

  color: var(--pri);

}



.breadcum-sec ul li a:hover {

  color: var(--sec);

}



.img-breadcum-sec {

  overflow: hidden;

  position: relative;

  z-index: 1;

  padding: 150px 0 70px;

}



.img-breadcum-sec .head-sec .tt {

  font-size: 40px;

}



.contact-container {

  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

  border-radius: 3px;

  overflow: hidden;

  padding: 30px 25px;

}



.contact-bx .head-sec {

  margin-bottom: 30px;

}



.contact-bx .head-sec .tt {

  font-size: 23px;

}



.contact-bx .head-sec .tt::before {

  top: 40px;

}



.contact-bx .main-btn {

  padding: 13px 15px;

  font-size: 14px;

}



.contact-bx .con-bx {

  display: flex;

  align-items: center;

  margin-bottom: 13px;

  gap: 10px;

}



.contact-bx .tx-bx .tt {

  font-size: 16px;

  font-weight: 600;

  color: var(--text-color);

}



.contact-bx .con-bx .ic-bx {

  min-width: 40px;

  width: 40px;

  height: 40px;

  border-radius: 100%;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background-color: var(--pri);

  box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.05);

}



.contact-bx .con-bx .ic-bx svg {

  min-width: 15px;

  width: 15px;

  height: 15px;

  color: var(--white);

}



.contact-bx .con-bx a,

.contact-bx .con-bx p {

  font-family: var(--font2);

  font-weight: 400;

  font-size: 14px;

  line-height: 24px;

  color: var(--text-color);

  margin-bottom: 0px;

}



.contact-bx .con-bx a {

  font-weight: 500;

}



.contact-bx .con-bx a:hover {

  color: var(--pri);

}



.map-bx {

  width: 100%;

  display: block;

  margin-bottom: -42px;

}



.content-sec table {

  margin-bottom: 15px;

  width: 100%;

  text-align: center;

}



.content-sec table strong,

.content-sec table b {

  font-weight: 600;

}



tbody,

td,

tfoot,

th,

thead,

tr {

  border-color: #d8d8d8;

  border-style: solid;

  border-width: 1px;

  padding: 5px 10px;

  font-size: 14px;

}



th {

  color: var(--text-color);

}



.clientSlider .swiper-wrapper {

  transition-timing-function: linear;

}



.clients-bx img {

  aspect-ratio: 25 / 14;

  object-fit: contain;

  object-position: center;

  height: 100%;

  width: 100%;

  background-color: white;

  border-radius: 10px;

  border: 1px solid #eee;

  transition: transform 0.5s cubic-bezier(.22, 1, .36, 1);

}



.table-of-con {

  background-color: #f9f9f9;

  border-radius: 15px;

  padding: 23px;

  border: 1px solid #eee;

}



.table-of-con .title {

  font-weight: 700;

  font-size: 20px;

  color: var(--text-color);

  margin-bottom: 10px;

  font-family: var(--font);

}



.table-of-con ul {

  padding-left: 20px;

  margin-bottom: 0;

  display: flex;

  flex-direction: column;

  align-items: start;

}



.table-of-con ul li {

  padding: 2px 0;

  color: var(--para-color);

  font-weight: 400;

  cursor: pointer;

}



.table-of-con ul li:hover {

  text-decoration: underline;

}





.glow {

  transform-origin: center;

  animation: glowEffect 1s ease-in-out;

  animation-delay: 600ms;

}



@keyframes glowEffect {

  0% {

    background: rgba(255, 255, 0, 0);

    box-shadow: 0 0 0 rgba(255, 255, 0, 0);

  }



  50% {

    background: rgba(255, 255, 0, 0.3);

    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);

  }



  100% {

    background: rgba(255, 255, 0, 0);

    box-shadow: 0 0 0 rgba(255, 255, 0, 0);

  }

}



.iti {

  width: 100%;

}



.iti--allow-dropdown .iti__flag-container,

.iti--separate-dial-code .iti__flag-container {

  height: 42px;

}



.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,

.iti--separate-dial-code .iti__selected-flag {

  background-color: transparent;

}



.g-recaptcha {

  transform: scale(0.8);

  transform-origin: 0 0;

}



.business-enq {

  position: fixed;

  bottom: 75px;

  right: 20px;

  z-index: 9;

  border: 0;

  outline: 0;

  background-color: var(--pri);

  color: var(--white);

  font-size: 14px;

  padding: 5px;

  padding-right: 15px;

  border-radius: 24px;

  transition: 0.2s ease-in-out;

  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

  font-weight: 400;

}



.business-enq:hover {

  transform: scale(1.03);

}



.business-enq .icon {

  height: 32px;

  width: 32px;

  border-radius: 100%;

  line-height: 32px;

  text-align: center;

  display: inline-block;

  background: var(--white);

  color: var(--pri);

}



.business-enq .icon svg {

  height: 18px;

  width: 18px;

}



.whatapp_btn {

  background: #01e675;

  width: 40px;

  height: 40px;

  color: var(--white);

  position: fixed;

  right: 20px;

  bottom: 130px;

  cursor: pointer;

  z-index: 9;

  border-radius: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: 0.2s ease-in-out;

  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);

  border: 0;

}



.whatapp_btn svg {

  width: 19px;

  height: 19px;

}



.whatapp_btn:hover {

  transform: scale(1.1);

}



.whatapp_btn:focus,

.whatapp_btn:hover {

  background: #01e675;

  color: var(--white);

}



.error {

  font-size: 14px;

  color: red;

}



.modal-header {

  padding: 0;

  padding-inline: 25px;

  padding-top: 18px;

  border-radius: 0;

  border: 0;

  /* background: var(--off-white); */

}



.modal-header.modal-header2 {

  background: var(--liner);

  background-color: var(--pri);

  color: white;

  padding-block: 12px;

}



.modal-header.modal-header2 .main-tt {

  color: white;

}



.modal-content {

  border-radius: 10px;

  overflow: hidden;

  border: 0;

  background: white;

}



.modal-header.modal-header2 .btn-close {

  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");

}



@media (min-width: 576px) {

  .modal-sm {

    max-width: 300px;

  }

}



.modal-body {

  padding: 10px 25px 20px;

  /* background: var(--off-white); */

}



.modal-content .main-tt {

  text-align: center;

  font-size: 18px;

  font-weight: 600;

  color: var(--text-color);

  font-family: var(--font);

  margin-bottom: 15px;

}



.btn-close {

  float: right;

  box-shadow: none;

}



.btn-close:hover,

.btn-close:focus {

  box-shadow: none;

}



.pop-img {

  aspect-ratio: 1 / 1;

}



.pop-img img {

  aspect-ratio: 1 / 1;

  object-fit: contain;

  object-position: center;

  width: 100%;

  border-radius: 4px;

  overflow: hidden;

}



.content-sec h1,

.content-sec h2,

.content-sec h3,

.content-sec h4,

.content-sec h5,

.content-sec h6,

.content-sec .tt,

.cmTitle {

  text-transform: capitalize;

  font-size: 25px;

  font-weight: 700;

  color: var(--text-color);

  text-align: left;

  margin-bottom: 7px;

  line-height: 1.3;

}



.cmTitle {

  color: var(--pri);

  font-size: 18px;

  margin-bottom: 5px;

}



.content-sec h2,

.content-sec h3,

.content-sec h4,

.content-sec h5,

.content-sec h6,

.content-sec .tt {

  font-size: 20px;

}



.content-sec h4,

.content-sec h5,

.content-sec h6 {

  font-size: 18px;

}



.content-sec ul,

.content-sec ol {

  padding-left: 20px;

  margin: 0;

  margin-bottom: 10px;

}



.content-sec p,

.content-sec li {

  font-size: 15px;

  line-height: 1.6;

  color: var(--para-color);

  text-align: justify;

  font-family: var(--font2);

  font-weight: 400;

}



.content-sec p a {

  color: var(--pri);

}



.content-sec li {

  margin-bottom: 3px;

  position: relative;

}



.content-sec li a {

  display: inline;

  color: var(--text-color);

}



.content-sec ul {

  padding-left: 0;

}



.content-sec ul li {

  padding-left: 20px;

  display: flow-root;

}



.content-sec ul li::before {

  content: "➤";

  position: absolute;

  left: 0px;

  color: var(--pri);

  font-size: 15px;

  top: 1px;

}



.content-sec ul li a {

  display: inline;

  color: var(--text-color);

}



.content-sec table {

  width: -webkit-fill-available;

  margin-bottom: 20px;

  overflow: hidden;

}



.content-sec table p {

  margin-bottom: 0;

  color: var(--para-color);

  font-size: 14px;

}



.content-sec table tr:nth-child(even) {

  background-color: #f8f8f8;

  color: var(--para-color);

}



.content-sec table tr:nth-child(odd) {

  background-color: var(--white);

  color: var(--para-color);

}



.content-sec table th {

  background-color: var(--pri);

  color: var(--white);

  font-weight: 500;

}



ul.footer-menu-list {

  display: flex;

  flex-wrap: wrap;

  padding: 0;

  margin-bottom: 18px;

  list-style: none;

}



ul.footer-menu-list li a {

  margin-right: 15px;

  font-weight: 300;

  display: inline-block;

  line-height: 1.3;

  position: relative;

  text-transform: capitalize;

  color: var(--off-white);

}



ul.footer-menu-list li a:hover {

  color: var(--sec);

  opacity: 1;

}



ul.footer-menu-list li a::before {

  content: "|";

  padding: 0;

  font-size: 13px;

  position: absolute;

  right: -9px;

  top: 1px;

  color: var(--white);

  opacity: 0.8;

}



ul.footer-menu-list li:last-child a::before {

  content: none;

}



footer {

  padding: 70px 0 15px;

  position: relative;

  z-index: 1;

  overflow: hidden;

  background-color: var(--text-color);

}



.ft-bx {

  position: relative;

  z-index: 1;

}



.ft-bx .logo {

  max-width: 120px;

}



.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: 15px;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.8);

  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: 22px;

  color: var(--white);

  text-transform: capitalize;

  margin-bottom: 10px;

  position: relative;

}





.ft-bx p {

  color: rgba(255, 255, 255, 0.8);

  line-height: 1.8;

  font-size: 15px;

  font-weight: 400;

  margin-bottom: 20px;

}



.ft-bx ul {

  padding: 0;

  list-style: none;

  margin: 0;

}



.ft-bx ul li a {

  font-size: 15px;

  color: rgba(255, 255, 255, 0.8);

  padding: 3px 0;

  transition: 0.1s;

  display: inline-block;

  font-weight: 400;

}



.ft-bx ul li a:hover {

  color: var(--pri);

  opacity: 1;

}



.ft-bx ul.social {

  display: flex;

  gap: 5px;

  justify-content: start;

  background-color: transparent;

}



.ft-bx ul.social li a {

  background: var(--pri);

  width: 38px;

  height: 38px;

  color: var(--white);

  border-radius: 100%;

  align-content: center;

  text-align: center;

  line-height: 1;

  opacity: 1;

}



.ft-bx ul.social li a svg {

  width: 17px;

  height: 17px;

}



.ft-bx ul.social li a:hover {

  background: white;

  color: var(--pri);

}



.contact-bx.ft-bx ul.social li a {

  border: 1px solid rgba(0, 0, 0, 0.4);

  color: var(--sec);

}



.contact-bx.ft-bx ul.social li.facebook a {

  background: #3c5b9b;

  color: white;

  border: 0;

}



.contact-bx.ft-bx ul.social li.twitter a {

  background: var(--liner);

  background-color: #000;

  color: white;

  border: 0;

}



.contact-bx.ft-bx ul.social li.linkedin a {

  background: #027ba5;

  color: white;

  border: 0;

}



.contact-bx.ft-bx ul.social li.youtube a {

  background: #f70000;

  color: white;

  border: 0;

}



.contact-bx.ft-bx ul.social li.instagram a {

  background: radial-gradient(circle at 30% 107%,

      #fdf497 0%,

      #fdf497 5%,

      #fd5949 45%,

      #d6249f 60%,

      #285aeb 90%);

  color: white;

  border: 0;

}



.copyright {

  padding-top: 15px;

  margin-top: 140px;

  border-top: 1px dotted rgba(255, 255, 255, 0.12);

}



.copyright svg {

  color: var(--pri);

}



.copyright p {

  color: rgba(255, 255, 255, 0.5);

  margin-bottom: 0;

  font-weight: 400;

  font-size: 13px;

}



.copyright p a {

  color: rgba(255, 255, 255, 0.6);

  display: inline;

  font-weight: 400;

}



.copyright p a:hover {

  color: var(--pri);

}



footer .content-sec h1,

footer .content-sec h2,

footer .content-sec h3,

footer .content-sec .tt {

  color: var(--white);

  font-size: 18px;

  text-transform: capitalize;

}



footer .content-sec p,

footer .content-sec ul li {

  color: var(--off-white);

  font-weight: 300;

  font-size: 14px;

  line-height: 1.7;

}



.sitemap {

  border-left: 1px solid #666;

  padding: 0;

}



.sitemap li {

  list-style: none !important;

  background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0px 9px;

  padding: 0px 0px 0px 15px;

  margin-bottom: 5px;

  font-family: var(--font2);

  color: var(--text-color);

  font-weight: 400;

}



.sitemap li ul {

  border-left: 1px solid #666;

  padding: 0;

}



.sitemap li a {

  color: var(--text-color);

  font-size: 14px;

  padding-bottom: 5px;

  display: inline-block;

}



.sitemap li a:hover {

  color: var(--pri);

}



.market-sec {

  padding: 60px 0;

  font-family: var(--font2);

}



.market-sec h1,

.market-sec .main-tt,

.market-sec h2,

.market-sec h3 {

  font-size: 20px;

  color: var(--text-color);

  line-height: 26px;

  margin: 20px 0 15px;

  font-weight: 600;

}



.market-sec h2,

.market-sec h3 {

  font-size: 18px;

  font-weight: 600;

}



.market-sec .market-bx {

  padding: 10px 12px;

  background-color: var(--off-white);

  color: var(--text-color);

  font-size: 14px;

  transition: 0.2s ease-in-out;

  border-radius: 10px;

}



.market-sec .market-bx:hover {

  background-color: var(--pri);

  color: white;

}



.expend-content-sec {

  overflow: hidden;

}



.expend-content-sec2 {

  max-height: 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;

}


.expend-content-sec3 {

  max-height: 300px;

  overflow: clip;

}



.expend-content-sec3.expanded {

  overflow-y: auto;

  padding-right: 10px;

}



.expend-content-sec3.expanded::-webkit-scrollbar {

  width: 5px;

}



.expend-content-sec3.expanded::-webkit-scrollbar-thumb {

  background-color: rgba(0, 0, 0, 0.2);

  border-radius: 5px;

}


.read-toggle {

  display: inline-block;

  color: currentColor;

  cursor: pointer;

  font-weight: 600;

  margin-top: 10px;

  user-select: none;

  font-size: 0.9em;

}



.read-toggle:hover {

  opacity: 0.8;

}



.abt-vid-bx,

.reels-vid {

  overflow: hidden;

  border-radius: 15px;

  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;

}



.abt-vid-bx iframe,

.reels-vid iframe {

  aspect-ratio: 16 / 9;

  object-fit: cover;

  object-position: center;

  width: 100%;

  display: block;

  overflow: hidden;

  pointer-events: none;

  transform: scale(1.02);

  transform-origin: 50% 50%;

}



.reels-vid iframe {

  aspect-ratio: 35 / 62;

}



.blog-sec h1,

.blog-sec h2,

.blog-sec h3,

.blog-sec h4,

.blog-sec h5,

.blog-sec h6 {

  scroll-margin-top: 100px;

  background: transparent;

  -webkit-background-clip: unset !important;

  -webkit-text-fill-color: initial !important;

}



/* 

.cate-img {

  max-width: 440px;

  float: right;

  width: 100%;

  margin-left: 30px;

  margin-bottom: 30px;

}



.cate-img.left {

  float: left;

  margin-right: 30px;

  margin-left: 0;

} */



.cate-img img {

  aspect-ratio: 1 / 1;

  object-fit: contain;

  object-position: center;

  width: 100%;

  height: 100%;

  overflow: hidden;

  border: 1px solid #eee;

}



.gallery-bx {

  background: #fff;

  position: relative;

  aspect-ratio: 1 / 1;

  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);

  margin-bottom: 3px;

  border-radius: 15px;

  overflow: hidden;

}



.gallery-bx img {

  aspect-ratio: 1 / 1;

  width: 100%;

  object-fit: cover;

  object-position: center;

  transition: 0.3s ease;

}



.gallery-bx:hover img {

  filter: blur(3px);

}



.gallery-bx.certificate-bx img,

.gallery-bx.certificate-bx {

  aspect-ratio: 164 / 235;

}



.gallery-bx img {

  max-width: 100%;

}



.gallery-bx .link-wrap {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 3;

  display: inline-block;

  height: 45px;

  width: 45px;

  line-height: 40px;

  background-color: rgba(255, 255, 255, 0.2);

  border: 2px solid rgba(255, 255, 255, 0.3);

  text-align: center;

  color: #fff;

  font-size: 14px;

  opacity: 0;

  transition: all 0.5s ease-in-out;

  pointer-events: none;

  border-radius: 100%;

}



.gallery-bx .link-wrap svg {

  width: 20px;

  height: 20px;

}



.gallery-bx:hover .link-wrap {

  opacity: 1;

}



.gallery-bx .tt {

  color: white;

  position: absolute;

  bottom: 0;

  left: 0;

  padding: 45px 20px 10px;

  pointer-events: none;

  width: 100%;

  font-weight: 500;

  font-size: 18px;

  letter-spacing: 0.5px;

  background: linear-gradient(to top,

      rgba(2, 20, 4, 0.75) 10%,

      rgba(0, 0, 0, 0) 70%);

  text-shadow: 1px 1px 5px #000;

  z-index: 2;

}





.certificate-bx {

  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px;

  transition: 0.2s ease-in-out;

}



.certificate-bx:hover {

  transform: scale(1.02);

}



.certificate-bx .img-bx {

  aspect-ratio: 1 / 1;

}



.certificate-bx .img-bx img {

  object-fit: cover;

  object-position: top;

  width: 100%;

  height: 100%;

  aspect-ratio: 1 / 1;

}



.certificate-bx .tt {

  background-color: var(--off-white);

  padding: 10px;

  line-height: 1;

  align-content: center;

  color: var(--text-color);

  font-family: var(--font);

  font-size: 15px;

  text-overflow: ellipsis;

  overflow: hidden;

  white-space: nowrap;

}



.certificate-bx .tt svg {

  margin-right: 3px;

}



.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 .filter-accordion-item {

  border: 1px solid #eee;

  border-radius: 10px;

  overflow: hidden;

  background: #ffffff;

  margin-bottom: 12px;

  transition: all 0.3s ease;

  padding: 0;

  box-shadow: none;

}



.lsm-filter-design-wrap .filter-accordion .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: 16px;

  height: 16px;

  cursor: pointer;

  accent-color: var(--pri);

  border-color: #e3e3e3;

  box-shadow: none !important;

  margin-top: 0;

}



.form-check-input:checked,

.form-check-input[type=checkbox]:indeterminate {

  background-color: var(--pri);

  border-color: var(--pri);

}



.lsm-filter-design-wrap .parent-title {

  font-size: 15px;

  font-weight: 500;

  color: var(--text-color);

  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;

  margin: 0;

}



.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: 8px;

  padding: 10px 11px;

  border-radius: 10px;

  background: transparent;

  padding: 0;

  cursor: pointer;

  transition: all 0.25s ease;

}





.lsm-filter-design-wrap .child-title {

  font-size: 14px;

  font-weight: 400;

  color: var(--para-color);

  line-height: 1.3;

}



@media (max-width: 575px) {





  .lsm-filter-design-wrap .category-head {

    padding: 12px;

  }



  .lsm-filter-design-wrap .parent-title {

    font-size: 14px;

  }



  .lsm-filter-design-wrap .child-title {

    font-size: 13px;

  }



  .lsm-filter-design-wrap .accordion-toggle {

    width: 25px;

    height: 25px;

  }

}



.custom-from-row {

  padding: 25px;

  color: var(--text-color);

  border-radius: 10px;

  background-color: #f9f9f9;

  border: 1px solid #eee;

}



.custom-from-row .form-control {

  background-color: white;

}



.hero-section {

  height: 80vh;

  align-content: center;

}



.bg-effect::before {

  content: "";

  opacity: .04;

  object-fit: cover;

  background-image: url(../images/hero-section.gif);

  background-position: 50%;

  background-repeat: repeat;

  background-size: auto;

  width: 100%;

  height: 100%;

  position: absolute;

  inset: 0%;

  z-index: -1;

}



.hero-section .head-sec .tt {

  font-size: 55px;

}



.line-wrapper {

  grid-column-gap: 300px;

  grid-row-gap: 300px;

  justify-content: center;

  align-items: stretch;

  width: 100%;

  height: 100%;

  display: flex;

  position: absolute;

  inset: 0%;

  z-index: -1;

  pointer-events: none;

}



.section-line {

  border: 1px dashed #f6f6f6;

  opacity: .05;

  width: 2px;

  height: 100%;

}



.section-line.border-grey-1 {

  border-color: #191919;

  opacity: .07;

}



.abt-img-sec {

  position: relative;

  overflow: hidden;

  z-index: 1;

}



.abt-img-sec img {

  width: 100%;

  display: block;

  border-radius: 20px;

}



.about-float {

  position: absolute;

  bottom: 0;

  right: 0;

  color: white;

  padding: 20px;

  padding-left: 35px;

  padding-top: 35px;

  border-top-left-radius: 10px;

  background-color: var(--white);

  z-index: 1;

}



.about-float::before {

  content: "";

  position: absolute;

  top: 15px;

  left: 15px;

  right: 0;

  bottom: 0;

  background-color: var(--pri);

  z-index: -1;

  border-radius: 10px;

}



.about-float .num {

  font-size: 40px;

  font-weight: 600;

  font-family: var(--font);

  line-height: 1.2;

}



.about-float p {

  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.8);

}



.stack-cards {

  position: relative;

  padding-bottom: 50px;

}



.stack-card {

  position: sticky;

  top: 120px;

  margin-bottom: 18px;

  transform-origin: center top;

  transform: translateY(calc(var(--stack-index) * 16px));

  transition: transform 0.15s ease-out;

  min-height: 300px;

  display: flex;

  align-items: start;

  justify-content: space-between;

  gap: 40px;

  border: 1px solid #e3e3e3;

  background-color: white;

  padding: 30px;

  border-radius: 15px;

}



.stack-card .icon {

  width: 40px;

  height: 40px;

  flex-shrink: 0;

}



.stack-card .img {

  max-width: 400px;

  width: 100%;

  border-radius: 10px;

  overflow: hidden;

  flex-shrink: 0;

}



.stack-card .img img {

  aspect-ratio: 3.5 / 2;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);

}



.stack-card:hover .img img {

  transform: scale(1.1);

}



.stack-card .action-btn {

  padding: 10px 13px;

  background-color: var(--pri);

  border-radius: 5px;

  border-bottom-right-radius: 11px;

  color: var(--white);

  transition: 0.2s ease-in-out;

}



.stack-card .action-btn:hover {

  background-color: var(--text-color);

}



.stack-card .tx-bx .icon-bx {

  width: 40px;

  height: 40px;

  background-color: var(--text-color);

  color: var(--pri);

  border-radius: 5px;

  margin-bottom: 17px;

  align-content: center;

  text-align: center;

}



.stack-card .tx-bx .tt {

  font-size: 25px;

  margin-top: 12px;

  margin-bottom: 10px;

  font-weight: 700;

  line-height: 1;

  color: var(--text-color);

}



.stack-card .tx-bx .tt a {

  color: var(--text-color);

  display: inline-block;

}



.stack-card .tx-bx .tt a:hover {

  color: var(--pri);

}



.stack-card .oth-bx{

  max-width: 300px;

  flex-grow: 0;

}



.stack-card .oth-bx .tt {

  margin-bottom: 15px;

}



.stack-card .oth-bx ul {

  padding: 0;

  margin: 0;

  list-style: none;

}



.stack-card .oth-bx ul li {

  position: relative;

  padding-left: 25px;

  margin-bottom: 5px;

  color: var(--text-color);

}



.stack-card .oth-bx ul li::before {

  content: "";

  display: inline-block;

  position: absolute;

  top: 7px;

  left: 0;

  width: 15px;

  height: 12px;

  background: url("data:image/svg+xml,%3Csvg%20width%3D%2215%22%20height%3D%2210%22%20viewBox%3D%220%200%2015%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m.843%204.841%203.84%204%208.96-8%22%20stroke%3D%22url(%23a)%22%20stroke-width%3D%221.2%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22a%22%20x1%3D%221.403%22%20y1%3D%22.941%22%20x2%3D%227.871%22%20y2%3D%2211.667%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%23f66234%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23c8370b%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3C%2Fsvg%3E") no-repeat;

  background-size: contain;

  background-position: center;

}



.stack-card .oth-bx ul li a {

  color: var(--text-color);

  font-size: 14px;

  font-weight: 500;

  text-wrap: nowrap;

}



.stack-card .oth-bx ul li a:hover {

  color: var(--pri);

}



@media (max-width: 767px) {

  .stack-card {

    position: relative;

    top: auto;

    transform: none !important;

    min-height: auto;

  }

}



.pro-bx {

  padding: 20px;

  background-color: #212528;

  border-radius: 15px;

  color: rgba(255, 255, 255, 0.5);

  border: 1px solid rgba(255, 255, 255, 0.1);

  height: 100%;

  transition: 0.2s ease-in-out;

  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);

}



.pro-bx:hover {

  box-shadow: 0px 6px 10px 0px rgba(241, 90, 44, 0.4);

}



.pro-bx .sub-tt {

  margin-bottom: 2px;

  color: var(--pri);

  font-size: 13px;

}



.pro-bx .tt {

  font-size: 20px;

  font-weight: 600;

  margin-bottom: 10px;

}



.pro-bx .tt a {

  color: var(--white);

  display: -webkit-box;

  -webkit-box-orient: vertical;

  text-overflow: ellipsis;

  white-space: normal;

  -webkit-line-clamp: 1;

  overflow: hidden;

}



.pro-bx .img {

  aspect-ratio: 1 / 1;

  overflow: hidden;

  position: relative;

  border-radius: 10px;

  margin-bottom: 15px;

}



.pro-bx .img img {

  aspect-ratio: 1 / 1;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);

}



.pro-bx .img:hover img {

  transform: scale(1.05);

}



.pro-bx p {

  color: rgba(255, 255, 255, 0.5);

  line-height: 1.4;

  font-size: 17px;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  text-overflow: ellipsis;

  white-space: normal;

  -webkit-line-clamp: 2;

  overflow: hidden;

}



.pro-bx.light {

  background-color: white;

}



.pro-bx.light .tt {

  font-size: 18px;

  margin-bottom: 5px;

}



.pro-bx.light .tt a {

  color: var(--text-color);

}



.pro-bx.light:hover .tt a {

  color: var(--pri);

}



.pro-bx.light p {

  color: var(--para-color);

  font-size: 15px;

}



.industries-tabs .nav-link {

  padding: 0;

  text-align: left;

  font-size: 18px;

  padding: 10px 18px;

  border-left: 3px solid var(--border-color);

  color: var(--para-color);

  font-weight: 500;

}



.industries-tabs .nav-link.active {

  border-color: var(--pri);

  color: var(--text-color);

}



.why-us-bx {

  background-color: #f9f9f9;

  padding: 30px;

  position: relative;

  border: 1px solid #eee;

  transition: 0.2s ease-in-out;

  border-radius: 10px;

  height: 100%;

}



.why-us-bx:hover {

  border: 1px solid var(--pri);

}



.why-us-bx .count {

  font-family: var(--font);

  font-weight: 800;

  color: var(--text-light);

  position: absolute;

  bottom: 0;

  right: 3px;

  opacity: 0.1;

  font-size: 100px;

  line-height: 1;

  transition: 0.2s ease-in-out;

}





.why-us-bx:hover .count {

  color: var(--pri);

}



.why-us-bx .icon {

  width: 70px;

  margin-bottom: 15px;

}



.why-us-bx .tt {

  font-family: var(--font);

  color: var(--text-color);

  font-weight: 600;

  font-size: 20px;

  margin-bottom: 5px;

}



.why-pointers-bx {

  display: flex;

  gap: 15px;

  align-items: center;

  padding: 20px 0;

  border-top: 1px solid var(--border-color);

}



.why-pointers-bx.why-pointers-bx2 {

  padding: 20px;

  border: 1px solid var(--border-color);

  margin-bottom: 20px;

  border-radius: 15px;

  background-color: #f5f5f5;

}



.why-pointers-bx:last-child {

  border-bottom: 1px solid var(--border-color);

}



.why-pointers-bx .icon {

  width: 45px;

  height: 45px;

  flex-shrink: 0;

  color: var(--pri);

  border: 1px solid var(--pri);

  border-radius: 10px;

  align-content: center;

  text-align: center;

  background-color: rgb(244 121 32 / 10%);

}



.why-pointers-bx .tt {

  font-size: 18px;

  font-weight: 600;

  font-family: var(--font);

  color: var(--text-color);

}



.why-pointers-bx p {

  margin-bottom: 0;

}



.glow::before,

.glow::after {

  content: "";

  position: absolute;

  width: 1100px;

  height: 700px;

  border-radius: 50%;

  filter: blur(110px);

  pointer-events: none;

}



.glow::before {

  background: radial-gradient(ellipse, #e05a24 0%, #9a3a14 40%, transparent 72%);

  top: -420px;

  right: -400px;

  opacity: 0.65;

  animation: sweep1 9s ease-in-out infinite;

}



.glow::after {

  background: radial-gradient(ellipse, #ff7a3d 0%, #b8451c 35%, transparent 70%);

  width: 700px;

  height: 500px;

  bottom: -350px;

  left: -350px;

  opacity: 0.4;

  animation: sweep2 9s ease-in-out infinite;

}



@keyframes sweep1 {

  0% {

    transform: translate(0, 0) scale(0.9);

    opacity: 0.35;

  }



  25% {

    transform: translate(-80px, 40px) scale(1.05);

    opacity: 0.6;

  }



  50% {

    transform: translate(-150px, 80px) scale(1.15);

    opacity: 0.75;

  }



  75% {

    transform: translate(-80px, 40px) scale(1.05);

    opacity: 0.6;

  }



  100% {

    transform: translate(0, 0) scale(0.9);

    opacity: 0.35;

  }

}



@keyframes sweep2 {

  0% {

    transform: translate(0, 0) scale(0.9);

    opacity: 0.25;

  }



  25% {

    transform: translate(60px, -40px) scale(1);

    opacity: 0.4;

  }



  50% {

    transform: translate(120px, -80px) scale(1.1);

    opacity: 0.5;

  }



  75% {

    transform: translate(60px, -40px) scale(1);

    opacity: 0.4;

  }



  100% {

    transform: translate(0, 0) scale(0.9);

    opacity: 0.25;

  }

}



.float-name {

  font-size: 120px;

  line-height: 1;

  text-wrap: nowrap;

  position: absolute;

  font-weight: bolder;

  text-transform: uppercase;

  bottom: 60px;

  left: 50%;

  transform: translateX(-50%);

  color: white;

  opacity: 0.1;

}



.bg-pri .content-sec h2,

.bg-pri .content-sec h3,

.bg-pri .content-sec h4,

.bg-pri .content-sec h5,

.bg-pri .content-sec h6,

.bg-pri .content-sec .tt {

  color: white;

}



.bg-pri .content-sec p,

.bg-pri .content-sec li,

.bg-pri {

  color: rgba(255, 255, 255, 0.95);

}



.abt-img-bx {

  height: 100%;

}



.abt-img-bx img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

}



.js-marquee-wrapper {

  display: flex;

  width: 100%;

}



.jsmarquee-list {

  display: flex;

  gap: 15px;

}



.jsmarquee-list a,

.jsmarquee-list span {

  font-family: var(--font);

  font-weight: 600;

  text-transform: uppercase;

  font-size: 50px;

  color: white;

  white-space: nowrap;

  position: relative;

  line-height: 1;

  opacity: 0.4;

}



.ceo-bx {

  border-radius: 10px;

  overflow: hidden;

  position: relative;

}



.ceo-bx img {

  width: 100%;

  display: block;

  transition: 0.3s ease-in-out;

}



.ceo-bx:hover img {

  transform: scale(1.05);

}



.ceo-bx .tx-bx {

  text-align: center;

  position: absolute;

  bottom: 0;

  padding-bottom: 20px;

  width: 100%;

  background-image: linear-gradient(180deg, #00000000, #151515);

}



.ceo-bx .tx-bx .tt {

  font-size: 22px;

  color: white;

}



.ceo-bx .tx-bx p {

  color: rgba(255, 255, 255, 0.8);

  margin-bottom: 0;

  font-size: 16px;

}



.capabilities-li {

  padding: 0;

  margin: 0;

  list-style: none;

}



.capabilities-li li {

  padding-bottom: 10px;

  margin-bottom: 10px;

  border-bottom: 1px solid var(--border-color);

  font-size: 15px;

  font-weight: 500;

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.capabilities-li li a {

  color: var(--text-color);

}



.capabilities-li li:hover,

.capabilities-li li a:hover {

  color: var(--pri);

}



.certificate-icon {

  display: flex;

  gap: 10px;

  flex-wrap: wrap;

  align-items: start;

  justify-content: end;

}



.certificate-icon img {

  width: 100px;

}



.cap-bx {

  border: 1px solid var(--border-color);

  border-radius: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  height: 100%;

}



.cap-bx .img {

  height: 100%;

  width: 100%;

  overflow: hidden;

}



.cap-bx .img img {

  height: 100%;

  width: 100%;

  object-fit: cover;

  object-position: center;

}



.cap-bx .tx-bx {

  padding: 30px;

  height: 100%;

  align-content: center;

}



.cap-bx .tx-bx .tt {

  font-size: 18px;

  color: var(--text-color);

  font-weight: 600;

  margin-bottom: 5px;

}



.cap-bx .tx-bx p {

  font-size: 13px;

  line-height: 1.6;

}



.cap-bx .tx-bx .project-info {

  padding: 10px 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom: 1px solid var(--text-light);

  gap: 10px;

  /* flex-wrap: wrap; */

}



.cap-bx .tx-bx .project-info:last-child {

  border-bottom: 0;

  padding-bottom: 0;

}



.cap-bx .tx-bx .project-info p {

  margin-bottom: 0;

  color: var(--para-color);

}



.cap-bx .tx-bx .project-info p:last-child {

  font-weight: 500;

  color: var(--text-color);

  text-align: right;

}



.step-bx-row {

  display: flex;

  gap: 10px;

  position: relative;

  z-index: 1;

}



.step-bx-row::before {

  content: "";

  position: absolute;

  height: 2px;

  background-color: #465056;

  width: calc(100% - 200px);

  left: 50%;

  transform: translateX(-50%);

  top: 22px;

  z-index: -1;

}



.step-bx-row .step-bx {

  text-align: center;

  position: relative;

}



.step-bx-row .step-bx .count {

  width: 17px;

  height: 17px;

  font-size: 10px;

  font-weight: 500;

  line-height: 18px;

  padding: 0;

  position: absolute;

  top: -9px;

  right: 40%;

  border-radius: 100%;

  background: var(--pri);

  color: white;

}



.step-bx-row .step-bx .icon {

  border: 2px solid #465056;

  background-color: #2d3235;

  width: 50px;

  height: 50px;

  border-radius: 100%;

  margin: 0 auto 10px;

  align-content: center;

  font-weight: 700;

  color: var(--pri);

}



.step-bx-row .step-bx .icon svg {

  width: 24px;

  height: 24px;

  fill: var(--pri);

}



.step-bx-row .step-bx .tt {

  font-weight: 600;

  font-size: 16px;

  color: var(--white);

  margin-bottom: 5px;

}



.step-bx-row .step-bx p {

  margin-bottom: 0;

  font-size: 13px;

  color: rgba(255, 255, 255, 0.8);

}



.indust-tab {

  border: 1px solid #e3e3e3;

  overflow: hidden;

  border-radius: 10px;

}



.indust-tab .nav {

  border-right: 1px solid #e3e3e3;

}



.indust-tab .nav .nav-link {

  display: flex;

  gap: 10px;

  align-items: center;

  text-align: start;

  background-color: var(--off-white);

  padding: 20px 18px;

  border-radius: 0;

  border-left: 3px solid transparent;

  border-top: 1px solid #e3e3e3;

}



.indust-tab .nav .nav-link:first-child {

  border-top: 0;

}



.indust-tab .nav .nav-link.active {

  background-color: white;

  border-left: 3px solid var(--pri);

}



.indust-tab .nav .nav-link .icon {

  width: 40px;

  height: 40px;

  flex-shrink: 0;

  color: var(--pri);

  border: 1px solid var(--pri);

  border-radius: 10px;

  align-content: center;

  text-align: center;

  background-color: rgb(244 121 32 / 10%);

}



.indust-tab .nav .nav-link .tt {

  color: var(--text-color);

  font-weight: 500;

}



.indust-tab .nav .nav-link p {

  margin-bottom: 0;

  font-size: 13px;

}



.nav-style-1.nav .nav-link {

  border: 1px solid #e3e3e3;

  color: var(--para-color);

  border-radius: 50px;

}



.nav-style-1.nav .nav-link:hover {

  color: var(--pri);

  border-color: var(--pri);

}



.nav-style-1.nav .nav-link.active {

  background-color: var(--pri);

  color: var(--white);

  border-color: var(--pri);

}



.nav-tabs.nav-style-2 {

  border: 0;

}



.nav-tabs.nav-style-2 .nav-link {

  display: inline-block;

  font-size: 14px;

  font-weight: 500;

  color: var(--text-color);

  font-family: var(--font2);

  position: relative;

  padding: 6px 14px;

  border: 1px solid var(--border-color);

  border-radius: 20px;

  order: 1;

}



.nav-tabs.nav-style-2 .nav-link::before {

  content: "";

  width: 8px;

  height: 8px;

  background-color: var(--pri);

  display: inline-block;

  margin-right: 6px;

}



.nav-tabs.nav-style-2 .nav-link.active {

  border-color: var(--pri);

  color: var(--pri);

}



.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-muted);

  font-weight: 500;

}



.spec-pointer li svg {

  color: var(--pri);

  width: 22px;

  height: 22px;

}



.accordion-item,

.accordion-item:first-of-type,

.accordion-item:not(:first-of-type) {

  margin-bottom: 15px;

  background: #f5f5f5;

  border: 0;

  border-radius: 10px;

  padding: 18px;

  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);

}



.accordion-item:last-of-type {

  margin-bottom: 0;

}



.accordion-button {

  background: transparent;

  font-weight: 500;

  outline: 0 !important;

  color: var(--text-color);

  font-size: 16px;

  padding: 0 0 0;

  padding-right: 59px;

  font-family: var(--font);

  border-radius: 0 !important;

}



.accordion-body {

  line-height: 1.7;

  font-size: 14px;

  color: var(--para-color);

  padding: 0;

  margin-top: 10px;

  border-radius: 10px;

}



.accordion-button::after {

  position: absolute;

  right: 0;

  top: -2px;

  width: 28px;

  height: 28px;

  border-radius: 100%;

  background-color: var(--pri);

  background-size: 15px;

  background-position: center;

  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-plus-lg" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2"/> </svg>');

}



.accordion-button::before {

  content: "";

  position: absolute;

  width: 1px;

  height: 100%;

  right: 59px;

  top: 0;

}



.accordion-button:not(.collapsed) {

  box-shadow: none !important;

  background: transparent;

  border: 0;

  color: var(--text-color);

}



.accordion-button:focus {

  box-shadow: none !important;

  border: 0;

}



.accordion-button:not(.collapsed)::after {

  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-dash-lg" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8"/> </svg>');

  background-color: var(--pri);

}



.project-bx {

  border: 1px solid #e0e0e0;

  overflow: hidden;

  border-radius: 20px;

  height: 100%;

  background-color: white;

}



.project-bx .img {

  aspect-ratio: 4 / 3;

  overflow: hidden;

}



.project-bx .img img {

  aspect-ratio: 4 / 3;

  object-fit: cover;

  height: 100%;

  width: 100%;

  object-position: center;

  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);

}



.project-bx .img:hover img {

  transform: scale(1.05);

}



.project-bx .tx-bx {

  padding: 15px;

}



.project-bx .tx-bx .tt {

  font-size: 16px;

  font-weight: 600;

  color: var(--text-color);

  margin-bottom: 5px;

}



.project-bx .tx-bx p {

  font-size: 14px;

}



.youtube-player .youtube-thumbnail {

  position: relative;

  overflow: hidden;

  max-width: 100%;

  background: transparent;

  border-radius: 25px;

  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px;

}



.youtube-player img,

.youtube-player iframe {

  aspect-ratio: 16 / 9 !important;

  object-fit: cover;

  object-position: center;

  width: 100%;

  display: block;

  transform: scale(1.01);

}



.youtube-player .play {

  width: 70px;

  height: 70px;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  transition: 0.2s ease-in-out;

  background: transparent var(--bs-youtube-bg) center/1em auto no-repeat;

  background: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%3E%3Cg%20stroke-width%3D%220%22%2F%3E%3Cg%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20fill%3D%22red%22%20d%3D%22M14.712%204.633a1.75%201.75%200%200%200-1.234-1.234C12.382%203.11%208%203.11%208%203.11s-4.382%200-5.478.289c-.6.161-1.072.634-1.234%201.234C1%205.728%201%208%201%208s0%202.283.288%203.367c.162.6.635%201.073%201.234%201.234C3.618%2012.89%208%2012.89%208%2012.89s4.382%200%205.478-.289a1.75%201.75%200%200%200%201.234-1.234C15%2010.272%2015%208%2015%208s0-2.272-.288-3.367%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22m6.593%2010.11%203.644-2.098-3.644-2.11z%22%2F%3E%3C%2Fsvg%3E');

  /* background: rebeccapurple; */

}



.youtube-player:hover .play {

  animation: none;

  transform: translate(-50%, -50%) scale(1.1);

}



@keyframes pulse {

  to {

    box-shadow: 0 0 0 35px rgba(232, 76, 61, 0);

  }

}



.youtube-player .tt {

  font-size: 16px;

  margin-top: 10px;

  color: var(--text-color);

  text-align: center;

  font-family: var(--font);

  font-weight: 600;

}



.youtube-player img {

  width: 100%;

}



.ls-thankyou-modal .ls-thankyou-modal-content {

  background-color: var(--pri);

  border: none;

  border-radius: 18px;

  overflow: hidden;

  position: relative;

}



.ls-thankyou-modal .ls-thankyou-modal-header {

  border-bottom: none;

  padding: 16px 16px 0;

  justify-content: flex-end;

  background: unset;

}



.ls-thankyou-modal .ls-thankyou-modal-header .btn-close {

  filter: invert(1);

  opacity: 0.6;

  box-shadow: none;

}



.ls-thankyou-modal .ls-thankyou-modal-header .btn-close:hover {

  opacity: 1;

}



.ls-thankyou-modal .ls-thankyou-modal-body {

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  padding: 16px 40px 16px;

  position: relative;

  z-index: 1;

  background-color: unset;

}



.ls-thankyou-modal .ls-thankyou-modal-footer {

  border-top: none;

  justify-content: center;

  padding: 8px 40px 40px;

  position: relative;

  z-index: 1;

}



.ls-thankyou-modal .ls-thankyou-modal-content::before {

  content: "";

  position: absolute;

  bottom: -15px;

  left: -5px;

  width: 150px;

  height: 150px;

  background-image: url("../images/svgs/baby-svgrepo-com.svg");

  background-size: contain;

  background-repeat: no-repeat;

  opacity: 0.5;

  bottom: 10px;

}



.ls-thankyou-modal .ls-thankyou-modal-content::after {

  content: "";

  position: absolute;

  top: 38px;

  right: 5px;

  width: 90px;

  height: 90px;

  background-image: url("../images/family.svg");

  background-size: contain;

  background-repeat: no-repeat;

  opacity: 0.5;

}



.ls-thankyou-modal .ls-thankyou-title {

  font-size: 34px;

  font-weight: 800;

  color: #ffffff;

  letter-spacing: 0.04em;

  text-transform: uppercase;

  margin-bottom: 10px;

}



.ls-thankyou-modal .ls-thankyou-desc {

  font-size: 15px;

  color: rgba(255, 255, 255, 0.85);

  line-height: 1.65;

  max-width: 300px;

  margin: 0 auto;

}



.ls-thankyou-modal .ls-thankyou-btn-home {

  padding: 11px 36px;

  background-color: #ffffff;

  color: var(--pri);

  border: none;

  border-radius: 8px;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  cursor: pointer;

  transition: opacity 0.2s;

}



.ls-thankyou-modal .ls-thankyou-btn-home:hover {

  opacity: 0.88;

  color: var(--pri);

}



.ls-thankyou-modal .tt {

  font-size: 16px;

  font-weight: 800;

  color: #ffffff;

  letter-spacing: 0.04em;

  text-transform: uppercase;

  margin-bottom: 10px;

}



.faqs-sec.ls-pillTabs {

  display: block;

  padding: 0;

  background-color: transparent;

  border: 0;

  overflow: unset;

  border-radius: 0;

  padding: 0 35px;

}



.faqs-sec.ls-pillTabs .ls-pillIndicator {

  background: transparent;

}



.faqs-sec.ls-pillTabs .nav-link {

  background-color: var(--off-white);

  border: 1px solid #e3e3e3;

}



.faqs-sec.ls-pillTabs .nav-link.active {

  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, var(--pri), var(--pri));

  display: inline-block;

}



.faqs-sec.ls-pillTabs .swiper-slide {

  width: auto;

}



.faq-button-next {

  right: 0;

}



.faq-button-prev {

  left: 0;

}



.swiper-button-next:after,

.swiper-button-prev:after {

  font-size: 10px;

  width: 28px;

  height: 28px;

  border-radius: 100%;

  background-color: var(--off-white);

  border: 1px solid #e3e3e3;

  text-align: center;

  align-content: center;

  color: var(--pri);

  font-weight: 600;

}



.swiper-button-next:hover:after,

.swiper-button-prev:hover:after {

  background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, var(--pri), var(--pri));

  color: white;

}



.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(--pri);
}

.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);
}

.home-slider {
    margin: 5px;
    border-radius: 14px;
}

.home-slider .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  border: none;
}

.home-slider .swiper-button-next {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border: none;
}

.home-slider .swiper-button-prev,
.swiper-button-next {
  color: var(--white);
  background-color: rgba(0, 179, 250, 0.486);
  border-radius: 50%;
  max-width: 28px;
  height: 28px;
  width: 28px;
}



.youtube-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
}

.youtube-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: #000;
}

.youtube-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.youtube-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    transition: background 0.3s ease;
}

.youtube-cover:hover::after {
    background: rgba(0, 0, 0, 0.3);
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 76px;
    height: 54px;
    place-items: center;
    border-radius: 14px;
    background: #ff0000;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.youtube-play-button svg {
    margin-left: 5px;
}

.youtube-cover:hover .youtube-play-button {
    transform: translate(-50%, -50%) scale(1.08);
}

.youtube-player,
.youtube-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.youtube-video.is-playing .youtube-cover {
    display: none;
}


.product-gallery-column { min-width: 0; }
        #productGallery {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            border: 1px solid #eee;
            background: #fff;
            --swiper-theme-color: #964c0e;
            --swiper-navigation-size: 20px;
        }
        #productGallery .swiper-slide { height: auto; }
        #productGallery .swiper-slide img {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            object-fit: contain;
        }
        #productGallery .swiper-button-prev,
        #productGallery .swiper-button-next {
            width: 28px;
            height: 28px;
            margin-top: -19px;
            padding: 0;
            border: 1px solid #eee;
            border-radius: 50%;
            background: #fff;
            color: #964c0e;
            box-shadow: 0 2px 8px #0002;
        }
        #productGallery .swiper-pagination {
            position: relative;
            inset: auto;
            padding: 10px 0;
            line-height: 1;
            margin-top : -35px;
        }
        
        
.manufact-bx {
    height: 100%;
}

.manufact-bx .why-us-bx {
    padding: 20px;
    background-color: #fffcfa;
}
           
.manufact-bx .why-us-bx .tt {
    font-size: 15px;
}

.manufact-bx .why-us-bx p {
    font-size : 12px;
}



