@import url('jquery-ui.css');

/* poppins-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/poppins-v23-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v23-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v23-latin-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v23-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v23-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/poppins-v23-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/poppins-v23-latin-900.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

:root {
  --gray-color: #c4c8d1;
  --green-color: #1c6e70;
  --red-color: #c8010f;
  --black-color: #131313;
  --white-color: #ffffff;
  --white-transparent: #efefef;
  --green-box-shadow: rgb(28 110 112);
  --red-box-shadow: rgb(229 39 52 / 64%);
  --primary-gradient: linear-gradient(225deg,
      var(--primary-color-light) 0%,
      var(--primary-color) 100%);
  --secondary-gradient: linear-gradient(225deg,
      var(--secondary-color-light) 0%,
      var(--secondary-color) 100%);
  --base-gradient-color: linear-gradient(-90deg,
      var(--primary-color) 10%,
      var(--secondary-color) 120%);
  --primary-gradient-2: linear-gradient(45deg,
      var(--primary-color),
      var(--secondary-color));
  --secondary-gradient-2: linear-gradient(45deg,
      var(--secondary-color),
      var(--primary-color));
  --primary-color: #165aa7;
  --primary-color-light: #e3ecfb;
  --primary-color-dark: #144c90;
  --secondary-color: #33a10d;
  --secondary-color-light: #33a10d;
  --secondary-color-dark: #297c0f;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  min-height: 100%;
  font-size: 1rem;
  font-weight: 400;
}

h1,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h2 {
  font-weight: 500;
  font-size: 36px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  line-height: 1.2em;
}

.text-center {
  text-align: center;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

.power-bs-marg .tab-pane h2,
h5 {
  font-size: 26px;
}

h6 {
  font-size: 20px;
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

a {
  text-decoration: none;
  line-height: 1.5;
  font-size: 16px;
}



.green-color {
  color: var(--primary-color);
}

.red-color {
  color: var(--red-color);
}

.text-white {
  color: var(--white-color);
}

.bg-red {
  background-color: var(--red-color) !important;
}

.red-shadow {
  box-shadow: 0 7px 16px var(--red-box-shadow) !important;
}

.green-bg-hover:hover {
  background-color: var(--primary-color) !important;
  box-shadow: var(--green-box-shadow) 0 2px 8px !important;
}

.d-block {
  display: block;
}

.inline-block,
.letter,
.read-more {
  display: inline-block;
}

.nav,
.row {
  display: flex;
}

li,
p {
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  font-size: 44px;
}

h1 span {
  display: block;
  color: var(--primary-color);
}

.container-own {
  width: 83.4vw;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
}

.container,
.row>* {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  width: 100%;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row>* {
  flex-shrink: 0;
  max-width: 100%;
  margin-top: var(--bs-gutter-y);
}

.d-content {
  display: contents;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.nav {
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.header .logo-img img {
  height: 60px;
}


.trade-menu-content,
header.fixed {
  background-color: var(--white-color);
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-end {
  align-items: flex-end !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4;
  padding: 0 0;
}

header.fixed {
  box-shadow: 0 0 5px rgb(219 209 209 / 50%);
}

.header {
  padding: 5px 0;
  /*box-shadow: inset 0 -1px 0 #e8e8e8;
  background: #fff;*/
}

.position-relative {
  position: relative;
}

.hemburger-inner {
  width: 25px;
  cursor: pointer;
  height: 25px;
  display: none;
}

.stock-navbar ul>li>a {
  color: var(--black-color);
  font-weight: 500;
  display: block;
  position: relative;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s linear;
}

.stock-navbar ul>li>a:hover {
  color: var(--primary-color);
}

.stock-navbar ul > li > a.active {
  color: var(--secondary-color) !important;
  border-bottom: 2px solid var(--secondary-color) !important;
  border-radius: 0 !important;
}


.stock-navbar ul>li>a>i {
  position: relative;
  top: -1px;
}

.trade-menu-wrappar>ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trade-icon-img {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
}

.trade-menu-col-heading,
.trade-menu-img>p {
  border-bottom: 1px solid #eeeff2;
  margin-left: 8px;
}

.trade-menu-wrappar>ul:not(:last-child) {
  margin-bottom: 35px;
}

.trade-menu .trade-menu-wrappar .trade-items-col {
  display: flex;
  width: 100%;
  column-gap: 11px;
}

.trade-icon .trade-icon-img img {
  width: 35px;
}

.trade-menu-wrappar>ul>li .trade-items {
  padding: 0 30px 0 0;
}

.partner-wrapper .col-5 .partner-col {
  height: 100%;
  padding: 25px;
  border-radius: 8px;
}

.trade-menu-img p {
  font-size: 16px;
}

.trade-menu-img>p {
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 20px;
  margin-top: 0;
}

.stock-navbar .desk-view:hover .trade-menu,
.trade-menu.active {
  display: block;
}

.trade-menu-content {
  display: flex;
  padding: 35px 15px 95px;
  border-radius: 10px 0 0 10px;
}

.trade-menu-wrappar {
  display: flex;
  align-items: center;
}

.trade-menu-img {
  padding: 35px 20px;
  height: 100%;
  position: relative;
}

.margbooks-img>a .dropdown-img {
  width: 350px;
}

.trade-menu-img .play-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 65px;
  box-shadow: none;
}

.trade-menu-img img {
  box-shadow: 0 4px 20px rgba(4, 42, 93, 0.15);
  background-image: linear-gradient(325deg,
      rgba(104, 211, 163, 0.02) 1.7%,
      rgba(9, 107, 239, 0.07) 98%);
  border-radius: 10px;
  margin: 0;
}

.trade-menu-content-col>ul>li:not(:last-child) {
  margin-bottom: 25px;
}

.trade-menu .trade-content p {
  font-weight: 400;
  height: 22px;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #021631;
  margin: 0;
}

.trade-menu-col-heading {
  display: block;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.trade-content>span {
  font-weight: 600;
  font-family: Poppins;
  color: #021631;
  font-size: 15px;
}

.trade-menu .margbooks-img {
  position: relative;
}

.trade-menu-content-col ul>li>a {
  padding: 8px;
  display: block;
  border-radius: 8px;
}

.trade-menu .stock-overview-contet {
  margin-top: 24px;
}

.stock-animate {
  visibility: hidden;
}

.banner-section {
  padding: 120px 0 60px;
  background-image: linear-gradient(to top,
      rgb(28 110 112 / 17%),
      rgb(28 110 112 / 17%));
}

.banner-container {
  margin-left: auto;
  margin-right: auto;
  min-height: 560px;
  z-index: 1;
  display: flex;
  padding: 0 15px;
  align-items: center;
  justify-content: space-between;
}

.stock-heading1 {
  transition: opacity 0.2s;
  display: block;
}

.stock-animate-text,
.tricksword {
  white-space: nowrap;
}

.stock-animate.active,
.otp-popup.open,
.pop-up-back-bg.show,
.subscribe.show {
  visibility: visible;
}

.stock-btn,
.new-btn {
  transition: 0.4s;
  font-size: 18px;
  color: var(--white-color);
}

.banner-btn {
  margin: 30px 0 0 0;
}

.stock-animate-wrapper {
  position: relative;
}

.stock-animate-text {
  position: absolute;
  top: -65px;
}

.stock-btn {
  background: var(--red-color);
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 15px;
  display: inline-block;
  position: relative;
  box-shadow: var(--red-box-shadow) 0 2px 8px;
  width: auto;
  border: 0;
  outline: 0;
}

#get-call-form,
#get-call-form-mobile {
  max-width: 420px;
  margin-top: 35px;
  position: relative;
}

