/* 01. ROOT CSS */

:root {
  --bs-white: #ffffff;
  --bs-black: #000000;
  --bg-theme: #ff1749;
  --bs-light-black: #010101;
  --bs-light-pera: #727272;
  --bs-font-rubik: "Rubik", sans-serif;
  --font-bold: #001434;
  --theme-shadow: 0px 0px 20px 0px rgba(30, 22, 22, 0.08);
}

/* ================================================ header =================================================== */

.new-main-header {
  z-index: 9999;
  position: fixed;
  height: 5rem;
  width: 100%;
  transition: all 0.3s ease-in-out;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 10px 10px -10px;
  display: block;
  top: 0;
  left: 0;
}

.navfix {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  background-color: #fff;
  animation: 300ms ease-in-out fadeInDown;
  transition: all 0.3s ease-in-out;
}
.my-new-navfix {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  background-color: pink;
  animation: 300ms ease-in-out fadeInDown;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1201px) {
  .navhover {
    background-color: #fff;
    animation: 300ms ease-in-out fadeInDown;
  }

  .new-mobile-logo-box {
    display: none;
  }
}

header.navhover .new-nav .new-dropdown .new-link,
header.navfix .new-nav .new-dropdown .new-link {
  color: var(--bs-black);
}

.new-main-header .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 0rem;
  padding-bottom: 0rem;
  max-width: 1400px;
  margin: 0 auto;
  position: initial;
  height: 100%;
}

.navbar-container {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand-logo {
  /* max-width: 115px;
  width: 100%; */
  /* height: 100%; */
}

.navbar-brand-logo img {
  width: 100%;
  /* height: 100%; */
}

.new-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.new-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.new-nav .new-dropdown {
  display: inline-block;
  margin-right: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  position: relative;
  cursor: pointer;
}

.new-link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  font-family: var(--bs-font-rubik);
  color: var(--bs-black);
  letter-spacing: 0.4px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.new-link:hover {
  color: var(--bg-theme);
}

.full-new-link:hover i {
  color: var(--bg-theme);
  transition: all 0.4s ease;
}

.full-new-link:hover .new-link {
  color: var(--bg-theme);
}

header.navfix .new-nav .new-dropdown .full-new-link:hover .new-link,
header.navfix .new-nav .new-dropdown .new-link:hover {
  color: var(--bg-theme);
}

header.navfix .new-nav .new-dropdown.open-dropdown .full-new-link .new-link {
  color: var(--bg-theme);
}

.new-nav .new-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform-origin: top center;
  transform: translate(-50%, 0%) scaleY(0);
  /* transform: translate(-50%, 0%); */
  /* display: none; */
  padding: 0;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}

.new-dropdown-menu.active {
  display: block;
}

.drop-box-data {
  background: var(--bs-black);
  box-shadow: 0px 0px 42px 5px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  border-top: 3px solid var(--bg-theme);
}

.drop-box-data.drop-box-lg {
  width: 1050px;
}

.drop-box-data.drop-box-md {
  width: 420px;
}

.new-drop-menu-flex {
  display: flex;
  padding: 10px;
  flex-wrap: wrap;
  width: 20rem;
}

.drop-box-lg .new-drop-menu-flex .drop-box-width {
  width: 20%;
  padding: 10px;
  border-right: 2px solid rgba(25, 16, 12, 0.04);
  transition: all 0.2s ease-in;
}

.drop-box-lg .new-drop-menu-flex .drop-box-width.drop-box-m5 {
  margin-bottom: 20px;
}

.drop-box-lg .new-drop-menu-flex .drop-box-width:last-child {
  border-right: none;
}

.drop-box-lg .new-drop-menu-flex .drop-box-width.drop-box-m5:nth-of-type(5) {
  border-right: none;
}

.drop-box-lg .new-drop-menu-flex .drop-box-width.drop-box-m5:nth-of-type(10) {
  border-right: none;
}

.drop-box-lg .drop-flex-icon {
  margin-bottom: 15px;
}

.drop-box-lg .drop-flex-icon img {
  height: 55px;
  width: 55px;
  filter: contrast(0);
  transition: all 0.2s ease-in;
}

