@font-face {
  font-family: "PoppinsBold";
  src: url("fonts/Poppins-Bold.ttf") format("truetype"),
    url("fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "PoppinsLight";
  src: url("fonts/Poppins-Light.ttf") format("truetype"),
    url("fonts/Poppins-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "PoppinsSemiBold";
  src: url("fonts/Poppins-SemiBold.ttf") format("truetype"),
    url("fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "PoppinsRegular";
  src: url("fonts/Poppins-Regular.ttf") format("truetype"),
    url("fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "PoppinsMedium";
  src: url("./fonts/Poppins-Medium.ttf") format("truetype"),
    url("./fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

:root {
  --PoppinsLight: "PoppinsLight";
  --PoppinsRegular: "PoppinsRegular";
  --PoppinsSemiBold: "PoppinsSemiBold";
  --PoppinsMedium: "PoppinsMedium";
  --PoppinsBold: "PoppinsBold";
  --color_blue: #1b75bb;
  --color_blue2: #083451;
  --footerBg: #03243a;
  --videoCircle: #16ebfe;
  --statusColor: #18ebfe;
  --color_green: #30d5c8;
  --colorgreenLight: rgba(48, 212, 199, 30%);

  /* --tag_color: #171929; */
  --tag_color: #fff;

  /* --color_primary: #010412; */
  --color_primary: #fff;
  /* --color_primaryBoth: #010412; */
  --color_primaryBoth: #000;
  /* --color_primary50: rgba(1, 4, 18, 0.50); */
  --color_primary50: rgba(255, 2554, 255, 0.5);

  /* --color_primary70: rgba(1, 4, 18, 0.70); */
  --color_primary50: rgba(255, 2554, 255, 0.7);
  --border_color: #cfd7e6;
  --border_color2: #767b92;

  /* --white: #fff; */
  --white: #000;
  --whiteBoth: #fff;
  --black: #000;

  --light_grey: #c0c0c0;
  --light_grey2: #98a6bf;
  /* --services_border: #221F30; */
  --services_border: #fff;
  --btn_gradient: radial-gradient(
    163.75% 163.75% at 23.45% 140%,
    var(--color_blue) 0%,
    rgba(9, 93, 230, 0.53) 100%
  );
  --btn_shadow: 0px 4px 15px 0px #0d93ef inset;
  --btn_border_color: rgb(48, 213, 200);

  --btn_shadow_hov: #18998e;
  --btn_shadow_hov_inset: 0px 0px 15px 0px #18998e inset;
  --transition: all 0.2s ease;

  --headerHeight: 80px;
  --bannerBlend: linear-gradient(0deg, #ffffff75 0%, rgba(1, 4, 18, 0) 100.14%);

  --baseFontSize: 16px;

  --shadePurpleeffect: #bc43b0;
}
* {
  padding: 0px;
  margin: 0px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin: 0px;
  font-family: var(--PoppinsSemiBold);
  line-height: 1.2em;
  padding-bottom: 10px;
}
p,
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin: 0;
}

h2 {
  font-size: 36px;
}
body {
  color: #010412;
  background-color: #fff;
  font-family: var(--PoppinsRegular);
  font-size: var(--baseFontSize);
  line-height: 1.4em;
  overflow-x: hidden;
}
.wrapper {
  width: 100%;
  /* padding-top: var(--headerHeight); */
}
.autoContent {
  width: 100%;
  max-width: 1720px;
  margin: auto;
  padding: 0px 40px;
}
/*header*/
.header {
  width: 100%;
  z-index: 222;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: all 0.3s ease-in-out;
  background: transparent; /* Make the header background transparent */
}
.site_contain.container {
  max-width: 85%;
  margin-bottom: 40px;
}
.header:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* background: rgba(255, 255, 255, 0.50); 
    backdrop-filter: blur(22.5px); */
}
.banner-btn:hover::after {
  transform: translateX(5px);
  background-image: url(../assets/images/arrow-icon.png) !important;
}
.header_main {
  position: relative;
  z-index: 3;
}
.stickyHeader .header,
.openSubMenu {
  position: fixed;
}
.hamburger-lines {
  flex-direction: column;
  justify-content: space-between;
  padding: 12.9px 11px;
  cursor: pointer;
  display: none;
}
.hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: all 0.4s ease-in-out;
  background: #fff !important;
}
.hamburger-lines .line {
  display: block;
  height: 1.4px;
  width: 100%;
  border-radius: 10px;
  background: var(--white);
}
.hamburger-lines .line2 {
  transition: all 0.2s ease-in-out;
}
.hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: all 0.4s ease-in-out;
}

.stickyHeader .header:not(.openSubMenu) .header_menu {
  background-color: var(--color_primary50);
  backdrop-filter: blur(22.5px);
  -webkit-animation: mover 0s both alternate;
  animation: mover 0s both alternate;
}

.stickyHeader .header:not(.openSubMenu) .requestDemo_header {
  -webkit-animation: mover 0s both;
  animation: mover 0s;
}

.header {
  position: fixed;
  transition: background-color 0.3s ease;
}

.stickyHeader .header {
  transform: translateY(-100%);
}
.header_inner {
  width: 100%;
  padding: 20px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 145px;
  flex-shrink: 0;
}

.logo a {
  display: block;
}

.logo a svg {
  display: block;
}

.header-transparent {
  background-color: transparent;
}

.header-background {
  background-color: #052d46;
}
.header-background .header_menu_link{color: #fff;}
.header_right {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header-background .header_menu_link.has_dropdown{background: url(../assets/images/arrow-icon-white.svg) no-repeat right center;}
.header-background .logo svg path {
  fill: #fff;
}
.header_menu {
  padding: 10px;
  margin: auto;
  /* background-color: #052D46 !important; */
}
.header-colored {
  background-color: #052d46;
}
.header_menu > ul {
  display: flex;
  align-items: center;
}

.header_menu > ul > li {
  padding: 0px 20px;
}

.header_menu_link {
  color: #000;
  display: block;
  line-height: 1.4em;
  transition: var(--transition);
  cursor: pointer;
}

.header_menu_link:hover {
  opacity: 0.6;
}

.header_menu_link.has_dropdown {
  background: url(../assets/images/arrow-icon.svg) no-repeat right center;
  background-size: 10px auto !important;
  padding-right: 15px;
}

.header_menu > ul > li.active_li > .header_menu_link {
  opacity: 0.6;
  background: url(../assets/images/arrow-icon-up.svg) no-repeat right center;
}
/* sub menu style */

.subMenu_dropdown {
  width: 50%;
  height: auto;
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: 999;
  display: none;
}
.subMenu_dropdown_inner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 140px;
  background: #052d46;
  bottom: 0;
  filter: blur(112px);
  z-index: -3;
}
.subMenu_dropdown_inner {
  position: relative;
  z-index: 2;
  /* padding: 60px 0px 60px 0px; */
  border-bottom: 2px solid #c2cdff;
  background-color: #052d46;
  backdrop-filter: blur(22.5px);
}

.subMenu_dropdown.active {
  display: block;
}

.subMenu_dropdown_auto {
  width: 100%;
  /* max-width: 1000px; */
  margin: auto;
  /* padding: 0px 15px; */
  display: flex;
  position: relative;
  z-index: 2;
}

.dropdownOverlay {
  width: 100%;
  height: calc(100vh + 100px);
  position: fixed;
  left: 0px;
  top: 84px;
  z-index: 1;
}

.subMenu_list {
  width: 100%;
  /* padding-right: 50px; */
  padding: 10% 100px 30px 100px;
}

.subMenu_list ul li {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: left;
  margin-left: 30%;
}
.align-row {
  display: flex;
  align-items: center;
}
.align-row div {
  display: none;
}
.bar {
  height: 5px;
  width: 40px;
  border-radius: 30px;
  margin-right: 8px;
  margin-bottom: 2%;
}
.align-row .bar {
  display: block;
  color: transparent;
}

.submenu_link:hover .bar,
.submenu_link.active .bar {
  display: block;
  color: white !important;
  background-color: white !important;
}

.submenu_link {
  color: #fff !important;
  display: block !important;
  line-height: 1.4em !important;
  transition: var(--transition);
  cursor: pointer;
}
.align-row:hover div,
.submenu_link.active .align-row div {
  display: block;
}
.subMenu_list ul li .sebmenu_parent {
  text-align: left;
}
ul.subSubul {
  position: absolute;
  right: -35%;
  top: 0;
  width: 80%;
}
ul.subSubul li a {
  font-size: 20px;
  font-weight: bold;
  color: #0a2278 !important;
}
ul.subSubul li {
  margin-bottom: 20px;
}
.subMenu_list ul li:last-child {
  margin-bottom: 0px;
}

.subMenu_list ul li a {
  color: var(--white);
  transition: var(--transition);
  display: block;
}

.subMenu_list ul li strong {
  display: block;
  font-family: var(--PoppinsRegular);
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.4em;
  padding-bottom: 10px;
  /* color: #81939E; */
}

.subMenu_list ul li strong.active,
.subMenu_list ul li strong:hover {
  color: white;
}

.subMenu_list ul li span {
  display: block;
  color: #98a4b4;
  font-size: 18px;
  line-height: 1.4em;
  font-family: var(--PoppinsLight);
}

.subMenu_list ul li a:hover {
  opacity: 0.6;
}

.subMenu_pop_right {
  width: 100%;
  padding-left: 0px;
  text-align: center;
  background-color: #08384b;
}

.subMenu_avatar {
  width: 260px;
  height: 260px;
  margin: auto;
  margin-bottom: 30px;
  border-radius: 50%;
}

.subMenu_avatar img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
  object-fit: cover;
  border-radius: 50%;
}

.subMenu_avatar_info {
  width: 100%;
}

.subMenu_avatar_info h2 {
  color: var(--white);
  font-family: var(--PoppinsBold);
  font-size: 1.6em;
  line-height: 1.4em;
  padding-bottom: 20px;
}

.smr_moreLink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  font-size: 1.2em;
  line-height: 1.4em;
}

.smr_moreLink i {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: url(../assets/images/right-arrow-white.svg) no-repeat 10px center;
  background-size: 18px auto;
  transition: var(--transition);
}

.smr_moreLink:hover i {
  background-position: 14px center;
}

.sbMenuClose {
  display: none;
}

.header_info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
ul.list-group-normal {
  margin-left: 20px;
}
.list-group-normal li {
  list-style: disc;
  margin-bottom: 10px;
}

.hc_cricle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border_color);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(32.5px);
  position: relative;
}

