body {
  background-color: #000;
  font-family: "Manrope", sans-serif;
}

a {
  text-decoration: none;
}

@media (max-width: 992px) {
  .header_ai {
    background-color: rgba(0, 0, 0, 0.9) !important;
  }
}

.header_ai_container__wpr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.scrolled .header_ai .header_ai_container {
  background-color: #000;
}
@media (max-width: 992px) {
  body.scrolled .header_ai .header_ai_container {
    padding-bottom: 15px;
  }
}

.header_ai {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  height: auto;
  background: rgba(255, 255, 255, 0);
}
.header_ai > .container {
  padding: 0;
}
.header_ai .header_ai_container {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 25px;
  padding-left: 0 !important;
}
@media (max-width: 991px) {
  .header_ai {
    padding: 10px 20px;
  }
}
.header_ai.sticky {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  left: 0;
}
@media (max-width: 992px) {
  .header_ai.sticky {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
}
.header_ai .header__logo {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.header_ai .cart__login__search {
  min-width: 150px;
  flex-basis: 150px;
}
.header_ai .cart__login__search .list__icon {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  gap: 10px;
  list-style: none;
}
.header_ai .cart__login__search .list__icon li a {
  padding: 5px;
  font-size: 18px;
  color: #000;
  transition: 0.25s;
}
.header_ai .cart__login__search .list__icon li a:hover {
  color: #ff5722;
}
.header_ai .menu__horizontal {
  width: 100%;
  position: initial;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_ai .menu__horizontal .menu__horizontal__wrapper {
  overflow: hidden;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.header_ai .menu__horizontal .header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .header_ai .menu__horizontal .menu__horizontal__btn {
    display: none;
  }
}
.header_ai .menu__horizontal .menu__horizontal__btn .menuBtn__wrapper {
  display: flex;
  flex-flow: row nowrap;
}
.header_ai .menu__horizontal .menu__horizontal__btn .menu__prev,
.header_ai .menu__horizontal .menu__horizontal__btn .menu__next {
  width: 35px;
  height: 35px;
  font-size: 14px;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  transition: 0.25s;
}
.header_ai .menu__horizontal .menu__horizontal__btn .menu__prev:hover,
.header_ai .menu__horizontal .menu__horizontal__btn .menu__next:hover {
  color: #ff5722;
}
.header_ai .menu__horizontal .menu__horizontal__btn button.disabled {
  cursor: default;
  opacity: 0.25;
}

.header__menu .main__menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  height: 100%;
  max-width: 100%;
  width: 100%;
  margin-bottom: 0px;
  padding-left: 0px;
}
@media (max-width: 991px) {
  .header__menu .main__menu {
    position: fixed;
    top: 65px;
    left: 0;
    height: 100%;
    display: block;
    padding-top: 10px;
    padding-bottom: 0;
    background: rgba(0, 0, 0, 0.1803921569);
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: 0.3s ease-out;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(30px);
  }
  .header__menu .main__menu.open {
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .header__menu .main__menu {
    top: 55px;
  }
}
.header__menu .main__menu > .menu__item {
  position: initial;
}
@media (max-width: 991px) {
  .header__menu .main__menu > .menu__item {
    border-bottom: 1px solid rgba(254, 254, 254, 0.2);
  }
}
.header__menu .main__menu > .menu__item > .menuItem__link {
  display: flex;
  align-items: center;
  height: auto;
  padding: 1rem;
  color: #CBD5E1;
}
@media (max-width: 991px) {
  .header__menu .main__menu > .menu__item > .menuItem__link {
    padding: 1rem 2rem 1rem 1rem;
    font-weight: 500;
  }
}
.header__menu .main__menu .menu__item:hover .mega__menu {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 991px) {
  .header__menu .main__menu > .menu__item:not(.visible-row):hover > .sub__menu {
    opacity: 0;
    visibility: hidden;
  }
}
.header__menu .menu__item {
  position: relative;
}
@media (min-width: 992px) {
  .header__menu .menu__item:hover > .sub__menu {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .header__menu .menu__item:hover > .expand-btn:after {
    transform: translateY(-50%) rotate(180deg);
  }
}
@media (min-width: 992px) {
  .header__menu .menu__item .sub__menu--right .expand-btn:after,
  .header__menu .menu__item .sub__menu--left .expand-btn:after {
    right: 0.625rem;
  }
}
.header__menu .sub__menu .menu__item:not(:last-child) {
  border-bottom: 1px solid #E9E9E9;
}
@media (min-width: 992px) {
  .header__menu .sub__menu {
    border-radius: 16px;
    position: absolute;
    top: calc(100% + 2px);
    width: 300px;
    padding: 10px 20px;
    background: #fff;
    opacity: 0;
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.15);
    visibility: hidden;
    transition: all 0.4s ease;
  }
  .header__menu .sub__menu .menuItem__link {
    padding: 0.5rem 0 0.5rem 0;
    font-size: 16px;
  }
  .header__menu .sub__menu .menuItem__link.expand-btn::after {
    right: 10px;
  }
}
@media (max-width: 991px) {
  .header__menu .sub__menu {
    display: none;
    position: relative;
    z-index: 999;
    top: 0;
    padding: 10px 0;
    width: 100%;
    overflow: hidden;
    background-color: #f9f9f9;
  }
  .header__menu .sub__menu .menu__item {
    border-bottom-color: #ececec;
  }
}
.header__menu .sub__menu--right {
  top: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .header__menu .sub__menu--right {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    padding-left: 1rem;
  }
  .header__menu .sub__menu--right:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 17px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-50%);
  }
}
.header__menu .sub__menu--left {
  top: 0;
  left: -100%;
}
@media (max-width: 991px) {
  .header__menu .sub__menu--left {
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 1rem;
  }
  .header__menu .sub__menu--left:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 17px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-50%);
  }
}
.header__menu .menuItem__link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  font-size: 14px;
  transition: 0.25s;
}
.header__menu .menuItem__link:hover {
  color: #ff5722;
}
@media (max-width: 992px) {
  .header__menu .menuItem__link.expand-btn::after {
    right: 15px;
  }
}
.header__menu ul li {
  list-style: none;
  transition: 0.3s ease;
}
.header__menu ul li a {
  position: relative;
  text-decoration: none;
  color: #000;
}
@media (min-width: 992px) {
  .header__menu .menu__item:has(.mega__menu) {
    position: inherit !important;
  }
}
@media (min-width: 992px) {
  .header__menu .mega__menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    padding-top: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
  }
}
@media (max-width: 991px) {
  .header__menu .mega__menu {
    position: relative;
    display: none;
    padding-left: 0;
    padding: 0;
  }
}
.header__menu .megaMenu__wrap {
  padding: 30px;
}
@media (max-width: 991px) {
  .header__menu .megaMenu__wrap {
    padding: 1rem;
  }
}
.header__menu .megaMenu__inner {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
.header__menu .megaMenu__inner .megaMenu__item .megaMenuTitle {
  display: flex;
}
.header__menu .megaMenu__inner .megaMenu__item .megaMenuTitle a {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 700;
  transition: 0.25s;
}
@media (max-width: 1023px) {
  .header__menu .megaMenu__inner .megaMenu__item .megaMenuTitle a {
    padding-left: 0;
  }
}
.header__menu .megaMenu__inner .megaMenu__item .megaMenuTitle a:hover {
  color: #ff5722;
}
.header__menu .megaMenu__inner .megaMenu__item .megaMenuContent .sub__menu--static {
  padding-left: 0;
}
.header__menu .megaMenu__inner .megaMenu__item .megaMenuContent .sub__menu--static .menu__item .menuItem__link {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .header__menu .menu__category {
    display: flex;
    justify-content: center;
  }
}
.header__menu .menu__category .megaMenu__wrap {
  min-width: 100%;
  flex-basis: 100%;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .header__menu .menu__category .megaMenu__wrap {
    background-color: #fff;
  }
}
@media (min-width: 1024px) {
  .header__menu .menu__category .megaMenu__wrap {
    min-width: 85%;
    flex-basis: 85%;
  }
}
.header__menu .menu__category .megaMenu__inner .megaMenu__item {
  display: flex;
  flex-flow: column;
  min-width: calc(33.333333% - 13.333333px);
  flex-basis: calc(33.333333% - 13.333333px);
}
@media (max-width: 991px) {
  .header__menu .menu__category .megaMenu__inner .megaMenu__item {
    min-width: calc(50% - 13.333333px);
    flex-basis: calc(50% - 13.333333px);
  }
}
@media (max-width: 767px) {
  .header__menu .menu__category .megaMenu__inner .megaMenu__item {
    min-width: 100%;
    flex-basis: 100%;
  }
}
@media (min-width: 992px) {
  .header__menu .menu__catalogue {
    display: flex;
    justify-content: center;
  }
}
.header__menu .menu__catalogue .megaMenu__wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 0;
  min-width: 100%;
  flex-basis: 100%;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .header__menu .menu__catalogue .megaMenu__wrap {
    background-color: #fff;
  }
}
@media (min-width: 1024px) {
  .header__menu .menu__catalogue .megaMenu__wrap {
    min-width: 85%;
    flex-basis: 85%;
  }
}
@media (max-width: 991px) {
  .header__menu .menu__catalogue .megaMenu__wrap {
    row-gap: 15px;
  }
}
.header__menu .menu__catalogue .megaMenu__inner {
  flex-basis: 50%;
  min-width: 50%;
}
@media (max-width: 991px) {
  .header__menu .menu__catalogue .megaMenu__inner {
    flex-basis: 100%;
    min-width: 100%;
  }
}
.header__menu .menu__catalogue .megaMenu__inner .megaMenu__item {
  display: flex;
  flex-flow: column;
  min-width: calc(33.333333% - 13.333333px);
  flex-basis: calc(33.333333% - 13.333333px);
}
@media (max-width: 991px) {
  .header__menu .menu__catalogue .megaMenu__inner .megaMenu__item {
    min-width: calc(50% - 13.333333px);
    flex-basis: calc(50% - 13.333333px);
  }
}
@media (max-width: 767px) {
  .header__menu .menu__catalogue .megaMenu__inner .megaMenu__item {
    min-width: 100%;
    flex-basis: 100%;
  }
}
.header__menu .menu__catalogue .menuMega__catalogue {
  display: flex;
  flex-flow: row wrap;
  flex-basis: 50%;
  min-width: 50%;
  gap: 10px;
}
@media (max-width: 991px) {
  .header__menu .menu__catalogue .menuMega__catalogue {
    flex-basis: 100%;
    min-width: 100%;
  }
}
.header__menu .menu__catalogue .menuMega__catalogue .col--left,
.header__menu .menu__catalogue .menuMega__catalogue .col--right {
  flex-basis: calc(50% - 5px);
  min-width: calc(50% - 5px);
}
.header__menu .menu__catalogue .menuMega__catalogue .col--left {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.header__menu .menu__catalogue .menuMega__catalogue .col--left img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__menu .menu__catalogue .menuMega__catalogue .col--right .menuCatalogue__item {
  height: 100%;
}
.header__menu .menu__catalogue .menuMega__catalogue .col--right a {
  height: 100%;
}
.header__menu .menu__catalogue .menuMega__catalogue .col--right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__menu .menu__catalogue .menuMega__catalogue .menuCatalogue__item a {
  display: flex;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.header__menu .menu__catalogue .menuMega__catalogue .menuCatalogue__item a:hover img {
  transform: scale(1.1);
}
.header__menu .menu__catalogue .menuMega__catalogue .menuCatalogue__item a img {
  width: 100%;
  transform: scale(1);
  transition: 0.25s;
}
.header__menu .menu__catalogue .menuMega__catalogue .menuCatalogue__item a p {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  padding: 20px 10px;
  text-align: center;
  color: #fff;
}
.header__menu .menu__catalogue .menuMega__catalogue .menuCatalogue__item a:before {
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.menu__btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 991px) {
  .menu__btn {
    display: flex;
  }
}
.menu__btn .menu__btn__lines,
.menu__btn .menu__btn__lines::before,
.menu__btn .menu__btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: rgba(255, 255, 255, 0.5882352941);
  transition: all 0.4s ease-in-out;
}
.menu__btn .menu__btn__lines::before, .menu__btn .menu__btn__lines::after {
  content: "";
  position: absolute;
}
.menu__btn .menu__btn__lines::before {
  transform: translateY(-0.5rem);
}
.menu__btn .menu__btn__lines::after {
  transform: translateY(0.5rem);
}
.menu__btn.open .menu__btn__lines {
  transform: translateX(1rem);
  background: transparent;
}
.menu__btn.open .menu__btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: rgba(255, 255, 255, 0.5882352941);
  height: 0.05rem;
}
.menu__btn.open .menu__btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: rgba(255, 255, 255, 0.5882352941);
  height: 0.05rem;
}

