:root {
  --font: "Roboto Slab", sans-serif;
  --font2: "Roboto", sans-serif;
  --liner: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --pri: #402f6b;
  --sec: #11161f;
  --text-color: #1e1e1e;
  --text-light: #8c8c8c;
  --para-color: #5e5e5e;
  --border-color: #ececec;
  --white: #fff;
  --off-white: #ebebeb;
  --black: #111;
  --animate-duration: 2s;
}

body {
  background: var(--white);
  font-family: var(--font2);
  color: var(--para-color);
  font-size: 15px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

p {
  color: var(--para-color);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--font2);
  line-height: 1.6;
}

a {
  display: block;
  text-decoration: none;
}

p a {
  display: inline;
}

.head-sec {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 35px;
}

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

.head-sec .sub-tt {
  font-size: 16px;
  font-weight: 500;
  color: var(--pri);
  align-content: center;
  font-family: var(--font);
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
}

.head-sec .tt {
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative;
  text-transform: capitalize;
}

.head-sec.line .tt {
  margin-bottom: 25px;
  padding-bottom: 5px;
  position: relative;
}

.head-sec.line .tt::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 2px;
  background-color: var(--pri);
  transform: translateX(-50%);
  left: 50%;
  bottom: -10px;
}

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

.head-sec p {
  font-size: 15px;
  color: var(--para-color);
  font-weight: 400;
  margin-bottom: 0;
}

.head-sec.text-white .sub-tt::before {
  border-bottom: 1px solid var(--white);
}

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

.head-sec.text-white p {
  opacity: 0.9;
}

.w-btn {
  padding: 11px 15px;
  color: white;
  border: 1px solid #00c966;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  font-size: 15px;
  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: 12px 22px;
  color: var(--white);
  border: 1px solid var(--sec);
  background-color: var(--sec);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font2);
  text-transform: capitalize;
  white-space: nowrap;
  outline: none;
  transition: 0.2s ease-in-out;
  justify-content: center;
  border-radius: 8px;
  line-height: 1;
}

.main-btn.light {
  background-color: transparent;
  border-color: var(--pri);
  color: var(--pri);
}

.main-btn.light:hover {
  background-color: var(--pri);
  counter-reset: var(--white);
}

.main-btn.sm,
.w-btn.sm {
  padding: 10px 17px;
  font-size: 13px;
  border-radius: 7px;
  font-weight: 400;
}

.main-btn:hover {
  background: var(--pri);
  color: var(--white);
  border-color: var(--pri);
}

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

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

.form-label{
  font-size: 0.9em;
  margin-bottom: 0;
}

.form-control{
  background-color: #F4F5F8;
  border-color: #dadbdd;
  font-size: 14px;
  height: 40px;
}

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

textarea.form-control {
  min-height: 100px;
  resize: none;
  align-content: start;
}

.form-control:focus,
.form-select:focus {
  border-color: #e3e3e3;
  box-shadow: none;
}

.iti {
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  height: 40px;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

.g-recaptcha {
  transform: scale(0.85);
  transform-origin: 0 0;
}

.logo {
  max-width: 220px;
  width: auto;
  height: auto;
}

.logo.dark {
  display: none;
  filter: drop-shadow(1px 1px 0px black);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.25);
}

.bg-inner header {
  position: relative;
  background: white;
}

header.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  animation-duration: 600ms;
  animation-fill-mode: both;
}

header:not(.stricky-fixed) .logo {
  display: none;
}

header:not(.stricky-fixed) .logo.dark {
  display: block;
}

.bg-inner header .logo {
  display: block;
}