.hc_cricle img {
  max-width: 22px;
  max-height: 16px;
  display: block;
  margin: auto;
}
.mob_menuBtn {
  display: none;
}
.lanDropdown_menu {
  border-color: var(--border_color);
  background-color: var(--color_primary);
}

.lanDropdown_menu .dropdown-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.875em;
  color: var(--white);
}

.lanDropdown_menu i {
  width: 22px;
  flex-shrink: 0;
  display: block;
  margin-right: 10px;
}

.lanDropdown_menu i img {
  max-width: 22px;
  max-height: 16px;
  display: block;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: var(--btn_gradient);
  color: var(--white);
}

.btn_custom {
  padding: 14px 28px;
  color: var(--whiteBoth);
  font-family: var(--PoppinsSemiBold);
  font-size: 1em;
  background: transparent;
  border: 1px solid var(--btn_border_color);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  display: inline-flex; /* Use inline-flex for flexible box layout */
  align-items: center; /* Center items vertically */
  justify-content: center; /* Center items horizontally */
  text-align: center; /* Ensure text is centered if the button size changes */
  cursor: pointer;
  margin-right: 20px;
}
.btn_custom.btn_about::after {
  content: "";
  display: inline-block;
  width: 1em; /* Adjust size as needed */
  height: 1em; /* Adjust size as needed */
  background-image: url("../assets/images/arrow-icon.png"); /* Path to your arrow icon */
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px; /* Space between text and icon */
  transition: transform 0.2s ease-in-out;
  background-position: center;
}