.all-dem .own-col-inner .stock-btn {
  font-size: 15px;
}

.stock-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 7px 16px var(--green-box-shadow);
}

#get-call-form .form-field>input,
#get-call-form-mobile .form-field>input {
  border: none;
  flex: 1 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 13px;
  margin-right: 8px;
  min-width: 0;
  padding: 12px;
  width: 100%;
  outline: 0;
  box-shadow: none;
}

.login #get-call-form .form-field,
.login #get-call-form-mobile .form-field {
  align-items: center;
  background: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 15px 33px rgba(45, 55, 72, 0.14),
    0 4px 8px rgba(113, 125, 150, 0.1),
    0 0.997515px 3px rgba(113, 125, 150, 0.21),
    inset 0 2px 2px rgba(255, 255, 255, 0.25);
  display: flex;
  margin-bottom: 40px;
  padding: 8px;
  position: relative;
}

.login #get-call-form img,
.login #get-call-form-mobile img {
  bottom: 0;
  position: absolute;
  transform: translateY(100%);
  width: 100%;
  z-index: -1;
}

.login #get-call-form button,
.login #get-call-form-mobile button {
  cursor: pointer;
  font-size: 14px;
  height: 36px;
  line-height: 13px;
  padding: 0 20px;
  white-space: nowrap;
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 0;
  background: #cc0000;
}

.starting-price {
  font-size: 18px;
  margin-top: 30px;
}

.starting-price span {
  border-bottom: 2px solid #00696c;
  color: #00696c;
}

.stock-heading1>span .letter {
  background: var(--primary-color);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-section {
  padding: 20px 0 100px;
  background: #03393a;
}

.partner-section-heading {
  padding: 40px 0;
  border-bottom: 1px solid #014f51;
}

.partner-listing-mobile-screen {
  display: none;
}

.partner-listing-laptop-screen .logo-section:nth-child(2) {
  padding-top: 40px;
}

.partner-section-heading h2 {
  color: #fff;
  font-size: 40px;
  margin: auto;
  line-height: 40px;
  text-align: center;
}

.partner-section-heading h2 span {
  color: #f5ba31;
  font-size: 40px;
}

.logo-section {
  justify-content: space-between;
  padding: 60px 100px 0;
  gap: 15px;
}

.logo-item img {
  border-radius: 5px;
  max-width: 100%;
}

.app-rating-section {
  border-top: 1px solid #014f51;
  position: relative;
  margin-top: 100px;
}

.morefeaureslink {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 30px 0;
  text-align: center;
}

.morefeaureslink a {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ffc700;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}

.spotlight-item p span {
  display: none;
}

.spotlight-item p a {
  font-size: 13px;
  color: #cc0000;
  cursor: pointer;
}

.app-rating-container {
  justify-content: center;
  position: absolute;
  bottom: -34px;
  width: 100%;
}

.ratings-sprite {
  background: url(assets/images/trustedpartner-onrate.png);
  background-size: 1220px 71px;
  height: 70px;
  width: 155px;
}

.rating-getapp {
  margin: 0 10px;
  background-position: -1px 0;
}

.rating-capterra {
  margin: 0 10px;
  background-position: -182px 0;
}

.rating-appstore {
  margin: 0 10px;
  background-position: -724px 0;
}

.rating-g2crowd {
  margin: 0 10px;
  background-position: -362px 0;
}

.rating-playstore {
  margin: 0 10px;
  background-position: -543px 0;
}

.rating-google {
  margin: 0 10px;
  background-position: -893px 0;
}

.rating-softwareSuggest {
  margin: 0 10px;
  background-position: -1065px 0;
}

.spotlight-section {
  padding-top: 120px;
}

.mobile-screen,
.partner-listing-mobile-screen {
  display: none !important;
}

.heading {
  width: 100%;
  height: auto;
  text-align: center;
  margin-bottom: 20px;
}

.heading h3 {
  color: #e12933;
  font-size: 18px;
  font-weight: 400;
}

.heading h2 {
  color: #25373f;
}

.heading h2 span {
  color: var(--primary-color);
  font-weight: 700;
}

.trusted-points {
  padding: 60px 0 40px;
}

.trusted-points ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}

.trusted-points ul li {
  padding: 20px 10px;
  max-width: 20%;
  flex: 0 0 20%;
  text-align: center;
}

.trusted-points ul li .trust-box {
  gap: 15px;
  border-radius: 5px;
  align-items: center;
}

.trusted-points ul li .icon {
  display: inline-block;
  margin-bottom: 0;
}

.trusted-points ul li:first-of-type {
  border-left: none;
}

.trusted-points ul li h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 15px 0;
}

.trusted-points ul li h3 .counter sup {
  top: -0.8em;
}

.trusted-points ul li p {
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 500;
  opacity: 0.7;
  font-size: 15px;
}

.sub-title {
  font-size: 18px;
}

.content-box {
  padding: 30px 0 0 0;
  text-align: center;
}

.video-demo-started {
  padding: 0;
  background: var(--white-color);
}

.video-demo-started video {
  height: 100%;
  max-width: 100%;
  width: auto;
}

.video-autoplay {
  width: 100%;
  height: 100%;
  padding: 60px 0 0;
}

.video-autoplay video {
  object-fit: cover;
  width: 100%;
}

#player-container {
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
  border: 4px solid #dadada;
  border-radius: 30px;
  padding: 30px;
  overflow: hidden;
}

#player-container iframe {
  width: 100%;
  height: 496px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white-color);
}

.industry-work {
  padding: 80px 0 0;
  height: 740px;
  overflow: hidden;
}

.industry-work .heading {
  margin-bottom: 70px;
}

#tabs-nav {
  height: 500px;
  overflow-y: auto;
  padding-right: 15px;
  scrollbar-color: var(--secondary-color-light) #e4e4e4;
  scrollbar-width: thin;
  direction: ltr;
}