.drop-box-md .new-drop-menu-flex .drop-box-width {
  width: 46%;
  padding: 10px;
  margin: 6px;
  border-radius: 10px;
}

.drop-box-md .new-drop-menu-flex .drop-box-width:hover {
  background-color: #edf1f6;
}

.drop-box-md .new-drop-menu-flex .drop-flex-item {
  display: flex;
  align-items: center;
}

.drop-box-md .drop-flex-icon {
  margin-right: 10px;
}

.drop-box-md .drop-flex-icon img {
  height: 29px;
  width: 29px;
}

.drop-navlink {
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.drop-navlink::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--bg-theme);
  transition: 0.7s;
  display: inline-block;
}

.drop-navlink:hover:after {
  width: 100%;
  right: auto;
  left: 0;
}

.drop-navlink:hover .drop-title-link {
  color: var(--bg-theme);
}

.drop-box-m5 .drop-flex-item {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}

.drop-box-m5 .drop-flex-item .drop-flex-icon {
  margin-bottom: 0;
  margin-right: 10px;
}

.drop-box-m5 .drop-flex-item .drop-flex-icon img {
  height: 30px;
  width: 30px;
  transition: all 0.2s ease-in;
}

.drop-box-m5 .drop-flex-item .drop-title-link {
  margin-bottom: 0;
}

.drop-box-md
  .new-drop-menu-flex
  .drop-flex-item
  .drop-flex-content
  .drop-title-link {
  margin-bottom: 0;
}

.drop-btn-hover .drop-flex-content {
  display: block;
  margin-right: 10px;
}

.drop-btn-hover .drop-flex-content .drop-title-btn {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  font-family: var(--bs-font-rubik);
  color: var(--bs-white);
  letter-spacing: 0.4px;
}

.scraper-list-slide {
  display: flex;
  padding: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: rgba(25, 16, 12, 0.04);
  border-radius: 15px;
}

.scraper-list-btn {
  transition: all 0.2s ease-in;
}

.scraper-list-btn .scraper-navlink {
  text-decoration: none;
}

.scraper-list-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.scraper-flex-content {
  margin-right: 3px;
}

.scraper-list-tag {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  font-family: var(--bs-font-rubik);
  color: var(--bg-theme);
  letter-spacing: 0.4px;
}

.scraper-flex-content .scraper-title-btn {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  font-family: var(--bs-font-rubik);
  color: #0026a2;
  letter-spacing: 0.4px;
}

.scraper-flex-icon img {
  height: 25px;
  width: 25px;
}

.drop-btn-hover .drop-flex-icon {
  margin-right: 0px;
}

.scraper-flex-icon i {
  transform: translateY(1px);
  font-size: 15px;
  color: #0026a2;
  transition: all 0.2s ease-in;
}

.scraper-list-btn .scraper-navlink:hover i {
  transform: translateX(4px);
}

.drop-btn-hover .drop-flex-icon img {
  height: 20px;
  width: 20px;
  filter: invert(100);
}

.drop-box-md .new-drop-menu-flex .drop-btn-hover .drop-flex-item {
  justify-content: center;
}

.drop-box-md .new-drop-menu-flex .drop-box-width.drop-btn-hover {
  background-color: #445c7c;
  transition: all 0.2s ease-in;
}

.drop-box-md .new-drop-menu-flex .drop-box-width.drop-btn-hover:hover {
  background-color: #3a5273;
}

.drop-box-md
  .new-drop-menu-flex
  .drop-box-width.drop-btn-hover:hover
  .drop-flex-icon
  img {
  transform: translateX(10px);
  transition: all 0.2s ease-in;
}

.drop-title-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  font-family: var(--bs-font-rubik);
  color: var(--bs-white);
  letter-spacing: 0.4px;
  margin-bottom: 5px;
}

.drop-small-subtitle {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  font-family: var(--bs-font-rubik);
  color: var(--bs-primary-light);
  letter-spacing: 0.2px;
}