.btn_custom.btn_about:hover::after {
  transform: translateX(5px);
}
.btn_custom.btn_about {
  border-radius: 5px;
  background: #30d4c7;
  box-shadow: none;
  color: #000;
  padding: 14px 28px;
}
.btn_custom.btn_outlined {
  background: none;
  box-shadow: none;
  border-color: #cfd7e6;
  color: var(--white);
  height: 40px;
  padding: 0;
}

/* banner */

.Banner {
  position: relative;
}

.hm_banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.clip-path {
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}
/* 
  .background-color {
    background-color: #052D46;
  } */

.background-Image {
  background: url(../assets/images/Banner-new.webp) no-repeat;
  background-position: bottom;
  background-size: cover;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  } */

/* .banner_inner {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
  } */

.site_contain.container {
  position: relative;
  z-index: 3;
}

.banner_headlines {
  color: white;
  text-align: left;
  max-width: 100%;
}

.heading {
  font-size: 3rem;
  margin: 0;
}

.desc {
  font-size: 1.5rem;
  margin-top: 20px;
}

.banner_cta {
  margin-top: 8px;
}
.banner-btn::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../assets/images/arrow-icon.white.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
  transition: transform 0.2s ease-in-out;
  background-position: center;
}

.banner-btn:hover::after {
  transform: translateX(5px);
}
.btn_custom:hover {
  background: var(--btn_shadow_hov) !important;
  border: 1px solid var(--btn_shadow_hov);
  color: #000;
}
.banner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .banner-btn {
    margin-top: 10px;
  }

  .banner_headlines {
    max-width: 100%;
    font-size: 0.8rem;
    padding: 0 1%;
    text-align: center;
  }

  .hm_banner {
    max-height: 70vh;
    min-height: 70vh;
  }

  .banner_img {
    height: 90%;
    opacity: 0.6;
  }
}

@media (max-width: 430px) {
  .desc {
    width: 100% !important;
    max-width: 100vw;
    margin-top: -1rem;
    word-wrap: break-word;
    overflow: hidden;
  }

  .heading {
    font-size: 6vw;
    white-space: normal;
    word-wrap: break-word;
    overflow: hidden;
  }
}
.hm_banner {
  width: 100%;
  position: relative;
  color: var(--white);
  min-height: calc(90vh - 0px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  height: 49vw;
  overflow: hidden;
}

.hidden {
  display: none;
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1000;
}
.background-video2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
/* .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #083553;
    opacity: 0.4;
    z-index: 0;
  } */

.banner_inner {
  width: 100%;
  position: relative;
  z-index: 10000;
}

.banner_inner, .banner_inner_retail {
  width: 100%;
  z-index: 10000;
}

.banner_headlines {
  /* max-width: 40vw; */
  position: absolute;
  top: 20vh;
}
.home-banner .banner_headlines {
  position: relative;
  text-align: center;
  margin: auto;
}
.home-banner .banner_headlines h5 {
  width: 100%;
}
.home-banner .banner_headlines h1 {
  font-size: 70px;
  text-transform: none;
}
.home-banner .autoContent {
  position: relative;
  z-index: 2;
  height: 10px;
}

.header_menu_link.has_dropdown,
a.header_menu_link {
  font-size: 14px;
}
.banner_headlines h1 {
  font-family: var(--PoppinsSemiBold);
  font-size: 3.2em;
  line-height: 1.2em;
  font-weight: 500;
  padding-bottom: 15px;
  color: var(--black);
  text-transform: none;
}
.banner_headlines h1 span.highlight {
  background: linear-gradient(90deg, #1063a3 0%, #0090ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* This makes the text take the gradient */
}

#bannerTitle {
  background: transparent;
  color: var(--black);
  font-family: var(--PoppinsMedium) !important;
  font-size: 68px;
  font-weight: 500;
  letter-spacing: -2.2px;
  line-height: 1.2em;
  padding-bottom: 15px;
  text-transform: none;
}

h5#bannerDescription {
  color: var(--white);
  font-family: var(--PoppinsLight);
  font-size: 19.2px;
  font-weight: 300;
  line-height: 1.4em;
  margin-top: 20px;
}

.banner_headlines h5 {
  color: var(--whiteBoth);
  font-family: var(--PoppinsRegular);
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 300;
  width: 82%;
}

.btn_custom2 {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  width: auto;
}

.bannerClients.alternate {
  background: transparent;
  bottom: 0;
  position: absolute;
}

.bannerClients {
  background: #fff;
  padding: 25px 0 10px;
  position: relative;
  width: 100%;
}

.client_heading {
  font-size: 25px;
  padding-bottom: 8px;
  text-align: center;
}

.hm_banner:after {
  content: "";
  /* z-index: 2; */
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  display: block;
}

.banner_img {
  width: 40vw;
  position: absolute;
  right: 0vw;
  top: 8vh;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.banner_img_left {
  width: 35vw;
  position: absolute;
  right: 3vw;
  object-fit: cover;
  display: block;
}
.headlines_box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  border: none;
  background: #093454;
  padding: 8px 20px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  -webkit-backdrop-filter: blur(32.5px);
  backdrop-filter: blur(32.5px);
  padding: 11px 27px 11px 27px;
  margin-bottom: 20px;
}
.headlines_box span {
  font-family: var(--PoppinsLight);
  text-align: center;
  font-size: 12px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--whiteBoth);
  font-weight: 700;
}
.description h2 {
  /* margin-bottom: 20px; */
  font-weight: bold;
  word-spacing: 2px;
  color: black;
}

.description h2 {
  font-size: 36px !important;
}

h2 {
  font-size: 30px;
  /* margin-bottom: 10px; */
}

p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  word-break: break-word;
}
.intro-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.intro-section::before {
  content: "";
  display: block;
  width: 550px;
  height: 550px;
  transform: rotate(5.934deg);
  flex-shrink: 0;
  border-radius: 629.55px;
  background: #1a75bb8f;
  filter: blur(220px);
  position: absolute;
  top: 5%;
  left: -20%;
  animation: rotation 6s infinite;
}

