@import url(root.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}
a{
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  font-family: var(--font-family)!important;
  font-weight: 400;
  color: var(--black);
  font-size: var(--body-font-size)!important;
}

:is(h1, h2, h3, h4, h5, h6) {
  font-weight: 700 !important;
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

h4 {
  font-size: var(--h4);
}

p {
  color: var(--black);
  font-size: var(--body-font-size);
  line-height: 1.75rem;
}

a {
  color: var(--prime-color);
  transition: var(--transition);
}
a:hover {
  color: var(--black-dark);
}

.accordion-item {
  background-color: transparent;
}

input,
.form-control {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  padding: 0.65rem 1rem;
  border-radius: 0.4rem;
}
input:focus,
.form-control:focus {
  border-color: rgba(225, 120, 0, 0.8);
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.3);
}

::selection {
  background-color: var(--black-dark);
  color: var(--white);
}

.__hero_text::selection {
  background-color: var(--black-dark);
  color: var(--white);
}

h1::selection,
h2::selection,
h3::selection,
h4::selection {
  background-color: var(--black-dark);
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.heading {
  color: var(--black-dark);
}

.brand_logo img {
  height: 32px;
  position: relative;
}

.btn-outline-primary {
  border-color: var(--prime-color)!important;
  border-width: 2px;
  border-style: solid;
  font-weight: 500;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: var(--prime-color)!important;
}
.btn-outline-primary:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.btn-outline-primary:hover {
  color: var(--white)!important;
  transition: var(--transition);
}
.btn-outline-primary:active {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
  background-color: var(--prime-color);
}
.btn-outline-primary:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
.btn-outline-primary:hover {
  background: var(--black-dark)!important;
  color: var(--white)!important;
  transition: var(--transition);
  border-color: var(--black-dark)!important;
}

.light-gradent-bg {
  background: rgb(253, 244, 225);
  background: linear-gradient(0deg, rgb(253, 244, 225) 31%, rgba(253, 244, 225, 0.5382528011) 81%, rgba(253, 244, 225, 0) 100%);
}

.__hero_text {
  font-size: var(--hero-text-size);
  color: var(--secondary);
  line-height: clamp(1.45rem, -0.875rem + 6.333vw, 1.85rem);
}

.btn-link {
  color: var(--prime-color);
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-link:hover {
  color: var(--black-dark);
  background-color: rgba(0, 0, 0, 0.1);
}
.btn-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}

.btn-primary {
  background: var(--prime-color);
  color: var(--white);
  font-weight: 500;
  border-color: var(--prime-color);
  border-radius: 0.45rem;
  font-size: 1rem;
  padding: 0.5rem 1rem;
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
.btn-primary:hover {
  background: var(--black-dark);
  border-color: var(--black-dark);
}

.btns {
  display: flex;
  gap: 15px;
}

.video {
  height: 100%;
}
.video iframe,
.video video {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 1rem;
}

.product_video {
  position: relative;
}
.product_video button.btn-close {
  background-color: #fff;
  position: absolute;
  right: 1rem;
  top: 1rem;
  border-radius: 5rem;
  z-index: 3;
  padding: 0.75rem;
  opacity: 1;
}
.product_video iframe {
  margin-bottom: -10px;
}

.go-to-top {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 20px;
  z-index: 5;
  mix-blend-mode: difference;
  transition: var(--transition);
}
.go-to-top a {
  padding: 1rem;
  border-radius: 0.5rem;
  height: 42px;
  width: 42px;
  transition: var(--transition);
  border: 2px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.go-to-top a:hover {
  background-color: var(--black-dark);
}
.go-to-top span {
  position: absolute;
  top: -1.25rem;
  display: block;
  text-align: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}
.go-to-top:hover span {
  opacity: 1;
}

.go-to-top.fixed {
  opacity: 1;
  bottom: 1rem;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  left: 1.75rem;
  right: auto;
  display: none !important;
}
.go-to-top.fixed i {
  color: #fff;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.25rem 0.5rem;
  z-index: 10;
  background-color: var(--white);
}
header .header_bar {
  position: relative;
  width: 100%;
}
header nav .m-logo {
  display: flex;
  gap: 15px;
  align-items: center;
}
header nav .m-logo .brand_logo {
  margin-right: 3rem;
  margin-left: 1rem;
}
header nav .m-logo .brand_logo img {
  height: 2.15rem;
  position: relative;
}
header nav .m-logo .brand_logo .default-logo {
  display: none;
}
header nav .m-logo .brand_logo .fixed-logo {
  display: block;
}
header nav .navbar-nav {
  margin-top: 15px;
}
header nav .nav-item {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header nav .nav-item:last-child {
  border-bottom: 0px;
}
header nav .nav-item a.nav-link {
  color: var(--black-dark);
  font-weight: 500;
  opacity: 1 !important;
  transition: var(--transition);
  text-transform: capitalize;
  font-size: var(--nav-link);
  padding: 0.75rem 0rem;
}
header nav .nav-item a.nav-link:hover {
  color: var(--prime-color);
  border-color: var(--white);
}
header nav .big-menu {
  display: none;
}
header .head-right {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  position: absolute;
  right: 0;
  top: -0.3rem;
}
header .head-right .search__bar a:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
header .head-right .search__bar .default-i {
  display: none;
}
header .head-right .search__bar .fixed-i {
  display: block;
}
header .head-right .lets__talk a .loop-text {
  display: flex;
  gap: 10px;
  align-items: center;
}
header .head-right .lets__talk a .loop-text span {
  display: none;
}
header .head-right .btn-outline-primary {
  border-color: var(--prime-color);
  border-width: 2px;
  border-style: solid;
  font-weight: 500;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: var(--white);
  border: 2px solid transparent;
  padding: 0.5rem 0.5rem;
}
header .head-right .btn-outline-primary:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
header .head-right .btn-outline-primary:hover {
  color: var(--white);
  transition: var(--transition);
}
header .head-right .btn-outline-primary:active {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
  background-color: var(--prime-color);
}
header .head-right .btn-outline-primary:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
header .head-right .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
header .head-right .btn-outline-primary img.mail {
  display: block;
  transition: all 0.3s ease;
}
header .head-right .btn-outline-primary img.mail-h {
  display: none;
  transition: all 0.3s ease;
}
header .head-right .btn-outline-primary:hover {
  border: 2px solid transparent !important;
}
header .head-right .btn-outline-primary:hover img.mail {
  display: none;
}
header .head-right .btn-outline-primary:hover img.mail-h {
  display: block;
}
header .head-right .btn-outline-primary:hover:before {
  transform: scaleX(1);
}
header .head-right .btn-outline-primary:hover::after {
  transform: scaleX(1);
  transform-origin: center right;
}
header .head-right .btn-outline-primary:active {
  background-color: transparent;
}
header .head-right .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
header .navbar-toggler {
  border-radius: 100px;
  padding: 0;
  width: 32px;
  height: 32px;
}
header .navbar-toggler span {
  width: inherit;
  height: inherit;
  display: inline-flex;
}
header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
  box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0);
  border-radius: 100px;
}
header .navbar-toggler i {
  font-size: 24px;
  padding: 5px;
}
header .navbar-toggler[aria-expanded=false] i.menu {
  display: block;
}
header .navbar-toggler[aria-expanded=false] .menu-close {
  display: none;
}
header .navbar-toggler[aria-expanded=true] i.menu {
  display: none;
}
header .navbar-toggler[aria-expanded=true] .menu-close {
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 100px;
}

header.fixed {
  position: fixed;
  top: 0;
  height: auto;
  z-index: 99;
  background-color: var(--white);
  transition: var(--transition);
  animation-duration: 1s;
  transform-origin: top;
  padding: 0.25rem 0.5rem;
  box-shadow: 0 0px 3px rgba(121, 85, 72, 0.1);
}
header.fixed .brand_logo {
  margin-right: 3rem;
  margin-left: 1rem;
}
header.fixed .brand_logo img {
  height: 3.15rem;
  position: relative;
}
header.fixed .brand_logo .default-logo {
  display: none !important;
}
header.fixed .brand_logo .fixed-logo {
  display: block !important;
}
header.fixed .nav-item::after {
  height: 3px;
  border-radius: 5px 5px 0 0;
  bottom: -12px;
}
header.fixed .nav-item:hover::after {
  background: var(--prime-color);
}
header.fixed .nav-item a.nav-link {
  color: var(--prime-color);
}
header.fixed .nav-item a.nav-link:hover {
  color: var(--black-dark);
  border-color: var(--white);
}
header.fixed .head-right .search__bar .default-i {
  display: none !important;
}
header.fixed .head-right .search__bar .fixed-i {
  display: block !important;
}
header.fixed .head-right .btn-outline-primary {
  color: var(--prime-color);
  border-color: transparent !important;
}
header.fixed .head-right .btn-outline-primary img.mail {
  display: block;
}
header.fixed .head-right .btn-outline-primary img.mail-h {
  display: none;
}
header.fixed .head-right .btn-outline-primary:hover {
  color: var(--white);
  border-color: transparent !important;
}
header.fixed .head-right .btn-outline-primary:hover img.mail {
  display: block;
}
header.fixed .head-right .btn-outline-primary:hover img.mail-h {
  display: none;
}
header.fixed .navbar-toggler svg {
  fill: var(--black);
}

.searchbar.modal .modal-dialog {
  max-width: 70%;
  margin: 0.3rem auto;
  border-radius: 0.5rem;
}
.searchbar.modal .modal-dialog .modal-content {
  border-radius: inherit;
}
.searchbar.modal .modal-dialog .modal-content input {
  height: 3rem;
  border: none;
  padding: 1rem 1.65rem 1rem 3.25rem;
  background: url(../search_label.svg) 1rem fixed no-repeat;
  border-radius: inherit;
  font-weight: 300;
}

.searchbar.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0px, 5rem);
}

/*** Floting Contact Button and Modal Start ****/
.direct_contact {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 5;
}
.direct_contact .btn {
  background: var(--prime-color);
  color: var(--white);
  font-weight: 500;
  border-color: var(--prime-color);
  border-radius: 0.45rem;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: right;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  border-color: var(--white);
  border-width: 0.2rem;
}
.direct_contact .btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
.direct_contact .btn:hover {
  background: var(--black-dark);
  border-color: var(--black-dark);
}
.direct_contact .btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
.direct_contact .btn-primary:hover {
  background-color: var(--prime-color);
  border-color: var(--white);
}

.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 320px;
  height: auto;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
  z-index: 100;
}

.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.modal.right .modal-body {
  padding: 15px 15px 80px;
}

.modal.right.fade .modal-dialog {
  right: -320px;
  bottom: 6rem;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
  right: 1.25rem;
}

.modal-header {
  border-bottom-color: var(--white);
  background-color: var(--white);
}

.contact-modal {
  border-radius: 1rem;
  overflow: hidden;
}
.contact-modal .modal-header {
  background-color: var(--prime-color);
  color: var(--white);
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  position: relative;
  display: block;
}
.contact-modal .modal-header .btn-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  color: var(--white);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.contact-modal .modal-header .btn-close svg {
  width: 1rem;
}
.contact-modal .modal-header .call {
  display: flex;
  gap: 1rem;
  justify-content: start;
  align-items: center;
}
.contact-modal .modal-header .call a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: underline;
}
.contact-modal .modal-header .call a:hover {
  text-decoration: none;
}
.contact-modal .modal-header .call svg {
  width: 1.15rem;
}
.contact-modal .modal-header .number {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0.5rem 0 0 1.85rem;
  color: var(--white);
}
.contact-modal .contact_list {
  padding: 0.5rem;
}
.contact-modal .contact_list .list {
  display: flex;
  gap: 1rem;
  justify-content: start;
  align-items: center;
}
.contact-modal .contact_list .list svg {
  fill: var(--prime-color);
  width: 1.25rem;
}
.contact-modal .contact_list .list a {
  color: var(--prime-color);
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}
.contact-modal .contact_list .list a:hover {
  text-decoration: none;
  color: var(--block);
}
.contact-modal .contact_list p {
  margin-left: 2.25rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: var(--f-w-400);
  line-height: 1.5rem;
}

.modal.right .modal-body {
  padding: 15px;
}

/*** Floting Contact Button and Modal End ****/
main {
  overflow: hidden;
}

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

.prime-light2 {
  background-color: var(--prime-light2);
}

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

.main_banner {
  position: relative;
  width: 100vw;
  overflow: hidden;
  background-color: var(--secondary);
  padding: 0;
}
.main_banner::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh - 200px);
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4682247899) 30%, rgba(0, 0, 0, 0.7091211485) 100%);
  mix-blend-mode: multiply;
}
.main_banner::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin-top: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(280deg, rgba(0, 0, 0, 0.1460959384) 60%, rgba(0, 0, 0, 0.7343312325) 100%, rgba(0, 0, 0, 0.9360119048) 100%);
  mix-blend-mode: overlay;
}
.main_banner .banner_txt {
  width: 100vw;
  height: inherit;
  bottom: 0;
  left: 0rem;
  z-index: 2;
  position: relative;
}
.main_banner .banner_txt .txt-effect {
  padding: 6rem 1rem 3rem 1rem;
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: end;
  width: auto;
  text-align: center;
}
.main_banner .banner_txt .txt-effect h1 {
  font-size: calc(var(--h1) / 1.25);
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.main_banner .banner_txt .txt-effect p {
  color: var(--white);
  font-size: 1rem;
  font-weight: var(--f-w-400);
  width: 100%;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.main_banner .banner_txt .txt-effect .btn {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
.main_banner .banner_txt .down_arrow {
  display: inline-block;
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 42px;
  height: 42px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.75rem;
  border-radius: 3rem;
  display: none;
  transition: var(--transition);
  animation-duration: 2s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
}
.main_banner .banner_txt .down_arrow svg {
  width: 2rem;
  fill: var(--white);
}
.main_banner .banner_txt .bounce-1 {
  animation-name: bounce-1;
  animation-timing-function: linear;
}
@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.main_banner .bg_mine_video {
  width: inherit;
  height: inherit;
  aspect-ratio: 16/9;
  object-fit: cover;
  position: absolute;
  top: 0;
  display: none;
}
.main_banner::before {
  display: none;
}
.main_banner::after {
  display: none;
}

.minext {
  position: relative;
  z-index: 1;
  text-align: center;
}
.minext .indent-heading {
  font-size: var(--h2);
  font-weight: 700;
  background-image: var(--text-gradient_dark);
  margin-left: 0rem;
  margin-top: 0rem;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-family);
  max-width: 100%;
  display: block;
  position: relative;
  padding: 0rem;
}
.minext .indent-heading::before {
  content: "";
  z-index: -1;
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.minext .indent-txt {
  font-size: 1.25rem;
  font-weight: 400;
  margin-left: 0rem;
  margin-top: 1rem;
}
.minext .btns {
  margin-top: 30px;
  justify-content: center;
  flex-direction: column;
  width: fit-content;
  text-align: center;
  margin: auto;
  margin-top: 2rem;
  gap: 1.25rem;
}
.minext .btns .btn {
  width: fit-content;
  margin: auto;
  padding: 0.75rem 1.25rem;
}
.minext .btn-link i {
  margin-right: 10px;
}

.solution__minext {
  background-color: #f7f7f7;
}
.solution__minext .heading_band h2 {
  background-image: none;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--secondary);
  color: var(--secondary);
  font-size: var(--h3);
}


.why__minex .heading_band h2 {
  background-image: none;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--secondary);
  color: var(--secondary);
  font-size: var(--h3);
}
.why__minex .highlight {
  background: var(--secondary);
  color: var(--white);
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
  min-height: 100px;
  height: 100%;
}
.why__minex .highlight p {
  color: var(--white);
  margin-bottom: 0;
}
.why__minex .highlight::after {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100px;
  background: var(--secondary) url(../bg-33.jpg) bottom left no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
  opacity: 0.2;
}
.why__minex .highlight > div {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}
.why__minex .highlight h4 {
  font-size: 1.25rem;
}
.why__minex .highlight .icon {
  position: absolute;
  z-index: 1;
  height: 48px;
  right: 1.5rem;
  bottom: 1.15rem;
}
.why__minex .highlight2 {
  background: var(--secondary);
  color: var(--white);
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
  min-height: 100px;
  height: 100%;
}
.why__minex .highlight2 p {
  color: var(--white);
  margin-bottom: 0;
}
.why__minex .highlight2::after {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100px;
  background: var(--secondary) url(../bg-33.jpg) bottom right no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  opacity: 0.6;
}
.why__minex .highlight2 > div {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}
.why__minex .highlight2 h4 {
  font-size: 1.25rem;
}
.why__minex .highlight2 .icon {
  position: absolute;
  z-index: 1;
  height: 48px;
  right: 1.5rem;
  bottom: 1.15rem;
}

.keys__fetures .heading_band h2 {
  background-image: none;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--secondary);
  color: var(--secondary);
  font-size: var(--h3);
}
.keys__fetures .card {
  border-width: 2px;
  border-color: var(--prime-color);
  border-radius: 1rem;
  height: 100%;
}
.keys__fetures .card h4 {
  font-size: 1.25rem;
}
.keys__fetures .card ul {
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
}
.keys__fetures .card ul li {
  display: flex;
  margin-bottom: 1rem;
}
.keys__fetures .card ul li i {
  margin-right: 0.65em;
  color: var(--prime-color);
  font-size: 1.25rem;
}
.keys__fetures .card ul li:last-child {
  margin-bottom: 0rem;
}

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

section {
  padding: 2.5rem 0;
}

section.main_banner {
  min-height: auto;
}

.bg__gradient {
  background-image: var(--bg-gradient);
  border-radius: var(--bg-badius);
  min-height: 200px;
}

.heading_band {
  position: relative;
  padding-bottom: 0.5rem;
}
.heading_band .__sup {
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 1.15rem;
}
.heading_band h2 {
  font-weight: 700;
  font-size: var(--h2);
  position: relative;
  color: #BF5807;
  background-image: var(--text-gradient_dark);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-family);
}
.heading_band h2::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
  width: 60px;
  background: var(--line-gradient);
  border-radius: 15px;
}
.heading_band h3 {
  font-weight: 700;
  font-size: var(--h3);
  position: relative;
  color: #692906;
}
.heading_band h3::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
  width: 60px;
  background: var(--line-gradient);
  border-radius: 15px;
}
.heading_band .__hero_text {
  font-size: var(--hero-text-size);
  width: 90%;
  margin: auto;
  padding-top: 1.5rem;
}