#tabs-nav::-webkit-scrollbar {
  width: 10px;
}

#tabs-nav::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

#tabs-nav::-webkit-scrollbar-thumb {
  border-radius: 100px;
  border: 6px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
  background-color: #8070d4;
}

#tabs-nav li {
  margin-bottom: 15px;
  background: #dfdfdf;
  background: linear-gradient(359deg, #dfdfdf8f, #f5ffffe8);
  border: none;
  font-size: 18px;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border-radius: 14px;
  color: var(--black-color-1);
  box-shadow: 0 1px 6px #00000036;
}

#tabs-nav li.active {
  background: var(--primary-color);
  background: linear-gradient(180deg, var(--primary-color), #019ea3);
  border-color: transparent;
  color: var(--white-color);
}

#tabs-nav li:hover {
  background: var(--secondary-color);
  background: linear-gradient(0deg, var(--secondary-color), #c10000);
  color: var(--white-color);
}

#tabs-nav li a {
  display: block;
  font-weight: 600;
  cursor: pointer;
}

#tabs-nav li a i {
  margin-right: 8px;
}

#tabs-nav li a {
  color: var(--black-bg);
}

#tabs-nav li:hover a,
#tabs-nav li.active a {
  color: var(--white-color);
}

.sm-tab-heading {
  display: none;
}

.mb-tabs-data {
  background: var(--white-color);
  padding: 50px;
  border-radius: 20px;
  margin-left: 40px;
  box-shadow: 0 4px 18px #00696c36;
  min-height: 510px;
}

.mb-tabs-data h3 {
  background: var(--base-gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
}

.mb-tabs-data h3 i {
  background: var(--base-gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 42px;
}

.work-title-block {
  font-size: 18px;
  line-height: 30px;
}

.mbsuccesswrap {
  background-color: var(--primary-color);
  padding: 40px 0 80px;
}

.mbsuccess-text-wrap {
  color: var(--white-color);
  position: relative;
}

.mbsuccess-text-wrap h2 {
  color: var(--white-color);
  line-height: normal;
}

.mbsuccess-text-wrap .years-exp {
  position: relative;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  background: linear-gradient(0deg, #efbe4e 0%, #a86a2f 50%, #fbea93 100%);
  border-radius: 50%;
  padding: 8px 9px 0;
  text-align: center;
  border: 2px solidvar(--white-color) fff91;
  box-shadow: 0 -4px 1px 5px #0000002e;
  transform: scale(0.7);
}

.mbsuccess-text-wrap .years-exp::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 122px;
  height: 122px;
  border: 4px dotted #2c3345;
  border-radius: 50%;
}

.mbsuccess-text-wrap .yrs {
  display: block;
  font-size: 50px;
  font-weight: 700;
  background: linear-gradient(90deg, #242730, #2e374c);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #efbe4e;
  position: relative;
  font-family: "Times New Roman", Times, serif;
}

.mbsuccess-text-wrap .yrs::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: linear-gradient(90deg, #efbe4e 0%, #a86a2f 50%, #fbea93 100%);
  left: 8px;
  top: 8px;
  border-radius: 50%;
}

.mbsuccess-text-wrap .yrs span {
  display: flex;
  position: relative;
  justify-content: center;
  width: 87px;
  height: 87px;
  background: linear-gradient(180deg, #242730, #2e374c);
  border-radius: 50%;
  margin: 10px 0 0 9px;
  text-align: center;
}

.mbsuccess-text-wrap .yrs span strong,
.mbsuccess-text-wrap .yrs span strong sup {
  background: linear-gradient(180deg, #ffdb88 20%, #a86a2f 56%, #fbea93 73%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mbsuccess-text-wrap .yrs span strong sup {
  font-size: 32%;
  top: -26px;
  left: -5px;
}

.mbsuccess-text-wrap .yrs span strong {
  margin-left: 8px;
}

.mbsuccess-text-wrap .yrs-txt {
  position: absolute;
  width: 156px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  background: radial-gradient(circle, #efbe4e 0%, #a86a2f 50%, #fbea93 100%);
  border-radius: 12px 0;
  font-size: 16px;
  padding: 0;
  border: 2px solid #fbea93;
  color: #242730;
  font-weight: 700;
  font-family: "Times New Roman", Times, serif;
}

.sw-work-preview img {
  max-width: 100%;
}

.work-title-block ul {
  padding: 5px 0 0 15px;
  list-style-type: disc;
}

.work-title-block ul li {
  font-size: 15px;
  color: #555;
  line-height: 18px;
  margin-top: 8px;
}

.power-bs-marg {
  padding: 60px 0 80px;
}

.power-bs-marg .heading>* {
  margin-bottom: 40px;
}

.img_icon1 img {
  width: 30px;
  height: 30px;
  position: relative;
  left: 13px;
  margin-bottom: 10px;
}

.power-bs-marg .tab-pane-col>img {
  max-width: 590px;
  margin-left: auto;
  display: block;
  width: 100%;
  border-radius: 8px;
}

.tab-pane-col {
  padding: 0 20px;
}

.tab-pane-col h3 {
  font-size: 26px;
}

.power-bs-marg .nav-tabs li h4 {
  font-weight: 700;
  font-size: 19px;
}

.bg-soft-primary .cust_line p,
.power-bs-marg .nav-tabs li p {
  font-size: 16px;
}

.bg-soft-primary .cust_line p a,
.power-bs-marg .nav-tabs li p a {
  color: var(--secondary-color);
}

.tab-pane .icon-list>li i {
  background-color: #08376524;
}

.icon-list.bullet-bg li {
  padding-left: 28px;
  font-weight: 400;
  color: #000;
  position: relative;
}

.icon-list.bullet-bg i {
  border-radius: 100%;
  width: 20px;
  height: 20px;
  top: 0.2rem;
  font-size: 0.6rem;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  display: table;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-list:not(.row) li+li {
  margin-top: 11px;
}

.power-bs-marg .bullet-bg {
  padding-top: 15px;
}

.horizontal {
  display: flex;
  align-items: center;
  margin-bottom: 65px;
  justify-content: center;
  text-align: center;
}

.horizontal>li {
  border-bottom: 2px solid #c4c8d1;
  border-radius: 0;
  min-width: clamp(70px, 40%, 140px);
}

.horizontal>li>a span {
  display: block;
  text-align: center;
  margin-bottom: 14px !important;
}

.horizontal>li.active {
  border-color: var(--green-color);
}

.horizontal>li>a .power-tab-heading {
  color: var(--green-color);
  font-weight: 500;
}

.horizontal>li>a p {
  font-weight: 400;
  color: #021631;
}

.fa-check,
.feature-text-color::after,
.new-btn {
  background: var(--green-color);
  color: var(--white-color);
}

.quick-acess-heading h2 {
  font-size: 32px;
  position: relative;
  border-radius: 15px;
  text-align: center;
  padding: 3px 0 10px;
  background: url(assets/images/banner/bg-rgh-sm.png), var(--green-color);
  color: var(--white-color);
  margin-bottom: 30px;
}

.easy-operate-back {
  background: url(assets/images/banner/bg-rgh-sm.png) repeat, var(--green-color);
  background-position: right;
  padding: 30px;
  border-radius: 15px;
}

.quick-flex {
  display: flex;
  height: 100%;
}

.quick-col:first-child {
  width: 40%;
  padding-right: 30px;
}

.quick-col:nth-child(2) {
  width: 60%;
}

.run_b-img {
  height: 100%;
  display: flex;
  align-items: center;
}

.run_b-img>img {
  border-radius: 15px !important;
  width: 100%;
}

.manage-content-col {
  max-width: 468px;
  margin: 0 auto;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 30px #ccc6;
  height: 100%;
}

#run_b .manage-content-col {
  background-color: var(--white-color);
}

.manage-content-col h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.quick-col-mar {
  margin-bottom: 30px;
}

.bg-soft-primary {
  padding: 80px 0;
}

.bg-soft-primary .stock-works-section {
  margin-top: 85px;
}

.bg-soft-primary .cust_line {
  margin: 0 auto;
  max-width: 250px;
}

.bg-soft-primary .margin-line-1 {
  margin-bottom: 200px;
}

.bg-soft-primary .margin-line-2 {
  margin-bottom: 100px;
}

.bg-soft-primary .arrow-line-one {
  margin-bottom: 190px;
}

.bg-soft-primary .arrow-line-two {
  margin-bottom: 95px;
}

.bg-soft-primary .cust_line h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px !important;
}

.bg-soft-primary .cust_line>div>.stock-btn {
  margin-right: 25px;
  cursor: pointer;
}

.content-box {
  padding: 30px 0 0 0;
  text-align: center;
}

#call_action {
  padding: 50px 0;
  background-attachment: fixed;
}

.bg-overlay {
  position: relative;
  z-index: 0;
  border: 0;
  border-radius: 10px;
}

.bg-overlay::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 34, 40, 0.5);
}

#call_action h2 {
  font-size: 17px;
  position: relative;
  padding-left: 28px;
}

.text-line::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 5px;
  width: 0.75rem;
  height: 0.05rem;
  background: #3f78e0;
}