@media screen and (min-width: 1201px) {
  .new-menu .new-nav .new-dropdown.open-dropdown > .new-dropdown-menu {
    /* display: block; */
    visibility: visible;
    -webkit-transform: translate(-50%, 0%) scaleY(1);
    -moz-transform: translate(-50%, 0%) scaleY(1);
    -ms-transform: translate(-50%, 0%) scaleY(1);
    -o-transform: translate(-50%, 0%) scaleY(1);
    transform: translate(-50%, 0%) scaleY(1);
    opacity: 1;
    transition: 0.4s;
  }

  .hamburger-menu {
    display: none;
  }

  .mobile-btn {
    display: none;
  }

  .desktop-btn {
    display: block;
  }
}

@media screen and (max-width: 1550px) {
  .drop-box-data.drop-box-lg {
    width: 950px;
  }
}

@media screen and (max-width: 1400px) {
  .new-main-header .navbar {
    padding: 0 10px;
  }

  .drop-box-data.drop-box-lg {
    width: 860px;
  }

  .new-nav .drop-before-services::before {
    left: 52%;
    top: -8%;
  }

  .drop-box-lg .new-drop-menu-flex .drop-box-width {
    width: 33%;
    margin-bottom: 10px;
  }

  .drop-box-lg .new-drop-menu-flex .drop-box-width:nth-of-type(3),
  .drop-box-lg .new-drop-menu-flex .drop-box-width:nth-of-type(6),
  .drop-box-lg .new-drop-menu-flex .drop-box-width:nth-of-type(9) {
    border-right: none;
  }

  .drop-box-lg .new-drop-menu-flex .drop-box-width.drop-box-m5:nth-of-type(5) {
    border-right: 2px solid rgba(25, 16, 12, 0.04);
  }

  .new-nav .drop-before-retail::before {
    left: 54%;
    top: -4%;
  }
}

@media screen and (max-width: 1300px) {
  .drop-box-data.drop-box-lg {
    width: 740px;
  }
}

@media screen and (max-width: 1200px) {
  .new-main-header .navbar {
    padding: 0px 0px;
  }

  .hamburger-menu {
    margin-right: 15px;
  }
}

.drop-box-data.drop-box-sm {
  width: 260px;
}

.drop-box-sm .new-drop-menu-flex .drop-box-width {
  width: 100%;
  border-right: none;
  padding: 6px;
}

.drop-box-sm .new-drop-menu-flex .drop-box-width.drop-box-m5 {
  margin-bottom: 0px;
}

.full-new-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
}

.full-new-link i {
  color: var(--bs-black);
  transition: 0.4s;
}

.new-dropdown.open-dropdown .new-link {
  color: var(--bg-theme);
}

.new-dropdown.open-dropdown .full-new-link i {
  transform: rotate(180deg);
  color: var(--bg-theme);
}

.full-new-link:hover .new-link {
  color: var(--bg-theme);
}

/* ===================================== MOBILE MENU =============================================== */

.hamburger-menu {
  width: 32px;
  cursor: pointer;
  line-height: 8px;
  z-index: 999;
  height: 32px;
  background-color: #fff;
}

.new-main-header .hamburger-menu span {
  display: inline-block;
  width: 32px;
  height: 5px;
  background: var(--bg-theme);
  transition: all 0.5s;
  border-radius: 40px;
}

.hamburger-menu span:nth-child(1) {
  width: 22px;
}

.hamburger-menu span:nth-child(3) {
  width: 22px;
}

.hamburger-menu.active-icon span {
  margin-top: 15px;
  position: absolute;
  width: 32px;
}

.hamburger-menu.active-icon span:first-child {
  transform: rotate(-135deg);
}

.hamburger-menu.active-icon span:nth-child(2) {
  transform: rotate(135deg);
}

.hamburger-menu.active-icon span:last-child {
  margin-top: 30px;
  width: 0px;
  display: none;
}

.hamburger-menu.active-icon span {
  background: var(--bg-theme);
}

.new-main-header.navfix .hamburger-menu span {
  background: var(--bg-theme);
}