.minext__compts .card {
  border: none;
  border-radius: 0.65rem;
  overflow: hidden;
  box-shadow: 0 0.15rem 0.35rem rgba(0, 0, 0, 0.15);
  height: 100%;
  height: auto;
}
.minext__compts .card figure {
  position: relative;
  margin: 0;
  height: unset;
  overflow: hidden;
}
.minext__compts .card figure img {
  object-fit: cover;
  height: 100%;
  transition: var(--transition);
}
.minext__compts .card figure::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  mix-blend-mode: multiply;
  z-index: 1;
  content: "";
}
.minext__compts .card figure .logo {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 15px 15px 15px;
  background-color: var(--white);
  z-index: 1;
  border-radius: 0 0.65rem 0 0;
}
.minext__compts .card figure .logo img {
  height: 32px;
}
.minext__compts .card .num strong {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--secondary);
}
.minext__compts .card .num p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
}
.minext__compts .card:hover figure img {
  transform: scale(1.1);
}
.minext__compts .card:hover figure .logo img {
  transform: scale(1);
}
.minext__compts .btn-outline-primary {
  padding: 0.75rem 1.25rem;
}
.minext__compts .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
  border-color: var(--prime-color);
}
.minext__compts .accordion-flush {
  margin-bottom: 1rem;
}
.minext__compts .accordion-flush .accordion-header {
  height: 100%;
}
.minext__compts .accordion-flush .accordion-header button {
  height: inherit;
}
.minext__compts .accordion-flush .accordion-item {
  border: none;
  margin-bottom: 0.5rem;
}
.minext__compts .accordion-flush .accordion-collapse {
  margin-bottom: 1.5rem;
}
.minext__compts .accordion-flush .accordion-button {
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 0.5rem !important;
}
.minext__compts .accordion-flush .accordion-button::after {
  background: url(../down.svg) center no-repeat;
}
.minext__compts .accordion-flush .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
.minext__compts .accordion-flush .accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--black-dark);
  box-shadow: none;
  border-radius: 0.5rem;
}
.minext__compts .accordion-flush .accordion-body {
  background-color: var(--white);
  box-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  position: relative;
}
.minext__compts .accordion-flush .accordion-body ul {
  list-style: none;
  margin: 0;
  padding: 0 10px 10px 5px;
  line-height: 1.75rem;
}
.minext__compts .accordion-flush .accordion-body ul li {
  display: flex;
  margin-bottom: 0.35rem;
}
.minext__compts .accordion-flush .accordion-body ul a i {
  margin-right: 10px;
  color: var(--prime-color);
  font-size: 1.15rem;
}


.minext__compts .accordion-flush .accordion-body ul li a{
  color: var(--black);
}

.minext__compts .accordion-flush .accordion-body ul li a:hover{
  color: var(--prime-color);
}

.minext__compts .accordion-flush .accordion-body::before {
  display: none;
}

.modal-content {
  border-radius: 1rem;
  overflow: hidden;
  border: none;
}
.modal-content .modal-header .btn-close {
  margin: -0.5rem 0rem -0.5rem auto;
}
.modal-content .modal-header .btn-close:focus {
  box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.3);
}

/******* Thumbnail Slider Start *******/
.swiper-container {
  width: 100%;
  padding-bottom: 0px;
  padding-left: 2px;
  padding-right: 2px;
  overflow: hidden;
  position: relative;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 150px;
  height: inherit;
  cursor: grab;
}
.swiper-slide figure {
  height: inherit;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}
.swiper-slide figure::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  mix-blend-mode: soft-light;
}
.swiper-slide figure figcaption {
  padding: 0.5rem 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: center;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0) 100%);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0px 0px;
}

:is(.swiper-button-prev, .swiper-button-next) {
  border: 2px solid var(--white);
  background-color: rgba(0, 0, 0, 0.15);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50px;
  z-index: 1;
}
:is(.swiper-button-prev, .swiper-button-next)::after {
  font-size: 0.75rem;
  color: var(--white);
}

/******* Thumbnail Slider Start *******/
.stats__bg {
  background: url(../stats-bg.png) fixed center no-repeat;
  background-size: cover;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.stats__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
  mix-blend-mode: soft-light;
}
.stats__bg h3 {
  font-weight: 700;
  font-size: var(--h3);
  position: relative;
  color: #fff;
  text-align: center;
}
.stats__bg .numbers {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
.stats__bg .numbers .stats {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-width: 0px 1px 1px 0px;
  padding: 1rem;
  height: 100%;
}
.stats__bg .numbers .stats figure {
  margin: 0;
  text-align: center;
}
.stats__bg .numbers .stats figure img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}
.stats__bg .numbers .stats figure figcaption {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 10px;
}
.stats__bg .numbers .stats figure p {
  color: inherit;
  margin: 0;
  line-height: 1.15rem;
  font-size: 0.85rem;
  font-weight: 300;
}
.stats__bg .numbers .stats:nth-child(2) {
  border-width: 0px 0px 1px 0px;
}
.stats__bg .numbers .stats:nth-child(3) {
  border-width: 0px 1px 1px 0px;
}
.stats__bg .numbers .stats:nth-child(4) {
  border-width: 0px 0px 1px 0px;
}
.stats__bg .numbers .stats:nth-child(5) {
  border-width: 0px 1px 1px 0px;
}
.stats__bg .numbers .stats:nth-child(6) {
  border-width: 0px 0px 1px 0px;
}
.stats__bg .numbers .stats:nth-child(7) {
  border-width: 0px 1px 0px 0px;
}
.stats__bg .numbers .stats:nth-child(8) {
  border-width: 0px 0px 0px 0px;
}

.testimonials .quotes-group {
  display: flex;
  gap: 60px;
  position: relative;
  text-align: center;
}
.testimonials .quotes-group .heading {
  width: 100%;
  margin-top: 0%;
  text-align: inherit;
}
.testimonials .quotes-group .heading h3 {
  font-weight: 700;
  color: var(--secondary);
  font-size: var(--h3);
  margin-bottom: 5%;
}
.testimonials .quotes-group .quote::before {
  display: none;
}
.testimonials .quotes-group .more-quotes {
  position: static;
  bottom: 0;
  left: 0;
  padding: 0.75rem 1.25rem;
  margin-top: 3rem;
}
.testimonials .carousel .person {
  color: var(--secondary);
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-direction: column;
}
.testimonials .carousel .person img {
  border-radius: 100px;
  width: 62px;
}
.testimonials .carousel .person .name {
  font-weight: 600;
  color: inherit;
}
.testimonials .carousel .person p {
  color: inherit;
}
.testimonials .carousel .carousel-caption {
  position: relative;
  text-align: center;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.testimonials .carousel .carousel-indicators {
  justify-content: center;
  bottom: -10%;
  margin-left: 15%;
}

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: var(--prime-color) !important;
}

.recognition figure {
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}
.recognition figure img {
  border-radius: 10px 10px 0px 0px;
}
.recognition figure figcaption {
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
}
.recognition figure figcaption h4 {
  font-size: 1rem;
}
.recognition figure figcaption p {
  line-height: 1rem;
  font-size: 0.8rem;
  margin-top: 5px;
  margin-bottom: 0;
  color: var(--white);
}

.recognition.ab-award figure img {
  border-radius: 10px;
}
.recognition.ab-award figure figcaption p {
  color: var(--black-dark);
}

.press {
  position: relative;
  z-index: 1;
}
.press .release .card {
  border-radius: 0.85rem;
  box-sizing: border-box;
  border-color: var(--prime-light);
  border-style: dashed;
  background-color: var(--white);
  height: 15rem;
  overflow: hidden;
}
.press .release .card figure {
  height: 100%;
}
.press .release .card figure img {
  border-radius: 0.5rem;
  overflow: hidden;
  height: inherit;
  width: 100%;
  object-fit: cover;
}
.press .btn-outline-primary {
  border-color: var(--prime-color);
  border-width: 2px;
  border-style: solid;
  font-weight: 500;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: var(--prime-color);
  padding: 0.75rem 1.25rem;
  background: transparent;
}
.press .btn-outline-primary:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.press .btn-outline-primary:hover {
  color: var(--white);
  transition: var(--transition);
}
.press .btn-outline-primary:active {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
  background-color: var(--prime-color);
}
.press .btn-outline-primary:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
.press .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
.press .btn-outline-primary:hover {
  background: var(--black-dark);
  border-color: var(--black-dark);
  color: var(--white);
}
.press .btn-outline-primary:hover:before {
  transform: scaleX(1);
}

.faq_sec .heading_band {
  margin-bottom: 2rem;
  width: 80%;
}
.faq_sec .heading_band h2::after {
  display: none;
}
.faq_sec .heading_band p {
  color: var(--secondary);
  width: auto;
  margin: auto;
}
.faq_sec .btn-link {
  color: var(--prime-color);
}
.faq_sec .btn-link:hover {
  text-decoration: none;
  background-color: transparent;
}
.faq_sec .btn-link:hover:focus {
  outline: none;
}
.faq_sec .btn-link:focus {
  box-shadow: none;
}
.faq_sec .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-top-left-radius: calc(0.65rem - 1px);
  border-top-right-radius: calc(0.65rem - 1px);
  border-bottom-left-radius: calc(0.65rem - 1px);
  border-bottom-right-radius: calc(0.65rem - 1px);
  overflow: hidden;
  background-color: var(--accordion);
  transition: var(--transition);
}
.faq_sec .accordion-item .accordion-body {
  padding: 0rem 1.25rem 1rem 1.25rem;
}
.faq_sec .accordion-item:hover {
  background-color: var(--accordion_hover);
}
.faq_sec .accordion-button {
  background-color: inherit;
  border-top-left-radius: calc(0.65rem - 1px);
  border-top-right-radius: calc(0.65rem - 1px);
  border-bottom-left-radius: calc(0.65rem - 1px);
  border-bottom-right-radius: calc(0.65rem - 1px);
  font-weight: 700;
  font-size: 1rem;
}
.faq_sec .accordion-button:not(.collapsed) {
  color: var(--black);
  background-color: inherit;
  box-shadow: none;
}
.faq_sec .accordion-button:not(.collapsed)::after {
  background-image: url(../d-arrow.svg) !important;
  transform: rotate(-180deg);
}

.spacer {
  margin: 3rem 0 1rem 0;
}

.contact {
  background-color: var(--secondary);
  min-height: auto;
  border-radius: 1rem;
  color: var(--white);
  padding: 2rem 1.5rem 0rem 1.5rem;
  overflow: hidden;
  position: relative;
}
.contact .heading {
  display: flex;
  column-gap: 15px;
  position: relative;
}
.contact .heading h4 {
  font-size: 1.25rem;
  font-weight: 600 !important;
  color: var(--white);
}
.contact .heading i {
  font-size: 1.25rem;
  color: var(--prime-color);
  position: relative;
  top: 1px;
  display: flex;
}
.contact p {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 0;
}
.contact a {
  color: var(--white);
  text-decoration: none;
}
.contact a:hover {
  text-decoration: underline;
  color: var(--prime-color);
}
.contact .box {
  padding-left: 2rem;
}
.contact .box p {
  margin-bottom: 0px;
}
.contact .box .social {
  display: flex;
  column-gap: 15px;
  margin-top: 15px;
}
.contact .box .social a {
  transition: var(--transition);
  color: var(--prime-color);
}
.contact .box .social a:hover {
  color: var(--white);
}
.contact address {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.contact address .heading.call {
  margin-top: 15px;
}
.contact img {
  position: absolute;
  z-index: 0;
  inset: 0;
  mix-blend-mode: overlay;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.connect_sol {
  font-weight: 700;
  display: inline-flex;
  column-gap: 1rem;
  transition: var(--transition);
  position: relative;
  margin: auto;
  text-decoration: none;
  padding: 0.25rem 1rem 0.25rem 1rem;
  font-size: 1rem;
}
.connect_sol span {
  position: relative;
  vertical-align: middle;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-family);
  background-image: var(--text-gradient_dark);
}
.connect_sol i {
  position: relative;
  top: 0;
  margin-left: 10px;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  color: var(--prime-color);
  display: none;
}
.connect_sol::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0px;
  display: block;
  border-radius: 100px;
  background: var(--prime-light2);
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
}
.connect_sol:hover {
  -webkit-text-fill-color: var(--prime-color);
}
.connect_sol:hover:before {
  width: 100%;
  background: var(--prime-light2);
}
.connect_sol:hover i {
  transform: translateX(0);
}
.connect_sol:active {
  transform: scale(0.96);
}

section.bnr {
  padding: 30px 0 0 0;
}

.inner_banner {
  margin-top: 0px;
  background-color: var(--secondary);
}
.inner_banner .carousel-inner {
  padding: 0;
}
.inner_banner .carousel-inner .carousel-item .carousel-caption {
  position: static;
  margin: auto;
  width: 80%;
  padding: 10% 0;
}
.inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  padding: 0;
}
.inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt p {
  color: var(--white);
}
.inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt h5 {
  font-weight: 600;
}
.inner_banner .carousel-inner .carousel-item .carousel-caption .btns {
  justify-content: center;
  flex-direction: column;
}
.inner_banner .carousel-inner .carousel-item .carousel-caption .watch i {
  margin-left: 10px;
}
.inner_banner .carousel-indicators {
  display: none;
}

.overview .product-logo {
  text-align: left;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 0rem;
  margin-bottom: 1rem;
}
.overview .product-logo img {
  height: 114px;
}
.overview .__hero_text {
  width: 100%;
  text-align: left;
  font-weight: 500;
}
.overview .benefits h4 {
  line-height: 1.85rem;
  margin-bottom: 2rem;
  color: var(--black-dark);
}
.overview .benefits .card {
  padding: 2rem 1rem;
  height: 100%;
  border-radius: 0.75rem;
  border: none;
  background-color: var(--prime-light2);
}
.overview .benefits .card i {
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}
.overview .benefits .card i img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.overview .benefits .card .card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.overview .benefits .card .card-text {
  font-size: 0.95rem;
  line-height: 1.25rem;
}

.features .f-bx .numbers {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.features .f-bx .numbers .__bx {
  border: 1px solid rgba(0, 0, 0, 0.15);
  height: 100%;
}
.features .f-bx .numbers .__bx .icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: block;
  margin-bottom: 1rem;
}
.features .f-bx .numbers .__bx .icon img {
  width: inherit;
  height: inherit;
  object-fit: contain;
}
.features .f-bx .numbers .__bx p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.features .f-bx .numbers .__bx:nth-child(1) {
  padding: 0rem 0 1.5rem 0rem;
  border-width: 0 0px 1px 0;
}
.features .f-bx .numbers .__bx:nth-child(2) {
  padding: 1.5rem 0rem;
  border-width: 0 0px 1px 0;
}
.features .f-bx .numbers .__bx:nth-child(3) {
  padding: 1.5rem 0rem;
  border-width: 0 0px 1px 0;
}
.features .f-bx .numbers .__bx:nth-child(4) {
  padding: 1.5rem 0rem;
  border-width: 0 0px 1px 0;
}
.features .f-bx .numbers .__bx:nth-child(5) {
  padding: 1.5rem 0rem;
  border-width: 0 0px 1px 0;
}
.features .f-bx .numbers .__bx:nth-child(6) {
  padding: 1.5rem 0rem;
  border-width: 0 0px 1px 0;
}
.features .f-bx .numbers .__bx:nth-child(7) {
  padding: 1.5rem 1.5rem 1.5rem 0rem;
  border-width: 0 0px 1px 0;
}
.features .f-bx .numbers .__bx:nth-child(8) {
  padding: 1.5rem 0rem 1.5rem 0;
  border-width: 0 0px 1px 0;
}
.features .f-bx .numbers .__bx:nth-child(9) {
  padding: 1.5rem 0rem 1.5rem 0;
  border-width: 0 0px 1px 0;
}
.features .f-bx .numbers .__bx:nth-child(10) {
  padding: 1.5rem 0rem 1.5rem 0;
  border-width: 0 0px 1px 0;
}
.features .f-bx .numbers .__bx:nth-child(11) {
  padding: 1.5rem 0rem 1.5rem 0;
  border-width: 0 0px 0 0;
}

.components {
  background-color: var(--secondary);
  color: var(--white);
  position: relative;
}
.components .heading_band h2 {
  background-image: var(--heading-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-family);
}
.components .heading_band .__hero_text {
  color: var(--cream);
}
.components .core {
  position: relative;
  z-index: 2;
}
.components .bg {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  background: url(../minex-bg.jpg) fixed center;
  background-size: cover;
  z-index: 1;
}
.components .__hero_text {
  width: 100%;
  color: var(--white);
}
.components .swiper-slide .card {
  overflow: hidden;
  border-radius: 1rem;
  border: none;
  height: 100%;
}
.components .swiper-slide .card .card-title {
  color: var(--black-dark);
  font-size: 1.35rem;
  font-weight: 600 !important;
}
.components .swiper-slide .card .card-text {
  color: var(--black);
}
.components .swiper-slide .card img {
  border-radius: 0;
}
.components .timeline-carousel {
  margin: 0;
  padding: 0 0 90px 0;
  position: relative;
  overflow: hidden;
}
.components .timeline-carousel .slick-list {
  overflow: visible;
  margin-right: 15px;
  margin-left: 15px;
}
.components .timeline-carousel .slick-track {
  display: flex;
  column-gap: 0rem;
}
.components .timeline-carousel .slick-track .slick-slide {
  height: 70vh;
  margin-right: 15px;
}
.components .timeline-carousel .slick-track .slick-slide > div {
  height: inherit;
}
.components .timeline-carousel .slick-dots {
  bottom: -73px;
  display: none;
}
.components .timeline-carousel p {
  color: var(--white);
  font-weight: 300;
}
.components .timeline-carousel__image {
  padding-right: 0px;
}
.components .timeline-carousel__item {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  height: 100%;
}
.components .timeline-carousel__item .media-wrapper {
  opacity: 0.4;
  padding-bottom: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  height: 230px;
}
.components .timeline-carousel__item .media-wrapper img {
  width: 100%;
  height: inherit;
  object-fit: cover;
}
.components .timeline-carousel__item:last-child .timeline-carousel__item-inner:after {
  width: calc(100% - 30px);
}
.components .timeline-carousel__item .card {
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  border: none;
}
.components .timeline-carousel__item .card .card-body {
  padding: 1.5rem;
}
.components .timeline-carousel__item-inner {
  position: relative;
}
.components .timeline-carousel__item-inner h4 {
  color: var(--black-dark);
  font-size: calc(var(--h5) * 1.15);
}
.components .timeline-carousel__item-inner p,
.components .timeline-carousel__item-inner ul {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 0;
}
.components .timeline-carousel__item-inner ul {
  margin-left: 0rem;
  padding-left: 1.25rem;
}
.components .timeline-carousel .slick-active .media-wrapper {
  opacity: 1 !important;
}
.components .slick-prev svg,
.components .slick-next svg {
  height: 2rem;
  width: 2rem;
  padding-bottom: 0px;
}
.components .slick-prev .btn,
.components .slick-next .btn {
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-size: 2rem;
  border: 2px solid var(--prime-color);
}
.components .slick-prev,
.components .slick-next {
  position: absolute;
  bottom: -100px;
  z-index: 9;
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 3rem;
  height: 3rem;
}
.components .slick-prev .btn,
.components .slick-next .btn {
  border-radius: 100px;
  width: inherit;
  height: inherit;
}
.components .slick-prev .btn div,
.components .slick-next .btn div {
  display: none;
}
.components .slick-prev {
  left: 18px;
}
.components .slick-next {
  right: 18px;
}
.components .slick-disabled {
  opacity: 0.5;
}
.components .slick-dots {
  display: none !important;
}