.componentContainer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  color: white;
  text-align: center;
  padding: 30px 0 40px 0px;
  position: relative;
}

.leftSection,
.rightSection {
  width: 100%;
}

.headlines_box.inner {
  background-color: #093454;
}
.highlight {
  color: #30d4c7;
}
.headlines h2 {
  /* margin-bottom: 20px; */
  font-weight: bold;
  word-spacing: 2px;
  color: black;
}

.description p {
  font-size: 16px !important;
  color: #000;
  font-weight: 100;
  line-height: 30px;
  margin-bottom: 20px;
}

.sentece_case {
  text-transform: none !important;
}

.rightSection {
  text-align: end;
}

.intro-image {
  width: 70%;
  height: auto;
  border-radius: 10px;
}

.brandClients {
  padding: 20px 0;
}

.ourClientsBox {
  text-align: center;
}

.ourClientsBox h5 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: #333;
}

.slider {
  width: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  justify-content: space-between;
  gap: 2%;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ourClientsBox img {
  min-height: 30px;
  max-height: 50px;
  width: 130px;
}

.btn-animation-container {
  position: relative;
  display: inline-block;
  width: 200px; /* Adjust as needed */
  height: 60px; /* Adjust as needed */
}
#default-animation,
#hover-animation {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#hover-animation {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-text {
  position: relative;
  z-index: 2;
  color: white;
  pointer-events: none;
}
.btn_custom2 {
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider.logo-slider {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.slide-track {
  display: flex;
  flex-wrap: nowrap;
}

.slide {
  flex: 0 0 160px;
  margin: 0 7px;
  padding: 0 20px;
  height: 100px;
}

.slide img {
  width: 85%;
  vertical-align: middle;
}

@media (min-width: 768px) {
  /* .componentContainer {
    grid-template-columns: 1fr 1fr;
  } */

  .ourClientsBox img {
    min-height: 20px;
    max-height: 30px;
    width: auto;
  }
}

@media (max-width: 767.98px) {
  /* .slide-track {
    gap: 20%;
  } */

  .ourClientsBox img {
    min-height: 20px;
    max-height: 30px;
    width: auto;
  }

  .description {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
}
.image_container {
  height: calc(9vw + 22px);
  width: calc(9vw + 22px);
  max-height: 60px;
  max-width: 60px;
  padding: 15px;
  background: rgba(27, 117, 186, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .image_container {
    height: 68px;
    width: 68px;
  }
}

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

.services_box {
  margin-bottom: 20px;
  text-align: left;
}

.review h5 {
  font-size: 30px;
  margin-bottom: 2rem;
}

.review::before {
  content: "";
  display: block;
  width: 550px;
  height: 550px;
  transform: rotate(5.934deg);
  flex-shrink: 0;
  border-radius: 629.55px;
  background: rgb(48 212 199 / 40%);
  filter: blur(220px);
  position: absolute;
  top: -25%;
  left: -20%;
  animation: rotation 6s infinite;
}

.review {
  position: relative;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 1px 0px 6px 2px rgba(0, 0, 0, 0.15);
  position: relative;
}

.review-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
}

.review-content {
  flex: 1;
}

.review-text {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 3.5rem;
  line-height: 1.875rem;
  font-style: italic;
}

h5.review-author {
  font-size: 1.75rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}

.review-title {
  font-size: 1rem;
}

@media (min-width: 992px) {
  .review-card {
    display: flex;
    flex-direction: row;
    width: auto;
    padding: 3rem;
  }

  .review-image img {
    width: 480px;
    height: 400px;
  }

  .review-content {
    padding-left: 2rem;
  }

  .review-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 2rem;
  }

  .review-title {
    font-size: 1.125rem;
  }
}
.product_services-list {
  max-width: 600px;
}
.services_list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.services_list ul {
  display: flex;
  flex-wrap: wrap;
}
.services_list {
  width: 100%;
}
.product_services-list .services_list ul li {
  width: 50%;
  border: none;
  text-align: left;
}

.services_list ul li {
  width: 25%;
}
.services_list li {
  padding: 15px 0px 15px 29px;
  display: inline-block;
  border-left: 1px solid var(--services_border);
  border-top: 1px solid var(--services_border);
  position: relative;
  /* overflow: hidden; */
  transition: all 0.3s ease-in-out;
}
.product_services-list .services_list p {
  font-family: var(--PoppinsSemiBold);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  padding-bottom: 8px;
  margin-top: 15px;
}

.services_list p {
  display: block;
  margin-top: 40px;
  color: var(--white);
  font-size: 1.375em;
  font-style: normal;
  font-weight: 400;
  transition: all 0.3s ease;
}
.product_services-list .services_list span {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.4em;
  display: block;
  margin-top: 12px;
  color: var(--white);
  transition: all 0.3s ease;
}
.brandsClass {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
}
.brandClients {
  padding: 20px 0;
}
.ourClientsBox {
  text-align: center;
}

.brandClients .ourClientsBox {
  max-width: 1440px;
  margin: auto;
  padding: 35px 30px;
  margin-top: -80px;
  z-index: 4;
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--border_color);
  background: var(--whiteBoth);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* Main Intro */

.site_contain.container {
  margin-bottom: 40px;
  margin-top: 20px;
  max-width: 85%;
}


.static-slide {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.leftSection,
.rightSection {
  flex: 1;
  width: 100%;
}

.description {
  align-items: baseline;
  display: inline-flex;
  flex: 1;
  flex-direction: column;
  max-width: 600px;
  text-align: left;
}

.why-netsol .description h2 {
  font-size: 30px !important;
}

.headlines {
  text-transform: none;
  padding-bottom: 20px;
  width: 100%;
}

.headlines h2,
.headlines h3 {
  line-height: 1.2em;
  padding-bottom: 10px;
}

.content-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.description h2 {
  color: #000;
  font-family: var(--PoppinsSemiBold);
  font-weight: 700;
  margin-top: 20px;
  word-spacing: 2px;
}

span.highlight-new {
  background: linear-gradient(90deg, #1063a3, #0090ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#mainHeader.header-background{
      background-color: #052d46;
}
/* .description p {
  font-size: 16px !important;
  color: #000;
  font-weight: 100;
  line-height: 30px;
  margin-bottom: 20px;
} */
.sentece_case {
  padding-bottom: 10px !important;
  text-transform: none !important;
}
.headlines p {
  color: #000;
  font-size: 18px;
  line-height: 32px;
  font-family: var(--PoppinsRegular);
}

/* Main Tabs */
.mainTabs {
  position: relative;
}

.tab_toggle {
  background: url("../assets/images/shadow-left.svg") no-repeat;
  position: absolute;
  width: 75vw;
  height: 75vw;
  display: block;
  top: -300px;
}

.text-center {
  padding-top: 60px;
  text-align: center !important;
}

.tabs-heading {
  font-family: var(--PoppinsMedium) !important;
  font-size: 45px !important;
}

.tabs-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
  background-color: #EEEEEE;
  border-radius: 40px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: 2px 2px 20px rgb(0 0 0 / 14%);
}

.tab {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 9999px;
  background-color: #e6eef5;
  color: #000;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 230px;
  justify-content: center;
}

button.tab {
  border: 0;
}

.tab.active {
  background-color: #1A75BB;
  color: #fff;
}

.tab-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab-icon {
  width: 16px;
  height: 16px;
  background-color: white;
  display: inline-block;
  border-radius: 4px;
}

.tab-text {
  font-size: 18px;
}

.tab-border {
  display: none; 
}

.active-indicator {
  display: none;
}

.tabs-scroll-indicator {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  background: linear-gradient(to right, #f3fbff, transparent);
}

.tabs-scroll-indicator.left {
  left: 0;
}

.tabs-scroll-indicator.right {
  right: 0;
  background: linear-gradient(to left, #f3fbff, transparent);
}

.tabs-scroll-indicator span {
  font-size: 24px;
  color: #1B75BA;
}
@media only screen and (max-width: 500px) {
  .tab{width: 160px;     padding: 15px 15px;}
  .text-center{padding-top: 0}
}

/* Innovation Section */

.innovation-section {
  background: #DAEDFC;
  padding: 50px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.header {
  margin-bottom: 30px;
}

.title {
  font-size: 28px;
  font-weight: bold;
}

.highlight {
  color: #007bff;
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 22px;
  text-align: left;
  width: 400px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  border-radius: 5px;
  max-height: max-content;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}

.card-text:last-child {
  margin-bottom: 0;
}

.innovation-sectionText {
  font-size: 45px;
}

.innovation-sectionText h2 {
  font-family: var(--PoppinsMedium);
}
/* Service Banner */
.servicing-banner.home-banner.main-b.endSec .hm_banner {
  height: 35vw !important;
  min-height: 40vh !important;
}

.background-Image {
  background-position: top;
}

.site_contain.container {
  position: relative;
  z-index: 3;
}

.site_contain.container {
  margin-bottom: 40px;
  margin-top: 30px;
  max-width: 85%;
}

.servicing-banner.home-banner.main-b.endSec .banner_headlines {
  top: 15vh;
  text-align: center;
}
.servicing-banner.home-banner .banner_headlines {
  color: #000 !important;
  text-align: left;
  top: 6vh;

}

.servicing-banner.home-banner.main-b.endSec .banner_headlines h1 {
  color: #fff;
  font-family: var(--PoppinsMedium);
  font-size: 40px;
  letter-spacing: normal;
}
.servicing-banner.home-banner .banner_headlines h1 {
  background: transparent;
  color: var(--black);
  font-family: var(--PoppinsMedium);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -2.2px;
  line-height: 1.2em;
  padding-bottom: 15px;
  text-transform: none;
}

span.highlight-green {
  background: linear-gradient(267deg, #30d4a0 3.45%, #30d4c7 97.56%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
}

.servicing-banner.home-banner.main-b.endSec .banner_headlines h5 {
  color: #fff;
}

.servicing-banner.home-banner .banner_headlines h5 {
  color: var(--white);
  font-family: var(--PoppinsLight);
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.4em;
  margin-top: 20px;
}

.home-banner .banner_headlines h5 {
  width: 100%;
}

.home-banner.main-b .btn_custom.btn_about {
  border-radius: 50px;
  box-shadow: none;
  color: #fff;
  padding: 14px 28px;
}

.home-banner.main-b .btn_custom {
  align-items: center;
  background: transparent;
  background: linear-gradient(90deg, #1063a3, #0090ff), transparent;
  border: none;
  border-radius: 5px;
  color: var(--whiteBoth);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--PoppinsRegular);
  font-size: 1em;
  gap: 15px;
  justify-content: center;
  padding: 14px 28px;
  position: relative;
  text-align: center;
  transition: all .2s ease-in-out;
}

.btn_custom:hover  {
  background: var(--btn_shadow_hov) !important;
}

.home-banner.main-b .btn_custom.btn_about:before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 35px;
  position: absolute;
  right: 13px;
  width: 35px;
}

.home-banner.main-b .btn_custom.btn_about:after {
  background-image: url('../assets//images/download.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 12px;
  margin-left: 0;
  position: relative;
  transform: translateX(5px);
  transition: transform .2s ease-in-out;
  width: 12px;
  z-index: 99;
}
/* Footer Styles */
.footer {
  background-color: var(--footerBg);
  color: white;
  font-family: Arial, sans-serif;
}

.footer-inner {
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-rightcontent {
  margin-bottom: 20px;
}

.footer-rightcontent h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #f1f1f1;
}

.footer-rightcontent ul {
  list-style: none;
  padding: 0;
}

.footer-rightcontent ul li {
  margin-bottom: 5px;
}

.footer-rightcontent ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-rightcontent ul li a:hover {
  color: #fff;
}

.footer-inner-end {
  background-color: #111;
  padding: 10px 0;
  text-align: center;
}

.footer-end-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-end-content p {
  margin: 0;
  color: #bbb;
}

.footerBottomMenu ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
}

.footerBottomMenu ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footerBottomMenu ul li a:hover {
  color: #fff;
}

.footer-heading {
  font-size: 16px;
  margin-bottom: 10px;
}

.socialLinkItem {
  display: inline-block;
  margin-right: 10px;
}

.socialLinkItem svg {
  fill: white;
  transition: fill 0.3s ease;
}

.socialLinkItem:hover svg {
  fill: #007bff;
}

.mgnlft {
  margin-left: 5vw;
}

.about-us {
  margin-top: 15px;
}
/* footer style */

.hmPartners .autoContent {
  max-width: 1300px;
  margin: auto;
}

.footer-bg {
  display: block;
  width: 100%;
  height: 270px;
  overflow: hidden;
  background: url(../assets/images/footer_bg.png) no-repeat bottom center;
  background-size: auto 100%;
  background-color: var(--color_primary);
}
.logo_footer {
  margin-bottom: 20px;
}
.footer-inner {
  padding-top: 45px;
  background: var(--footerBg);
  color: #fff;
  font-family: var(--PoppinsLight);
}
footer.footer::before {
  position: absolute;
  content: "";
  width: 100%;
  border: 1px solid var(--footer-border_grey);
}

.hfooter-content {
  border-radius: 20px;
  /* border: 1px solid var(--border_color); */
  /* background: var(--color_primary50); */
  backdrop-filter: blur(32.5px);
  position: relative;
  z-index: 3;
}
.hfooter-content li path {
  fill: var(--black);
}
.hfooter-content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.hfooter-content ul li {
  padding: 10px;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(32.5px);
  backdrop-filter: blur(32.5px);
  position: relative;
  z-index: 3;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 200px;
  padding: 2%;
  display: flex;
  justify-content: center;
}

.hfooter-content ul li span {
  display: block;
}

.hfooter-content ul li strong {
  font-size: 1.25em;
  line-height: 1.2em;
  font-family: var(--PoppinsSemiBold);
  color: var(--white);
  font-weight: normal !important;
}

.hfooter-content ul li span svg {
  display: block;
  max-width: 190px;
  max-height: 90px;
}

.footer-content {
  position: relative;
}
.footer-content.hmPartners {
  padding: 60px 0;
}
.footer-inner-left img {
  width: 50px;
}
.inner-left-img ul li {
  padding: 10px 0px;
}

.inner-right-content ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.inner-right-content ul li ul {
  flex-direction: row;
}

.footer-inner-right {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-inner-right .footer-rightcontent {
  width: 25%;
  margin-bottom: 45px;
}

.footer-contact img {
  width: 25px;
}

.footer-inner-left ul li h5 {
  color: var(--white);
  font-size: 1em;
  font-family: var(--PoppinsBold);
  line-height: 1.4em;
}

.footer-inner-left ul li p span {
  font-size: 1em;
  font-family: var(--PoppinsSemiBold);
  line-height: 30px;
}

.footer-inner-left ul li p a {
  color: var(--light_grey2);
}

.footer-inner-left ul li p {
  color: var(--light_grey2);
  font-size: 0.875em;
  line-height: 1.4em;
}

.footer-contact li {
  padding: 5px;
}

.socialLinkItem {
  display: block;
}

.socialLinkItem svg {
  display: block;
}

.footer-inner h4 {
  color: #b3bdc4;
  font-family: var(--PoppinsSemiBold);
  font-size: 1em;
  line-height: 1.4em;
  padding-bottom: 10px;
}

.footer-inner-right ul {
  padding: 0;
}

.footer-inner-right ul li a {
  color: var(--whiteBoth);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.2em;
  padding: 8px 0px;
  text-decoration: none;
}

.col-12.footer-inner-end {
  background: #021c2e;
  font-family: var(--PoppinsLight);
}

.footer-rightcontent ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-rightcontent ul li.about-us {
  display: block;
  margin-top: 15px;
}
.footer-end-content {
  display: flex;
  /* justify-content: space-between; */
  padding: 15px 0px;
}

.footer-end-content ul li a,
.footer-end-content p {
  display: block;
  color: var(--light_grey2);
  line-height: 1.5em;
  padding: 0px 7px;
}
.footerBottomMenu {
  margin-left: 10%;
}

.footerBottomMenu ul li {
  position: relative;
  padding-left: 3px;
  margin-left: 3px;
}

.footerBottomMenu ul li:before {
  content: "";
  width: 1.5px;
  height: 14px;
  background-color: var(--light_grey2);
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -7px;
}

.footerBottomMenu ul li:first-child::before {
  display: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 430px) {
  .servicing-banner.home-banner.main-b .banner_headlines h1 {
      display: block !important;
      font-size: 25px !important;
  }
}
@media only screen and (max-width: 460px) {
  .servicing-banner.home-banner.main-b .banner_headlines h1 {
      display: block !important;
      font-size: 25px !important;
  }
}

.overlay {
  background-color: #083553;
  height: 100%;
  left: 0;
  opacity: .6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.servicing-banner.home-banner .overlay {
  display: none;
}
/** ARTICLE SECTION **/
.main-container.retailArticle{
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 60px 0;
  width: 100%;
}
.main-container.retailArticle .headlines {
  padding-bottom: 20px;
  width: 100%;
}
.main-container.retailArticle h2.text-center {
  padding-bottom: 100px;
}
.main-container.retailArticle .article {
  margin: 30px;
  width: 360px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px #0000001a;
  flex-direction: column;
}
.main-container.retailArticle .article, .main-container.retailArticle .image-container {
  display: flex;
  overflow: visible;
  position: relative;
}
.main-container.retailArticle .image-container{
  justify-content: center;
  width: 100%;
}
.main-container.retailArticle .article .article-image {
  top: -100px;
  border-radius: 10px;
  height: 240px;
  object-fit: cover;
  position: relative;
  width: 90%;
}
.main-container.retailArticle .article .content {
  margin-top: -65px;
  padding: 0 0 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  text-align: left;
}
.main-container.retailArticle .article .content h3 {
  margin: 10px 20px;
  font-size: 18px;
  font-family: var(--PoppinsSemiBold);
}
.main-container.retailArticle .article .container-bottom {
  margin-top: 0;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  text-align: center;
}
.main-container.retailArticle .article .btn_custom.btn_about {
  font-family: var(--PoppinsLight);
  background-color: transparent;
  border-radius: 5px;
  border-width: 0;
  color: #000;
  display: inline-flex;
  padding: 10px 20px;
  text-decoration: none;
  transition: color .3s;
}
.testimonial-section{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 0px 0;
}
.client_container{
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
}
.text-content{
  flex: 1;
  position: relative;
}
.client_container .text-content .headlines h2{
  font-family: var(--PoppinsLight);
  font-size: 40px;
}
.testimonial-content{
  flex: 1.5;
  padding: 20px;
}
.quote-icon img {
  width: 65%;
  display: block;
}
.profile-img{
  width: 70px;
}
.designation{
  font-size: 14px;
  padding-top: 20px;
  color: #4C4C4C;
}
.client-name {
  font-weight: 700;
  font-size: 18px;
  font-family: var(--PoppinsRegular);
  margin-right: 2px;
  color: #000;
}
.testimonial-text{
  font-size: 16px;
  margin: 15px 0;
  color: #313131;
  line-height: 30px;
  font-family: var(--PoppinsRegular);
}
.company{
  font-weight: bold;
}
.servicing-banner.home-banner.video-banner.main-b.video-banner .overlay {
  display: block;
}
.servicing-banner.home-banner.video-banner.main-b.video-banner .banner_headlines {
  top: 20vh;
}
.top-button-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25vh;
  cursor: pointer;
  padding: 0;
}
.banner_inner_retail {
  width: 100%;
  z-index: 10000;
}
.statHome .stats-section{
  padding: 40px 0;
  background: linear-gradient(267deg, #30D4A0 3.45%, #30D4C7 97.56%);
  border-radius: 31px;
  padding: 40px 0;
  background: linear-gradient(267deg, #30D4A0 3.45%, #30D4C7 97.56%);
  border-radius: 31px;
  margin: 0 75px;
  margin-top: -110px;
  position: relative;
  z-index: 99;
}
.statHome .stats-section h2{
  font-size: 40px;
  margin-bottom: 10px;
  padding-top: 0;
}
.statHome .stats-section .stats{
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: center;
}
.statHome .stats-section .stat {
  flex: 1;
  padding: 20px;
  border-right: 1px solid rgb(0 0 0 / 50%);
}
.statHome .stats-section .stat:last-child {
  border-right: none;
}
.statHome .stats-section .stat p {
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  word-break: break-word;
}
.accordion-section {
  margin-top: -80px;
}
.accordion-section .description {
  max-width: 100%;
  display: block;
}
.accordion-item .leftSection .why-netsol .headlines{padding-bottom: 0;}
.accordion-section .description .headlines h2 {
  font-family: var(--PoppinsLight);
  margin-bottom: 20px;
  font-size: 45px !important;
  text-align: left;
}
.accordion-section .description .headlines .content-header h2{
  margin-bottom: 0;
  font-family: var(--PoppinsSemiBold) !important;
  font-size: 25px !important;
  
}
.accordion-item {
  border: none !important;
}
.accordion-item {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  text-align: left;
}
.accordion-item .leftSection, .accordion-item .rightSection {
  width: 100%;
  flex: 1;
}
.desktop-only{
  display: block;
  margin-bottom: 15px;
}
.separator{
  border-bottom: 1px solid;
  margin-top: 10px;
  width: 100%;
  border-color: rgba(0, 0, 0, 0.20);
}
.margin-10{
  margin-top: -5px !important;
}
.why-netsol.accordion_data .description {
  display: block;
  max-width: 600px;
  flex: 1;
  flex-direction: column;
  align-items: baseline;
  text-align: left;
}
.why-netsol.accordion_data .headlines {
  padding-bottom: 0;
  text-transform: none;
}
.accordion-item .rightSection{
  text-align: end;
}
.lottie-animation {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0%;
}
.product_list{width: 100%;}
.slider_container {
  margin-left: 125px;
}
.product_sec {
  width: 100%;
  position: relative;
}
.product_data {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0px;
  position: relative;
  z-index: 4;
  background: linear-gradient(0deg, #F4F4F4 0%, #F4F4F4 100%), #E9E9E9;
  border-radius: 30px;
  min-height: 75vh;
}
.product_data_left {
  width: 56%;
}
.product_text {
  width: 44%;
  padding-left: 30px;
}
.product_text h3 {
  color: #1A75BB;
  font-size: 50px;
  padding-bottom: 15px;
  font-family: var(--PoppinsSemiBold);
}
.top-button-slot .btn_custom2{background: transparent; border: none; }
.product_text p {
  color: #000;
  font-size: 22px;
  line-height: 1.5em;
  padding-bottom: 15px;
}
.slider_img{
  width: 100%;
  position: relative;
  background-size: 100% 100%;
  z-index: 5;
  margin-bottom: -30%;
}
.bg_shadow {
  z-index: -555555;
  background: url(../assets/images/radialShadow.svg);
  width: 160%;
  height: 120%;
  display: block;
  background-size: 100% 100%;
  position: absolute;
  left: -200px;
  top: -60px;
}
.product_img_box {
  width: 100%;
  height: auto;
  display: block;
}
.slider_img img{
  width: 100%;
  height: auto;
  display: block;
}
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 30px !important;
    z-index: 10;
    border: 1px solid #9A9EB2 !important;
    display: block !important;
    width: 50px !important;
    border-radius: 100px !important;
    height: 50px !important;
    margin: 0px !important;
    bottom: 5px !important;
    cursor: pointer;
}
.swiper.retail-slider .swiper-pagination {
    /* left: 20% !important; */
    bottom: -15px !important;
}
.swiper-button-prev {
    right: 200px !important;
    background: url(../assets/images/preArr.svg) no-repeat center center;
}
.swiper-button-next {
    right: 135px !important;
    background: url(../assets/images/nextArr.svg) no-repeat center center;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    display: none;
}
.swiper-button-prev {
    left: auto !important;
}
.swiper-pagination {
  position: relative !important;
  display: inline-flex !important;
  transition: all 0.3s ease-in-out;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  bottom: -30px !important;
  z-index: 99999 !important;
  transform: scale(0);
  text-align: center;
  bottom: -20px !important;
}
.swiper.retail-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 10px;
}
.swiper.retail-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  transition: all 0.3s ease-in-out;
  height: 10px;
  background-color: #1A75BB;
  border-radius: 10px;
}
/*tabs*/
.image-toggle-section .accordion-item {
  margin-bottom: 20px;
  background: transparent;
}
.image-toggle-section .accordion-title {
  font-size: 20px;
  font-family: var(--PoppinsSemiBold);
  color: #000;
}
.image-toggle-section .accordion-description {
  font-size: 16px;
  font-family: var(--PoppinsRegular);
  color: #000;
}
.lottie-animation svg {
  margin-left: 5%;
}
.separator.mobile-only{
  display: none;
}
.image-toggle-section {
  padding: 30px 0;
}
.custom-cursor{
  cursor: pointer;
}
.innovation-section .headlines h2 {
  font-size: 45px !important;
  padding-top: 0;
  font-family: var(--PoppinsLight);
}
@media (max-width: 767.98px){
  .servicing-banner .banner_headlines {
    font-size: .8rem;
    max-width: 100%;
    padding: 0 1%;
}
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 70%;
    height: 70vh;
    background-color: #fff;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    color: black;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.8);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: red;
    background: rgba(255, 255, 255, 1);
}
.description.slider {
  display: block;
  max-width: 100%;
}
.description.slider .headlines h2 {
  font-family: var(--PoppinsLight);
  font-size: 45px !important;
}
.swiper.swiper-initialized.swiper-horizontal.swiper-autoheight.retail-slider.swiper-backface-hidden {
  padding-bottom: 50px;
}
a.btn_custom.btn_about.new-btn {
  align-items: center;
  background: transparent;
  background: linear-gradient(90deg, #1063a3, #0090ff), transparent;
  border: none;
  border-radius: 5px;
  color: var(--whiteBoth);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--PoppinsRegular);
  font-size: 1em;
  gap: 15px;
  justify-content: center;
  padding: 14px 28px;
  position: relative;
  text-align: center;
  transition: all .2s ease-in-out;
  border-radius: 50px;
  box-shadow: none;
  color: #fff;
  padding: 14px 28px;
}
a.btn_custom.btn_about.new-btn:before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 35px;
  position: absolute;
  right: 13px;
  width: 35px;
}
a.btn_custom.btn_about.new-btn:after {
  background-image: url(../assets//images/download.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 12px;
  margin-left: 0;
  position: relative;
  transform: translateX(5px);
  transition: transform .2s ease-in-out;
  width: 12px;
  z-index: 99;
}

fieldset.form-columns-2 {max-width: 100% !important; margin-bottom: 15px !important;}
fieldset.form-columns-3 {max-width: 100% !important; width: 100%;margin-bottom: 15px !important;}
.hs-input{
    background-clip: padding-box;
    background-color: #fff;
    border: #dee2e6 solid 1px;
    border-radius: 0.375rem;
    color: #000 !important;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    height: 40px;
    line-height: 1.5;
    padding: .375rem .75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100% !important;
}
.hs-country__dropdown_ .input,
.hs_firstname .input,
.hs_lastname .input,
.hs_email .input,
.hs_company .input,
.hs_message .input,
.hs_how_did_you_hear_about_us_ .input,
.hs_address .input
{
    margin-top: 6px !important;
}
.hs_email, .hs_company{width: 50% !important;}
label.hs-error-msg.hs-main-font-element {
    color: red;
    padding-top: 8px;
    font-size: 12px !important;
}
.hs-input:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.hs-button {
    height: 50px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #30D4C7;
    color: #000;
    margin-top: 15px;
    border: none;
    width: 100%;
    font-weight: 900;
}
.hs-button:hover {
    background: var(--btn_shadow_hov) !important;
    border: 1px solid var(--btn_shadow_hov);
    color: #000;
}

input[type=checkbox].hs-input{
    width: 16px !important;
    float: left;
}
input[type=checkbox].hs-input:focus{
    box-shadow: none;
    border: none;
    width: 20px !important;
}
label {
    display: inline-block;
    /* padding-bottom: 12px;
    padding-top: 12px; */
    color: #000000;
    font-size: 14px;
}
label.hs-form-checkbox-display {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
}
li.hs-form-checkbox {
    float: left;
    width: 200px;
    height: 40px;
}
.hs-form-checkbox span {
    margin-left: 8px;
    margin-top: 8px;
    float: left;
    font-size: 16px;
}
.legal-consent-container .hs-form-booleancheckbox-display>span {
    display: block;
    margin-left: 20px;
}
.legal-consent-container .hs-form-booleancheckbox-display p {
    margin-left: 10px !important;
}

.legal-consent-container .hs-form-booleancheckbox-display p {
    margin: 0;
    display: inline-block !important;
    color: #000;
    padding-top: 8px;
    font-size: 12px;
}
label.hs-form-booleancheckbox-display {
    padding: 0;
}
.actions {
    display: flex;
    justify-content: center;
}
.hubspotform {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-top: 60px;
  box-shadow: 11px 11px 24px #8080805e;
}
div#statsSection {
  margin-top: 20px;
}
/* .bannerClients.alternate {
  bottom: -10px !important;
} */
.hubspotform.mob-form {
  display: none;
}
.mob-slider{display: none;}
.hs_message .input {
    margin-top: 0px !important;
}