@media screen and (max-width: 1200px) {
  .new-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .new-main-header .navbar {
    width: 100%;
    max-width: 100%;
  }

  .mobile-menu {
    top: 0;
    position: absolute;
    text-align: start;
    background: #fff;
    overflow: hidden;
  }

  .mobile-menu.active {
    right: 0;
    width: 50%;
    height: 100vh;
    overflow-y: auto;
    display: block;
    /* padding: 15px; */
    background-color: var(--bg-theme);
    box-shadow: 6px 6px 22px rgba(42, 31, 63, 0.1);
    top: 0;
  }

  .new-mobile-logo-box {
    height: 5rem;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--bs-white);
    position: fixed;
    top: 0;
    z-index: 5;
    padding: 20px;
  }

  .new-mobile-logo {
    height: 5rem;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .new-mobile-logo img {
    width: 100%;
    height: 100%;
    /* visibility: hidden; */
  }

  .new-nav {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-bottom: 20px;
    top: 5rem;
    position: absolute;
    left: 0;
    width: 100%;
  }

  .new-nav .new-dropdown {
    height: auto;
    line-height: 52px;
    border-bottom: 1px solid #d9d9d9;
    display: block;
    width: 100%;
    margin-right: 0;
    position: relative;
    padding: 5px;
  }

  .new-nav .new-dropdown .new-link {
    color: var(--bs-white);
    font-size: 16px;
    display: inline-block;
    padding: 0 15px;
  }

  header.navfix .new-nav .new-dropdown .new-link {
    color: var(--bs-white);
  }

  .new-dropdown.open .new-dropdown-menu {
    display: block !important;
  }

  .new-nav .new-dropdown-menu {
    top: 0;
    left: 0;
    /* position: relative; */
    border-radius: 8px;
    background: #f6f9ff;
    transform: translate(0%, 0%);
  }

  .drop-box-data.drop-box-lg {
    width: 100%;
  }

  .drop-box-lg .new-drop-menu-flex .drop-box-width {
    width: 50%;
  }

  .drop-box-lg .drop-flex-icon {
    line-height: 40px;
    margin-bottom: 6px;
  }

  .drop-box-lg .drop-flex-icon img {
    height: 38px;
    width: 38px;
  }

  .drop-small-subtitle {
    line-height: 22px;
  }

  .drop-box-lg .new-drop-menu-flex .drop-box-width {
    margin-bottom: 12px;
  }

  .drop-box-lg .new-drop-menu-flex .drop-box-width:nth-of-type(2),
  .drop-box-lg .new-drop-menu-flex .drop-box-width:nth-of-type(4),
  .drop-box-lg .new-drop-menu-flex .drop-box-width:nth-of-type(6),
  .drop-box-lg .new-drop-menu-flex .drop-box-width:nth-of-type(8) {
    border-right: none;
  }

  .drop-box-lg .new-drop-menu-flex .drop-box-width.drop-box-m5:nth-of-type(5),
  .drop-box-lg .new-drop-menu-flex .drop-box-width:nth-of-type(3),
  .drop-box-lg .new-drop-menu-flex .drop-box-width.drop-box-m5 {
    border-right: 2px solid rgba(25, 16, 12, 0.04);
  }

  .drop-title-link {
    line-height: 28px;
  }

  .new-dropdown .full-new-link::after {
    margin-left: 0.25em;
    font-size: 1.1em;
    vertical-align: middle;
    font-family: "FontAwesome";
    content: "\f077";
    position: absolute;
    right: 3%;
    transform: rotate(180deg);
    color: var(--bs-white);
  }

  .new-dropdown.open-dropdown .full-new-link::after {
    transform: rotate(0deg);
  }

  .new-dropdown.open-dropdown .new-dropdown-menu {
    display: block;
  }

  .navbar .primery-btn {
    display: none;
  }

  .scraper-list-slide {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }

  .scraper-list-tag {
    line-height: 24px;
  }

  .scraper-flex-content {
    line-height: 34px;
  }

  .scraper-list-btn .scraper-navlink {
    line-height: 34px;
  }

  .mobile-btn {
    display: block;
    margin: 22px 10px;
  }

  .desktop-btn {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .mobile-menu.active {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .new-drop-menu-flex {
    padding: 10px 8px;
  }

  .drop-box-lg .drop-flex-icon img {
    height: 32px;
    width: 32px;
  }

  .drop-box-lg .drop-flex-icon {
    line-height: 34px;
    margin-bottom: 6px;
  }

  .drop-title-link {
    line-height: 20px;
  }

  .drop-small-subtitle {
    line-height: 18px;
  }

  .drop-box-m5 .drop-flex-item .drop-flex-icon {
    line-height: 24px;
  }

  .drop-box-m5 .drop-flex-item .drop-flex-icon img {
    height: 25px;
    width: 25px;
  }

  .drop-title-link {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .full-new-link {
    justify-content: start;
  }

  .full-new-link i {
    display: none;
  }

  .new-dropdown.open-dropdown .new-dropdown-menu {
    position: relative;
    visibility: visible;
    opacity: 1;
  }

  .drop-box-data.drop-box-sm {
    width: 100%;
  }
  .drop-box-data {
    border-radius: 4px;
    border-top: none;
  }

  .drop-box-sm .new-drop-menu-flex .drop-box-width {
    padding: 6px;
    line-height: 30px;
  }

  .new-nav .new-dropdown-menu {
    transition: none;
  }

  .navbar .primery-btn.mobile-btn {
    display: block;
    background-color: var(--bs-black);
    border-color: var(--bs-black);
  }

  header.navfix .new-nav .new-dropdown .full-new-link:hover .new-link,
  header.navfix .new-nav .new-dropdown .new-link:hover {
    color: var(--bs-white);
  }
}

/* ------------  header menu style changes       start     -----------------  */

.header-submenu-box {
  display: flex;
  flex-direction: row;
  width: 50rem !important;
}

.header-submenu {
  display: flex;
  flex-direction: row;
  width: 70rem !important;
}

.header-submenu-box {
  display: flex;
  flex-direction: row;
  width: 50rem !important;
  padding: 1rem;
  gap: 1rem;
}

.header-submenu-item h4 {
  color: var(--bg-theme);
  border-bottom: 2px solid white;
}

.header-menu-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.header-submenu-item a {
  margin-bottom: 0.4rem;
}

.header-submenu-item:nth-child(1) {
  width: 33%;
}
.header-submenu-item:nth-child(2) {
  width: 66%;
}

/* ------------  header menu style changes       End       -----------------  */



/* New Header Design Start */

/* New Header Design start */

/* New Header Design Start */
  
  
@media (max-width: 1199px) {
  /* Mobile Navigation Fixes */

  /* Support for both active and open-dropdown classes */
  .nav-item.has-submenu.active .mew-navbar-megamenu,
  .nav-item.has-submenu.open-dropdown .mew-navbar-megamenu {
      max-height: 100%;
      overflow-y: auto;
      display: block;
      visibility: visible !important;
      opacity: 1 !important;
  }

  /* Fix submenu visibility issues for active class */
  .submenu {
      display: none;
      width: 100%;
  }

  .nav-item.has-submenu.active .submenu,
  .nav-item.has-submenu.open-dropdown .submenu {
      display: block;
      width: 100%;
  }
}

.mew-sidebar-item a {
  pointer-events: none;
  text-decoration: none;
}

.mew-navbar-header-section {
  padding: 15px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1050;
  /* Adjust if necessary */
  position: sticky;
  top: 0%;
}

.new-navbar-white-bg {
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.new-nav-nav-link .a {
  color: black !important;
}

.mew-navbar-brand {
  font-size: 24px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.mew-navbar-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 30px;
}

.mew-navbar-nav .nav-link {
  color: #2d3436;
  padding: 10px 0;
  position: relative;
  font-weight: 500;
}

.mew-navbar-nav .nav-link.new_active_1::after {
  display: none;
}

/* Add dot on hover */
.mew-navbar-nav .nav-link {
  color: #2d3436;
  padding: 10px 0;
  position: relative;
  font-weight: 500;
}

.mew-navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #00184b;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mew-navbar-nav .nav-link:hover::after {
  opacity: 1;
}

/* Optional: Maintain dot visibility when mega menu is open */
.mew-navbar-nav .nav-item:hover .nav-link::after {
  opacity: 1;
}

.mew-contact-btn {
  background: #ff1749;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
}

.mew-navbar-megamenu {
  position: absolute;
  left: 0;
  width: 100%;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: 100%;
  padding: 16px 0;
  /* border-top: 1px solid #eee; */

}

.new-header-design-bg-white {
  background-color: #fff;
  padding: 0;
  margin: 0 auto;
  box-shadow: 16px 10px 9px -1px #3c3c3c52;
}

.mew-navbar-nav .nav-item:hover .mew-navbar-megamenu {
  opacity: 1;
  visibility: visible;
}

.mew-megamenu-sidebar {
  /* background: linear-gradient(95deg, #FFCCD5, transparent); */
  padding: 30px;
  color: white;
  height: 100%;
  background-repeat: no-repeat;
}

.mew-megamenu-sidebar-services {
  background-image: url(../../image/new-header-design/Services.png) !important;
}

.mew-megamenu-sidebar-rtu {
  background-image: url(../../image/new-header-design/Ready-To-Use.png) !important;
}

.mew-megamenu-sidebar-company {
  background-image: url(../../image/new-header-design/Company.png) !important;
}

.new-right-side-padding-new-index {
  padding: 15px 0;
}

.mew-sidebar-item {
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  margin-bottom: 10px;
}
.mew-sidebar-item:hover,
  .mew-sidebar-item.new_active_1 {
    /* background: rgba(255, 255, 255, 0.2); */
    background: rgba(242, 36, 74, 0.1);
  }
@media (max-width: 1199px) {
  .mew-sidebar-item:hover,
  .mew-sidebar-item.new_active_1 {
    /* background: rgba(255, 255, 255, 0.2); */
    background: none;
  }
}

.mew-sidebar-item h5 {
  margin: 0;
  font-size: 19px;
  /* color: #f2244a; */
  color: #00184b;
  font-weight: 600;
}

.mew-sidebar-item p {
  margin: 5px 0 0;
  font-size: 14px;
  /* color: rgba(255, 255, 255, 0.7); */
  color: #00184b;
}

.mew-content-section {
  display: none;
  padding-left: 30px;
}

.mew-content-section.new_active_1 {
  display: block;
}

.mew-service-card {
  margin-bottom: 30px;
  text-decoration: none;
}

.mew-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #f77f95, transparent);

  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mew-service-icon img {
  width: 40px;
  height: 40px;
  color: #00184b;
  
}

.mew-service-card h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00184b;
  font-weight: 500;
}

.mew-service-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.mew-subcategory {
  color: #999;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

.language-selector {
  margin-right: 20px;
}

.new-side-column {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mew-new-side-content-section {
  padding-left: 0px !important;
}

.new-industry-new-index-side-padding {
  padding: 15px 0 0;
}

.new-industry-new-index-side-padding .mew-content-section.new_active_1 h2,
.new-industry-new-index-side-padding .mew-content-section.new_active_1 p {
  padding-left: 10px;
}

/* .mew-content-image {
  width: 98.6%;
  height: 500px;
  display: block;
} */

.mew-insight-image {
  width: 98.6%;
  height: 354px;
  display: block;
}
@media (max-width: 1400px) {
  .mew-insight-image {
    width: 98.3%;
  
  }
    
}


.new-header-design-bg-white .new-resources-link {
  color: #000;
  text-decoration: none;
}

.mew-navbar-header-section button.navbar-toggler {
  border: none;
  font-size: 30px;
}


.navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ff1749' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.mew-datazivot-logo {
  width: 175px;
}


@media (max-width: 1199px) {
  .mew-navbar-nav {
      gap: 1rem;
  }
}

@media (max-width: 1199px) {
  ul.navbar-nav.mew-navbar-nav {
      margin-top: 25px;
  }

  .navbar-expand-lg .navbar-toggler {
      display: block;
  }

  /* Mobile Navigation Styles */

  .navbar-collapse {
      position: fixed;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100vh;
      background: white;
      transition: left 0.3s ease;
      /* z-index: 1060; */
      padding: 80px 20px 20px;
      overflow-y: auto;
      max-height: 100%;
      overflow-x: hidden;
      /* flex-basis: 100% !important; */
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }

  body.navbar-open {
      overflow: hidden;
      /* Body ka scrolling disable */
  }

  .new-right-side-padding-new-index {
      display: none !important;
  }

  .new-industry-new-index-side-padding {
      display: none !important;
  }

  .navbar-collapse.show {
      left: 50%;
  }

  .mew-navbar-nav {
      flex-direction: column;
      gap: 0;
  }

  .nav-item {
      border-bottom: 1px solid #eee;
  }

  .mew-navbar-nav .nav-link {
      padding: 15px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 20px !important;
  }

  .mew-navbar-nav .nav-link::after {
      display: none;
  }

  .nav-item.has-megamenu.new_active_1 .nav-link::after {
      transform: rotate(180deg);
  }

  .mew-navbar-megamenu {
      position: static;
      opacity: 1;
      visibility: visible;
      background: #f9f9f9;
      box-shadow: none;
      padding: 0;
      max-height: 100%;
      overflow: hidden;
      transition: max-height 0.3s ease;
  }

  .nav-item.has-megamenu.new_active_1 .mew-navbar-megamenu {
      max-height: 100%;
  }

  .mew-megamenu-sidebar {
      background: transparent;

      padding: 10px 0;
      color: #000;
  }

  .new-side-column {
      display: block;
  }

  .mew-sidebar-item {
      padding: 22px;
      margin-bottom: 5px;
      background: transparent;
      border-bottom: 1px solid #eee;
  }

  .mew-sidebar-item h5 {
      color: #000;
      font-size: 16px;
      margin-bottom: 5px;
  }

  .mew-sidebar-item p {
      color: #666;
      font-size: 14px;
      margin: 0;
  }

  .mew-content-section {
      display: none;
      padding: 15px;
      background: #fff;
  }

  .mew-content-section.new_active_1 {
      display: block;
  }

  /* Close button for mobile menu */
  .mobile-menu-close {
      position: absolute;
      top: 5px;
      right: 15px;
      font-size: 60px;
      cursor: pointer;
      z-index: 1070;
      color: #ff1749;
      border: none;
      background: transparent;
  }

  /* Contact button in mobile */
  .d-flex.align-items-center {
      width: 100%;
      margin-top: 20px;
  }

  .mew-contact-btn {
      display: block;
      text-align: center;
      width: 100%;
  }

  .nav-item.has-submenu>.nav-link::after {
      content: '+';
      float: right;
      font-size: 20px;
      transition: transform 0.3s ease;
  }

  .nav-item.has-submenu.new_active_1>.nav-link::after {
      content: '-';
  }

  .submenu {
      display: none;

  }

  .nav-item.has-submenu.new_active_1 .submenu {
      display: block;
  }

}

@media (max-width: 575px) {
  .mew-navbar-brand {
      font-size: 20px;
  }

  .navbar-toggler {
      padding: 6px;
  }

  .mew-sidebar-item h5 {
      font-size: 14px;
  }

  .mew-sidebar-item p {
      font-size: 12px;
  }

  .navbar-collapse.show {
      left: 28%;
  }

  .navbar-collapse.hide {
      left: 28%;
  }

  .navbar-collapse {
      width: 75%;
  }

  .mew-navbar-megamenu-mobile-res {
      overflow-y: auto;
  }

  .nav-item.has-megamenu.new_active_1 .mew-navbar-megamenu {
      visibility: visible;
      opacity: 1;
  }

  /* ----- */
  .mew-navbar-nav .nav-link {
      font-size: 18px !important;
  }

  .mew-datazivot-logo {
      width: 150px;
  }

  .mew-navbar-header-section button.navbar-toggler {
      font-size: 25px;
  }
}

@media only screen and (min-width:992px) and (max-width:1400px) {
  .navbar-for-responisve-new {
      overflow: visible !important;
  }

}

.mew-header-view-btn {
  border: 1px solid #f2244a;
  padding: 6px 12px;
  border-radius: 10px;
  pointer-events: auto !important;
  color: white;
  font-size: 16px;
  background-color: #f2244a;
}

.mew-header-view-btn:hover {
  background-color: transparent;
  transition: 0.3S ease;
  color: #071a4c;
}

@media (max-width: 1199px) {
  .mew-header-view-btn {
      border: 1px solid #f2244a;
      padding: 6px 12px;
      border-radius: 10px;
      pointer-events: auto !important;
      color: #f2244a;
      font-size: 16px;
      background-color: transparent;
  }

  .mew-header-view-btn:hover {
      background-color: #f2244a;
      transition: none;
      color: white;

  }

  .mew-megamenu-sidebar-services {
      background-image: none !important;
  }

  .mew-megamenu-sidebar-company {
      background-image: none !important;
  }

  .mew-megamenu-sidebar-rtu {
      background-image: none !important;
  }


  .mew-contact-view-btn {
      border: 1px solid #f2244a;
      padding: 6px 12px;
      border-radius: 10px;
      pointer-events: auto !important;
      color: #f2244a;
      font-size: 16px;
      background-color: transparent;

  }

  .mew-contact-view-btn:hover {
      background-color: #f2244a;
      color: white;
  }

  .company-desc-view-btn {
      display: none;
  }

}

@media (min-width: 1199px) {
  .mew-contact-view-btn {
      display: none;
  }
}

.company-desc-view-btn {
  border: 1px solid #071a4c;
  padding: 6px 12px;
  border-radius: 10px;
  pointer-events: auto !important;
  color: #071a4c;
  font-size: 16px;
  background-color: transparent;
  text-decoration: none;

}

.company-desc-view-btn:hover {
  background-color: #071a4c;
  transition: 0.3S ease;
  color: white;
}

.insights-flex-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.sol-header-main-title h2{
color: black;
}

.insights-flex-items a {
  margin-left: 93px;
  text-decoration: none;
}

@media (max-width: 1058px) {
  .insights-flex-items {
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: start;
  }

  .insights-flex-items a {
      margin-left: 0;
  }

  .mew-header-view-btn {
      padding: 4px 10px;
      font-size: 16px;
      margin-top: 2px;
  }


}

@media (min-width: 1200px) and (max-width:1400px) {
  .insights-flex-items a {
      margin-left: 0;
  }

  .mew-header-view-btn {
      padding: 7px 10px;
  }

  .insights-flex-items {
      gap: 10px;
  }
  .mew-content-image{
      width: 98.3%;
      height: 582px
  }
}

.company-contact-link {
  text-decoration: none;
}

.company-contact-desc {
  display: flex;
  height: 250px;
  align-items: center;
  justify-content: center;
}

.header-view-old-btn a {
  pointer-events: auto;
  padding: 6px 12px;
}

.store-loc-btn {
  /* border: 1px solid transparent; */
  border-radius: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  margin-bottom: -4px;
  background: linear-gradient(175deg, #f77f95, transparent);

}

.store-loc-btn:hover.store-loc-btn a {
  /* background: rgba(242, 36, 74, 0.1); */
  color: #f2244a;

}

.store-loc-btn:hover {
  background: rgba(242, 36, 74, 0.1);
  border: 1px solid #f2244a;

}

.store-loc-btn a {
  text-decoration: none;
  padding: 10px;
  color: #071a4c;
  font-weight: 600;
}

.store-loc-btn h5 {
  font-weight: 600;
  margin-bottom: 0;
  margin: 3px 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .store-loc-btn {
      margin-top: -1px;
      margin-bottom: -20px;
  }

  .store-loc-btn h5 {
      font-size: 18px;
  }
}

@media (max-width: 400px) {
  .store-loc-btn h5 {
      font-size: 16px;
  }

  .store-loc-btn {
      margin-top: 3px;

  }
}

@media (max-width: 330px) {
  .store-loc-btn h5 {
      margin: 3px -6px;

  }
}

.mew-service-card:hover .mew-service-icon{
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.3);
}

/* New Header Design End */

/* New Header Design End */

/* Remove default Bootstrap icon */
/* .mew-navbar-nav > *:last-child{
margin-left: 200px;
} */