.components.vts .timeline-carousel.web .slick-track .slick-slide {
  height: 450px;
}
.components.vts .timeline-carousel.mobile .slick-track .slick-slide {
  height: 450px;
}

.flowchart .h3 {
  color: var(--white);
}
.flowchart p {
  color: var(--white);
}
.flowchart .bg {
  position: absolute;
  inset: 0;
  mix-blend-mode: overlay;
  background: url(../bg-33.jpg) fixed center;
  background-size: cover;
  z-index: 1;
  opacity: 0.2;
  overflow: hidden;
}
.flowchart .bg::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.__bx-4 figure {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.__bx-4 figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: center;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0) 100%);
}
.__bx-4 .btn-link {
  background-color: transparent;
}
.__bx-4 .btn-link:hover {
  color: var(--black-dark);
  text-decoration: underline;
}

.outcomes .card {
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 0.15rem 0.25rem var(--drark-shadow);
  border-color: rgba(0, 0, 0, 0.08);
  height: auto;
}
.outcomes .card i {
  color: var(--prime-color);
  margin-bottom: 0.75rem;
}
.outcomes .card i::before {
  font-size: 1.35rem;
}
.outcomes .card p {
  margin-bottom: 0;
  line-height: 1.5rem;
}

.stats__in {
  background-color: var(--cream);
  color: var(--black-dark);
}
.stats__in h3 {
  text-align: left;
  background-image: var(--text-gradient_dark);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-family);
}
.stats__in .numbers {
  display: grid;
  align-items: center;
  height: 100%;
  grid-template-columns: repeat(auto-fit, minmax(242px, 1fr));
}
.stats__in .numbers .stats {
  padding: 1.25rem 0;
  border: 1px solid var(--drark-shadow);
  border-width: 0 0 1px 0;
  height: inherit;
}
.stats__in .numbers .stats figure {
  margin: 0;
  display: flex;
  column-gap: 1.5rem;
}
.stats__in .numbers .stats figure div {
  display: flex;
  flex-direction: column;
}
.stats__in .numbers .stats figure img {
  margin-bottom: 0rem;
  object-fit: contain;
  height: 3rem;
  width: 3rem;
}
.stats__in .numbers .stats figure figcaption {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.stats__in .numbers .stats figure p {
  color: inherit;
  line-height: 1.15rem;
  font-size: 0.9rem;
  margin: 0;
}
.stats__in .numbers .stats:last-child {
  border-width: 0;
}
.stats__in .source {
  color: var(--secondary);
  font-size: 0.9em;
}
.stats__in .source span {
  font-weight: 600;
}

.services .nav-tabs {
  border-bottom: 0px;
  column-gap: 4px;
}
.services .nav-tabs .nav-link {
  border-top-left-radius: 0.65rem;
  border-top-right-radius: 0.65rem;
  background-color: var(--secondary);
  color: var(--white);
  display: flex;
  column-gap: 15px;
  align-items: center;
  padding: 0.75rem 1rem;
  border: none;
  margin-bottom: 0px;
  text-align: left;
  font-weight: 500;
  line-height: 1.25rem;
  justify-content: center;
}
.services .nav-tabs .nav-link img {
  width: 32px;
}
.services .nav-tabs .nav-link:hover {
  border: none;
}
.services .nav-tabs .nav-link.active {
  color: var(--black-dark);
  background-color: var(--white);
  border-color: var(--white);
  background-color: var(--white);
  font-weight: 500;
  box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.1);
}
.services .tab-content {
  background-color: var(--white);
  border-radius: 1.25rem;
  padding: 0;
  position: relative;
  z-index: 1;
}
.services .tab-content .tab-pane {
  padding: 1.5rem;
}
.services .tab-content .tab-pane h4 {
  text-align: left;
  font-size: calc(var(--h3) / 1.25);
}
.services .tab-content .tab-pane .card {
  display: flex;
  column-gap: 0rem;
  flex-direction: row;
  padding: 0rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.services .tab-content .tab-pane .card img {
  border-radius: 0.8rem 0rem 0rem 0.8rem;
}
.services .tab-content .tab-pane .card .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.services .tab-content .tab-pane .card .card-body h5 {
  font-weight: 700;
  font-size: 1.15rem;
}

.testimonials .video iframe {
  height: calc(100% - 20px);
  overflow: hidden;
  border-radius: 1rem;
}
.testimonials .quote .carousel-caption {
  text-align: center;
}

.customers {
  background-color: var(--secondary);
  padding-bottom: 7rem;
  position: relative;
}
.customers .core {
  position: relative;
  z-index: 2;
}
.customers .quotes-group {
  text-align: center;
  padding: 1rem 0;
}
.customers .card {
  padding: 1.5rem 0.25em;
  border-radius: 1.25rem;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: var(--white);
}
.customers .card h6 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.customers .card h4 {
  font-size: 1.3rem;
  line-height: 1.85rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.customers .card p {
  color: var(--white);
  margin-bottom: 0;
}
.customers .card .logo {
  text-align: center;
}
.customers .card img {
  padding: 0;
  height: 60px;
}
.customers .bg {
  position: absolute;
  inset: 0;
  mix-blend-mode: overlay;
  background: url(../story-bg.jpg) fixed center;
  background-size: cover;
  z-index: 1;
  opacity: 0.4;
}

.getintouch .card {
  border-radius: 1.25rem;
  overflow: hidden;
  margin-top: -8rem;
  border: none;
  box-shadow: 0 0rem 1rem var(--drark-shadow);
  z-index: 1;
}
.getintouch .card .frms {
  padding: 2rem;
}
.getintouch .card .frms h5 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--secondary);
}
.getintouch .card .info {
  font-size: 0.85rem;
}
.getintouch .card .actions {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 1rem;
}
.getintouch .img-contact img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.getintouch .btn-primary {
  background: var(--prime-color);
  color: var(--white);
  font-weight: 500;
  border-color: var(--prime-color);
  border-radius: 0.45rem;
  font-size: 1rem;
  padding: 0.5rem 1rem;
}
.getintouch .btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
.getintouch .btn-primary:hover {
  background: var(--black-dark);
  border-color: var(--black-dark);
}

.getintouch.contact__us {
  padding: 0 0 120px 0;
}
.getintouch.contact__us .card {
  margin-top: 30px;
  box-shadow: none;
}
.getintouch.contact__us .frms {
  background-color: var(--prime-light2);
  text-align: center;
}
.getintouch.contact__us .frms .form-control {
  background-color: var(--white);
}
.getintouch.contact__us .frms .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
.getintouch.contact__us address {
  margin-bottom: 0.5rem;
}
.getintouch.contact__us address .heading.call {
  margin-top: 1.5rem;
}

.awards figure {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  margin: 0;
  height: 100%;
}
.awards figure::before {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
}
.awards figure figcaption {
  transition: var(--transition);
  position: static;
  opacity: 1;
  width: 100%;
  padding: 1.25rem 1rem;
  color: var(--white);
  background-color: var(--black-dark);
  text-align: center;
  font-size: 0.9rem;
  margin: 0;
  height: 100%;
}

.inner_pages main {
  margin-top: 3.5rem;
}

section.about .heading_band h1 {
  margin-bottom: 0rem !important;
  font-size: calc(var(--h1) / 1.45);
}
section.about .heading_band h1::after {
  display: none;
}
section.about .heading_band .badge_band {
  padding: 30px 0px 2px 0px;
  display: inline-block;
  margin: auto;
  border-radius: 100px;
  position: relative;
  margin-bottom: 1.25rem;
  color: var(--secondary);
  font-size: 0.8rem;
  line-height: 1.25rem;
}
section.about .heading_band .badge_band img {
  position: absolute;
  top: 0rem;
  left: 50%;
  width: 24px;
  transform: translate(-50%, -50%);
}
section.about .mid-heading {
  font-size: var(--h3);
  color: var(--secondary);
}
section.about .beneficiaries .card {
  background: var(--secondary);
  color: var(--white);
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
  min-height: 100px;
  height: 100%;
  border: none;
  min-height: 8rem;
}
section.about .beneficiaries .card h4 {
  font-size: 1.45rem;
}
section.about .beneficiaries .card::after {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100px;
  background: var(--secondary) url(../bg-33.jpg) center no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  opacity: 0.4;
}
section.about .beneficiaries .card .card-body {
  position: relative;
  z-index: 5;
  padding: 1.5rem;
}
section.about .beneficiaries .card ul {
  margin-right: 1px;
  margin-bottom: 3rem;
  padding: 0;
  list-style: none;
  line-height: 2rem;
}
section.about .beneficiaries .card i {
  margin-right: 15px;
  font-size: 1.25rem;
}
section.about .beneficiaries .card .bi-check-circle {
  color: var(--prime-color);
}
section.about .beneficiaries .card .icon {
  position: absolute;
  z-index: 1;
  height: 72px;
  right: 1.5rem;
  bottom: 1.15rem;
}
section.about .beneficiaries .card2::after {
  background-blend-mode: overlay;
  opacity: 0.3;
}

.why_mixn__ .big-img {
  position: relative;
  left: -2rem;
  height: 100%;
}
.why_mixn__ .big-img img {
  border-radius: 0 1.85rem 1.85rem 0;
  height: inherit;
}
.why_mixn__ ._mixn {
  margin: auto;
  width: 92%;
}
.why_mixn__ ._mixn h4 {
  color: var(--secondary);
  font-size: 1.65rem;
}
.why_mixn__ ._mixn ul {
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
}
.why_mixn__ ._mixn ul li {
  position: relative;
  padding-left: 2rem;
}
.why_mixn__ ._mixn ul li i {
  color: var(--prime-color);
  font-size: 1.25rem;
  position: absolute;
  top: -3px;
  left: 0;
}
.why_mixn__ ._mixn ul li h5 {
  font-weight: 600;
  color: var(--black-dark);
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.objectives h3 {
  color: var(--secondary);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.objectives .card {
  height: 100%;
  border-radius: 1rem;
  border: none;
  padding: 1.5rem 1.5rem;
  background: var(--white);
  border: 2px dashed var(--secondary);
}
.objectives .card h4 {
  font-size: 1.25rem;
}
.objectives .card .card-body {
  padding: 0;
}
.objectives .card ul {
  list-style: none;
  margin: 15px 0 0 0;
  padding: 0;
}
.objectives .card ul li {
  display: flex;
}
.objectives .card ul li i {
  margin-right: 10px;
  color: var(--prime-color);
  font-size: 1.25rem;
}

.challenges {
  color: var(--white);
}
.challenges p {
  color: inherit;
}
.challenges .card {
  height: 100%;
  border-radius: 1.25rem;
  border: none;
  padding: 2rem;
  box-shadow: 0 0.1rem 0.15rem rgba(105, 41, 6, 0.1);
  background: var(--secondary);
  overflow: hidden;
  position: relative;
}
.challenges .card h4 {
  font-size: 1.25rem;
}
.challenges .card .card-body {
  padding: 0rem;
  position: relative;
  z-index: 2;
  color: var(--white);
}
.challenges .card::after {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100px;
  background: var(--secondary) url(../bg-apps.jpg) center no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
  opacity: 0.6;
}
.challenges .card h4 {
  font-size: 1.5rem;
}
.challenges .card ol {
  margin-top: 1rem;
  line-height: 1.5rem;
}
.challenges .card ol li {
  margin-bottom: 1rem;
}

.problems {
  color: var(--secondary);
}
.problems p {
  color: var(--black-dark);
}
.problems .card {
  height: 100%;
  border-radius: 1.5rem;
  border: 0.15rem dashed var(--black-dark);
  padding: 2rem;
  background: var(--white);
  overflow: hidden;
  position: relative;
}
.problems .card h4 {
  font-size: 1.25rem;
}
.problems .card .card-body {
  padding: 0;
  position: relative;
  z-index: 2;
  color: var(--black-dark);
}
.problems .card h4 {
  font-size: 1.5rem;
  color: var(--black-dark);
}
.problems .card ol {
  margin-top: 1rem;
  line-height: 1.5rem;
  color: var(--black-dark);
}
.problems .card ol li {
  margin-bottom: 1rem;
}

.solutions .card {
  border-radius: 0.5rem;
}
.solutions .card h4 {
  font-size: calc(var(--h4) * 1.15);
  color: var(--black-dark);
}
.solutions .card a {
  display: block;
  text-align: center;
  background-color: var(--prime-color);
  padding: 0.75rem 1rem;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  text-transform: capitalize;
}
.solutions .card a:hover {
  background-color: var(--black-dark);
}
.solutions .card-text:last-child {
  margin-bottom: 1.25rem;
}

.support {
  background-color: var(--secondary);
  position: relative;
  margin: 0;
}
.support .caption-txt {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3rem 0;
  color: var(--white);
}
.support .caption-txt .big___search h1 {
/*  font-weight: 500 !important;*/
}
.support .caption-txt .big___search input {
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--white);
  width: 80%;
}
.support .caption-txt .keys {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
  justify-content: center;
  flex-direction: column;
}
.support .caption-txt .keys span {
  display: inline-block;
}
.support .caption-txt .keys .key {
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
}
.support .caption-txt .keys .key a {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 0.5rem;
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  transition: var(--transition);
}
.support .caption-txt .keys .key a:hover {
  box-shadow: 0 0 0 0.15rem rgba(225, 225, 225, 0.25);
  background-color: rgb(0, 0, 0);
}
.support .caption-txt .keys .key a:active {
  box-shadow: 0 0 0 0.15rem rgba(225, 225, 225, 0.25);
}
.support .caption-txt .keys .key a:focus {
  box-shadow: 0 0 0 0.15rem rgba(225, 225, 225, 0.25);
}
.support img {
  position: relative;
  z-index: 0;
  mix-blend-mode: luminosity;
  object-fit: cover;
}

.support-bx .benefits .bx.card {
  border-color: var(--prime-color);
  border-radius: 1rem;
  border-width: 2px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}
.support-bx .benefits .bx.card h4 {
  font-size: var(--h5);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.support-bx .benefits .bx.card i {
  background-color: var(--prime-light2);
  padding: 2rem;
  height: 2rem;
  width: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50rem;
  margin-bottom: 1rem;
  color: var(--prime-color);
  transition: var(--transition);
}
.support-bx .benefits .bx.card i::before {
  font-size: 1.5rem;
}
.support-bx .benefits .bx.card a {
  text-decoration: none;
}
.support-bx .benefits .bx.card:hover {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.support-bx .benefits .bx.card:hover i {
  background-color: var(--prime-color);
}
.support-bx .benefits .bx.card:hover i::before {
  color: var(--white);
}
.support-bx .benefits .bx.card:hover p {
  color: var(--white);
}
.support-bx .benefits .bx.card:hover a:hover {
  color: var(--white);
}

.benefits h4 {
  margin-bottom: 1rem;
  color: var(--black-dark);
  font-size: calc(var(--h4) * 1.5);
}
.benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefits ul li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
}
.benefits ul li i {
  margin-right: 0.5rem;
  color: var(--prime-color);
  font-size: 1.25rem;
  position: absolute;
  top: 0;
  left: 0;
}
.benefits ul ol li {
  margin-bottom: 0;
  padding-left: 0;
}
.benefits figure {
  height: 100%;
}
.benefits figure img {
  border-radius: 1.5rem;
  height: inherit;
  object-fit: cover;
}

.volumetric__cal h4 {
  color: var(--white);
  font-size: 1rem;
}
.volumetric__cal .bigcard {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 2em;
}
.volumetric__cal .bigcard::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.950017507) 19%, rgba(0, 0, 0, 0.7483368347) 47%, rgba(0, 0, 0, 0) 85%);
  content: "";
}
.volumetric__cal .bigcard .bg-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.volumetric__cal .bigcard article {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.volumetric__cal .drone {
  position: absolute;
  top: -60px;
  right: 60px;
  z-index: 3;
  width: 350px;
}

.card-bx .card {
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
}
.card-bx .card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.card-bx .card .card-body {
  padding: 2rem;
}

.volumetric__cal .drone {
  position: absolute;
  top: -60px;
  right: 60px;
  z-index: 3;
  width: 510px;
    -webkit-animation: drone 3s ease-in-out infinite alternate;
    animation: drone 3s ease-in-out infinite alternate;
  }
.volumetric__cal .drone span {
    position: absolute;
    top: 27px;
    left: -54px;
    -webkit-animation: rotate 0.1ms linear infinite alternate;
    animation: rotate 0.1ms linear infinite alternate;
}
.volumetric__cal .drone span:nth-child(2) {
    top: -5px;
    right: 232px;
    left: auto;
}
.volumetric__cal .drone span:nth-child(3) {
    top: 24px;
    right: 19px;
    left: auto;
}
.volumetric__cal .drone span:nth-child(4) {
    top: 69px;
    right: 114px;
    left: auto;
}

  @keyframes drone {
    from {
      transform: translate(0, 0) rotate(5deg);
    }

    to {
      transform: translate(50%, 100%) rotate(5deg);
    }
  }



  @keyframes rotate {
    from {
      transform: scaleX(1);
    }

    to {
      transform: scaleX(0);
    }
  }  



.process .__insta {
  background-color: var(--secondary);
  background: url(../wim_b3_banner.jpg) fixed center no-repeat;
  padding: 3rem;
  border-radius: 1.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.process .__insta:after {
  content: "";
  background: url(../wim_b3_banner.jpg) fixed center no-repeat;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7987570028) 22%, rgba(0, 0, 0, 0.6194852941) 60%, rgba(0, 0, 0, 0.4430147059) 100%);
  background-size: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
}
.process .__insta .bx {
  padding: 1.5rem 0;
  display: flex;
  column-gap: 1rem;
  align-items: center;
  border-radius: 1rem;
}
.process .__insta .bx .step {
  position: relative;
  background-color: transparent;
  padding: 2rem;
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.process .__insta .bx .step .no {
  font-weight: 600;
  font-size: 2rem;
  color: var(--white);
  position: absolute;
}
.process .__insta .bx .step span {
  display: block;
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
  background-color: var(--secondary);
  color: var(--white);
  font-size: 1rem;
  padding: 0 0.5rem;
  border: 0;
}
.process .__insta .bx p {
  color: var(--white);
  margin: 0;
}

.source_1 {
  font-size: 0.9em;
  color: var(--cream);
}
.source_1 span {
  font-weight: 600;
}

.installation {
  color: var(--black-dark);
}
.installation .card {
  border-radius: 0.75rem;
  overflow: hidden;
  height: 100%;
  border: 0px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}
.installation .card figure {
  position: relative;
  margin: 0;
}
.installation .card figure::before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.installation .card p {
  line-height: 1.5rem;
}

.chatbot .bg {
  background: var(--secondary);
  border-radius: 1.5rem;
  padding: 2rem;
  color: var(--white);
  position: relative;
}
.chatbot .bg img.screen {
  position: absolute;
  top: -58px;
  right: 3rem;
  z-index: 1;
  width: 232px;
}
.chatbot .bg article {
  position: relative;
  z-index: 1;
}
.chatbot .bg::after {
  background: url(../chatbots-bg.jpg) center right no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  mix-blend-mode: overlay;
  opacity: 0.6;
}
.chatbot .bg ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.chatbot .bg ul li i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
  color: var(--prime-color);
}
.chatbot .bg figure {
  background-color: var(--prime-color);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  width: 150px;
  height: 150px;
  position: relative;
  z-index: 1;
  margin: 0;
}
.chatbot .bg figure img {
  height: auto;
}