.bg-inner header .logo.dark {
  display: none;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

header.stricky-fixed .menubar {
  padding-block: 0;
}

.inner-bg header {
  background: white;
}

.inner-bg header .logo {
  display: block;
}

.inner-bg header .logo.dark {
  display: none;
}

.navigation .nav-header {
  display: none;
  padding: 12px 20px;
}

.navigation .navbar button {
  width: 40px;
  height: 40px;
  background: var(--pri);
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 25px;
  border-radius: 0;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  position: relative;
  z-index: 99;
  padding: 5px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.navigation .navbar button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 70%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 15%;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
  top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
  top: 18px;
}

.navigation .navbar button span:nth-child(4) {
  top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
  transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .menu {
  display: block;
}

.navigation .menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

.navigation .menu ul li {
  display: inline-block;
  position: relative;
}

.navigation .menu ul li a {
  padding: 28px 15px;
  display: block;
  color: var(--text-color);
  transition: all 0.2s ease;
  font-size: 15px;
  font-family: var(--font);
  background: transparent;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
}

.navigation .menu ul li:hover a,
.navigation .menu ul li.active a {
  color: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown {
  top: 100%;
  left: 0;
  text-align: left;
}

.navigation .menu ul li ul.ls-dropdown li:last-child {
  border: 0;
}

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown li ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul li ul.ls-dropdown {
  position: absolute;
  width: 285px;
  display: none;
  z-index: 99999;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
  background: #fff;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.navigation .menu ul li:hover ul.ls-dropdown {
  display: block;
}

.navigation .menu ul li:hover ul.ls-dropdown li ul.ls-dropdown {
  display: none;
  transition: all 0.3s ease;
  width: max-content;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown {
  display: block;
}

.navigation .menu ul li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

.navigation .menu ul li ul.ls-dropdown li:last-child a:after {
  display: none;
}

.navigation .menu ul li ul.ls-dropdown li a:hover {
  color: white;
  background-color: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown li:hover a {
  color: white;
  background-color: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a {
  background: #fff;
  color: #333;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a:hover {
  color: #fff;
  background: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown li a {
  color: var(--text-color);
  font-size: 15px;
  padding: 7px 13px;
  position: relative;
  display: block;
  text-transform: capitalize;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 400;
}

.navigation ul li.ls-submenu a button {
  border: 0;
  background: transparent;
  outline: 0;
  padding: 0;
  margin: 0 0 0 3px;
  color: var(--text-color);
}

.navigation ul li.ls-submenu a button svg {
  width: 16px;
  height: 16px;
}

.navigation ul li.ls-submenu:hover svg {
  transform: rotateZ(180deg);
  color: var(--pri);
}

.navigation ul li.ls-submenu:hover ul.ls-dropdown li.ls-submenu svg {
  color: #242424;
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button {
  float: right;
  color: #333;
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button svg {
  transform: rotateZ(-90deg);
}

.navigation ul li.ls-submenu ul.ls-dropdown li.ls-submenu:hover svg {
  color: #fff;
}

.navigation .navbar {
  display: none;
  padding: 12px 0;
  margin: 0;
}

.navigation .menu ul > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li > ul.ls-dropdown > li > ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation
  .menu
  ul
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul > li > ul.ls-dropdown > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li ul.ls-dropdown {
  position: absolute;
  min-width: 200px;
  width: max-content;
  max-width: 390px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  margin: 0;
  padding: 0;
  text-align: left;
}

.navigation .menu ul > li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

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

main video {
  height: 100vh;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.carousel-control-next,
.carousel-control-prev {
  line-height: 0;
  position: absolute;
  top: 52%;
  display: block;
  width: 38px;
  height: 38px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: #fff;
  border: 0;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  border-radius: 100%;
  z-index: 9;
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 16px;
  width: 16px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background-color: var(--pri);
  opacity: 1;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

@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: 45px;
  height: 45px;
  background-color: #fdfff8;
  border: 1px solid var(--border-color);
  border-radius: 100%;
  color: var(--para-color);
  align-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.cate-prev {
  right: 50px;
}

.cate-next svg,
.cate-prev svg {
  width: 25px;
  height: 25px;
}

.cate-next:hover,
.cate-prev:hover {
  background-color: var(--pri);
  color: var(--white);
}

.lead-sure-section {
  padding: 70px 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(--sec);
  align-content: center;
}

.bg-light {
  background-color: #f9f9f9 !important;
}

.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;
  font-family: var(--font);
}

.content-sec hr {
  color: var(--pri);
  opacity: 1;
  border-width: 2px;
}

.content-sec h1 span {
  color: var(--sec);
}

.cmTitle {
  color: var(--text-color);
  font-size: 24px;
  margin-bottom: 5px;
}

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

.content-sec ul {
  padding-left: 5px;
  margin: 0;
  margin-bottom: 10px;
  list-style: none;
}

.content-sec ul li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 6px;
}

.content-sec ul li::before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 9px;
  text-align: center;
  align-content: center;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: var(--pri);
  color: white;
}

.content-sec p {
  margin-bottom: 10px;
}

.content-sec p,
.content-sec ul li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--para-color);
  text-align: justify;
  font-family: var(--font2);
  font-weight: 400;
}

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

.content-sec ul li a {
  display: inline;
  color: var(--text-color);
}

.abt-sec .content-sec {
  padding-left: 20px;
  border-left: 3px solid var(--pri);
}

.abt-sec .content-sec p {
  color: var(--text-color);
  font-size: 16px;
}

.feature-bx {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 18px;
  border-radius: 10px;
  text-align: center;
  padding: 18px;
  height: 100%;
}

.feature-bx.feature-bx2 {
  box-shadow: none;
  border-style: double;
  border-width: 4px;
}

.feature-bx.feature-bx3 {
  box-shadow: none;
  padding: 0;
}

.feature-bx .icon-bx {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
}

.feature-bx.feature-bx2 .icon-bx,
.feature-bx.feature-bx3 .icon-bx {
  width: 65px;
  height: 65px;
}

.feature-bx .tt {
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 5px;
}

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

.cate-bx .img {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: rgba(105, 108, 111, 0.2) 0px 5px 10px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.cate-bx .img:hover {
  transform: translateY(5px);
}

.cate-bx .img.img2 {
  transform: none;
  position: relative;
}

.cate-bx .img.img2::before {
  content: "";
  position: absolute;
  background-color: black;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  transition: 0.6s;
  pointer-events: none;
}

.cate-bx:hover .img.img2::before {
  opacity: 0.4;
}

.cate-bx .img.img2 img {
  transform: scale(1.2) translateY(-8%);
  transition: 0.6s;
}

.cate-bx:hover .img.img2 img {
  transform: scale(1.2) translateY(0%);
}

.cate-bx .img.img2 .tt {
  position: absolute;
  transform-origin: center;
  transform: translate(-50%, -50%) scale(0);
  top: 50%;
  left: 50%;
  color: white;
  z-index: 2;
  font-weight: 500;
  font-size: 20px;
  width: max-content;
  transition: 0.6s;
}

.cate-bx .img.img2:hover .tt{
transform: translate(-50%, -50%) scale(1);
}

.cate-bx .img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cate-bx .tt a {
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font);
  color: var(--text-color);
  margin-bottom: 10px;
}

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

.cate-card-bx {
  height: 100%;
  align-content: center;
  background-color: var(--off-white);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;
  padding: 20px 30px;
}

.pro-sec .row .col:nth-child(3) .col-lg-6.img-bx,
.pro-sec .row .col:nth-child(4) .col-lg-6.img-bx {
  order: 1;
}

.pro-sec .row .col:nth-child(3) .col-lg-6.tx-bx,
.pro-sec .row .col:nth-child(4) .col-lg-6.tx-bx {
  order: 0;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: var(--off-white);
  border-style: solid;
  border-width: 1px;
  padding: 5px 10px;
  font-size: 15px;
}

.clientSlider .swiper-wrapper {
  transition-timing-function: linear;
}

.client-bx img {
  display: block;
  width: 100%;
  aspect-ratio: 7 / 4;
  object-fit: contain;
  object-position: center;
}

.counter-section {
  background: url(../images/bg/bg.webp) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.counter-section::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.counter-section .svg-top svg,
.counter-section .svg-bottom svg {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 10px;
}

.counter-section .svg-bottom svg {
  bottom: -1px;
  top: auto;
  transform: rotate(180deg);
}

.count-bx {
  text-align: center;
  padding: 20px;
  height: 100%;
}

.counter-section .row .col:nth-child(1) .count-bx,
.counter-section .row .col:nth-child(2) .count-bx {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.counter-section .row .col:nth-child(2) .count-bx,
.counter-section .row .col:nth-child(4) .count-bx {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.count-bx .tt {
  font-size: 50px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font2);
  align-content: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.5px;
  line-height: 1;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: var(--font2);
  line-height: 1;
}

.count-bx p {
  color: var(--white);
  font-size: 18px;
  margin-top: 10px;
}

.industries-bx .img {
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.industries-bx .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

.industries-bx .tt {
  padding: 13px;
  text-align: center;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: calc(100% - 40px);
  margin: 0 auto;
  font-weight: 500;
  font-size: 19px;
  color: var(--text-color);
  font-family: var(--font);
  background-color: white;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.cta-container {
  border-radius: 15px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.cta-bx {
  padding: 30px 20px;
  display: flex;
  gap: 15px;
}

.cta-bx.cta-bx2 {
  border: 1px solid var(--border-color);
  box-shadow: 0px 0px 25px -10px rgba(0, 0, 0, 0.32);
  border-radius: 10px;
  height: 100%;
  padding: 25px;
}

.cta-bx.dark {
  background: linear-gradient(180deg, #2f2057 0%, #747474 100%);
  border-radius: 15px;
}

.cta-bx .icon-bx {
  width: 56px;
  min-width: 56px;
  border-radius: 100%;
  text-align: center;
  align-content: center;
  height: 56px;
  background-color: white;
  color: var(--pri);
  font-size: 28px;
}

.cta-bx:hover .icon-bx {
  background-color: var(--pri);
  color: white;
}

.cta-bx.cta-bx2 .icon-bx {
  background-color: #f0f0f0;
  border-radius: 0;
  width: 50px;
  height: 50px;
  min-width: 50px;
  color: var(--pri);
  font-size: 25px;
}

.cta-bx .tx-bx .tt {
  font-family: var(--font);
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1;
}

.cta-bx .tx-bx p {
  margin-bottom: 0;
}

footer {
  padding-top: 60px;
  background: url(../images/bg/ft-bg.webp) no-repeat;
  background-size: cover;
  background-position: top center;
  border-top: 1px solid var(--pri);
  position: relative;
  z-index: 1;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.03;
  z-index: -1;
}

footer p,
footer a {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.4;
}

.ft-bx .ft-tt {
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
}

.ft-bx .ft-tt::before {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 70px;
  height: 1.5px;
  background-color: var(--pri);
}

.ft-bx ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ft-bx ul li {
  position: relative;
  padding-left: 20px;
}

.ft-bx ul li::before {
  content: "\f054";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 13px;
  color: var(--pri);
}

.ft-bx ul li a {
  padding: 3px 0;
  color: var(--text-color);
  font-size: 16px;
  transition: 0.2s ease;
}

.ft-bx ul li a:hover {
  color: var(--pri);
}

.ft-bx .con-bx {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

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

.ft-bx .con-bx i {
  font-size: 22px;
  color: var(--pri);
}

footer .logo-bx {
  margin-bottom: 20px;
  max-width: 240px;
}

.footer-bottom {
  margin-top: 30px;
  padding: 10px 0;
  border-top: 1px solid var(--pri);
}

.footer-bottom p {
  text-align: center;
  color: var(--text-color);
  font-size: 16px;
}

.footer-bottom b,
.footer-bottom a {
  color: var(--pri);
}

.scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  border-radius: 5px;
  padding: 8px;
  color: white;
  background-color: var(--pri);
  border: 0;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.scrollToTop.show {
  opacity: 1;
  pointer-events: auto;
}

.lead-sure-section.bg-img {
  background: url(../images/bg/bg2.webp);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}

.lead-sure-section.bg-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(122deg, #000000 61%, #3b57e7 100%);
  z-index: -1;
  opacity: 0.79;
}

.pro-li .pro-bx{
  margin-bottom: 50px;
}

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

.pro-li .pro-bx:nth-child(even) .img-bx,
.pro-li .pro-bx:nth-child(odd) .tx-bx{
  order: 1;
}

.pro-li .pro-bx:nth-child(even) .tx-bx,
.pro-li .pro-bx:nth-child(odd) .img-bx{
  order: 0;
}

.con-bx2 {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.con-bx2:last-child{
  margin-bottom: 0;
} 
.con-bx2 .icon-bx{
  width: 42px;
  min-width: 42px;
  height: 42px;
  text-align: center;
  align-content: center;
  border-radius: 100%;
  background: var(--pri);
  color: var(--white);
}

.con-bx2 .tx-bx .tt{
  font-family: var(--font);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
}

.con-bx2 .tx-bx p{
  margin-bottom: 0;
}

.con-bx2 .tx-bx p a{
  color: currentColor;
}

.con-bx2 .tx-bx p a:hover{
  color: var(--pri);
}

.gallery-bx{
  aspect-ratio: 265 / 200;
  overflow: hidden;
  border: 1px solid #333;
  border-radius: 6px;
}

.gallery-bx img{
  aspect-ratio: 265 / 200;
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.reel-video-bx{
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
}

.gallery-bx.gallery-bx2{
  border: 0;
  aspect-ratio: 1  / 1;
}

.gallery-bx.gallery-bx2 img{
  aspect-ratio: 1  / 1;
}

.swiper-pagination{
  position: static;
}

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

.business-enq {
  position: fixed;
  bottom: 65px;
  left: 20px;
  z-index: 9;
  border: 0;
  outline: 0;
  background-color: var(--pri);
  color: var(--white);
  font-size: 15px;
  padding: 5px;
  padding-right: 15px;
  border-radius: 24px;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  font-weight: 400;
}

.business-enq:hover {
  transform: scale(1.03);
}

.business-enq .icon {
  height: 32px;
  width: 32px;
  border-radius: 100%;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  background: var(--white);
  color: var(--pri);
}

.business-enq .icon svg {
  height: 18px;
  width: 18px;
}

.whatapp_btn {
  background: #01e675;
  width: 40px;
  height: 40px;
  color: var(--white);
  position: fixed;
  left: 20px;
  bottom: 120px;
  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: 15px;
  color: red;
}

.form-group{
  margin-bottom: 10px;
}

.modal-header {
  padding: 0;
  padding-inline: 20px;
  padding-top: 18px;
  border-radius: 0;
  border: 0;
  /* border-bottom: 1px solid #e3e3e3; */
}

.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 {
  background: #fff;
  border-radius: 0;
  border: 0;
}

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

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