.text-line.text-white::before {
  background-color: var(--white-color);
}

.content-area {
  padding-bottom: 70px;
}

.mobile-app-marg {
  padding: 80px 0;
}

.mobile-app-stock-content>span {
  color: var(--white-color);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 20px;
  background-color: var(--green-color);
}

.mobile-app-stock-content h2 {
  margin-bottom: 25px;
}

.mobile-app-stock-image>img {
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  max-width: 666px;
  width: 100%;
}

.mobile-app-stock-content-data {
  color: var(--white-color);
  border-radius: 8px;
  padding: 18px;
  position: absolute;
  bottom: 24px;
  left: -24px;
  margin: 0;
  box-shadow: 0 0 10px #00000051;
  background-color: var(--green-color);
}

.mobile-app-icon-badge,
.mobile-app-icon-swithcher {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.mobile-app-icon-badge {
  background-color: var(--red-color);
  position: absolute;
  top: 36px;
  left: -37px;
}

.mobile-app-icon-swithcher {
  position: absolute;
  bottom: 36px;
  right: -37px;
  background-color: var(--green-color);
}

.secion-influencers {
  padding-top: 70px;
}

.testislide .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 5px;
}

.testislide .owl-nav button {
  width: 50px;
  background: #1c6d70 !important;
  color: var(--white-color) !important;
  border: none;
  height: 40px;
  width: 40px;
  border-radius: 100%;
}

.testislide .owl-nav button:hover {
  background: #e93d17 !important;
}

.testislide .owl-nav button span {
  font-size: 25px;
}

.text-review {
  margin-bottom: 50px;
}

.testivideo {
  width: 100%;
  position: relative;
  margin-top: 40px;
}

.testivideo img {
  border-radius: 10px;
}

.testivideo h3 {
  color: #25373f;
  font-size: 17px;
  font-weight: 600;
}

.testivideo h3 strong {
  display: block;
  font-weight: 400;
  margin-top: 4px;
  font-size: 16px;
}

.testivideo h3 span {
  float: right;
  margin-top: -37px;
}

.testivideotext {
  width: 100%;
  height: auto;
  position: relative;
  background-color: var(--white-color);
  padding: 20px;
  margin-top: 40px;
  border-radius: 10px;
  padding-top: 50px;
  border: 1px solid #dadada;
}

.testivideotextface {
  width: 80px;
  position: absolute;
  top: -36px;
  border: 1px solid #ccc;
  border-radius: 100%;
  padding: 5px;
  background: var(--white-color);
}

.testivideotext p {
  color: #000;
  font-size: 14px;
  line-height: 24px;
  padding-top: 10px;
  height: 230px;
}

.testivideotext h3 {
  border-top: 1px solid #dadada;
  padding: 15px 15px 0;
  font-size: 15px;
  font-weight: 600;
  color: #25373f;
  margin-bottom: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
}

.testivideotext h3 strong {
  display: block;
  font-weight: 400;
  margin-top: 5px;
  display: none;
}

.testivideotext h3 span {
  float: right;
  margin-top: 0;
}

.testislider .owl-carousel h3 span img {
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

#testimonial {
  padding-top: 80px;
}

.testislider .owl-nav,
.features .owl-nav {
  margin: 0px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}

.testislider .owl-nav button,
.features .owl-nav button {
  background-color: #e93d17 !important;
  width: 35px;
  height: 35px;
  font-size: 34px !important;
  color: var(--white-color) !important;
  border-radius: 50px !important;
  padding: 0px !important;
  line-height: 0px !important;
}

.testislider .owl-nav button span,
.features .owl-nav button span {
  line-height: 0px;
  padding: 0px;
  height: 26px;
}

.features .owl-prev,
.testislider .owl-prev {
  float: left;
  margin-left: 0 !important;
}

.features .owl-next,
.testislider .owl-next {
  right: 0;
  float: right;
  margin-right: 0 !important;
}

.stock-better {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  clear: both;
}

.manage-books-con,
.stock-better-wrapper {
  max-width: 75rem;
  margin: 0 auto;
}