.setup h4 {
  font-size: 1.25rem;
  color: var(--black-dark);
  line-height: 2rem;
}
.setup h5 {
  color: var(--black-dark);
}
.setup .rounded {
  border-radius: 1rem !important;
  overflow: hidden;
}
.setup .head {
  background-color: red;
  background-color: var(--black-dark);
  padding: 10px 15px;
  border-radius: 0.75rem 0.75rem 0rem 0rem;
  color: var(--white);
}
.setup .category {
  border: 1px solid var(--secondary);
  border-radius: 0;
}
.setup .category h6 {
  background-color: var(--secondary);
  padding: 10px 15px;
  border-radius: 0;
  color: var(--white);
  margin: 0;
}
.setup .category ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 0.5rem;
}
.setup .category ul li {
  margin: 0;
  padding: 5px 15px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--secondary);
  align-items: center;
}
.setup .category ul li:last-child {
  border-bottom: 0px;
}
.setup .category ul li span:first-child {
  width: 90%;
}
.setup .category ul li span:last-child {
  width: 10%;
}
.setup .category:last-child {
  border-radius: 0 0 0.75rem 0.75rem;
  background-color: red !important;
}
.setup .check-i {
  color: var(--black);
  display: flex;
  align-items: flex-start;
  height: 18px;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.setup .check-i i {
  color: var(--prime-color);
  font-size: 1.15rem;
  display: flex;
}

.note-info {
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  border: 1px dashed var(--black-dark);
}

.mgmt__forms .card {
  position: relative;
  padding: 50px 30px 15px 30px;
  border: 2px solid var(--secondary);
  border-radius: 1rem;
}
.mgmt__forms .card .heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--secondary);
  border-radius: 100px;
  background-color: var(--secondary);
  padding: 5px 15px;
  font-size: 1.15rem;
  color: var(--white);
}

footer {
  background: var(--secondary);
/*  min-height: 300px;*/
  position: relative;
  height: 100%;
  font-size: var(--footer-font);
}
footer .schedule_demo {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 2.5rem 0;
}
footer .schedule_demo h6 {
  font-weight: 300 !important;
  margin-bottom: 30px;
  font-size: 1.25rem;
  color: var(--white) !important;
}
footer .schedule_demo h4 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: var(--white) !important;
}
footer .schedule_demo .btn-outline-primary {
  border-color: var(--prime-color);
  border-width: 2px;
  border-style: solid;
  font-weight: 500;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: var(--white);
  padding: 0.75rem 1.25rem;
}
footer .schedule_demo .btn-outline-primary:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
footer .schedule_demo .btn-outline-primary:hover {
  color: var(--white);
  transition: var(--transition);
}
footer .schedule_demo .btn-outline-primary:active {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
  background-color: var(--prime-color);
}
footer .schedule_demo .btn-outline-primary:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
footer .schedule_demo .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
footer .schedule_demo .btn-outline-primary:hover {
  background-color: var(--prime-color);
  border-color: var(--prime-color);
}
footer .schedule_demo .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
}
footer .schedule_demo .btn-outline-primary:active {
  background-color: var(--prime-color);
}
footer .foot_rw {
  padding: 2rem 0.5rem 0.85rem 0.5rem;
  border-top: 1px solid rgba(225, 120, 0, 0.15);
  z-index: 1;
  position: relative;
  background-color: rgba(66, 26, 4, 0.35);
}
footer .foot_rw .foot-bg {
  color: var(--cream);
  margin-left: 1.5rem;
}
footer .foot_rw .foot-bg p {
  color: var(--cream);
}
footer .foot_rw .foot-bg .brand_logo img {
  height: 3.15rem;
}
footer .foot_rw .copy-bg {
  padding: 15px 0 0 0;
  margin-top: 15px;
}
footer .foot_rw .copy-bg p.copy {
  color: rgba(253, 244, 225, 0.6);
  font-size: var(--footer-font);
  margin-bottom: 5px;
  margin-left: 1rem;
  font-weight: 300;
}
footer .foot_rw .copy-bg .social {
  color: rgba(253, 244, 225, 0.6);
  display: flex;
  gap: 15px;
  padding: 15px 0;
  margin-left: 1rem;
  font-weight: 300;
}
footer .foot_rw .copy-bg .social span {
  flex: none;
}
footer .foot_rw .copy-bg .social a {
  color: var(--prime-color);
  transition: var(--transition);
}
footer .foot_rw .copy-bg .social a svg {
  height: 18px;
}
footer .foot_rw .copy-bg .social a:hover {
  color: var(--white);
}
footer .footer_links {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
footer .footer_links ul {
  width: 50%;
  padding: 0rem;
  list-style: none;
  margin-top: 0rem;
  margin-bottom: 0;
}
footer .footer_links ul li {
  margin-bottom: 15px;
}
footer .footer_links ul li a {
  text-decoration: none;
  color: var(--prime-color);
  transition: var(--transition);
}
footer .footer_links ul li a:hover {
  color: var(--white);
}
footer img.bg {
  content: "";
  background: url(../assets/footer-bg.png) no-repeat center;
  background-size: cover;
  object-fit: cover;
  mix-blend-mode: overlay;
  height: inherit;
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  z-index: 0;
  opacity: 0.4;
}

.order__flow .card {
  border: 2px solid var(--secondary);
  border-radius: 1.5rem;
  position: relative;
}
.order__flow .card h5 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  padding: 6px 1.5rem;
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 100px;
}
.order__flow .card img {
  border-radius: inherit;
}

.mineral_mart_benefits .card {
  padding: 2rem;
  border-radius: 1.5rem;
}
.mineral_mart_benefits h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.mineral_mart_benefits ul {
  margin: 1rem 0 0 0;
  padding: 0;
  list-style: none;
}
.mineral_mart_benefits ul li {
  padding: 0 0 0.5rem 2rem;
  position: relative;
}
.mineral_mart_benefits ul li i {
  position: absolute;
  left: 0;
  top: 0;
}
.mineral_mart_benefits figure {
  display: flex;
  align-items: flex-end;
  height: 100%;
  position: relative;
}
.mineral_mart_benefits figure img {
  position: absolute;
  bottom: -36px;
  right: 0;
  z-index: 1;
}
.mineral_mart_benefits .supplier .card {
  border: 2px dashed var(--secondary);
  background-color: var(--cream);
}
.mineral_mart_benefits .supplier h4 {
  color: var(--black-dark);
}
.mineral_mart_benefits .supplier h5 {
  color: var(--secondary);
}
.mineral_mart_benefits .supplier ul li i {
  color: var(--secondary);
}
.mineral_mart_benefits .consumer .card {
  border: 2px dashed #000;
  background-color: rgba(0, 0, 0, 0.05);
}
.mineral_mart_benefits .consumer h4 {
  color: var(--black-dark);
}
.mineral_mart_benefits .consumer h5 {
  color: var(--black);
}
.mineral_mart_benefits .consumer ul li i {
  color: var(--black);
}
.mineral_mart_benefits .consumer figure img {
  bottom: -35px;
}

.survey h4,
.survey h5,
.survey h6 {
  color: var(--black-dark);
}
.survey article {
  margin-top: 3rem;
  border-radius: 1.25rem;
  border: 2px solid var(--secondary);
  padding: 1.5rem 1.75rem 0.5rem 1.75rem;
  position: relative;
}
.survey article h5 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--secondary);
}
.survey article h6 {
  font-weight: 600 !important;
}
.survey article span.part {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 500;
  position: absolute;
  top: -15px;
  left: 1.5rem;
}
.survey article ul {
  margin-bottom: 1.5rem;
}

.inner_banner.custome_banner .carousel-inner .carousel-item::before {
  background-color: rgba(105, 41, 6, 0.5);
}
.inner_banner.custome_banner .carousel-inner .carousel-item h1,
.inner_banner.custome_banner .carousel-inner .carousel-item p {
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

.less__ftrs .f-bx .numbers .__bx:nth-child(1) {
  padding: 0rem 0 1.5rem 0rem;
  border-width: 0 0px 1px 0;
}
.less__ftrs .f-bx .numbers .__bx:nth-child(2) {
  padding: 1.5rem 0rem;
  border-width: 0 0px 1px 0;
}
.less__ftrs .f-bx .numbers .__bx:nth-child(3) {
  padding: 1.5rem 0rem;
  border-width: 0 0px 1px 0;
}
.less__ftrs .f-bx .numbers .__bx:nth-child(4) {
  padding: 1.5rem 0rem;
  border-width: 0 0px 1px 0;
}

.mine_mountain .f-bx .numbers .__bx:nth-child(1) {
  padding: 0 0 1.5rem 0;
  border-width: 0 0px 1px 0px;
}
.mine_mountain .f-bx .numbers .__bx:nth-child(2) {
  padding: 1.5rem 0;
  border-width: 0 0px 1px 0px;
}
.mine_mountain .f-bx .numbers .__bx:nth-child(3) {
  padding: 1.5rem 0;
  border-width: 0 0px 1px 0px;
}
.mine_mountain .f-bx .numbers .__bx:nth-child(4) {
  padding: 1.5rem 0;
  border-width: 0 0px 1px 0px;
}
.mine_mountain .f-bx .numbers .__bx:nth-child(5) {
  padding: 1.5rem 0;
  border-width: 0 0px 1px 0px;
}
.mine_mountain .f-bx .numbers .__bx:nth-child(6) {
  padding: 1.5rem 0;
  border-width: 0 0px 1px 0px;
}
.mine_mountain .f-bx .numbers .__bx:nth-child(7) {
  padding: 1.5rem 0;
  border-width: 0 0px 1px 0px;
}
.mine_mountain .f-bx .numbers .__bx:nth-child(8) {
  padding: 1.5rem 0;
  border-width: 0 0px 1px 0px;
}

.features.wim .f-bx .numbers .__bx:nth-child(3) {
  border-width: 0 0px 0px 0px;
}

.mine__solutions .__device {
  position: relative;
}
.mine__solutions .__device .product {
  position: relative;
  margin-bottom: 2rem;
  margin-top: 0rem;
}
.mine__solutions .__device .product .__screen {
  position: relative;
  height: auto;
  z-index: 5;
  right: 0rem;
  bottom: 0;
}
.mine__solutions .card {
  border-radius: 1rem;
  border-width: 0;
  padding: 0.75rem 1.15rem;
  background-color: var(--prime-light2);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.mine__solutions .card .card-body {
  position: relative;
  z-index: 3;
}
.mine__solutions .card h4 {
  font-size: calc(var(--h4) * 1.5);
}
.mine__solutions .card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mine__solutions .card ul li {
  display: flex;
  margin-bottom: 0.5rem;
}
.mine__solutions .card ul i {
  margin-right: 1rem;
  font-size: 1.15rem;
}
.mine__solutions .card::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0) 80%);
  opacity: 1;
  z-index: 2;
}
.mine__solutions .card-img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/***** Fany Scrollbar Start ******/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--prime-light);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--secondary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--prime-color);
}

/********* Fany Scrollbar End ******/
/******* Breakpoints Start *********/
.opps_404 {
  background-color: var(--drark-shadow)!important;
}
.opps_404 h1 {
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: calc(var(--h1) * 1.15);
  background: url(../contact_bg.png) center no-repeat fixed;
  background-size: cover;
  color: var(--black-dark);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  padding: 0;
  position: relative;
}
.opps_404 h3 {
  font-weight: 60;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}
.opps_404 .card {
  background-color: var(--white);
  padding: 1.5rem 1.5rem 2.5rem 1.5rem;
  border-radius: 1rem;
  border-width: 0;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
}
.opps_404 .card .btn i {
  margin-right: 1rem;
}

.app__screens {
  overflow: hidden;
}
.app__screens .card {
  overflow: hidden;
  text-align: center;
  background-color: var(--prime-color);
  border-radius: 1.5rem;
  padding: 0rem;
  border-width: 0;
  color: var(--white);
}
.app__screens .card::before, .app__screens .card::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.app__screens .card::before {
  background: var(--secondary);
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0.6;
}
.app__screens .card::after {
  background: url(../bg-apps.jpg) fixed no-repeat center;
  background-size: cover;
  z-index: 0;
  mix-blend-mode: soft-light;
  opacity: 0.8;
}
.app__screens .card .container {
  position: relative;
  z-index: 2;
}
.app__screens .card p {
  color: var(--white);
}
.app__screens .card .m__screens img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.app__screens .card .info {
  text-align: left;
  padding: 3.25rem 0rem;
}
.app__screens .card .info h2 {
  font-size: 1.15rem;
  font-weight: 400 !important;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}
.app__screens .card .info h3 {
  font-size: 1.35rem;
  font-weight: 600 !important;
}
.app__screens .card .info .keys ul {
  list-style: none;
  margin: 2rem 0 0 0;
  padding: 0;
}
.app__screens .card .info .keys ul li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-direction: column;
}
.app__screens .card .info .keys ul li .icon {
  background-color: var(--prime-color);
  border-radius: 100px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app__screens .card .info .keys ul li .icon img {
  width: 36px;
  height: 36px;
}
.app__screens .card .info .keys ul li .point {
  display: flex;
  flex-direction: column;
}
.app__screens .card .info .keys ul li h4 {
  font-size: calc(var(--h5) / 1);
  margin-bottom: 0;
}
.app__screens .card .info .keys ul li p {
  margin: 0;
}
.app__screens .card .info .keys ul li:last-child {
  margin-bottom: 0;
}

.lims-parallex.lims-bg {
  background: url(../lims/laptop-screen-bg.jpg) center fixed no-repeat;
}
.dss-parallex.dss-bg {
  background: url(../dss/laptop-screen-bg.jpg) center fixed no-repeat;
}
.wim-parallex.wim-bg {
  background: url(../wim-bg.jpg) center fixed no-repeat;
}
.wim-parallex.mine-mountain-bg {
  background: url(../mine-mountain-bg.jpg) center fixed no-repeat;
}

.wim-parallex.mart-bg {
  background: url(../mart-bg.jpg) center fixed no-repeat;
  background-size: cover;
}

.wim-parallex.dmf-bg {
  background: url(../dmf-bg2.jpg) center fixed no-repeat;
}

.wim-parallex {
  height: 40vh;
  width: 100%;
  background-size: contain;
  position: relative;
}
.wim-parallex .screen {
  position: relative;
  top: 14px;
  width: 100%;
  margin: auto;
}

.__all_testimonials .nav {
  gap: 1rem;
}
.__all_testimonials video {
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.__all_testimonials .videos p {
  line-height: 1.25rem;
  color: var(--black-dark);
  padding: 30px 15px 0px 15px;
  border-radius: 0rem 0rem 1rem 1rem;
  position: relative;
  z-index: -1;
  top: -25px;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 0;
}
.__all_testimonials .nav-pills .nav-link {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--black-dark);
  border: 2px solid transparent;
  border-radius: 0.5rem;
  transition: var(--transition);
  display: flex;
  gap: 5px;
  min-width: 120px;
  text-align: center;
  justify-content: center;
}
.__all_testimonials .nav-pills .nav-link:hover {
  background-color: var(--prime-color);
  color: var(--white);
}
.__all_testimonials .nav-pills .nav-link.active {
  color: var(--white);
  background-color: var(--black-dark);
}
.__all_testimonials .quote {
  background-color: var(--cream);
  padding: 2rem;
  border-radius: 1rem;
  text-align: left;
}
.__all_testimonials .quote .person {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.__all_testimonials .quote .person img {
  aspect-ratio: 1/1;
  width: 62px;
  border-radius: 100px;
}
.__all_testimonials .quote .person .name {
  color: var(--secondary);
  font-weight: 600 !important;
}
.__all_testimonials .quote .person p.dig {
  color: var(--secondary);
  margin-bottom: 0;
}

.video-big {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0rem;
}
.video-big iframe {
  height: 100%;
}

.services .about__solutions.tab-content .tab-pane .card {
  text-align: center;
}
.services .about__solutions.tab-content .tab-pane .card .solution-logo {
  padding-left: 0px;
}
.services .about__solutions.tab-content .tab-pane .card .solution-logo img {
  height: 100%;
  object-fit: cover;
}
.services .about__solutions.tab-content .tab-pane .card .card-body {
  position: relative;
  height: 100%;
  justify-content: center;
  text-align: left;
}
.services .about__solutions.tab-content .tab-pane .card .card-body a {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  width: auto;
}
.services .about__solutions.tab-content .tab-pane .card .card-body a i {
  position: static;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  top: 0;
  transform: translate(0%, 0%);
  transition: var(--transition);
}

.stakeholders__ftrs h4 {
  color: var(--secondary);
}
.stakeholders__ftrs .__bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 2px 3px var(--drark-shadow);
  height: 100%;
}
.stakeholders__ftrs .__bx i {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 100px;
  background-color: var(--prime-color);
  color: var(--white);
  font-size: 1.5rem;
  width: fit-content;
  height: fit-content;
  margin-bottom: 15px;
}
.stakeholders__ftrs .__bx p {
  font-weight: 500;
}

.functionality {
  background: var(--secondary);
  color: var(--white);
}
.functionality .key__ {
  padding: 2rem 5px;
  display: flex;
  align-items: center;
}
.functionality .key__ ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.85rem;
}
.functionality .key__ ul i {
  margin-right: 1rem;
  font-size: 1.15rem;
  color: var(--prime-color);
}
.functionality .dmf-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.half-section__bg {
  background: var(--secondary);
  color: var(--white);
  border-radius: 0rem;
  overflow: hidden;
}
.half-section__bg .wim-txt p {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 200 !important;
  line-height: 1.75rem;
  text-align: center;
}
.half-section__bg .wim-txt p strong {
  font-weight: 600 !important;
}