.expand-btn.open {
  color: #ff5722;
}
.expand-btn.open:after {
  transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 991px) {
  .overflow {
    overflow: hidden;
  }
}

.ai_header_left.ds_flex {
  width: 100%;
}

.get-quote {
  padding: 8px 20px;
  color: #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid rgba(255, 255, 255, 0.2705882353);
  background-color: transparent;
  width: 150px !important;
  font-size: 14px;
  border-radius: 45px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .get-quote {
    width: 120px !important;
  }
}
@media (max-width: 400px) {
  .get-quote {
    width: 110px !important;
    padding: 5px 10px;
  }
}

.bh-container {
  padding: 14px;
}

.scrolled .bh-container {
  border-bottom: none !important;
}

@media (max-width: 992px) {
  .header_ai {
    background-color: rgba(0, 0, 0, 0.9) !important;
  }
}

.brand_header {
  background-color: transparent;
  width: 100%;
  position: relative;
  top: 100%;
  z-index: 999;
}

.brand_header {
  transition: all 0.6 cubic-bezier(0.4, 0.25, 0, 1);
}

.brand_header.scrolled-down {
  top: -100%;
}

.brand_nav_list_wrapper {
  margin: 0 0 0 80px;
  gap: 32px;
}

.nav_menu_dropdown,
.br_anim > a {
  color: #CBD5E1;
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  padding: 15px 0;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.2s, box-shadow 0.4s;
}