.stock-better-content,
.stock-better-content-wrapper {
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.stock-better-content {
  grid-column-gap: 33px;
  grid-row-gap: 16px;
  border: 2px solidvar(--white-color);
  border-radius: 1rem;
  grid-template-columns: 1.25fr 1.25fr;
  padding-left: 6.25rem;
  padding-right: 6.25rem;
  position: relative;
  background-color: var(--green-color);
}

.stock-better-content-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-direction: column;
  grid-template-columns: 1fr;
  justify-content: start;
  align-items: flex-start;
  justify-items: start;
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.stock-better-content-wrapper>h2 {
  font-size: 3rem;
  color: var(--white-color);
}

.stock-better .stock-better-btn {
  display: flex;
  align-items: center;
  column-gap: 13px;
  position: relative;
  z-index: 1;
  background-color: var(--red-color);
  box-shadow: var(--red-box-shadow) 0 2px 8px;
  padding: 12.096px 20.16px;
  font-family: Poppins;
}

.stock-better-img img {
  margin-bottom: 2px;
  position: absolute;
  right: 0;
  max-width: 341px;
  bottom: 0;
}

.stock-better-overlay {
  height: 12.125rem;
  background-image: linear-gradient(rgba(199, 227, 255, 0),
      var(--green-color) 95%);
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.stock-better-img {
  position: relative;
}

.faq-section {
  padding: 80px 0;
}

.faq-section .heading {
  margin-bottom: 40px;
}

.faq-wrapper {
  display: flex;
  align-content: space-evenly;
}

.stock-accordion {
  background-color: #f7f9fb;
  border-radius: 8px;
}

.stock-accordion:not(:last-child) {
  margin-bottom: 10px;
}

.stock-accordion>a {
  color: var(--black-color);
  padding: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.stock-accordion>a i {
  font-size: 16px;
}

.stock-accordion {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.stock-accordion-content {
  text-align: justify;
  height: auto;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  display: none;
  padding: 25px 16px;
}

.stock-accordion-content span {
  line-height: 1.5;
}

.stock-accordion-content p {
  padding: 10px 15px 20px;
  border: 1px solid #dfdfdf;
  border-bottom: 0;
}

.stock-accordion-content.show {
  opacity: 1;
  display: block;
  height: auto;
}

.stock-accordion-content ul {
  list-style-type: disc;
  padding: 15px 0 0 15px;
}

.stock-accordion-content ul li {
  font-size: 14px;
}

.bg-soft-primary .arrow-line-one {
  margin-bottom: 190px;
}

.bg-soft-primary .margin-line-2 {
  margin-bottom: 100px;
}

.bg-soft-primary .arrow-line-two {
  margin-bottom: 95px;
}

.footer {
  background-color: #222;
  position: relative;
  margin-top: 0;
  padding-top: 0;
}

.footer .footer-bottom,
.footer .footer-top,
footer .footer-inner {
  position: relative;
  z-index: 1;
}

.footer-inner-col:first-child {
  width: 28%;
}

.footer-inner-erap {
  padding: 13px 0;
  border-radius: 15px;
  max-width: 550px;
}

footer a {
  color: var(--white-color) !important;
  font-size: 14px;
}

footer .footer-logo {
  max-width: 150px;
  margin-bottom: 16px;
}

.footer p {
  line-height: normal;
  font-size: 14px;
}

.list-unstyled {
  column-gap: 20px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.footer .footer-link-1 li {
  margin: 0 0 5px;
}

footer ul:not(.list-inline):not(.slides)>li {
  line-height: 30px !important;
}

.footer .footer-link-1 li a {
  position: relative;
  color: var(--white-color) !important;
  font-weight: 500;
  font-family: Poppins;
  font-size: 13px;
}

.footer .footer-link-1 li a::after {
  content: "";
  width: 0;
  height: 1px;
  transition: 0.35s;
  background: currentColor;
}

.cta_blur,
.footer .footer-link-1 li a::after {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
}

.footer .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
}

.social-links .icon:not(:last-child) {
  margin-right: 8px;
}

.footer .small,
.footer .small a {
  font-size: 14px;
}

.social-links {
  margin-top: 16px;
}

.footer-inner-col:nth-child(2) {
  width: 72%;
}

.footer-inner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.footer .footer-bottom {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid rgb(163 163 163);
}

.yt-btn a {
  position: relative;
  cursor: pointer;
  display: block;
}

.yt-btn a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transition: 400ms ease-in-out;
  transform: translate(-50%, -50%);
  content: "";
  width: 60px;
  height: 42px;
  background: url(assets/images/icons/yt-icon.png) no-repeat;
  opacity: 0.8;
}

.yt-btn a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  border-radius: 25px;
  width: 100%;
  transition: 400ms ease-in-out;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
}

.yt-btn a:hover::before {
  opacity: 1;
  transition: 400ms ease-in-out;
}

.yt-btn a:hover::after {
  opacity: 1;
  transition: 400ms ease-in-out;
}

.yt-btn a img {
  max-width: 100%;
  height: auto;
}

.lg-hidden {
  display: none !important;
}

@media (min-width: 1080px) {

  .downlaod-soft-img>img,
  .trade-menu {
    margin: 0 auto;
  }

  .stock-navbar>i,
  .mob-view,
  .trade-menu,
  header .container-own .fa-bars {
    display: none;
  }

  .hemburger {
    display: none;
  }

  .stock-navbar>ul>li::after {
    content: "";
    padding: 25px 0;
    position: absolute;
    height: 50px;
    width: 70px;
    display: none;
  }

  .stock-navbar>ul>li.desk-view:hover::after {
    display: block;
  }

  header.fixed .stock-navbar>ul>li {
    padding-bottom: 0;
  }

  .stock-navbar .login {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 30px;
    display: block;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
  }

  .stock-navbar .login:hover,
  .stock-navbar .sign-up:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color-dark);
    color: var(--white-color);
  }

  .stock-navbar {
    height: 100%;
  }

  .stock-navbar>ul {
    height: 100%;
    gap: 8px;
  }

  .trade-menu {
    position: absolute;
    background: var(--white-color);
    left: 0;
    right: 0;
    box-shadow: 0 0 5px rgb(232 235 235);
    border-radius: 10px;
    top: 100%;
    transition: 0.3s linear;
    max-width: 100%;
    background-image: linear-gradient(325deg,
        rgba(104, 211, 163, 0.02) 1.7%,
        rgba(9, 107, 239, 0.07) 98%);
    width: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .trade-menu-content-col {
    width: calc(100% / 3);
  }

  header.fixed .trade-menu .trade-content p {
    height: 20px;
  }
}

@media (min-width: 1078px) {
  header .stock-navbar .sm-none {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .container {
    max-width: 540px;
  }
}

@media (min-width: 601px) {
  .banner .app-dwn-btn {
    display: none;
  }
}

@media (min-width: 768px) {

  .app-dwn-btn,
  .mobile-app-link {
    display: none;
  }

  .container {
    max-width: 720px;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .banner-img {
    position: relative;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .trade-content h6 {
    font-size: 0.8vw;
  }

  .trade-menu .trade-content p {
    font-size: 15px;
  }

  .nav-tabs.nav-justified .nav-item {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .nav-tabs.nav-justified .nav-item:first-child {
    margin-left: 0;
  }

  .nav-tabs.nav-justified .nav-item:last-child {
    margin-right: 0;
  }

  .stock-navbar ul>li>a {
    font-size: 15px;
  }

  .stock-navbar ul>li>a>i {
    font-size: 12px;
  }
}

@media (max-width: 1411px) {
  .stock-navbar>ul {
    gap: 8px;
  }

  .header .col-12.col-md-9.col-lg-9 {
    position: inherit;
  }

  .header .container-own {
    position: relative;
  }

  .trade-menu-content {
    padding: 35px 15px 25px;
    border-radius: 10px 0 0 10px;
  }
}

@media (max-width: 1280px) {
  .desk-view .trade-menu .trade-content p {
    font-size: 13px;
  }

  .banner-section h1 {
    font-size: 32px;
  }

  .stock-animate-text {
    top: -40px;
  }

  .banner-container {
    padding: 20px 0px;
    min-height: inherit;
  }

  .banner-img {
    width: 50%;
    padding-left: 50px;
  }

  .stock-navbar>ul {
    gap: 8px;
  }

  .stock-navbar ul>li>a {
    font-size: 15px;
    padding: 8px 14px;
    font-weight: 400;
  }
}

@media (max-width: 1273px) {
  .trade-menu .trade-content p {
    height: 18px;
  }

  .stock-navbar>ul {
    gap: 7px;
  }
}

@media (max-width: 1079.98px) {

  .desk-view,
  .mobile-sub-menu {
    display: none;
  }

  .stock-navbar.open {
    left: 0;
  }

  header .stock-navbar .sm-none {
    display: flex;
  }

  .stock-navbar ul>li>a.active {
    background-color: #ececf1;
  }

  .stock-navbar ul>li>a {
    display: block;
    padding: 8px;
    color: var(--black-color);
    font-weight: 600;
  }

  .stock-navbar>ul>li {
    width: 100%;
  }

  .stock-navbar>div {
    padding: 13px 16px;
  }

  .stock-navbar>ul {
    row-gap: 6px;
    flex-direction: column;
  }

  .trade-menu ul>li>a {
    text-align: left !important;
  }

  .stock-navbar>ul>li:not(:last-child)>a {
    border-bottom: 1px solid #ddd;
    border-radius: 0;
  }

  .trade-menu-wrappar>ul {
    flex-direction: column;
    row-gap: 15px;
  }

  .stock-navbar .trade-menu {
    position: static;
    max-width: 475px;
    display: none;
    margin-top: 15px;
  }

  .trade-menu-wrappar>ul:not(:last-child) {
    margin-bottom: 15px;
  }

  .hemburger {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 23px;
  }

  .logo-img {
    width: 140px;
  }

  .hemburger-inner {
    display: inline-block;
  }

  .hemburger span {
    width: 100%;
    height: 3px;
    display: block;
    background: var(--primary-color);
    position: absolute;
    transform-origin: left;
    transition: 0.2s all ease-in;
  }

  .hemburger span:nth-of-type(1) {
    position: absolute;
    top: 0;
  }

  .hemburger span:nth-of-type(2) {
    position: absolute;
    top: 9px;
  }

  .hemburger span:nth-of-type(3) {
    position: absolute;
    top: 18px;
  }

  .hemburger.active span:nth-of-type(1) {
    transform: rotate(45deg);
  }

  .hemburger.active span:nth-of-type(2) {
    transform: translateX(-40px);
    opacity: 0;
    visibility: hidden;
  }

  .hemburger.active span:nth-of-type(3) {
    transform: rotate(-45deg);
  }

  .bg-backdrop {
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: 200ms all ease-in-out;
  }

  .bg-backdrop.show {
    opacity: 1;
    visibility: visible;
  }

  .stock-navbar {
    position: fixed;
    width: 260px;
    left: -260px;
    z-index: 9999;
    background: var(--white-color);
    top: 0px;
    bottom: 0;
    padding-bottom: 50px;
    transition: 300ms all ease-in-out;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .pricing-plan-all>.container,
  .pricing-plans-bg>.container,
  .section.extra-user {
    width: 1245px;
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .trade-menu {
    margin: 0 32px;
    z-index: 9;
  }

  .stock-navbar ul>li>a>i {
    font-size: 14px;
    position: absolute;
    top: 8px;
    right: 15px;
  }

  .stock-navbar {
    overflow: auto;
  }
}

@media (max-width: 767px) {
  .container-own {
    max-width: 100%;
    width: 100%;
  }

  .banner-section {
    padding: 130px 0 20px;
  }

  .banner-container {
    padding: 30px 0 10px;
    flex-wrap: wrap;
    min-height: inherit;
  }

  h1 {
    font-size: 28px;
  }

  .stock-animate-text {
    top: -40px;
  }

  .banner-btn {
    text-align: center;
    margin-top: 40px;
  }

  .banner-btn .stock-btn {
    font-size: 14px;
  }

  .app-dwn-btn {
    margin-top: 30px;
  }

  .starting-price {
    text-align: center;
    font-size: 16px !important;
  }

  .login #get-call-form .form-field,
  .login #get-call-form-mobile .form-field {
    margin-bottom: 25px;
  }

  .mobile-dashboard {
    text-align: center;
  }

  .mobile-dashboard img {
    max-width: 280px;
    margin: 30px 0;
  }

  .app-dwn-btn ul {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .app-dwn-btn ul li img {
    max-width: 140px;
  }

  .banner-img {
    display: none;
  }

  .logo-section .logo-item {
    max-width: 23.2%;
  }

  .mobile-screen,
  .partner-listing-mobile-screen {
    display: flex !important;
    padding: 20px 0 40px;
    flex-wrap: wrap;
  }

  .partner-section {
    padding: 0;
  }

  .partner-section-heading {
    padding: 30px 0 20px;
  }

  .partner-section-heading h2 span {
    font-size: 26px;
  }

  .trusted-points {
    padding: 30px 0;
  }

  .trusted-points ul li {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 5px;
  }

  .trusted-points ul li .trust-box {
    height: auto;
  }

  .trusted-points ul li h3 .counter b {
    font-size: 20px;
  }

  h2 {
    font-size: 25px;
  }

  .sw-work-preview,
  .partner-listing-laptop-screen,
  .app-rating-section {
    display: none;
  }

  .logo-section {
    justify-content: center;
    gap: 7px;
  }

  .quick-col-mar-sm {
    margin-bottom: 20px;
  }

  .content-area {
    padding-bottom: 0;
  }

  #player-container {
    height: 240px;
    padding: 15px;
  }

  #player-container iframe {
    height: 100%;
  }

  .industry-work {
    overflow: inherit;
    height: auto;
    padding: 40px 0;
  }

  .industry-work .heading {
    margin-bottom: 40px;
  }

  #tabs-nav {
    display: none;
  }

  .mb-tabs-data {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  .sm-tab-heading {
    margin-bottom: 15px;
    display: block;
    background: #dfdfdf;
    font-weight: 600;
    background: linear-gradient(359deg, #dfdfdf8f, #f5ffffe8);
    border: none;
    font-size: 14px;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border-radius: 14px;
    color: var(--black-color-1);
    box-shadow: 0 1px 6px #00000036;
    cursor: pointer;
  }

  #fieldamount {
      margin-bottom: 2px !important;
  }
  .sm-tab-heading.active {
    background: var(--primary-color);
    background: linear-gradient(180deg, var(--primary-color), #019ea3);
    border-color: transparent;
    color: var(--white-color);
  }

  .sm-tab-heading:hover {
    background: var(--secondary-color);
    background: linear-gradient(0deg, var(--secondary-color), #c10000);
    color: var(--white-color);
  }

  .mb-tabs-data h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .work-title-block ul li {
    font-size: 14px;
  }

  .horizontal {
    margin-bottom: 25px;
  }

  .horizontal>li {
    min-width: clamp(100px, 30%, 100px);
  }

  .horizontal>li a {
    font-size: 13px;
  }

  .tab-pane-col {
    padding: 20px 0 0;
  }

  .tab-pane-col h3 {
    font-size: 20px;
  }

  .bg-soft-primary {
    padding: 40px 0;
  }

  .quick-col:first-child {
    display: none;
  }

  .quick-col:nth-child(2) {
    width: 100%;
  }

  .easy-operate-back {
    padding: 10px;
  }

  .quick-col-mar {
    margin-bottom: 10px;
  }

  .stock-works-section .d-flex {
    display: block !important;
  }

  .bg-soft-primary .margin-line-1,
  .bg-soft-primary .margin-line-2 {
    margin-bottom: 40px;
  }

  .bg-soft-primary .arrow-line-one,
  .bg-soft-primary .arrow-line-two {
    display: none;
  }

  .bg-soft-primary .stock-works-section {
    margin-top: 40px;
  }

  .overlay {
    margin-top: 40px;
  }

  #call_action h6 {
    font-size: 12px;
    padding-left: 20px;
  }

  .text-line::before {
    top: 8px;
  }

  #call_action h3 {
    font-size: 18px;
  }

  .mobile-app-marg {
    padding: 50px 0;
  }

  .mobile-app-icon-badge {
    top: 15px;
    left: 0px;
  }

  .mobile-app-icon-swithcher {
    bottom: 70px;
    right: 15px;
  }

  .mobile-app-stock-content-data {
    position: static;
    margin-top: 10px;
  }

  .secion-influencers {
    padding-top: 0;
  }

  #testimonial {
    padding-top: 40px;
  }

  .stock-better-img {
    display: none;
  }

  .stock-better-content-wrapper {
    padding-top: 2.375rem;
    padding-bottom: 2.375rem;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .stock-better .stock-better-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .stock-better-content {
    grid-template-columns: 1.25fr;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-wrapper {
    display: block;
  }

  .faq-content {
    padding: 0;
  }

  .footer {
    margin-top: 0px;
  }

  .footer-inner-flex {
    display: block;
  }

  .footer-inner-col:first-child,
  .footer-inner-col:nth-child(2) {
    width: 100%;
  }

  .list-unstyled {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer .footer-link-1 li {
    margin: 0;
  }

  .social-links .justify-content-end {
    justify-content: center !important;
  }

  .bg-soft-primary .cust_line p,
  .power-bs-marg .nav-tabs li p {
    font-size: 14px;
  }

  .power-bs-marg {
    padding: 30px 0 40px;
  }

  .sm-hidden {
    display: none !important;
  }

  .lg-hidden {
    display: inline-block !important;
  }
}

.img-box img,
.oe-image img,
.ordereasy-app {
  max-width: 100%;
}

.effect-section,
.effect-section .container {
  position: relative;
}

.mask,
.omni-banner img {
  width: 100%;
}

.banner-supermarket_software {
  background: url(https://margcompusoft.com/books/assets/images/new-pharma-software-banners.jpg) 0 0/100%;
  padding: 40px 0 0;
  margin-top: 76.31px;
}

.new-future-sec .heading {
  padding: 0 0 50px;
}

.new-future-sec .heading h2 {
  font-size: 48px;
  text-align: center;
  color: #000;
  line-height: 55px;
}

.new-future-sec .heading p {
  text-align: center;
  line-height: 1.5;
  color: #444;
  padding: 10px 0;
}

.future-main-new ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  justify-content: space-between;
  column-gap: 60px;
}

.future-main-new ul li .img-box {
  text-align: center;
}

.future-main-new ul li h3 {
  font-size: 30px;
  text-align: left;
  color: #444;
  font-weight: 600;
  margin-bottom: 20px;
}

.future-main-new ul li p {
  font-size: 22px;
  text-align: left;
  color: #444;
  line-height: 38px;
  margin-bottom: 15px;
}

.future-main-new ul li .pointer-list {
  margin: 0;
}

.future-main-new ul li .pointer-list ul {
  display: flex;
  flex-flow: column wrap;
  margin: 0;
  align-items: flex-start;
}

.pointer-list ul li {
  list-style: none;
  text-align: left;
  color: #444;
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  padding: 6px 0 6px 34px;
}

.pointer-list ul li::before {
  position: absolute;
  font-size: 30px;
  content: "\2022";
  color: var(--green-color);
  font-weight: 700;
  display: inline-block;
  left: 4px;
  top: -6px;
}

.future-main-new>ul>li {
  width: 50%;
}

section.banner-supermarket_software .oe-banner {
  padding-top: 0 !important;
  margin-top: 0;
  padding-bottom: 0 !important;
}

.btn-sec {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-top: 40px;
  justify-content: center;
}

.oe-image img {
  width: 100%;
}

.new-future-sec>.container>.row:not(:last-child) {
  margin-bottom: 90px;
}

.oe-banner-title>.oe-h1 {
  margin-bottom: 20px;
  font-size: 45px;
}

.section-heading h1 {
  margin-bottom: 24px;
}

.stg_sec .card-body {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
}

#dec_readmoretext {
  display: none;
}

.effect-section {
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 111.58px;
}

#tnc h5 {
  margin-bottom: 20px;
}

#tnc ul li {
  margin: 7px 0;
  line-height: 28px;
}

section#tnc ul {
  margin-bottom: 50px;
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
  background-color: var(--green-color);
}

.trader-service {
  padding: 150px 0 60px;
  background: linear-gradient(3.1415926535897927rad,
      hsla(0, 0%, 100%, 0) 0%,
      hsla(43.6364, 64.7059%, 93.3333%, 0.25) 42%,
      hsl(176.41deg 100% 32.75% / 18%) 100%);
}

.trad-btn {
  background-color: var(--green-color);
  padding: 11px 25px;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  box-shadow: 0 7px 16px var(--green-box-shadow);
  width: auto;
  border: 0;
  transition: 0.4s;
  font-size: 17px;
  outline: 0;
}

.trad-btn:hover {
  background: var(--red-color);
  color: #fff;
  box-shadow: var(--red-box-shadow) 0 2px 8px;
}

.white-btn {
  background-color: var(--white-color);
  padding: 11px 25px;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  box-shadow: rgba(78, 91, 91, 0.55) 0px 2px 8px;
  width: auto;
  border: 0;
  transition: 0.4s;
  font-size: 17px;
  color: #000;
  outline: 0;
}

.white-btn:hover {
  background: var(--green-color);
  color: #fff;
  box-shadow: rgba(78, 91, 91, 0.55) 0px 2px 8px;
}

.software-btn .white-btn svg {
  fill: #ff0000;
}

.bnrform {
  width: 100%;
  height: auto;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: 4px solid #e12933;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0px 0px 23px rgb(0 0 0 / 31%);
}

.bnrform h3 {
  margin-bottom: 25px;
}

.bnrform form input {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0px 15px;
  color: #000;
  outline: 0px;
  box-shadow: none;
}

.bnrform form button {
  background-color: var(--red-color);
  color: #fff;
  border: 0px;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 500;
  width: 100%;
  font-size: 17px;
  height: 52px;
}

.bnrform form button:hover {
  background-color: #1c6e70;
  cursor: pointer;
}

.form-service {
  display: grid;
  gap: 20px;
}

.new-future-sec {
  padding: 50px 0px 0px;
}

.mbx-text-common {
  padding: 12px 30px;
  font-size: 18px;
  background-color: var(--red-color);
  border-radius: 30px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
}

@media (max-width: 767.98px) {
  .future-main-new .col-rec {
    border-radius: 10px;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 30px 10px;
  }

  .mbx-text-common {
    font-size: 15px;
  }

  .oe-banner-title {
    text-align: center;
  }

  .bnrform {
    margin-top: 25px;
  }

  .new-future-sec .heading {
    padding: 0;
  }

  .order1 {
    order: 1;
  }

  .future-main-new .col-rec>li:first-child,
  .order2 {
    order: 2;
  }

  .future-main-new ul li .img-box,
  .new-future-sec>.container>.row:not(:last-child) {
    margin-bottom: 30px;
  }

  .future-main-new ul li h3 {
    text-align: center;
    font-size: 22px !important;
  }

  .new-future-sec .heading p {
    font-size: 16px;
  }

  .bnrform h3 {
    font-size: 23px;
  }

  .oe-h1 {
    font-size: 26px !important;
    margin-bottom: 0.938rem;
    line-height: 1.4;
  }

  .oe-banner-title p {
    font-size: 14px !important;
  }

  .banner-supermarket_software {
    margin-top: 76.31px;
    padding-top: 20px;
  }

  .future-main-new>ul>li {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .btn-sec a {
    font-size: 12px;
    padding: 14px 10px;
  }
}

.honeypot {
  display: none !important;
}

.site-tabs {
  text-align: center;
}

.site-tabs .nav-tabs {
  display: inline-flex;
  justify-content: center;
  padding: 10px 10px;
  background: rgb(255 255 255 / 15%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 20px 10px rgba(255, 255, 255, 1);
}

.site-tabs .nav-tabs li a {
  border-radius: 50px;
  background: #d8ffe7;
  padding: 10px 60px;
  color: #00a33e;
}

.site-tabs .nav-tabs li.active a {
  background: #12a22d;
  color: #fff;
}

.error-msg {
  color: #dc3545;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 10px;
}

.site-tabs .nav-tabs li.sec-tab.active a {
  background: #0058a3;
}

.field-inner {
  position: relative;
  display: block;
}

.field-inner .alt-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -15px;
  line-height: 30px;
  font-size: 14px;
  color: #333333;
  font-weight: 400;
  z-index: 1;
  pointer-events: none;
}

.field-inner input {
  padding-left: 40px !important;
}

.field-inner .arrow-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -15px;
  line-height: 30px;
  font-size: 14px;
  color: #333333;
  font-weight: 400;
  z-index: 1;
  pointer-events: none;
}

#ui-datepicker-div {
  z-index: 999 !important;
}

.form-select {
  height: 38px;
  padding-left: 40px;
  background: #f3f3f3;
  border-color: #f3f3f3;
}

.feature-block {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px 10px 15px 10px;
  margin-top: 20px;
  border-radius: 4px;
}

.feature-block h3,
.industry-serve h3 {
  font-size: 22px;
  text-align: start;
  margin-top: 0;
}

.text-end {
  float: right;
}

.feature-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* justify-content: center; */
}

.single-item {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: #ebbc32;
  padding: 6px 10px 6px 4px;
  border-radius: 4px;
  border: 1px solid #f3f3f3;
}

.single-item img {
  max-width: 30px
}

.single-item span {
  font-size: 13px;
  font-weight: 500;
  padding-left: 6px;
}

.bg-blue-fade {
  background: #0058a3;
  color: #fff;
}

.bg-red-fade {
  background: #df484a;
  color: #fff;
}

.bg-green-fade {
  background: #00a33e;
  color: #fff;
}

.industry-serve {
  margin-top: 40px;
}

.industry-serve {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px 10px 15px 10px;
  margin-top: 20px;
  border-radius: 4px;
}

.industry-carousel {
  position: relative;
}

.industry-carousel .item {
  border: 1px solid #e1e1e1;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.industry-carousel h5 {
  font-size: 16px;
}

.industry-carousel .owl-nav .owl-prev,
.industry-carousel .owl-nav .owl-next {
  position: absolute;
  top: -40px;
  background: #7eaee5;
  color: #ffffff;
  transition: 0.5s all ease-in-out;
  width: 30px;
  height: 30px;
  line-height: 0px;
  border: 0;
  font-size: 40px;
  font-weight: 100;
  padding: 0 0 3px 0;
  border-radius: 50%;
  ;
}

.industry-carousel .owl-nav .owl-prev {
  right: 40px;
}

.industry-carousel .owl-nav .owl-next {
  right: 0px;
}

.industry-carousel .owl-nav .owl-prev:hover,
.industry-carousel .owl-nav .owl-next:hover{
  background: #0058a3;
}

.error-section.thankyou-section .image {
    width: 500px;
}
.policy-section h5{
    font-size: 18px;
}