.components.digipass__card .timeline-carousel .slick-track .slick-slide {
  height: 70vh;
}

.components.checkgate .timeline-carousel .slick-track .slick-slide {
  height: 407px;
}

.testimonials .carousel .carousel-indicators {
  position: static;
}

/***** Gallery ******/
.gallery-item {
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid #c5c5c5;
  transition: var(--transition);
  position: relative;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}
.gallery-item:hover {
  box-shadow: 0 0rem 1.25rem rgba(0, 0, 0, 0.35);
}
.gallery-item:hover::before {
  background-color: rgba(0, 0, 0, 0);
}

.gallery-item img {
  transition: box-shadow 0.2s;
}

.gallery-item img.thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
  object-fit: scale-down;
  height: 100%;
  width: 50% !important;
  margin: auto;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

[data-bs-theme=dark] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme=dark] .lightbox-modal .carousel-control-prev-icon {
  filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: 0.6;
  font-size: 1.25rem;
}

/****** Gallery End *******/
@media (min-width: 576px) {
  .swiper-slide {
    width: 100px;
  }
  .features h5 {
    font-weight: 700;
    font-size: 1.2rem;
  }
  .features .f-bx .numbers {
    grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
  }
  .features .f-bx .numbers .__bx:nth-child(1) {
    padding: 0rem 1.5rem 1.5rem 0rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(2) {
    padding: 0 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(3) {
    padding: 1.5rem 1.5rem 1.5rem 0rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(4) {
    padding: 1.5rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 1.5rem 0rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(6) {
    padding: 1.5rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(7) {
    padding: 1.5rem 1.5rem 1.5rem 0rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(8) {
    padding: 1.5rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(9) {
    padding: 1.5rem 1.5rem 1.5rem 0rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(10) {
    padding: 1.5rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(11) {
    padding: 1.5rem 1.5rem 0rem 0rem;
    border-width: 0 1px 0px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(2) {
    padding: 0 0 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(3) {
    padding: 1.5rem 1.5rem 1.5rem 0;
    border-width: 0 1px 1px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(4) {
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 1.5rem 0;
    border-width: 0 1px 1px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(6) {
    padding: 1.5rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(7) {
    padding: 1.5rem 1.5rem 0 0rem;
    border-width: 0 1px 0px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(8) {
    padding: 1.5rem 0 0 1.5rem;
    border-width: 0 0px 0px 0px;
  }
  .components .slick-prev {
    left: 15px;
  }
  .components .slick-next {
    right: 5px;
  }
  .outcomes .card {
    height: 100%;
  }
  .stats__in .numbers {
    grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
  }
  .stats__in .numbers .stats:nth-child(1) {
    padding: 0 1.25rem 1.25rem 0;
    border-width: 0 1px 1px 0;
  }
  .stats__in .numbers .stats:nth-child(2) {
    padding: 0 0 1.25rem 1.25rem;
    border-width: 0 0px 1px 0;
  }
  .stats__in .numbers .stats:nth-child(3) {
    padding: 1.25rem 1.25rem 1.25rem 0;
    border-width: 0 1px 1px 0;
  }
  .stats__in .numbers .stats:nth-child(4) {
    padding: 1.25rem 0 1.25rem 1.25rem;
    border-width: 0 0 1px 0;
  }
  .stats__in .numbers .stats:nth-child(5) {
    padding: 1.25rem 1.25rem 0 0;
    border-width: 0 1px 0px 0;
  }
  .stats__in .numbers .stats:nth-child(6) {
    padding: 1.25rem 0 0 1.25rem;
    border-width: 0 0 0px 0;
  }
}
@media (min-width: 768px) {
  header .navbar-nav {
    margin-top: 1.5rem;
  }
  section {
    padding: 4rem 0;
  }
  .inner_pages section {
    padding: 80px 0;
  }
  .main_banner {
    height: 80vh;
    background-color: var(--secondary);
  }
  .main_banner .banner_txt {
    left: 0rem;
    height: 80vh;
  }
  .main_banner .banner_txt .txt-effect {
    width: 62%;
    height: 80vh;
    justify-content: center;
    margin-left: 0rem;
    align-items: start;
    text-align: left;
    padding: 6rem 1rem 3rem 0.35rem;
  }
  .main_banner .banner_txt .txt-effect h1 {
    font-size: calc(var(--h1) * 1.15);
  }
  .main_banner .banner_txt .txt-effect p {
    font-size: 1.05rem;
    width: auto;
  }
  .main_banner .banner_txt .txt-effect button,
  .main_banner .banner_txt .txt-effect a {
    display: flex;
    column-gap: 10px;
    margin-top: 2.5rem;
    width: fit-content;
    padding: 0.65rem 1rem;
    border-radius: 0.5rem;
  }
  .main_banner .banner_txt .txt-effect button:hover,
  .main_banner .banner_txt .txt-effect a:hover {
    background-color: var(--prime-color);
    border-color: var(--prime-color);
  }
  .main_banner .banner_txt .txt-effect button:active,
  .main_banner .banner_txt .txt-effect a:active {
    background-color: var(--prime-color);
    border-color: var(--prime-color);
  }
  .main_banner .banner_txt .txt-effect button:focus,
  .main_banner .banner_txt .txt-effect a:focus {
    box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
    background-color: var(--prime-color);
    border-color: var(--prime-color);
  }
  .main_banner .banner_txt .down_arrow {
    display: block;
    right: 2rem;
    bottom: 1rem;
    left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main_banner::before {
    display: block;
  }
  .main_banner::after {
    display: block;
  }
  .main_banner .bg_mine_video {
    display: block;
  }
  .inner_banner {
    margin-top: 74px;
  }
  .inner_banner .carousel-inner {
    height: 100%;
  }
  .inner_banner .carousel-inner .carousel-item {
    height: inherit;
  }
  .inner_banner .carousel-inner .carousel-item img {
    filter: grayscale(0%);
  }
  .inner_banner .carousel-inner .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    mix-blend-mode: multiply;
    z-index: 1;
    transition: var(--transition);
  }
  .inner_banner .carousel-inner .carousel-indicators {
    display: block;
    text-align: center;
  }
  .faq_sec .heading_band {
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
  }
  .faq_sec .heading_band .__hero_text {
    width: 100%;
  }
  .minext .indent-heading {
    margin-top: 0rem;
    font-size: calc(var(--h2) * 1.15);
  }
  .minext .indent-txt .btns {
    flex-direction: row;
    padding: 0.75rem 1.25rem;
  }
  .why__minex p {
    line-height: 1.55rem;
  }
  .why__minex .heading_band .__hero_text {
    width: 75%;
  }
  .why__minex .highlight .icon {
    height: 48px;
  }
  .why__minex .highlight > div {
    margin-bottom: 2rem;
    margin-right: 0;
  }
  .why__minex .highlight p {
    padding-right: 1.5rem;
  }
  .why__minex .highlight2 .icon {
    height: 48px;
  }
  .why__minex .highlight2 > div {
    margin-bottom: 2rem;
    margin-right: 0;
  }
  .why__minex .highlight2 p {
    padding-right: 1.5rem;
  }
  .swiper-slide {
    width: 120px;
  }
  .minext__compts .card {
    border-radius: 0.85rem;
  }
  .minext__compts .card figure .logo {
    border-radius: 0 0.75rem 0 0;
  }
  .minext__compts .card figure .logo img {
    height: 34px;
  }
  .minext__compts .accordion-flush {
    margin-bottom: 0.5rem;
  }
  .minext__compts .accordion-flush .accordion-item h2.accordion-header {
    height: 100%;
  }
  .minext__compts .accordion-flush .accordion-item h2.accordion-header button {
    height: inherit;
  }
  .minext__compts .accordion-flush .accordion-item h2.accordion-header button:hover {
    background-color: var(--prime-color);
    color: var(--white);
  }
  .minext__compts .accordion-flush .accordion-item h2.accordion-header button[aria-expanded=true] {
    background-color: var(--black-dark);
    color: var(--white);
  }
  .minext__compts .accordion-collapse {
    margin-bottom: 2rem;
  }
  .minext__compts .accordion-button {
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
  }
  .minext__compts .accordion-body ul {
    padding: 0 180px 10px 5px;
  }
  .minext__compts .accordion-body::before {
    content: "";
    width: 120px;
    height: 120px;
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 1;
    border-radius: 100px;
    display: block;
  }
  .minext__compts #flush-collapseEase .accordion-body::before {
    background: rgba(225, 120, 0, 0.1) url(../business.svg) center no-repeat;
    background-size: 60%;
  }
  .minext__compts #flush-collapseEnforcement .accordion-body::before {
    background: rgba(225, 120, 0, 0.1) url(../cctv.svg) center no-repeat;
    background-size: 60%;
  }
  .minext__compts #flush-collapseMonitoring .accordion-body::before {
    background: rgba(225, 120, 0, 0.1) url(../monitoring.svg) center no-repeat;
    background-size: 55%;
  }
  .minext__compts #flush-collapsePublic .accordion-body::before {
    background: rgba(225, 120, 0, 0.1) url(../people.svg) center no-repeat;
    background-size: 60%;
  }
  .card-bx .card {
    flex-direction: row;
    border: 0px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  }
  .card-bx .card h4 {
    color: var(--black-dark);
  }
  .card-bx .card img {
    height: auto;
    width: 260px;
  }
  .solutions .card h4 {
    font-size: calc(var(--h4) * 0.7);
  }
  .stats__bg .numbers {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .stats__bg .numbers .stats {
    border-width: 0px 1px 1px 0px;
    padding: 1.5rem;
  }
  .stats__bg .numbers .stats figure {
    text-align: left;
  }
  .stats__bg .numbers .stats figure figcaption {
    font-size: 1.35rem;
  }
  .stats__bg .numbers .stats figure p {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .stats__bg .numbers .stats:nth-child(2) {
    border-width: 0px 1px 1px 0px;
  }
  .stats__bg .numbers .stats:nth-child(3) {
    border-width: 0px 0px 1px 0px;
  }
  .stats__bg .numbers .stats:nth-child(4) {
    border-width: 0px 1px 1px 0px;
  }
  .stats__bg .numbers .stats:nth-child(5) {
    border-width: 0px 1px 1px 0px;
  }
  .stats__bg .numbers .stats:nth-child(6) {
    border-width: 0px 0px 1px 0px;
  }
  .stats__bg .numbers .stats:nth-child(7) {
    border-width: 0px 1px 0px 0px;
  }
  .stats__bg .numbers .stats:nth-child(8) {
    border-width: 0px 1px 0px 0px;
  }
  .testimonials .quotes-group {
    text-align: left;
  }
  .testimonials .quotes-group .heading {
    width: 90%;
    margin-top: 3%;
    text-align: left;
  }
  .testimonials .quotes-group .heading h3 {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.65rem;
  }
  .testimonials .quotes-group .more-quotes {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 0.5rem 1rem;
  }
  .testimonials .carousel .carousel-caption {
    text-align: left;
    padding-bottom: 1.25rem;
  }
  .testimonials .carousel .carousel-indicators {
    justify-content: start;
    margin-left: 0;
    margin: auto;
    bottom: -5%;
    position: absolute;
  }
  .testimonials .carousel .person {
    align-items: center;
    flex-direction: row;
  }
  .wim-parallex {
    height: 60vh;
    background-size: cover;
  }
  .wim-parallex .screen {
    top: 50px;
    width: 100%;
  }
  .w__video {
    text-align: center;
  }
  .w__video .video {
    width: 100%;
    height: 100%;
  }
  .w__video .video iframe {
    aspect-ratio: 16/9;
    width: 100%;
  }
  .w__video .quote {
    margin-left: 0;
  }
  .customers .quotes-group {
    text-align: left;
    padding: 0;
  }
  .customers .card img {
    padding: 0;
    height: 70px;
  }
  .customers .card h4 {
    margin-top: 1rem;
  }
  .connect_sol {
    padding: 0.25rem 1rem 0.25rem 2rem;
    font-size: 1.5rem;
  }
  .connect_sol::before {
    top: -8px;
    left: 6px;
    width: 50px;
    height: 50px;
  }
  .connect_sol i {
    display: block;
  }
  .mine__solutions .__device .product {
    position: relative;
    top: -50px;
    right: 0;
    margin: auto;
    z-index: 4;
    text-align: center;
  }
  .mine__solutions .__device .product .__screen {
    width: 75%;
  }
  .mine__solutions .card h4 {
    font-size: calc(var(--h4) * 1);
  }
  .mine__solutions .card ul {
    width: 60%;
  }
  .objectives h3 {
    font-size: 1.75rem;
    text-align: center;
  }
  .volumetric__cal h4 {
    font-size: 1.25rem;
  }
  /******Inner pages Start *****/
  .inner_pages main {
    margin-top: 0;
  }
  section.bnr {
    padding: 80px 0 0 0;
  }
  .inner_banner {
    margin-top: 58px;
  }
  .inner_banner .carousel-inner {
    padding: 10;
    height: 320px;
  }
  .inner_banner .carousel-inner .carousel-item {
    height: inherit;
    transition: var(--transition);
  }
  .inner_banner .carousel-inner .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin: auto;
    width: 100%;
    padding: 10% 0;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption img {
    object-fit: cover;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding: 10% 0;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt > div {
    width: 75%;
    margin: auto;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt > div P {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt > div h5 {
    font-size: var(--h3);
    line-height: 2.75rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt a {
    display: flex;
    align-items: center;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns {
    justify-content: center;
    flex-direction: row;
    width: auto;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-primary {
    border-color: var(--prime-color);
    border-width: 2px;
    border-style: solid;
    font-weight: 500;
    border-radius: 0.5rem;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    color: var(--white);
    background: var(--prime-color);
    border-color: var(--prime-color);
    padding: 0.75rem 1rem;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-primary:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-primary:hover {
    color: var(--white);
    transition: var(--transition);
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-primary:active {
    box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
    background-color: var(--prime-color);
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-primary:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-outline-primary {
    border-color: var(--prime-color);
    border-width: 2px;
    border-style: solid;
    font-weight: 500;
    border-radius: 0.5rem;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    color: var(--white);
    display: flex;
    column-gap: 10px;
    position: relative;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-outline-primary:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-outline-primary:hover {
    color: var(--white);
    transition: var(--transition);
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-outline-primary:active {
    box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
    background-color: var(--prime-color);
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-outline-primary:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(225, 120, 0, 0.25);
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-outline-primary i {
    font-size: 1rem;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-outline-primary:hover {
    background: var(--secondary);
    color: var(--white);
    transition: var(--transition);
    border-color: var(--secondary);
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-outline-primary.watch {
    transition: var(--transition);
    padding-right: 3rem;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt .btns .btn-outline-primary.watch i {
    position: absolute;
    right: 15px;
    top: auto;
    font-size: 1.25rem;
    transition: var(--transition);
  }
  .inner_banner .carousel-inner .carousel-item:hover .btn-outline-primary.watch:hover {
    background: var(--white);
    color: var(--black-dark);
  }
  .inner_banner .carousel-indicators {
    z-index: 3;
  }
  .inner_banner .carousel-control-next,
  .inner_banner .carousel-control-prev {
    z-index: 3;
  }
  .components .slick-prev {
    left: 42%;
  }
  .components .slick-next {
    right: 42%;
  }
  .stats__in .numbers {
    grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
  }
  .stats__in .numbers .stats:nth-child(1) {
    padding: 0 1.25rem 1.25rem 0;
    border-width: 0 1px 1px 0;
  }
  .stats__in .numbers .stats:nth-child(2) {
    padding: 0 1.25rem 1.25rem 1.25rem;
    border-width: 0 1px 1px 0;
  }
  .stats__in .numbers .stats:nth-child(3) {
    padding: 0 0 1.25rem 1.25rem;
    border-width: 0 0 1px 0;
  }
  .stats__in .numbers .stats:nth-child(4) {
    padding: 1.25rem 1.25rem 0 0;
    border-width: 0 1px 0 0;
  }
  .stats__in .numbers .stats:nth-child(5) {
    padding: 1.25rem 1.25rem 0 1.25rem;
    border-width: 0 1px 0 0;
  }
  .stats__in .numbers .stats:nth-child(6) {
    padding: 1.25rem 0 0 1.25rem;
    border-width: 0 0 0px 0;
  }
  .stats__in.more .numbers .stats:nth-child(4) {
    padding: 1.25rem 1.25rem 1.25rem 0;
    border-width: 0 1px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(5) {
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    border-width: 0 1px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(6) {
    padding: 1.25rem 0 1.25rem 1.25rem;
    border-width: 0 0px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(7) {
    padding: 1.25rem 1.25rem 1.25rem 0;
    border-width: 0 1px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(8) {
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    border-width: 0 1px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(9) {
    padding: 1.25rem 0 1.25rem 1.25rem;
    border-width: 0 0px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(10) {
    padding: 1.25rem 1.25rem 0 0;
    border-width: 0 1px 0px 0;
  }
  .stats__in.more .numbers .stats:nth-child(11) {
    padding: 1.25rem 1.25rem 0 1.25rem;
    border-width: 0 1px 0px 0;
  }
  .customers .card h6 {
    margin-bottom: 1rem;
  }
  .services .nav-tabs {
    column-gap: 10px;
  }
  .services .nav-tabs .nav-link {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    padding: 0.5rem 1rem;
    line-height: 1.25rem;
    justify-content: center;
  }
  .services .nav-tabs .nav-link img {
    width: 24px;
  }
  .services .nav-tabs .nav-link:hover {
    border: none;
  }
  .services .nav-tabs .nav-link .break {
    display: block;
  }
  .services .tab-content {
    border-radius: 1.25rem;
  }
  .services .tab-content .tab-pane {
    padding: 1.5rem;
  }
  .services .tab-content .tab-pane .card {
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.15rem 0.35rem var(--drark-shadow);
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
  .services .tab-content .tab-pane .card .card-body {
    padding: 1.5rem;
  }
  .getintouch.contact__us {
    padding: 30px 0 80px 0;
  }
  .getintouch.contact__us .card {
    margin-top: 0px;
  }
  .getintouch.contact__us .card .spacer {
    margin: 0;
  }
  section.about .heading_band .badge_band {
    padding: 3px 15px 3px 35px;
    margin-bottom: 2.5rem;
    font-size: 1rem;
  }
  section.about .heading_band .badge_band span {
    font-size: 1.25rem;
  }
  section.about .heading_band .badge_band img {
    top: -7px;
    left: 0%;
    width: 28px;
    transform: translate(0, 0%);
  }
  section.about .heading_band h1 {
    font-size: calc(var(--h1) / 1);
  }
  .inner_banner.about.custome_banner .carousel-inner .carousel-item .carousel-caption .caption-txt > div p.badge_band span {
    font-size: 1rem;
  }
  .inner_banner.about.custome_banner .carousel-inner .carousel-item .carousel-caption .caption-txt > div p.badge_band img {
    object-fit: contain;
  }
  /******Inner pages End *****/
  .why_mixn__ ._mixn {
    margin: 0 auto 0 0;
    width: 90%;
  }
  .why_mixn__ ._mixn h4 {
    font-size: 1.815rem;
  }
  .support .caption-txt {
    padding: 5rem 0!important;
    padding-bottom: 2rem;
}
  .support::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url(../contact_bg.png) center no-repeat;
    background-size: cover;
    background-blend-mode: luminosity;
  }
  .features h5 {
    font-weight: 700;
    font-size: 1.2rem;
  }
  .features .f-bx .numbers .__bx:nth-child(2) {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(3) {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(4) {
    padding: 1.5rem 1.5rem 1.5rem 0;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(5) {
    padding: 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(6) {
    padding: 1.5rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(7) {
    padding: 1.5rem 1.5rem 1.5rem 0rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(8) {
    padding: 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(9) {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(10) {
    padding: 1.5rem 0rem 0 0rem;
    border-width: 0 1px 0px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(11) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .go-to-top.fixed {
    bottom: 100px;
    left: auto;
    right: 1.75rem;
    display: block !important;
  }
  .less__ftrs .f-bx .numbers .__bx:nth-child(1) {
    padding: 0rem 0 1.5rem 0rem;
    border-width: 0 1px 1px 0;
  }
  .less__ftrs .f-bx .numbers .__bx:nth-child(2) {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-width: 0 1px 1px 0;
  }
  .less__ftrs .f-bx .numbers .__bx:nth-child(3) {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0;
  }
  .less__ftrs .f-bx .numbers .__bx:nth-child(4) {
    padding: 1.5rem 1.5rem 0 0;
    border-width: 0 1px 0px 0;
  }
  .features.m__mart .numbers .__bx:nth-child(7) {
    padding: 1.5rem 1.5rem 0em 0rem;
    border-width: 0 1px 0px 0px;
  }
  .features.m__mart .numbers .__bx:nth-child(8) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .rd .f-bx .numbers .__bx:nth-child(4) {
    padding: 1.5rem 1.5rem 0rem 0rem;
    border-width: 0 1px 0px 0px;
  }
  .rd .f-bx .numbers .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .rd .f-bx .numbers .__bx:nth-child(6) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 0px 0px 0px;
  }
  .features.dfm .f-bx .numbers .__bx:nth-child(4) {
    padding: 1.5rem 1.5rem 1.5rem 0rem;
    border-width: 0 1px 1px 0px;
  }
  .features.dfm .f-bx .numbers .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .features.dfm .f-bx .numbers .__bx:nth-child(6) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features.dfm .f-bx .numbers .__bx:nth-child(7) {
    padding: 1.5rem 1.5rem 0rem 0rem;
    border-width: 0 1px 0px 0px;
  }
  .features.dfm .f-bx .numbers .__bx:nth-child(8) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .features.digipass .f-bx .numbers .__bx:nth-child(3) {
    padding: 0rem 1.5rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features.digipass .f-bx .numbers .__bx:nth-child(4) {
    padding: 1.5rem 1.5rem 0rem 0rem;
    border-width: 0 1px 0px 0px;
  }
  .features.digipass .f-bx .numbers .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .features.digipass .f-bx .numbers .__bx:nth-child(6) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 0px 0px 0px;
  }
  .stakeholders__ftrs .__bx {
    padding: 1.5rem 2rem;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(3) {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(5) {
    padding: 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(6) {
    padding: 1.5rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(7) {
    padding: 1.5rem 1.5rem 0 0rem;
    border-width: 0 1px 0px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(8) {
    padding: 1.5rem 1.5rem 0 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(9) {
    padding: 1.5rem 1.5rem 0 1.5rem;
    border-width: 0 0px 0px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(10) {
    padding: 1.5rem 0rem 0 0rem;
    border-width: 0 1px 0px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(11) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }

  .features.wim .f-bx .numbers .__bx:nth-child(1) {
    padding: 0 1.5rem 0rem 0;
    border-width: 0 1px 0px 0px;
  }
  .features.wim .f-bx .numbers .__bx:nth-child(2) {
    padding: 0 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .features.wim .f-bx .numbers .__bx:nth-child(3) {
    padding: 0 0 0rem 1.5rem;
    border-width: 0 0px 0px 0px;
  }


  .features.dss .f-bx .numbers .__bx:nth-child(1) {
    padding: 0 1.5rem 0rem 0;
    border-width: 0 1px 1px 0px;
  }
  .features.dss .f-bx .numbers .__bx:nth-child(2) {
    padding: 0 1.5rem 0rem 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .features.dss .f-bx .numbers .__bx:nth-child(3) {
    padding: 0 0 0rem 1.5rem;
    border-width: 0 1px 1px 0px;
  }





  .getintouch.contact__us .contact {
    padding: 2rem 1.5rem 0rem 1.5rem;
  }
  .getintouch.contact__us .contact .heading h4 {
    font-size: 1.25rem;
  }
  .getintouch.contact__us .contact address {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: none;
  }
  .getintouch.contact__us .contact address .heading.call {
    margin-top: 1rem;
  }
  .google__map iframe {
    width: 100%;
    aspect-ratio: 16/4.5;
  }
  .app__screens .card .info .keys ul li {
    flex-direction: row;
    align-items: center;
  }
  .functionality {
    background: var(--secondary) url(../dmf-bg.jpg) right no-repeat;
    background-size: 50% 100%;
  }
  .half-section__bg {
    border-radius: 1.5rem;
    overflow: hidden;
  }
  .half-section__bg .wim-txt {
    margin: auto;
    width: 80%;
  }
  .half-section__bg .wim-txt p {
    font-size: 1.25rem;
    line-height: 2rem;
  }
  .faq_sec .accordion-button {
    font-size: 1.15rem;
  }
  .services .tab-content .tab-pane .card .card-body h5 {
    font-size: 1.25rem;
  }
  .getintouch .card .actions {
    flex-direction: row;
    justify-content: end;
  }
  footer .schedule_demo {
    padding: 4rem 0;
  }
  footer .schedule_demo h4 {
    font-size: 1.85rem;
  }
  footer .foot_rw {
    padding: 2rem 0 1.25rem 0;
  }
  footer .foot_rw .copy-bg {
    padding: 0.5rem 0rem 0rem 0rem;
  }
  footer .foot_rw .copy-bg p.copy {
    margin-left: 1.5rem;
  }
  footer .foot_rw .copy-bg .social {
    padding: 15px 0;
    margin-left: 1.5rem;
  }
  footer .footer_links ul {
    width: 25%;
  }
  .support .caption-txt .keys {
    flex-direction: row;
  }
  .services .about__solutions.tab-content .tab-pane .card {
    text-align: left;
  }
  .services .about__solutions.tab-content .tab-pane .card .card-body a {
    width: max-content;
    margin-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  header {
    padding: 0 1rem;
    background-color: transparent;
    margin-top: 2.5rem;
  }
  header .header_bar {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  header nav .m-logo {
    position: absolute;
    top: auto;
  }
  header nav .m-logo .brand_logo {
    margin-right: 3rem;
  }
  header nav .m-logo .brand_logo img {
    height: 3.15rem;
    position: relative;
    top: 0;
    top: -6px;
    height: 66px;
  }
  header nav .m-logo .brand_logo .default-logo {
    display: block;
  }
  header nav .m-logo .brand_logo .fixed-logo {
    display: none;
  }
  header nav .nav-item {
    border-bottom: none;
  }
  header nav .nav-item::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 2px;
    width: calc(100% - 2rem);
    margin: auto;
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 5px 5px 0 0;
  }
  header nav .nav-item:hover {
    position: relative;
    transition: var(--transition);
  }
  header nav .nav-item:hover::after {
    background: var(--white);
    transform: translateX(0%);
  }
  header nav .nav-item a.nav-link {
    color: var(--white);
    padding: 1.25rem 0;
  }
  header nav .nav-item a.nav-link:hover {
    color: var(--prime-color);
    border-color: var(--white);
  }
  header nav .big-menu-item::after {
    display: none;
  }
  header nav .big-menu-item .big-menu {
    display: none;
  }
  header nav .big-menu-item:hover {
    position: static;
  }
  header nav .big-menu-item:hover::after {
    background: var(--prime-color);
    height: 3px;
    bottom: -24px;
    display: none;
  }
  header nav .big-menu-item:hover > a {
    position: relative;
  }
  header nav .big-menu-item:hover > a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0;
    height: 0;
    left: 50%;
    transform: translate(-50%, 0);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ededed;
    z-index: 5;
}

header nav .big-menu .component h4{

}


header nav .big-menu-item:hover .big-menu {
  color: var(--black);
  font-size: 0.85rem;
  border-radius: 0 0 1.25rem 1.25rem;
  overflow: hidden;
  position: absolute;
  display: block;
  background-color: var(--white);
  z-index: 10;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  opacity: 1;
  top: auto;
  box-shadow: 0 13px 17px rgb(0 0 0 / 17%);
  padding: 2rem;
  border: 1px solid #ececec;
}
  header nav .big-menu-item:hover .big-menu .border-left {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }
  header nav .big-menu-item:hover .big-menu .component {
    padding: 1rem;
    height: 100%;
    border-right: 1px solid #cccccc5e;
}


  header nav .big-menu-item:hover .big-menu .component p {
    color: var(--white);
    font-size: inherit;
  }
  header nav .big-menu-item:hover .big-menu .component h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f3efef;
    padding-bottom: 1rem;
    background-image: var(--text-gradient_dark);
    margin-left: 0rem;
    margin-top: 0rem;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
  header nav .big-menu-item:hover .big-menu .component ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  header nav .big-menu-item:hover .big-menu .component ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }
  header nav .big-menu-item:hover .big-menu .component ul li i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--prime-color);
  }
  header nav .big-menu-item:hover .big-menu .component ul li:last-child {
    margin-bottom: 0.5rem;
  }
  header nav .big-menu-item:hover .big-menu .component ul li a {
    text-decoration: none;
    color: var(--black);
}
  header nav .big-menu-item:hover .big-menu .component ul li a:hover {
    color: var(--prime-color);
    text-decoration: underline;
  }
  header nav .big-menu-item:hover .big-menu .m__contact {
    min-height: auto;
    padding: 0;
    border-top: 1px solid rgb(243 239 239);
    border-radius: 0;
    margin-top: 0rem;
}
  header nav .big-menu-item:hover .big-menu .m__contact .contact-info {
    padding: 15px;
    color: var(--white);
  }
  header nav .big-menu-item:hover .big-menu .m__contact .contact-info p {
    margin: 0;
    color: var(--black);
    font-size: 0.85rem;
}
  header nav .big-menu-item:hover .big-menu .m__contact .contact-info p a {
    font-weight: 600;
    text-decoration: underline;
  }
  header nav .big-menu-item:hover .big-menu .m__contact .contact-info p a:hover {
    color: var(--prime-color);
    text-decoration: none;
  }
  header nav .big-menu-item:hover .big-menu {
    border-radius: 1rem;
  }
  header nav .nav-item.dropdown .dropdown-menu {
    width: 100%;
    left: 50%;
    right: 0;
    transform: translate(-50%, 22px);
    background: var(--secondary);
    border: 0;
    border-radius: 0;
    color: var(--white);
  }
  header nav .nav-item.dropdown .dropdown-menu a {
    color: var(--white);
  }
  header nav .navbar-nav {
    margin-top: 0rem;
  }
  header .navbar-expand-lg {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  header .head-right {
    position: absolute;
    gap: 1.25rem;
    top: auto;
    right: 0;
  }
  header .head-right .search__bar .default-i {
    display: block;
  }
  header .head-right .search__bar .fixed-i {
    display: none;
  }
  header .head-right .btn-outline-primary {
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.5rem 1rem;
  }
  header .head-right .btn-outline-primary::before {
    background-color: var(--prime-color);
    transform-origin: 0 bottom 0;
    transform: scaleX(0);
    transition: 0.3s ease-out;
  }
  header .head-right .btn-outline-primary img.mail {
    display: none;
  }
  header .head-right .btn-outline-primary img.mail-h {
    display: block;
  }
  header .head-right .btn-outline-primary:hover {
    background: var(--prime-color);
    color: var(--white);
  }
  header .head-right .btn-outline-primary:hover img.mail {
    display: none;
  }
  header .head-right .btn-outline-primary:hover img.mail-h {
    display: block;
  }
  header .head-right .btn-outline-primary .loop-text span {
    display: block !important;
  }
  header.inner {
    position: static;
    background-color: var(--white);
    padding: 0rem;
    margin: 0;
  }
  header.inner .navbar-expand-lg {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  header.inner nav .m-logo .brand_logo .default-logo {
    display: none;
  }
  header.inner nav .m-logo .brand_logo .fixed-logo {
    display: block;
  }
  header.inner nav a.nav-link {
    color: var(--prime-color);
    padding: 2rem 0;
  }
  header.inner nav a.nav-link:hover {
    color: var(--secondary);
    border-color: var(--white);
  }
  header.inner nav .nav-item:hover::after {
    background: var(--prime-color);
    height: 3px;
    bottom: 0px;
  }
  header.inner nav .big-menu-item::after {
    display: none;
  }
  header.inner nav .big-menu-item .big-menu {
    display: none;
  }
  header.inner nav .big-menu-item:hover {
    position: static;
  }
  header.inner nav .big-menu-item:hover::after {
    background: var(--prime-color);
    height: 3px;
    bottom: -24px;
    display: none;
  }
  header.inner nav .big-menu-item:hover > a {
    position: relative;
  }
  header.inner nav .big-menu-item:hover > a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0;
    height: 0;
    left: 50%;
    transform: translate(-50%, 0);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ededed;
    z-index: 5;
}
  header nav .big-menu-item:hover .big-menu {
    color: var(--black);
    font-size: 0.85rem;
    border-radius: 0 0 1.25rem 1.25rem;
    overflow: hidden;
    position: absolute;
    display: block;
    background-color: var(--white);
    z-index: 10;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    opacity: 1;
    top: auto;
    box-shadow: 0 13px 17px rgb(0 0 0 / 17%);
    padding: 2rem;
    border: 1px solid #ececec;
}
  header.inner nav .big-menu-item:hover .big-menu .border-left {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }
  header.inner nav .big-menu-item:hover .big-menu .component {
    padding: 1.5rem 15px 1rem 15px;
  }
  header.inner nav .big-menu-item:hover .big-menu .component p {
    color: var(--white);
    font-size: inherit;
  }
  header.inner nav .big-menu-item:hover .big-menu .component h4 {
    font-size: 1.1rem;
    font-weight: 500 !important;
    margin-bottom: 1rem;
  }
  header.inner nav .big-menu-item:hover .big-menu .component ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  header.inner nav .big-menu-item:hover .big-menu .component ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }
  header.inner nav .big-menu-item:hover .big-menu .component ul li i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--prime-color);
  }
  header.inner nav .big-menu-item:hover .big-menu .component ul li:last-child {
    margin-bottom: 0.5rem;
  }
  header.inner nav .big-menu-item:hover .big-menu .component ul li a {
    color: var(--black);
    text-decoration: none;
  }
  header.inner nav .big-menu-item:hover .big-menu .component ul li a:hover {
    color: var(--prime-color);
    text-decoration: underline;
  }
  header nav .big-menu-item:hover .big-menu .m__contact {
    min-height: auto;
    padding: 0;
    border-top: 1px solid rgb(243 239 239);
    border-radius: 0;
    margin-top: 0rem;
}
  header.inner nav .big-menu-item:hover .big-menu .m__contact .contact-info {
    padding: 15px;
    color: var(--white);
  }
  header.inner nav .big-menu-item:hover .big-menu .m__contact .contact-info p {
    margin: 0;
    color: var(--black);
    font-size: 0.85rem;
  }
  header.inner nav .big-menu-item:hover .big-menu .m__contact .contact-info p a {
    font-weight: 600;
    text-decoration: underline;
  }
  header.inner nav .big-menu-item:hover .big-menu .m__contact .contact-info p a:hover {
    color: var(--prime-color);
    text-decoration: none;
  }
  header.inner .head-right .search__bar .default-i {
    display: none;
  }
  header.inner .head-right .search__bar .fixed-i {
    display: block;
  }
  header.inner .head-right .btn-outline-primary {
    color: var(--prime-color);
    border: 2px solid var(--prime-color);
  }
  header.inner .head-right .btn-outline-primary::before {
    background-color: var(--prime-color);
  }
  header.inner .head-right .btn-outline-primary img.mail {
    display: block;
  }
  header.inner .head-right .btn-outline-primary img.mail-h {
    display: none;
  }
  header.inner .head-right .btn-outline-primary:hover {
    color: var(--white);
  }
  header.inner .head-right .btn-outline-primary:hover img.mail {
    display: none;
  }
  header.inner .head-right .btn-outline-primary:hover img.mail-h {
    display: block;
  }
  header.fixed {
    position: fixed;
    animation: slideDown 0.55s ease-out;
    padding: 0rem 1rem;
    margin-top: 0rem;
  }
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  header.fixed .navbar-expand-lg {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  header.fixed nav .m-logo .brand_logo {
    margin-right: 3rem;
  }
  header.fixed nav .m-logo .brand_logo img {
    height: 3.15rem;
    top: -2px;
  }
  header.fixed nav .m-logo .brand_logo .default-logo {
    display: none !important;
  }
  header.fixed nav .m-logo .brand_logo .fixed-logo {
    display: block !important;
  }
  header.fixed nav .nav-item::after {
    bottom: 0px;
  }
  header.fixed nav .nav-item:hover:after {
    bottom: 0px;
  }
  header.fixed nav a.nav-link {
    color: var(--prime-color);
    padding: 1.5rem 0;
  }
  header.fixed nav a.nav-link:hover {
    color: var(--secondary);
    border-color: var(--white);
  }
  header.fixed nav .big-menu-item:hover .big-menu {
    border-radius: 0rem 0rem 1rem 1rem;
  }
  header.fixed .head-right .search__bar .default-i {
    display: none;
  }
  header.fixed .head-right .search__bar .fixed-i {
    display: block;
  }
  header.fixed .head-right .btn-outline-primary {
    color: var(--prime-color);
    border-color: var(--prime-color) !important;
  }
  header.fixed .head-right .btn-outline-primary img.mail {
    display: block;
  }
  header.fixed .head-right .btn-outline-primary img.mail-h {
    display: none;
  }
  header.fixed .head-right .btn-outline-primary:hover img.mail {
    display: none;
  }
  header.fixed .head-right .btn-outline-primary:hover img.mail-h {
    display: block;
  }
  header.fixed .head-right .btn-outline-primary .loop-text span {
    display: block !important;
  }
  header.inner.fixed .navbar-expand-lg {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  header.inner.fixed .navbar-expand-lg .navbar-nav .nav-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .navbar-expand-lg .navbar-nav .nav-link i {
    font-size: 10px;
}

  .brand_logo img {
    top: 0rem;
  }
  .fixed .brand_logo img {
    height: 2.5rem;
    position: relative;
  }
.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.15rem !important;
  padding-left: 1.15rem !important;
}
  .main_banner {
    height: auto;
    background-color: var(--white);
  }
  .main_banner .banner_txt {
    left: 0rem;
    height: 100vh;
  }
  .main_banner .banner_txt .txt-effect {
    width: 56%;
    height: 100vh;
    padding: 6rem 1rem 3rem 0rem;
    margin-left: 0rem;
  }
  .main_banner .banner_txt .txt-effect h1 {
    font-size: calc(var(--h1) * 1);
  }
  .main_banner .banner_txt .txt-effect button {
    padding: 0.85rem 1rem;
  }
  .main_banner .banner_txt .txt-effect p {
    font-size: 1.15rem;
    width: 96%;
  }
  .main_banner .banner_txt .down_arrow {
    bottom: 2rem;
    width: 52px;
    height: 52px;
    padding: 1rem;
  }
  .main_banner .banner_txt .down_arrow svg {
    width: 2.5rem;
  }
  section {
    padding: 3.5rem 0;
  }
  /*** Breadcrumb Start ****/
  .breadcrumb__band {
    position: static;
    top: 72px;
    z-index: 10;
    width: 100%;
    background-color: var(--cream);
  }
  .breadcrumb__band .breadcrumb_nav {
    display: flex;
    align-items: center;
    padding: 0 1rem;
  }
  .breadcrumb__band .breadcrumb_nav .breadcrumb {
    margin: 0;
    padding: 10px 0;
    font-size: 0.8rem;
    color: var(--black);
  }
  .breadcrumb__band .breadcrumb_nav .breadcrumb a {
    color: var(--prime-color);
    text-decoration: none;
    transition: var(--transition);
  }
  .breadcrumb__band .breadcrumb_nav .breadcrumb a:hover {
    color: var(--black-dark);
  }
  .breadcrumb__band .breadcrumb_nav .breadcrumb .breadcrumb-item::before {
    color: rgba(0, 0, 0, 0.3);
  }
  .breadcrumb__band .breadcrumb_nav .breadcrumb .breadcrumb-item.active {
    font-weight: 600;
    color: var(--black-dark);
    visibility: hidden;
  }
  .breadcrumb__band .brdcrm {
    opacity: 1;
    position: relative;
    top: 0px;
  }
  .breadcrumb__band.fixed {
    position: fixed;
    animation: slideDown 0.65s ease-out;
  }
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  .breadcrumb__band.fixed .brdcrm {
    opacity: 0;
    position: absolute;
    top: 0px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f9f9f9;
    z-index: -1;
    display: none;
  }
  .breadcrumb__band.fixed .tag_section {
    padding: 0.5rem 0rem;
  }
  .tag_section {
    display: flex;
    column-gap: 1.25rem;
    padding: 0rem 0rem 0.5rem 0rem;
    align-items: center;
  }
  .tag_section span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black-dark);
    padding-right: 1.5rem;
    position: relative;
  }
  .tag_section span i {
    font-size: 0.8rem;
    position: absolute;
    right: -2px;
    bottom: 5px;
  }
  .tag_section a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
  }
  .tag_section a.anchor {
    transition: var(--transition);
  }
  .tag_section a.anchor:hover {
    color: var(--secondary);
  }
  .tag_section a.anchor.active {
    color: var(--black-dark);
    position: relative;
  }
  .tag_section a.anchor.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 2px;
    width: 100%;
    margin: auto;
    transition: all 0.3s;
    transform: translateX(0%);
    border-radius: 5px 5px 0 0;
    background: var(--prime-color);
    height: 3px;
    bottom: -13px;
  }
  .setup h4 {
    font-size: 1.5rem;
    color: var(--black-dark);
    line-height: normal;
  }
  /*** Breadcrumb End****/
  .heading_band {
    padding-bottom: 1.5rem;
  }
  .expert__bg {
    min-height: 480px;
  }
  .btn-primary,
  .btn-outline-primary {
    padding: 0.75rem 1rem;
  }
  .minext .indent-heading {
    margin-top: 0rem;
    font-size: calc(var(--h2) * 0.85);
  }
  .minext::after {
    content: "";
    position: absolute;
    top: 3rem;
    right: 50px;
    width: 120px;
    height: 120px;
    background: url(../satelight.png) center no-repeat;
    animation: mymove 10s infinite;
    content: "";
    position: absolute;
    z-index: 1;
    opacity: 1;
    background-size: cover;
  }
  .minext::after .move {
    animation: mymove 20s infinite;
  }
  @keyframes mymove {
    0% {
      transform: translateY(0);
    }
    25% {
      transform: translateX(20px);
    }
    50% {
      transform: translate(20px, 20px);
    }
    75% {
      transform: translateX(20px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .minext::before {
    bottom: 4.5rem;
    left: -10px;
    width: 160px;
    height: 120px;
    background: url(../tower.png) center no-repeat;
    content: "";
    position: absolute;
    z-index: 1;
    opacity: 1;
    background-size: cover;
  }
  .minext__compts .accordion-flush .accordion-button {
    font-size: 1.05rem;
    padding: 1rem;
  }
  .minext__compts .card {
    border-radius: 0.85rem;
  }
  .minext__compts .card figure .logo {
    border-radius: 0 1rem 0 0;
  }
  .minext__compts .card figure .logo img {
    height: 46px;
  }
  .minext__compts .swiper-slide figure img {
    transition: var(--transition);
  }
  .minext__compts .swiper-slide figure:hover img {
    transform: scale(1.1);
  }
  .components .timeline-carousel__item-inner h4 {
    font-size: calc(var(--h5) * 1);
  }
  .stats__bg .numbers {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .stats__bg .numbers .stats {
    border-width: 0px 1px 1px 0px;
  }
  .stats__bg .numbers .stats figure figcaption {
    font-size: 1.75rem;
    margin-bottom: 0.15rem;
  }
  .stats__bg .numbers .stats figure p {
    font-size: var(--body-font-size);
    line-height: 1.5rem;
  }
  .stats__bg .numbers .stats:nth-child(1) {
    padding: 0rem 2rem 1.5rem 0rem;
  }
  .stats__bg .numbers .stats:nth-child(2) {
    border-width: 0px 1px 1px 0px;
    padding: 0rem 2rem 2rem 2rem;
  }
  .stats__bg .numbers .stats:nth-child(3) {
    border-width: 0px 1px 1px 0px;
    padding: 0rem 2rem 2rem 2rem;
  }
  .stats__bg .numbers .stats:nth-child(4) {
    border-width: 0px 0px 1px 0px;
    padding: 0rem 0rem 2rem 2rem;
  }
  .stats__bg .numbers .stats:nth-child(5) {
    border-width: 0px 1px 0px 0px;
    padding: 2rem 0rem 0rem 0rem;
  }
  .stats__bg .numbers .stats:nth-child(6) {
    border-width: 0px 1px 0px 0px;
    padding: 2rem 2rem 0rem 2rem;
  }
  .stats__bg .numbers .stats:nth-child(7) {
    border-width: 0px 1px 0px 0px;
    padding: 2rem 2rem 0rem 2rem;
  }
  .stats__bg .numbers .stats:nth-child(8) {
    border-width: 0px 0px 0px 0px;
    padding: 2rem 0rem 0rem 2rem;
  }
  .faq_sec .heading_band {
    text-align: left;
    padding-bottom: 2.5rem;
    width: auto;
  }
  .faq_sec .heading_band p {
    width: 70%;
    margin: 0;
  }
  .wim-parallex {
    height: 70vh;
  }
  .wim-parallex .screen {
    top: 20px;
    width: 94%;
  }
  .contact {
    padding: 2rem 1.5rem 2rem 1.5rem;
    min-height: 240px;
  }
  .contact address {
    margin-bottom: 0rem;
    padding-bottom: 0rem;
  }
  .testimonials .quotes-group {
    text-align: left;
  }
  .testimonials .quotes-group .heading {
    width: 80%;
    margin-top: 3%;
    text-align: left;
  }
  .testimonials .quotes-group .heading h3 {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.65rem;
  }
  .testimonials .quotes-group .quote::before {
    content: "";
    position: relative;
    top: -10px;
    left: 0;
    width: 60px;
    height: 60px;
    background: url(../quote.svg) center no-repeat;
    background-position-x: 0px;
    z-index: 1;
    display: block;
  }
  .testimonials .quotes-group .more-quotes {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.75rem 1.25rem;
  }
  .testimonials .carousel .person {
    color: var(--secondary);
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .testimonials .carousel .person img {
    border-radius: 100px;
    width: 62px;
  }
  .testimonials .carousel .person .name {
    font-weight: 600;
    color: inherit;
    font-size: 1.15rem;
  }
  .testimonials .carousel .person p {
    color: inherit;
    font-size: 0.95rem;
  }
  .testimonials .carousel .person p:last-child {
    margin-bottom: 0;
  }
  .testimonials .carousel .carousel-caption {
    text-align: left;
  }
  .testimonials .carousel .carousel-indicators {
    justify-content: left;
    margin-left: 0;
    bottom: -10%;
  }
  .w__video {
    text-align: left;
  }
  .w__video h4 {
    text-align: left;
  }
  .w__video .quote {
    margin-left: 1.5rem;
    margin-top: 0rem;
  }
  .w__video .quote .carousel-caption {
    text-align: left;
  }
  .spacer {
    padding: 4rem 0 2rem 0;
  }
  .connect_sol {
    font-size: 1.65rem;
  }
  .connect_sol::before {
    top: -10px;
    width: 60px;
    height: 60px;
  }
  .support .caption-txt {
    padding: 5rem 0;
    padding-bottom: 2rem;
}
  .inner_banner {
    margin-top: 148px;
  }
  .inner_banner .carousel-inner {
    height: 100%;
  }
  .inner_banner .carousel-inner .carousel-item {
    height: inherit;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt > div {
    width: 75%;
  }
  .inner_banner .carousel-inner .carousel-item .carousel-caption .caption-txt > div h5 {
    font-size: calc(var(--h3) * 1.15);
    line-height: 3.25rem;
  }
  .inner_banner .carousel-inner .carousel-indicators {
    display: block;
    text-align: center;
  }
  .overview .__hero_text {
    width: 96%;
  }
  .overview .product-logo img {
    height: auto;
  }
  .features .f-bx .numbers {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  }
  .features .f-bx .numbers .__bx:nth-child(1) {
    padding: 0rem 1.5rem 1.5rem 0rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(2) {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(3) {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(4) {
    padding: 0rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 1.5rem 0rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(6) {
    padding: 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(7) {
    padding: 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(8) {
    padding: 1.5rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(9) {
    padding: 1.5rem 1.5rem 0rem 0rem;
    border-width: 0 1px 0px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(10) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .features .f-bx .numbers .__bx:nth-child(11) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .features .f-bx .numbers .__bx p {
    line-height: 1.5rem;
  }



  .features.lims .f-bx .numbers .__bx:nth-child(1) {
    padding: 0 1.5rem 0rem 0;
    border-width: 0 1px 1px 0px;
  }
  .features.lims .f-bx .numbers .__bx:nth-child(2) {
    padding: 0 1.5rem 0rem 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .features.lims .f-bx .numbers .__bx:nth-child(3) {
    padding: 0 0 0rem 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .features.lims .f-bx .numbers .__bx:nth-child(4) {
    padding: 0 0 0rem 1.5rem;
    border-width: 0 0px 1px 0px;
}
.features.lims .f-bx .numbers .__bx:nth-child(5) {
  padding: 1.5rem 0 0rem 1.5rem;
  border-width: 0 1px 0px 0px;
}
.features.lims .f-bx .numbers .__bx:nth-child(6) {
  padding: 1.5rem;
  border-width: 0 1px 0px 0px;
}
.features.lims .f-bx .numbers .__bx:nth-child(7) {
  padding: 1.5rem;
  border-width: 0 1px 0px 0px;
}
.features.lims .f-bx .numbers .__bx:nth-child(8) {
  padding: 1.5rem;
  border-width: 0 0px 0px 0px;
}



.solution__minext .logo-lims {

}
.solution__minext .logo-lims li {
  list-style: none;
  padding: 0px;
  margin: 0px;
  width: 20%;
  float: left;
}
.solution__minext .logo-lims li a {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #ccc;
  padding: 0rem;
  transition: .3s;
  background-color: #fff;
  margin: -1px;
  /* border-radius: 5px; */
  position: relative;

}
.solution__minext .logo-lims li a img {
  max-width: 170px;
  /* filter: grayscale(100%);
  -webkit-filter: grayscale(100%); 
  filter: gray; */
  -webkit-transition: all .6s ease;
  /* opacity: 0.6; */
}
.solution__minext .logo-lims li a:hover {
  transform: scale(1.2);
  z-index: 9;
  box-shadow: 0px 2px 10px #ccc;
  border: 1px solid #ffffff;
  filter: none;
  -webkit-filter: grayscale(0);
}
.solution__minext .logo-lims li a:hover img{
  /* opacity: 1;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  filter: none; */
  transform: scale(1.2);
}
  .less__ftrs .f-bx .numbers .__bx:nth-child(1) {
    padding: 0rem 1.5rem 1.5rem 0;
    border-width: 0 1px 0px 0;
  }
  .less__ftrs .f-bx .numbers .__bx:nth-child(2) {
    padding: 0rem 1.5rem 0 1.5rem;
    border-width: 0 1px 0px 0;
  }
  .less__ftrs .f-bx .numbers .__bx:nth-child(3) {
    padding: 0rem 1.5rem 0 1.5rem;
    border-width: 0 1px 0px 0;
  }
  .less__ftrs .f-bx .numbers .__bx:nth-child(4) {
    padding: 0rem 0 0 1.5rem;
    border-width: 0 0px 0px 0;
  }
  .features.m__mart .numbers .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 0em 0rem;
    border-width: 0 1px 0px 0px;
  }
  .features.m__mart .numbers .__bx:nth-child(6) {
    padding: 1.5rem 1.5rem 0em 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .features.m__mart .numbers .__bx:nth-child(7) {
    padding: 1.5rem 1.5rem 0em 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .features.m__mart .numbers .__bx:nth-child(8) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 0px 0px 0px;
  }
  .m__mart .numbers .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .m__mart .numbers .__bx:nth-child(6) {
    padding: 1.5rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .m__mart .numbers .__bx:nth-child(7) {
    padding: 1.5rem 1.5rem 1.5rem 0rem;
    border-width: 0 1px 1px 0px;
  }
  .m__mart .numbers .__bx:nth-child(8) {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .lease .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .lease .__bx:nth-child(6) {
    padding: 1.5rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .lease .__bx:nth-child(7) {
    padding: 1.5rem 1.5rem 1.5rem 0rem;
    border-width: 0 1px 1px 0px;
  }
  .lease .__bx:nth-child(8) {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .rd .f-bx .numbers .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 0rem 0rem;
    border-width: 0 1px 0px 0px;
  }
  .rd .f-bx .numbers .__bx:nth-child(6) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .rd .f-bx .numbers .__bx:nth-child(7) {
    padding: 1.5rem 1.5rem 1.5rem 0rem;
    border-width: 0 1px 1px 0px;
  }
  .features.dfm .f-bx .numbers .__bx:nth-child(4) {
    padding: 0rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features.dfm .f-bx .numbers .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 0rem 0rem;
    border-width: 0 1px 0px 0px;
  }
  .features.dfm .f-bx .numbers .__bx:nth-child(6) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .features.dfm .f-bx .numbers .__bx:nth-child(7) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .features.dfm .f-bx .numbers .__bx:nth-child(8) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 0px 0px 0px;
  }
  .features.digipass .f-bx .numbers .__bx:nth-child(3) {
    padding: 0rem 1.5rem 1.5rem 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .features.digipass .f-bx .numbers .__bx:nth-child(4) {
    padding: 0rem 0rem 1.5rem 1.5rem;
    border-width: 0 0px 1px 0px;
  }
  .features.digipass .f-bx .numbers .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 0rem 0rem;
    border-width: 0 1px 0px 0px;
  }
  .features.digipass .f-bx .numbers .__bx:nth-child(6) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(3) {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-width: 0 1px 1px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(5) {
    padding: 1.5rem 1.5rem 0rem 0;
    border-width: 0 1px 0px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(6) {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(7) {
    padding: 1.5rem 1.5rem 0 1.5rem;
    border-width: 0 1px 0px 0px;
  }
  .mine_mountain .f-bx .numbers .__bx:nth-child(8) {
    padding: 1.5rem 0 0 1.5rem;
    border-width: 0 0px 0px 0px;
  }
  .functionality .key__ {
    padding: 3rem 5px;
  }
  .functionality .key__ ul i {
    margin-bottom: 0.5rem;
  }
  .components .slick-prev {
    left: 44.5%;
  }
  .components .slick-next {
    right: 44.5%;
  }
  .benefits h4 {
    font-size: calc(var(--h4) * 1);
  }
  .benefits h6 {
    font-size: calc(var(--h4) / 1.55);
    font-weight: 600 !important;
  }
  .volumetric__cal h4 {
    font-size: 1.5rem;
  }
  .objectives h3 {
    font-size: 2rem;
  }
  .stats__in .numbers {
    grid-template-columns: repeat(auto-fit, minmax(154px, 1fr));
  }
  .stats__in .numbers .stats {
    border-width: 0 1px 0 0;
  }
  .stats__in .numbers .stats figure {
    display: block;
    -moz-column-gap: 0;
    column-gap: 0;
  }
  .stats__in .numbers .stats figure img {
    margin-bottom: 0.5rem;
  }
  .stats__in .numbers .stats:nth-child(1) {
    padding: 0 1.25rem 0 0;
    border-width: 0 1px 0 0;
  }
  .stats__in .numbers .stats:nth-child(2) {
    padding: 0 1.25rem;
    border-width: 0 1px 0 0;
  }
  .stats__in .numbers .stats:nth-child(3) {
    padding: 0 1.25rem;
    border-width: 0 1px 0 0;
  }
  .stats__in .numbers .stats:nth-child(4) {
    padding: 0 1.25rem;
    border-width: 0 1px 0 0;
  }
  .stats__in .numbers .stats:nth-child(5) {
    padding: 0 1.25rem;
    border-width: 0 1px 0 0;
  }
  .stats__in .numbers .stats:nth-child(6) {
    padding: 0 0 0 1.25rem;
  }
  .why_mixn__ ._mixn h4 {
    font-size: 1.8975rem;
  }
  .stats__in.more .numbers .stats:nth-child(1) {
    padding: 0 1.25rem 1.25rem 0;
    border-width: 0 1px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(2) {
    padding: 0 1.25rem 1.25rem 1.25rem;
    border-width: 0 1px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(3) {
    padding: 0 1.25rem 1.25rem 1.25rem;
    border-width: 0 1px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(4) {
    padding: 0 1.25rem 1.25rem 1.25rem;
    border-width: 0 1px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(5) {
    padding: 0 1.25rem 1.25rem 1.25rem;
    border-width: 0 1px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(6) {
    padding: 1.25rem 0 1.25rem 1.25rem;
    border-width: 0 0px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(7) {
    padding: 1.25rem 1.25rem 0 0;
    border-width: 0 1px 0px 0;
  }
  .stats__in.more .numbers .stats:nth-child(8) {
    padding: 1.25rem 1.25rem 0 1.25rem;
    border-width: 0 1px 0px 0;
  }
  .stats__in.more .numbers .stats:nth-child(9) {
    padding: 1.25rem 0 0 1.25rem;
    border-width: 0 1px 0px 0;
  }
  .stats__in.more .numbers .stats:nth-child(10) {
    padding: 1.25rem 0 0 1.25rem;
    border-width: 0 1px 0px 0;
  }
  .stats__in.more .numbers .stats:nth-child(11) {
    padding: 1.25rem 0 0 1.25rem;
    border-width: 0 1px 0px 0;
  }
  .customers .card h4 {
    font-size: 1.5rem;
  }
  .getintouch .card .actions {
    justify-content: end;
  }
  .getintouch .card .actions .btn-primary {
    padding: 0.75rem 1rem;
  }
  .services h2 {
    font-size: calc(var(--h2) / 1.15);
  }
  .services .nav-tabs {
    column-gap: 10px;
  }
  .services .nav-tabs .nav-link {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 1rem 1.5rem;
    line-height: 1.25rem;
    justify-content: center;
    width: 22.5%;
  }
  .services .nav-tabs .nav-link img {
    width: 42px;
  }
  .services .tab-content {
    border-radius: 1.25rem;
  }
  .services .tab-content .tab-pane {
    padding: 1.5rem;
  }
  .services .tab-content .tab-pane .card {
    border-radius: 1rem;
  }
  .services .tab-content .tab-pane .card .card-body {
    padding: 1.5rem 1.5rem 1.5rem 0.5rem;
  }
  section.about .heading_band h1 {
    font-size: calc(var(--h1) / 1.15);
  }
  footer .schedule_demo h4 {
    font-size: 2.25rem;
    line-height: 2.65rem;
    font-weight: 500 !important;
  }
  footer .footer_links {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  footer .social {
    justify-content: start;
  }
  .stats__in .numbers .stats figure figcaption {
    font-size: 1.5rem;
  }
  .card-bx .card img {
    width: 360px;
  }
  .satelight::after {
    content: "";
    position: absolute;
    top: 3rem;
    right: 50px;
    width: 120px;
    height: 120px;
    background: url(../satelight.png) center no-repeat;
    animation: mymove 10s infinite;
    content: "";
    position: absolute;
    z-index: 1;
    opacity: 1;
    background-size: cover;
  }
  .satelight::after .move {
    animation: mymove 20s infinite;
  }
  @keyframes mymove {
    0% {
      transform: translateY(0);
    }
    25% {
      transform: translateX(20px);
    }
    50% {
      transform: translate(20px, 20px);
    }
    75% {
      transform: translateX(20px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .truck {
    position: relative;
    width: 150px;
    bottom: -3rem;
    z-index: 10;
    -moz-animation: myfirst 40s linear infinite;
    -webkit-animation: myfirst 40s linear infinite;
    animation: myfirst 40s linear 2s infinite running slidein;
    z-index: 1;
    mix-blend-mode: multiply;
  }
  .truck .wheel {
    position: absolute;
    width: 26px;
  }
  .truck .wheel-1 {
    bottom: 2px;
    left: 15px;
  }
  .truck .wheel-2 {
    bottom: 2px;
    left: 40px;
  }
  .truck .wheel-3 {
    bottom: 2px;
    right: 9px;
  }
  .truck .wheel-animition {
    -moz-transform: rotate(320deg);
    -webkit-transform: rotate(320deg);
    -o-transform: rotate(320deg);
    -ms-transform: rotate(320deg);
    animation: spin 2s infinite linear;
    -webkit-animation: spin 2s infinite linear;
  }
  @keyframes spin {
    0% {
      -moz-transform: rotate(320deg);
      -webkit-transform: rotate(320deg);
      -o-transform: rotate(320deg);
      -ms-transform: rotate(320deg);
    }
    100% {
      -moz-transform: rotate(680deg);
      -webkit-transform: rotate(680deg);
      -o-transform: rotate(680deg);
      -ms-transform: rotate(680deg);
    }
  }
  @-webkit-keyframes spin {
    0% {
      -moz-transform: rotate(320deg);
      -webkit-transform: rotate(320deg);
      -o-transform: rotate(320deg);
      -ms-transform: rotate(320deg);
    }
    100% {
      -moz-transform: rotate(680deg);
      -webkit-transform: rotate(680deg);
      -o-transform: rotate(680deg);
      -ms-transform: rotate(680deg);
    }
  }
  @-moz-keyframes myfirst {
    0% {
      left: -25%;
    }
    100% {
      left: 100%;
    }
  }
  @-webkit-keyframes myfirst {
    0% {
      left: -25%;
    }
    100% {
      left: 100%;
    }
  }
  .geo-location {
    position: absolute;
    top: -7px;
    left: 35px;
    color: var(--prime-color);
  }
  .app__screens h3 {
    font-size: calc(var(--h3) * 0.7);
  }
  .contact .heading h4 {
    font-size: 1.5rem;
  }
  .__all_testimonials .nav {
    gap: 1rem;
  }
  .__all_testimonials video {
    border-radius: 1rem;
  }
  .__all_testimonials .nav-pills .nav-link {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--black-dark);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    transition: var(--transition);
  }
  .__all_testimonials .nav-pills .nav-link:hover {
    background-color: var(--prime-color);
    color: var(--white);
  }
  .__all_testimonials .nav-pills .nav-link.active {
    color: var(--white);
    background-color: var(--black-dark);
  }
  .__all_testimonials .quote {
    background-color: var(--cream);
    padding: 2rem;
    border-radius: 1rem;
  }
  .__all_testimonials .quote .person .name {
    color: var(--secondary);
    font-weight: 600 !important;
  }
  .__all_testimonials .quote .person p.dig {
    color: var(--secondary);
    margin-bottom: 0;
  }
  .app__screens .card .info {
    padding: 3.25rem 1.25rem;
  }
  .app__screens .card .info h2 {
    font-size: 1.25rem;
  }
  .app__screens .card .info h2::after {
    position: absolute;
    right: -68px;
    top: 12px;
    width: 56px;
    height: 1px;
    background-color: var(--white);
    z-index: 1;
    content: "";
  }
  .app__screens .card .info h3 {
    font-size: 1.65rem;
  }
  .app__screens .card .info .keys ul {
    margin: 2rem 0 0 0;
  }
  .app__screens .card .info .keys ul li {
    gap: 1.5rem;
  }
  .app__screens .card .info .keys ul li .icon {
    width: 60px;
    height: 60px;
  }
  .app__screens .card .info .keys ul li .icon img {
    width: 36px;
    height: 36px;
  }
  .app__screens .card .info .keys ul li h4 {
    font-size: calc(var(--h5) / 1.15);
    margin-bottom: 0;
  }
  .services .about__solutions.tab-content .tab-pane .card .card-body h5 {
    font-size: 1.5rem;
  }
  .services .about__solutions.tab-content .tab-pane .card .card-body a {
    margin-top: 1.5rem;
    padding: 0.375rem 0.75rem 0.375rem 0rem;
  }
  .services .about__solutions.tab-content .tab-pane .card .card-body a:hover {
    padding: 0.375rem 0.75rem 0.375rem 0.75rem;
  }
  .mine__solutions .__device .product {
    position: absolute;
    height: auto;
    top: -5.75rem;
    z-index: 5;
    right: 0rem;
  }
  .mine__solutions .__device .product .__screen {
    height: 280px;
    width: auto;
  }
  .mine__solutions .card::before {
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.950017507) 19%, rgba(0, 0, 0, 0.7483368347) 47%, rgba(0, 0, 0, 0) 85%);
  }
  .mine__solutions .card h4 {
    font-size: calc(var(--h4) * 1);
  }
  .mine__solutions .card ul {
    width: 80%;
  }
  .components .timeline-carousel .slick-track .slick-slide {
    height: 74vh;
  }
  .components.digipass__card .timeline-carousel .slick-track .slick-slide {
    height: 74vh;
  }
  .components.vts .timeline-carousel.web .slick-track .slick-slide {
    height: 450px;
  }
  .components.vts .timeline-carousel.mobile .slick-track .slick-slide {
    height: 100vh;
  }
  .getintouch.contact__us .frms {
    text-align: left;
  }
  .half-section__bg .wim-txt {
    width: 100%;
  }
  .half-section__bg .wim-txt p {
    font-size: 1.35rem;
    line-height: 2rem;
  }
  .half-section__bg img {
    object-fit: cover;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .main_banner .banner_txt {
    left: 0rem;
    height: 100vh;
  }
  .main_banner .banner_txt .txt-effect {
    width: 50%;
    margin-left: 0rem;
    padding: 6rem 1rem 3rem 0rem;
  }
  .main_banner .banner_txt .txt-effect h1 {
    font-size: calc(var(--h1) * 1);
  }
  .main_banner .banner_txt .txt-effect p {
    font-size: 1.4rem;
  }
  .main_banner .banner_txt .down_arrow {
    width: 62px;
    height: 62px;
    right: 3rem;
  }
  section {
    padding: 4rem 0;
  }
  .stats__bg h3 {
    font-size: calc(var(--h3) * 1.25);
  }
  .stats__bg .numbers .stats {
    border-width: 0px 1px 1px 0px;
    padding: 2rem;
  }
  .stats__bg .numbers .stats:nth-child(4) {
    border-width: 0px 0px 1px 0px;
  }
  .stats__bg .numbers .stats:nth-child(5) {
    border-width: 0px 1px 0px 0px;
  }
  .stats__bg .numbers .stats:nth-child(6) {
    border-width: 0px 1px 0px 0px;
  }
  .stats__bg .numbers .stats:nth-child(7) {
    border-width: 0px 1px 0px 0px;
  }
  .stats__bg .numbers .stats:nth-child(8) {
    border-width: 0px 0px 0px 0px;
  }
  .testimonials .quotes-group {
    text-align: left;
  }
  .testimonials .quotes-group .heading {
    width: 75%;
    margin-top: 3%;
    text-align: left;
  }
  .testimonials .quotes-group .heading h3 {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.65rem;
  }
  .testimonials .quotes-group .quote::before {
    content: "";
    position: relative;
    top: -4px;
    left: 0;
    width: 48px;
    height: 48px;
    background: url(../quote.svg) center no-repeat;
    background-size: 90%;
    background-position-x: 0px;
    z-index: 1;
    display: block;
  }
  .testimonials .quotes-group .more-quotes {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.75rem 1.25rem;
  }
  .wim-parallex .screen {
    top: 60px;
    width: 90%;
  }
  .connect_sol {
    font-size: 1.75rem;
  }
  .connect_sol::before {
    top: -14px;
    width: 68px;
    height: 68px;
  }
  .features .f-bx .numbers {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .stats__in .numbers {
    grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
  }
  .stats__in.more .numbers .stats:nth-child(6) {
    padding: 0 1.25rem 1.25rem 1.25rem;
    border-width: 0 0px 1px 0;
  }
  .stats__in.more .numbers .stats:nth-child(7) {
    padding: 1.25rem 0 1.25rem 0;
    border-width: 0 1px 0px 0;
  }
  .stats__in.more .numbers .stats:nth-child(8) {
    padding: 1.25rem 1.25rem 0 1.25rem;
    border-width: 0 1px 0px 0;
  }
  .stats__in.more .numbers .stats:nth-child(9) {
    padding: 1.25rem 1.25rem 0 1.25rem;
    border-width: 0 1px 0px 0;
  }
  .stats__in.more .numbers .stats:nth-child(10) {
    padding: 1.25rem 1.25rem 0 1.25rem;
    border-width: 0 1px 0px 0;
  }
  .stats__in.more .numbers .stats:nth-child(11) {
    padding: 1.25rem 1.25rem 0 1.25rem;
    border-width: 0 1px 0px 0;
  }
  .customers .card .logo {
    text-align: center;
  }
  .benefits h4 {
    font-size: calc(var(--h4) * 1);
    margin-bottom: 1.25rem;
  }
  .volumetric__cal h4 {
    font-size: 1.5rem;
  }
  .app__screens h3 {
    font-size: calc(var(--h3) * 0.7);
  }
  .mine__solutions .__device .product {
    right: 0rem;
  }
  .mine__solutions .__device .product .__screen {
    height: 400px;
  }
  footer .foot_rw .foot-bg .brand_logo img {
    height: 4.15rem;
  }
  .components .timeline-carousel .slick-track .slick-slide {
    height: 74vh;
  }
  .components.checkgate .timeline-carousel .slick-track .slick-slide {
    height: 407px;
  }
  .components.digipass__card .timeline-carousel .slick-track .slick-slide {
    height: 68vh;
  }
  .components.vts .timeline-carousel.web .slick-track .slick-slide {
    height: 450px;
  }
  .components.vts .timeline-carousel.mobile .slick-track .slick-slide {
    height: 450px;
  }
  .half-section__bg .wim-txt p {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1400px) {
  .main_banner .banner_txt {
    height: 100vh;
  }
  .main_banner .banner_txt .txt-effect {
    width: 54%;
  }
  .main_banner .banner_txt .txt-effect h1 {
    font-size: calc(var(--h1) * 1.25);
  }
  .components .timeline-carousel .slick-track .slick-slide {
    height: 65vh;
  }
  .components.digipass__card .timeline-carousel .slick-track .slick-slide {
    height: 70vh;
  }
  .components.checkgate .timeline-carousel .slick-track .slick-slide {
    height: 407px;
  }
  .stats__bg h3 {
    font-size: calc(var(--h3) * 1.25);
  }
  .why_mixn__ ._mixn {
    margin: 0 auto;
    width: 90%;
  }
  .why_mixn__ .big-img {
    left: 0rem;
  }
  .why_mixn__ .big-img img {
    border-radius: 1.85rem;
  }
  footer .schedule_demo h4 {
    font-size: 2.35rem;
    line-height: 2.65rem;
  }
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}
/******* Breakpoints End *******//*# sourceMappingURL=style.css.map */