.active.nav_list_item > a,
.brand_nav_list_wrapper .nav_list_item:first-child > a:hover {
  box-shadow: inset 0 -2px #1163fb;
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }
}
@media (min-width: 1400px) {
  .hero-title {
    font-size: 3.5rem;
  }
}
.sysit-logo img {
  height: auto;
}

.sysit-logo a {
  display: block;
}

.header-main {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

.hero-wrap .promo-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 30px;
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(36, 214, 164, 0.4196078431) 0%, rgba(17, 72, 157, 0.6705882353) 100%);
}
.hero-wrap .promo-card::before {
  content: "";
  background-image: url("/img/right-ai-partner.webp");
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: -1;
  opacity: 0.2;
}

.engg-right .engg-right-hd {
  color: #fff;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 50px;
  margin-top: 30px;
}
.engg-right p.promo-muted {
  font-weight: 500;
  font-style: Medium;
  font-size: 19px;
  color: #fff;
  opacity: 0.7;
}

.btn-knowmore {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  color: #09090A;
  background-color: #fff;
  padding: 10px 20px;
  font-weight: 600;
}

.brand-appi-logo {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 364px) {
  .brand-appi-logo {
    gap: 5px;
  }
}

.brand-appi-logo img {
  width: 190px;
  height: auto;
}
@media (max-width: 768px) {
  .brand-appi-logo img {
    width: 120px;
  }
}/*# sourceMappingURL=header.css.map */