html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  margin: 0px auto;
  font-family: "Montserrat", sans-serif;
  background: var(--bg-primary-color);
  font-weight: 500;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  transition: 250ms ease;
  -webkit-transition: 250ms ease;
}
a:hover {
  text-decoration: none;
}
/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}

button:focus,
.navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}

/* li { list-style: none;} */



@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,800;0,900;1,700;1,800;1,900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.84);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  height: 100vh;
}

body.offcanvas-menu:before {
  opacity: 1;
  z-index: 1002;
  visibility: visible;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: none;
}

/* ---------------------
      Custome CSS
--------------------- */

.container {
  max-width: 1400px;
}

.fonts {
  font-family: "Space Grotesk", sans-serif;
}

.textLink {
  color: var(--title-fonts-color);
  text-decoration: none;

}
.textLink:hover {
  color: var(--title-fonts-color);
  text-decoration: underline;
}
.fwNormal {
  font-weight: normal;
}
:root {
  /*BG Color*/
  --bg-primary-color: #ebebeb;

  /*Text color*/
  --title-fonts-color: #294388;
  --paragraph-color: #464646;
  --icon-color: #24376e;

  /*Fonts*/
  --title-fonts: "Montserrat", sans-serif;
  --title-fonts-style2: "Space Grotesk", sans-serif;
  --paragraph-fonts-size: 15px;
}

.padding-0 {
  padding-right: 0;
  padding-left: 0;
}

.pageElements1 {
  position: relative;
}
.pageElements1 img {
  position: absolute;
  margin-top: 50%;
  left: -25%;
}

.pageElements2 {
  position: relative;
}
.pageElements2 img {
  position: absolute;
  margin-top: 80%;
  right: -25%;
}

/*GENERAL BTN Start*/

.generalBTN {
  display: block;
  color: #fff;
  text-align: center;
  background: #40488e;
  padding: 8px 15px;
  border-radius: 3px;
  font-size: 15px;
  border-color:#40488e ;
}
.generalBTN:hover {
  background: #222873;
  color: #fff;
  transition: 0.9s 0s;
}
.generalBTN:active {
  position: relative;
  top: 1px;
}
.generalBTN.buyDSC {
  color: #fff;
  background: #a6a6ff;
  top: -8px;
  padding: 12px 10px 7px 10px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.16);
}
.generalBTN:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 1px;
  position: relative;
}

.generalBTN:focus, .generalBTN.focus {
  box-shadow:none;
}

.generalBTN:not(:disabled):not(.disabled):active:focus {
  box-shadow:none;
}
.generalBTN:focus {box-shadow:none;}
.generalBTN:not(:disabled):not(.disabled):active {background-color:#222873;}
.generalBTN:focus{background-color:#222873; color: #fff;}
/*GENERAL BTN END*/

/* -------------------------
      Navigation CSS Start
---------------------------- */
.topHeaderSection {
  background: #fff;
  border-bottom: 1px solid #b8b8b8;
}
.topLeftBarSection {
  margin-top: 0px;
  text-align: right;
}
.topLeftBarSection .topMail {
  font-weight: 600;
}
.topLeftBarSection .topMail:hover {
  text-decoration: underline;
  color: #5784c2;
  font-weight: 600;
}
.topLeftBarSection a:hover {
  text-decoration: none;
}

.hero {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.top-bar {
  background: #00000066;
  padding: 11px 0;
  position: absolute;
  width: 100%;
  z-index: 101;
  top: 1px;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
}
.top-bar .topRightLinksContainer {
  position: relative;
  float: right;
}
.topRightLinksContainer .topRightLinks {
  margin-top: px;
}
.top-bar .topRightLinksContainer li {
  list-style-type: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  margin-left: 10px;
  font-weight: 500;
  color: #828282;
  font-weight: 600;
}
.top-bar .topRightLinksContainer li a:hover {
  text-decoration: none;
  color: #fde40d;
  font-weight: 600;
}

.topHeaderBtnSection button {
  border: 0;
  padding: 7px 12px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.topHeaderBtnSection button.contactSales {
  background: #fde40d;
}
.topHeaderBtnSection button.contactSales:hover {
  background: #a6a6ff;
  color: #000;
  transition: 0.9s 0s;
}
.topHeaderBtnSection button.contactSales:active {
  position: relative;
  top: 1px;
}
.topHeaderBtnSection button.buyDSC {
  color: #fff;
  background: #a6a6ff;
  top: -8px;
  padding: 12px 10px 7px 10px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.16);
}

.topHeaderBtnSection button.buyDSC:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 1px;
  position: relative;
}

/* ---------------------
      Navigation CSS End
---------------------------*/

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: relative;
  width: 100%;
}
.site-navbar .toggle-button {
  position: absolute;
  right: 9px;
  background: #fff;
  padding: 5px 14px;
  border-radius: 3px;
  top: 5px;
}
.site-navbar .toggle-button a:hover {
  text-decoration: none;
}

.site-logo {
  position: relative;
  margin: 0;
  padding: 0;
}
.site-logo .companyLogo {
  position: absolute;
    top: -32px;
    left: -13px;
    z-index: 6;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    width: 9%;
}

.site-navbar .site-navigation.border-bottom {
  border-bottom: 1px solid white !important;
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu .active {
  color: #007bff !important;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu > li {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #fff;
}
.site-navbar .site-navigation .site-menu > li > a {
  padding: 20px 10px;
  color: #fff !important;
  display: inline-block;
  text-decoration: none !important;
  position: relative;
}
.site-navbar .site-navigation .site-menu > li i {
  position: relative;
  right: 7px;
  top: 2px;
}

.site-navbar .site-navigation .site-menu > li > a:hover {
  color: #fff !important;
}

.site-navbar .site-navigation .site-menu > li > a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 2px;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.site-navbar .site-navigation .site-menu > li > a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}
.site-navbar .site-navigation .site-menu .has-children > a {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  padding: 0px 0;
  margin-top: 20px;
  background: #0058a3;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(0,0,0,0.17);
  -moz-box-shadow: 0px 4px 0px 0px rgba(0,0,0,0.17);
  box-shadow: 0px 4px 0px 0px rgba(0,0,0,0.17);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
}

.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown.arrow-top:before {
  display: none;
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown.arrow-top:before {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: #fff !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
  color: #007bff !important;
  background: #f8f9fa;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 227px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
  padding: 10px 20px;
  display: block;
  font-size: 14px;
  color: #fff;
}

.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li
  > a:hover {
  background: #000;
  color: #fff;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown-item:hover,
.dropdown-item:focus {
  background: #3563a3;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown-item:hover,
.dropdown-item:focus {
  outline: none;
}

.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > .dropdown,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > ul {
  left: 100%;
  top: 0;
  margin-left: 1px;
}

.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children:hover
  > a,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children:active
  > a,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children:focus
  > a {
  background: #000;
  color: #ced4da;
}

.site-navbar .site-navigation .site-menu .has-children:hover > a,
.site-navbar .site-navigation .site-menu .has-children:focus > a,
.site-navbar .site-navigation .site-menu .has-children:active > a {
  color: #007bff;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  .has-children
  > a
  i {
  position: absolute;
  right: 10px;
  top: 14px;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #ced4da;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-nav-wrap > li > i {
  display: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #828282;
}
.site-mobile-menu .site-nav-wrap a:hover {
  color: #828282;
  background: #e1e1e1;
}
.site-mobile-menu .site-nav-wrap a:active {
  color: #828282;
  background: #e1e1e1;
}
.site-mobile-menu .site-nav-wrap a:focus {
  color: #fff;
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li .nav-link.active {
  color: #007bff;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 8px;
  z-index: 20;
  width: 100%;
  height: 36px;
  text-align: center;
  cursor: pointer;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 100%;
  color: #828282;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap > li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap > li > a {
  padding-left: 20px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap > li > ul > li {
  display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > a {
  font-size: 14px;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
  display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
  font-size: 14px;
  padding-left: 60px;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] > li {
  width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
  padding-left: 15px !important;
}

.top-bar .fa-envelope:before {
  margin-left: 7px;
}

.sticky-wrapper {
  position: absolute;
  top: 47px;
  z-index: 103;
  width: 100%;
}

.sticky-wrapper .site-navbar {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.sticky-wrapper .site-navbar .site-logo a {
  color: #fff;
}

.sticky-wrapper .site-navbar ul li a {
  color: #fff !important;
}

.sticky-wrapper .site-navbar ul li a.active {
  color: #fff !important;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.sticky-wrapper.is-sticky .site-navbar {
  background: #201131d1;
  -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  padding: 5px;
}

.sticky-wrapper.is-sticky .site-navbar .topHeaderBtnSection {
  margin-top: -2px;
}
.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: #007bff;
  border: 1px solid #ff0000;
  display: none;
}
.sticky-logo {
  display: none;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.sticky-wrapper.is-sticky .js-sticky-header .sticky-logo {
  display: block;
  margin-left: 14px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.sticky-wrapper.is-sticky .site-navbar ul li a:hover {
  color: #fff !important;
}

.sticky-wrapper.is-sticky .site-navbar ul li a.active {
  color: #007bff !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-logo {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.sticky-wrapper .shrink {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.sticky-wrapper.is-sticky .site-navbar .toggle-button {top: 11px;}


@media (max-width: 991.98px) {
  .sticky-wrapper .shrink {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

/* ---------------------
      Navigation END
--------------------------*/

/* ----------------------------------
      Main Banner Section CSS Start
------------------------------------*/

#mainBanner {
  position: relative;
}
#mainBanner .bannerSection .item.bannerOneBG .bannerMainBox .bannerSectionPart {
  position: relative;
}
#mainBanner
  .bannerSection
  .item.bannerOneBG
  .bannerMainBox
  .bannerSectionPart
  .bannerContentSection {
  padding: 70px 0;
}
#mainBanner
  .bannerSection
  .item.bannerOneBG
  .bannerMainBox
  .bannerSectionPart
  .bannerContentSection
  h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}
#mainBanner
  .bannerSection
  .item.bannerOneBG
  .bannerMainBox
  .bannerSectionPart
  .bannerContentSection
  h1
  p {
  font-size: 40px;
  font-weight: 500;
  color: #000;
}

#mainBanner
  .bannerSection
  .item.bannerOneBG
  .bannerMainBox
  .bannerSectionPart
  .bannerContentSection
  p {
  font-size: 15px;
  color: #545454;
  font-weight: 500;
}
#mainBanner
  .bannerSection
  .item.bannerOneBG
  .bannerMainBox
  .bannerSectionPart
  .bannerContentSection
  .bannerHighlightText {
  margin: 20px 0 35px 0;
}

#mainBanner
  .bannerSection
  .item.bannerOneBG
  .bannerMainBox
  .bannerSectionPart
  .bannerContentSection
  .bannerHighlightText
  ul
  li {
  list-style-type: none;
  color: #545454;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
}
.fas.fa-check-circle {
  font-size: 15px;
  color: #727272;
}
.bannerInfoIcons {
  display: flex;
  flex-direction: row;
}

.infoIcons.onlinePayment img,
.infoIcons.eVerificaiton img,
.infoIcons.getDigitalCer img {
  width: auto;
}
.infoIcons p {
  text-align: center;
}
.infoIconBoxHight {
  min-height: 110px;
  min-width: 200px;
}
.infoIconBoxHight img {
  margin: 0 auto;
}

#mainBanner
  .bannerSection
  .item.bannerOneBG
  .bannerMainBox
  .bannerSectionPart
  .bannerOneImgSection {
  position: relative;
  display: flex;
  flex-direction: row;
  margin-top: 30px;
}
#mainBanner
  .bannerSection
  .item.bannerOneBG
  .bannerMainBox
  .bannerSectionPart
  .bannerOneImgSection
  .paperlessDscFormerly {
  margin-right: 45px;
}
.paperlessDscFormerly img,
.paperlessDscPresently img,
.paperlessDscEkycImg img {
  display: none;
}
.paperlessDscEkycImg {
  position: absolute;
  width: 70%;
  left: 43px;
  right: 0;
}

#mainBanner .bannerSection .owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
}

#mainBanner .bannerSection .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  border: 2px solid #0000007d;
  width: 20px;
  height: 20px;
  margin: 5px 2px;
  background: #000000f7;
}

#mainBanner .bannerSection .owl-theme .owl-dots .owl-dot span {
  border: 2px solid #0000007d;
  width: 20px;
  height: 20px;
  margin: 5px 2px;
  background: #ffffff00;
  display: block;
  --webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 0px;
}

.pageSideElementDesign {
  position: absolute;
  z-index: 5;
  left: -25%;
  top: 1420px;
}
/*--------------------------------
      Main Banner Section CSS END
------------------------------------*/

/* ----------------------------------
      About Ncode Section CSS Start
------------------------------------- */
.aboutCompanyContainer {
  margin: 50px 0;
}
.aboutCompanyContainer .aboutCompanyInfoBox {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  min-height: 690px;
}
.aboutCompanyContainer .aboutCompanyInfoBox .aboutCompanyInfoTitle {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 7px 0;
}
.aboutCompanyContainer .aboutCompanyInfoBox p {
  color: var(--paragraph-color);
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 10px;
}
.aboutCompanyContainer .aboutCompanyInfoBox a {
  color: var(--title-fonts-color);
  text-decoration: none;
}
.aboutCompanyContainer .aboutCompanyInfoBox a:hover {
  color: var(--title-fonts-color);
  text-decoration: underline;
}

.aboutCompany {margin: 40px 0;}
.aboutCompany img {border-radius: 5px;}
.image-box {
  position: relative;
  overflow: hidden;
  width: 540px;
}
.image-box img {
  max-width: 100%;
  transition: all 0.3s;
  display: block;
  width: 100%;
  /* height: auto; */
  transform: scale(1);
}
.image-box:hover img {transform: scale(1.1);}
.image-box:hover {border-radius: 5px;}
.aboutCompany .aboutCompanyText span {
  color: #e97716;
  font-weight: 700;
}
.aboutCompany .aboutCompanyText a {
  color: var(--title-fonts-color);
  text-decoration: underline;
}
.aboutCompany .aboutCompanyText a:hover {
  text-decoration: none;
  color: var(--title-fonts-color);
}
.aboutCompany .aboutCompanyText h1 {
  font-family: var(--title-fonts);
  font-size: 25px;
  color: var(--title-fonts-color);
  margin-bottom: 10px;
  font-weight: 800;
}
.aboutCompany .aboutCompanyText p {
  line-height: 25px;
  font-size: var(--paragraph-fonts-size);
  color: var(--paragraph-color);
  margin-bottom: 12px;
}

.aboutCompany .clintLogoSection {
  font-family: var(--title-fonts);
  color: var(--title-fonts-color);
  font-size: 20px;
  font-weight: 500;
  margin: -18px 0 20px 0;
}
.aboutCompany .clintLogoSection span {
  font-size: 30px;
  font-weight: 900;
}
.aboutCompany .trustedClientLogo img {
  border-radius: 7px;
  margin: 0 20px 20px 0px;

  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.aboutCompany .trustedClientLogo img:hover {
  filter: grayscale(100%);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  box-shadow: 0 0 10px 1px #0000001c;
  cursor: pointer;
}
.aboutCompanyInfoBox .listStyleOne ul li {
  list-style-type: none;
  display: inline-flex;
}
.aboutCompanyInfoBox .listStyleOne ul li i {
  margin-right: 10px;
  color: #2467ec;
  font-size: 12px;
  margin-top: 7px;
}
.aboutCompanyInfoBox .listStyleOne ul li a {margin-right: 13px;}
.aboutCompany .section-title h6 {
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #294388;
}
.aboutCompany h6 {
  font-size: 18px;
  font-style: normal;
  line-height: 24px;
  margin-bottom: 10px;
}
/* ----------------------------------
      About Ncode Section CSS End
------------------------------------- */

/* ----------------------------------
      PKI Services Box CSS Start
------------------------------------- */
.pkiServicesGirdContainer {
  margin: 70px 0;
}

.pkiServicesGirdContainer .boxStyle {
  border-radius: 5px;
  padding: 40px;
  color: #fff;
  font-weight: 200;
  font-family: var(--title-fonts);
  min-height: 200px;
  margin-bottom: 30px;
  position: relative;
}
.pkiServicesGirdContainer h2 {
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 7px;
}
.pkiServicesGirdContainer .boxStyle img {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.pkiServicesGirdContainer p {font-size: 13px;}

.single-feature {
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.single-feature:hover {
  -webkit-box-shadow: 0 42px 60px 0 rgb(0 0 0 / 29%);
  box-shadow: 0 42px 60px 0 rgb(0 0 0 / 29%);
  -webkit-transform: translate3d(0,-20px,0);
  transform: translate3d(0,-20px,0);
}


.pkiServicesGirdContainer .gridB-1 {
  background: rgb(75, 123, 234);
  background: linear-gradient(
    160deg,
    rgba(75, 123, 234, 1) 0%,
    rgba(40, 85, 191, 1) 100%
  );
}
.pkiServicesGirdContainer .gridB-2 {
  background: rgb(48, 53, 61);
  background: linear-gradient(
    160deg,
    rgba(48, 53, 61, 1) 0%,
    rgba(24, 27, 31, 1) 100%
  );
}
.pkiServicesGirdContainer .gridB-3 {
  background: rgb(229, 118, 9);
  background: linear-gradient(
    160deg,
    rgba(229, 118, 9, 1) 0%,
    rgba(229, 76, 9, 1) 100%
  );
}
.pkiServicesGirdContainer .gridB-4 {
  background: rgb(28, 211, 182);
  background: linear-gradient(
    160deg,
    rgba(28, 211, 182, 1) 0%,
    rgba(17, 174, 157, 1) 100%
  );
}
.pkiServicesGirdContainer .gridB-5 {
  background: rgb(235, 106, 66);
  background: linear-gradient(
    160deg,
    rgba(235, 106, 66, 1) 0%,
    rgba(209, 79, 39, 1) 100%
  );
}
.pkiServicesGirdContainer .gridB-6 {
  background: rgb(36, 160, 36);
  background: linear-gradient(
    160deg,
    rgba(36, 160, 36, 1) 0%,
    rgba(17, 117, 17, 1) 100%
  );
}
/* ----------------------------------
      PKI Services Box CSS End
------------------------------------- */

/* ----------------------------------
      Company Services Box CSS Start
------------------------------------- */

.companyServicesBoxContainer {
  margin: 70px 0;
}
.companyServicesBoxContainer h3 {
  text-align: center;
  font-size: 32px;
  font-family: var(--title-fonts);
  color: var(--title-fonts-color);
  font-weight: 300;
  margin-bottom: 25px;
}
.companyServicesBoxContainer .companyServicesBox {
  background: rgb(238, 238, 240);
  background: linear-gradient(
    90deg,
    rgba(238, 238, 240, 1) 0%,
    rgba(213, 203, 255, 1) 100%
  );
  border-radius: 5px;
  padding: 40px;
  text-align: center;
  margin-bottom: 25px;
  
}
.companyServicesBoxContainer .companyServicesBox:hover { 
  background: #d6ccfe;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.companyServicesBoxContainer .companyServicesBox:hover button {
  background: #7e7ed7;
}
.companyServicesBoxContainer .companyServicesBox h1 {
  font-size: 22px;
  font-weight: 400;
}
.companyServicesBoxContainer .companyServicesBox p {
  font-size: 14px;
  color: #686868;
  margin-bottom: 25px;
}
.companyServicesBoxContainer .companyServicesBox img {
  margin-top: 17px;
  width: 70px;
  margin-left: auto;
  margin-right: auto;
}
.companyServicesBoxContainer .companyServicesBox .readMoreBTN {
  border: none;
  font-size: 14px;
  color: #fff;
  background: #a6a6ff;
  padding: 11px 32px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-top: 30px;
  box-shadow: 0 0 6px 1px #00000026;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.companyServicesBoxContainer .companyServicesBox .readMoreBTN:hover {
  box-shadow: none;
}
.companyServicesBoxContainer .companyServicesBox .readMoreBTN:active {
  position: relative;
  top: 1px;
}

.companyServicesBoxContainer .owl-theme .owl-dots .owl-dot {
  display: none;
}
.companyServicesBoxContainer .owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  font-size: 40px;
  color: #a6a6ff;
}
.companyServicesBoxContainer .owl-theme .owl-nav {
  margin-top: 0;
}
.companyServicesBoxContainer .owl-theme .owl-nav [class*="owl-"]:hover {
  background: none;
  color: #000;
}
/* ----------------------------------
      Company Services Box CSS End
------------------------------------- */

/* --------------------------------------
      DSC Certificate Overview CSS Start
----------------------------------------- */
.dscSrtyBox {
  position: relative;
  background: #35359e;
  padding: 80px 0;
}
.designBGimg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/page-elements3.png) no-repeat;
  z-index: 0;
  top: 0;
}

.dscSrtyBox .dscOverviewIMG {
  background-image: url(../images/dscOverview-img01.jpg);
  background-repeat: no-repeat;
  width: 579px;
  height: 412px;
  border-radius: 5px;
  position: relative;
}
.dscSrtyBox .dscOverviewIMG .dscServicesList {
  background: #fff;
  position: absolute;
  border-radius: 5px;
  right: -148px;
  bottom: -78px;
  width: 430px;
  height: 360px;
  box-shadow: 0 0 17px 20px #00000036;
  padding: 47px 0 0 50px;
}
.dscSrtyBox .dscOverviewIMG .dscServicesList h2 {
  font-family: var(--title-fonts);
  color: #35359e;
  font-size: 20px;
  margin-bottom: 10px;
}
.dscSrtyBox .dscOverviewIMG .dscServicesList ul li {
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-size: 14px;
  color: #4e4e4e;
  margin-bottom: 10px;
}
.dscSrtyBox .dscOverviewContainer h1 {
  font-family: var(--title-fonts);
  color: #fff;
  font-size: 35px;
  margin-bottom: 15px;
}
.dscSrtyBox .dscOverviewContainer p {
  color: #8f8ff9;
  line-height: 30px;
  margin-bottom: 12px;
}
/* --------------------------------------
      DSC Certificate Overview CSS End
----------------------------------------- */

/* --------------------------------------
      Video Verification CSS Start
----------------------------------------- */

.videoVerificationBanner {
  margin: 120px 0 80px 0;
}
.videoVerificationBanner .videoVerificationContainer {
  position: relative;
  border-radius: 10px;
  min-height: 470px;
  background: rgb(87, 37, 87);
  background: linear-gradient(
    90deg,
    rgba(87, 37, 87, 1) 0%,
    rgba(63, 74, 145, 1) 100%
  );
}

.videoVerificationBanner .videoVerificationContainer .videoVerifiContantPart {
  padding: 50px 0 0 50px;
  z-index: 2;
  top: 0;
}
.videoVerificationBanner
  .videoVerificationContainer
  .videoVerifiContantPart
  h5 {
  position: absolute;
  font-size: 13px;
  bottom: 15px;
  color: #f0f0f0;
}
.videoVerificationBanner
  .videoVerificationContainer
  .videoVerifiContantPart
  .vvButton {
  margin-top: 20px;
}
.videoVerificationBanner
  .videoVerificationContainer
  .videoVerifiContantPart
  .vvButton
  h3 {
  font-size: 20px;
  font-weight: 600;
  float: left;
  
  color: #f0f0f0;
}
.videoVerificationBanner
  .videoVerificationContainer
  .videoVerifiContantPart
  .vvButton
  a {
  color: #000 ;
  border: 0;
  padding: 15px 20px;
  background: #fde40d;
  font-size: 18px;
  border-radius: 7px;
  font-weight: 600;
  margin-left: 15px;
}
.videoVerificationBanner
  .videoVerificationContainer
  .videoVerifiContantPart
  .vvButton
  a
  .videoIcon {
  margin: 0px 0 0 7px;
}
.videoVerificationBanner
  .videoVerificationContainer
  .videoVerifiContantPart
  .vvButton
  a:active {
  position: relative;
  top: 1px;
  border-radius: 50px;
}
.videoVerificationBanner
  .videoVerificationContainer
  .videoVerifiContantPart
  .vvButton
  a:hover {
  border-radius: 50px;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 1s 0s;
}

.videoVerificationBanner .videoVerificationContainer .videoVerfiBGimg img {
  position: absolute;
  top: 80px;
  right: 189px;
  z-index: 1;
  animation-name: rotate-center;
  animation-duration: 15.2s;
  animation-timing-function: ease;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
}
@keyframes rotate-center {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.videoVerificationBanner
  .videoVerificationContainer
  .videoVerifiContantPart
  h1 {
  font-family: var(--title-fonts-style2);
  font-size: 45px;
  font-weight: 700;
  z-index: 3;
  color: #f0f0f0;
}
.videoVerificationBanner
  .videoVerificationContainer
  .videoVerifiContantPart
  h2 {
  font-family: var(--title-fonts);
  font-size: 28px;
  padding-bottom: 20px;
  color: #f0f0f0;
}

.videoVerificationBanner .videoVerificationContainer .videoVerifiContantPart p {
  font-size: 14px;
  font-weight: 500;
  padding-right: 35px;
  color: #f0f0f0;
}
.videoVerificationBanner
  .videoVerificationContainer
  .videoVerifiContantPart
  .vvTextSeparator {
  border-top: 1px solid #754566;
  padding-bottom: 20px;
  margin-left: -50px;
}
.videoVerificationBanner .videoVerificationContainer .videoVerfiImgPart {
  position: relative;
  background-image: url(../images/videoVerificationMobileinHandBG-img.png);
  background-repeat: no-repeat;
  min-height: 462px;
  background-position: 20px 0;
}

.videoVerificationBanner .videoVerificationContainer .videoVerfiImgPart img {
  position: absolute;
  right: 0;
  top: -55px;
}
.videoVerificationBanner .videoVerificationContainer .videoVerfiImgPart .vvAppIcon {
  position: absolute;
  right: 15px;
  bottom: 0px;
}

.videoVerificationBanner .videoVerificationContainer .videoVerfiImgPart .vvAppIcon ul li {
  display: inline;
  list-style-type: none;
}


/* -----------------------------------
      Video Verification CSS End
------------------------------------- */

/* -----------------------------------
      Footer CSS Start
------------------------------------- */

.footerSection {
  background-image: url(../images/footerBG-IMG.jpg);
  background-repeat: no-repeat;
  background-position: 0px -207px;
  padding: 40px 0 00px 0;
  background-color: #02020c;
}
.footerSection .footerContantBox {
  margin-top: 70px;
}
.footerSection .footerContainre {
  padding: 20px 0;
}
.footerSection .footerContainre .footerLinksSection {
  position: relative;
  /* z-index: 10000; */
}
.footerSection .footerContainre .footerLinksSection h1 {
  color: #fff;
  font-size: 18px;
  font-family: var(--title-fonts);
  margin-bottom: 15px;
}

.footerSection .footerContainre .footerLinksSection .footerNavLinks li {
  margin-bottom: 15px;
  font-size: 14px;
}
.footerSection .footerContainre .footerLinksSection .footerNavLinks li {
  color: #a29fa6;
  list-style-type: none;
}
.footerSection .footerContainre .footerLinksSection .footerNavLinks li a {
  color: #a29fa6;
  list-style-type: none;
  display: block;
}
.footerSection .footerContainre .footerLinksSection .footerNavLinks li a:hover {
  text-decoration: none;
  color: #fff;
}

.footerSection .footerContainre .footerCompanyTermsLinks {
  border-top: 1px solid #495063;
  border-bottom: 1px solid #495063;
  padding: 20px 0;
  margin: 35px 0;
  text-align: center;
}

.footerSection .footerContainre .footerCompanyTermsLinks li {
  list-style: none;
  display: inline-block;
  margin-right: 25px;
  font-size: 14px;
}
.footerSection .footerContainre .footerCompanyTermsLinks li a {
  color: #a29fa6;
}
.footerSection .footerContainre .footerCompanyTermsLinks li a:hover {
  text-decoration: none;
  color: #fff;
}

.footerSection .footerContainre .footerTextContainer {
  position: relative;
}
.footerSection .footerContainre .footerTextContainer h1 {
  color: #fff;
  font-size: 18px;
  font-family: var(--title-fonts);
  margin-bottom: 15px;
}
.footerSection .footerContainre .footerTextContainer p {
  color: #858891;
  font-size: 13px;
  line-height: 25px;
  text-align: justify;
  margin-bottom: 10px;
}
.footerSection .footerContainre .footerTextContainer p a {
  color: #858891;
  text-decoration: underline;
}
.footerSection .footerContainre .footerTextContainer p a:hover {
  text-decoration: none;
  color: #fff;
}
.footerSection .footerContainre .footerTextContainer {
  position: relative;
  margin-bottom: 25px;
}

.footerSection .footerContainre .footerTextContainer .logoForFooterText {
  position: relative;
}
.footerSection .footerContainre .footerTextContainer .logoForFooterText img {
  float: left;
  width: 82px;
  margin: 5px 15px 70px 0;
}
/* -----------------------------------
      Footer CSS End
------------------------------------- */

/* ----------------------------------------
      Footer Logos and Links  CSS Start
-------------------------------------------- */
.footerBottomPart {
  background: #1f0f3cbd;
  border-radius: 5px;
}
.footerBottomPart .footerBottomContainer {
  position: relative;
  padding: 15px 0 5px 0;
}
.footerBottomPart .footerLogos img {
  margin-top: 15px;
}
.footerBottomPart .footerBottomContainer .footerLogos li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.footerBottomPart .footerBottomContainer .footerLogos li img {
  vertical-align: middle;
  border-radius: 5px;
}
.footerBottomPart .footerBottomContainer .footerBottomSocialMediaIcons {
  position: relative;
  text-align: right;
  margin: 10px 0;
}
.footerBottomPart .footerBottomContainer .footerBottomSocialMediaIcons li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.footerBottomPart .footerBottomContainer .footerBottomCompanyText {
  text-align: right;
  color: #a0a0a0;
  font-size: 14px;
  margin: 10px 0;
}
.userImgTaxtDetails {
  display: flex;
  align-items: center;
  margin-bottom: -80px;
}
.userIMG img {
  border-radius: 50%;
}
.mainBox {
  position: relative;
  background: #fff;
  border-radius: 7px;
  padding: 30px;
}
.imgTextDiv {
  display: flex;
  align-items: center;
  margin-bottom: -80px;
}
.imgTextDiv img {
  border-radius: 50%;
  margin-top: 10px;
}
/* ----------------------------------------
      Footer Logos and Links  CSS End
-------------------------------------------- */

/* ----------------------------------------
      About Company Growth CSS Start
-------------------------------------------- */
.companyGrowth {
  margin: 50px 0;
}
.companyGrowth .aboutCompanyGrowthIMG {
  background: url(../images/about-company-growth-img.png);
  background-repeat: no-repeat;
  background-position: right 0;
  min-height: 508px;
}
.companyGrowth .aboutGrwothContainer {
  font-family: var(--title-fonts);
  padding-right: 57%;
}
.companyGrowth h2 {
  font-size: 21px;
  color: var(--title-fonts-color);
}
.companyGrowth .aboutGrwothContainer p {
  color: var(--paragraph-color);
  margin: 20px 0 45px 0;
}
.companyGrowth .aboutGrwothContainer .listStyleOne ul li {
  list-style-type: none;
  font-size: 15px;
  margin-bottom: 15px;
}
.companyGrowth .aboutGrwothContainer .listStyleOne {
  margin-bottom: 15px;
  color: #141517;
}

.listStyleOne i {
  margin-right: 10px;
  color: #2467ec;
  font-size: 15px;
}

.img-border { border: 10px solid #ebebeb;} 
.theme-bg { background-color: #0058a3;}
.font-w-9 { font-weight: 900; }
.text-large { font-size: 100px; line-height: 100px;}
.section-title p { font-size: 16px; margin-bottom: 0;}
.font-w-6 { font-weight: 600;}
/* ----------------------------------------
      About Company Growth CSS Start
-------------------------------------------- */
.companyGrothDetails .companyGrothBox {
  text-align: left;
  border-bottom: 5px solid #cacaca;
  padding: 25px;
  min-height: 311px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin: 00px 0 70px 0;
}

.companyGrothDetails .companyGrothBox:hover {
  background: #a6a6ff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.companyGrothDetails .companyGrothBox i {
  font-size: 60px;
  color: #cacaca;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.companyGrothDetails .companyGrothBox:hover,
.companyGrothDetails .companyGrothBox:hover .grothIcon i,
.companyGrothDetails .companyGrothBox:hover h3 {
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.companyGrothDetails .companyGrothBox:hover .grothIcon i {
  transform: translateY(-15px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.companyGrothDetails .companyGrothBox h3 {
  font-family: var(--title-fonts);
  color: var(--title-fonts-color);
  font-size: 20px;
  margin: 20px 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.companyGrothDetails .companyGrothBox .listStyleOne li {
  list-style-type: none;
  text-align: left;
  font-size: 14px;
}
.companyGrothDetails .companyGrothBox .listStyleOne li i {
  font-size: 13px;
  margin-bottom: 15px;
}

/* ----------------------------------------
      About Company Growth CSS End
-------------------------------------------- */

/* ----------------------------------------
      Timeline CSS Start
-------------------------------------------- */
/* The actual timeline (the vertical ruler) */
.timelineSection {
  margin-bottom: 100px;
}
.timelineSection .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.timelineSection .timelineTitle h1 {
  text-align: center;
  font-family: var(--title-fonts);
  color: var(--title-fonts-color);
  font-size: 25px;
  margin: 0 0 15px 0;
}
.timelineSection .timelineTitle p {
  color: var(--paragraph-color);
  text-align: center;
  margin-bottom: 45px;
}

/* The actual timeline (the vertical ruler) */
.timelineSection .timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #d7d7d7;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timelineSection .timelineBox {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timelineSection .timelineBox::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: #d7d7d7;
  border: 4px solid #d7d7d7;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.timelineSection .left {
  left: 0;
}

/* Place the container to the right */
.timelineSection .right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.timelineSection .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.timelineSection .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.timelineSection .right::after {
  left: -13px;
}

/* The actual content */
.timelineSection .timeLineContent {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}

.timelineSection .timeLineContent h4 {
  font-family: var(--title-fonts);
  font-size: 18px;
  font-weight: 600;
}
.timelineSection .timeLineContent p {
  font-size: 14px;
  line-height: 20px;
  margin: 15px 0;
  color: var(--paragraph-color);
}
.timelineSection .timeLineContent .listStyleOne {
  margin: 20px 0;
}
.timelineSection .timeLineContent .listStyleOne li {
  list-style-type: none;
  font-family: var(--title-fonts);
  font-size: 15px;
  margin-bottom: 10px;
}
.timelineSection .timeLineContent .financeFigur span {
  display: block;
  font-size: 13px;
  font-weight: bold;
}
.timelineSection .timeLineContent .financeFigur h5 {
  font-size: 35px;
  font-weight: 900;
  color: var(--title-fonts-color);
}

.timelineSection .reveal {
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: 1s all ease;
}

.timelineSection .reveal.active {
  transform: translateY(0);
  opacity: 1;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .timelineSection .timeline::after {
    left: 31px;
  }

  /* Full-width containers */
  .timelineSection .timelineBox {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timelineSection .timelineBox::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .timelineSection .left::after,
  .right::after {
    left: 15px;
  }

  /* Make all right containers behave like the left ones */
  .timelineSection .right {
    left: 0%;
  }
}

/* --------------------------
      Timeline CSS End
----------------------------- */

/* ----------------------------------------
      Video - Vission - Mission CSS Start
-------------------------------------------- */
.ncodeVideoMission {
  margin: 0 0 70px 0;
}
.ncodeVideoMission .ncodeVideoIMGbg {
  background: url(../images/ncodeCorpo-video-IMG.jpg);
  background-repeat: no-repeat;
  min-height: 600px;
  background-position: -400px 0;
  opacity: 0.8;
}
.ncodeVideoMission .ncodeVideoIMGbg .companyVideoSection {
  text-align: center;
  position: relative;
}
.ncodeVideoMission .ncodeVideoIMGbg .companyVideoSection i {
  color: #fff;
  font-size: 250px;
  opacity: 0.3;
  margin-top: 180px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ncodeVideoMission .ncodeVideoIMGbg .companyVideoSection i:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ncodeVideoMission .missionNvissionSection {
  background: #35359e;
}
.ncodeVideoMission .vissionNvissionContainer {
  padding: 50px 150px 0 50px;
  color: #fff;
}
.ncodeVideoMission .vissionNvissionContainer .vissionNvissionText {
  margin-bottom: 80px;
}
.ncodeVideoMission .vissionNvissionContainer .vissionNvissionText h6 {
  font-size: 35px;
  font-weight: 200;
  margin-bottom: 15px;
}
.ncodeVideoMission
  .vissionNvissionContainer
  .vissionNvissionText
  .listStyleOne
  li {
  list-style-type: none;
  display: flex;
  color: #8f8ff9;
}
.ncodeVideoMission .vissionNvissionContainer .vissionNvissionText p {
  color: #8f8ff9;
}
.ncodeVideoMission
  .vissionNvissionContainer
  .vissionNvissionText
  .listStyleOne
  li
  i {
  color: #8f8ff9;
  margin-top: 5px;
}
/* ----------------------------------------
      Video - Vission - Mission CSS End
-------------------------------------------- */

/* ----------------------------------------
     Counter CSS Start
-------------------------------------------- */
.ncodeCounter {
  margin-bottom: 80px;
}
.ncodeCounter .counterBox { text-align:center;}
.ncodeCounter .counterBox i {
  font-size: 65px;
  color: var(--paragraph-color);
}
.ncodeCounter .counterBox figure {
  font-size: 90px;
  font-weight: 200;
  line-height: 65px;
  color: var(--title-fonts-color);
  margin: 22px 0;
}
.ncodeCounter .counterBox p {
  color: var(--paragraph-color);
  font-weight: bold;
}
/* ----------------------------------------
     Counter CSS End
-------------------------------------------- */

/*Inner Pages Banner Section*/
.innerPageBanner {background-repeat: no-repeat; min-height: 360px;}

.innerPageBanner.aboutUsPageBanner {background: url(../images/innear-page-banner/aboutUs-bannerImg.jpg); background-position: center; }
.innerPageBanner.ourManagementBanner {background: url(../images/innear-page-banner/ourManagement-bannerImg.jpg); background-position: center;}
.innerPageBanner.pkiDigitalCertiBanner {background: url(../images/innear-page-banner/pkiDigitalCerti-bannerImg.jpg); background-position: center;}
.innerPageBanner.servicesBanner {background: url(../images/innear-page-banner/services-bannerImg.jpg); background-position: center;}
.innerPageBanner.procurementBanner {background: url(../images/innear-page-banner/procurement-bannerImg.jpg); background-position: center;}
.innerPageBanner.miningBanner {background: url(../images/innear-page-banner/mining-bannerImg.jpg); background-position: center;}
.innerPageBanner.cloudBanner {background: url(../images/innear-page-banner/cloud-center-bannerImg.jpg); background-position: center;}
.innerPageBanner.cctvBanner {background: url(../images/innear-page-banner/cctv-bannerImg.jpg); background-position: center;}
.innerPageBanner.dataCenterBanner {background: url(../images/innear-page-banner/dataCenter-bannerImg.jpg); background-position: center;}
.innerPageBanner.softwareBanner {background: url(../images/innear-page-banner/software-bannerImg.jpg); background-position: center;}
.innerPageBanner.authenticationBanner {background: url(../images/innear-page-banner/authentication-bannerImg.jpg); background-position: center;}
.innerPageBanner.securePortalDevelopmentBanner {background: url(../images/innear-page-banner/secure-portal-development-bannerImg.jpg); background-position: center;}
.innerPageBanner.paymeneGetwayBanner {background: url(../images/innear-page-banner/paymentGetway-bannerImg.jpg); background-position: center;}
.innerPageBanner.healthBanner {background: url(../images/innear-page-banner/health-bannerImg.jpg); background-position: center;}
.innerPageBanner.educationDepartmentBanner {background: url(../images/innear-page-banner/education-department-bannerImg.jpg); background-position: center;}
.innerPageBanner.recruitmentCautionBanner {background: url(../images/innear-page-banner/recruitment-caution-bannerImg.jpg); background-position: center;}
.innerPageBanner.guideDocumentBanner {background: url(../images/innear-page-banner/guideDocument-bannerImg.jpg); background-position: center;}
.innerPageBanner.notificationActBanner {background: url(../images/innear-page-banner/notification-act-bannerImg.jpg); background-position: center;}
.innerPageBanner.faqBanner {background: url(../images/innear-page-banner/faq-bannerImg.jpg); background-position: center;}
.innerPageBanner.disclaimerBanner {background: url(../images/innear-page-banner/disclaimer-bannerImg.jpg); background-position: center;}
.innerPageBanner.privacyBanner {background: url(../images/innear-page-banner/privacy-policy-bannerImg.jpg); background-position: center -104px;}
.innerPageBanner.tokenDriversBanner {background: url(../images/innear-page-banner/tokenDrivers-bannerImg.jpg); background-position: center;}
.innerPageBanner.contactUsBanner {background: url(../images/innear-page-banner/contactUs-bannerImg.jpg); background-position: center;}
.innerPageBanner.careerBanner {background: url(../images/innear-page-banner/careerPost-bannerImg.jpg); background-position: 0 -86px;}
.innerPageBanner.companyPolicyBanner {background: url(../images/innear-page-banner/companyPolicy-bannerImg.jpg); background-position: center;}
.innerPageBanner.certificateBanner {background: url(../images/innear-page-banner/certificate-bannerImg.jpg); background-position: center;}
.innerPageBanner.partnersAssociatesBanner {background: url(../images/innear-page-banner/partners-and-associates-bannerImg.jpg); background-position: center;}
.innerPageBanner.awardsCertificatesBanner {background: url(../images/innear-page-banner/awardsCertificates-bannerImg.jpg); background-position: center;}
.innerPageBanner.searchCertificateBanner {background: url(../images/innear-page-banner/searchCertificate-bannerImg.jpg);background-position: center;}
.innerPageBanner.eSignBanner {background: url(../images/innear-page-banner/eSign-bannerImg.jpg);background-position: center;}
.innerPageBanner.innerPageBannerIMG {background: url(../images/innear-page-banner/innerPage-bannerImg.jpg);background-position: center;}
.innerPageBanner.repositoryBanner {background: url(../images/innear-page-banner/repository-bannerImg.jpg);background-position: center;}
.innerPageBanner.trainingBanner {background: url(../images/innear-page-banner/training-bannerImg.jpg);background-position: center;}
.innerPageBanner.onlineDCSsalesBanner {background: url(../images/innear-page-banner/onlineDSC-Sales-bannerImg.jpg);background-position: center;}
.innerPageBanner.sslCertificateBanner {background: url(../images/innear-page-banner/sslCertificate-bannerImg.jpg);background-position: center;}
.innerPageBanner.documentSignerBanner {background: url(../images/innear-page-banner/documentSigner-bannerImg.jpg);background-position: center;}
.innerPageBanner.smartCityBanner {background: url(../images/innear-page-banner/smart-City-bannerImg.jpg);background-position: center;}
.innerPageBanner.caseStudyBanner {background: url(../images/innear-page-banner/caseStudy-bannerImg.jpg);background-position: center;}
.innerPageBanner.ratingBanner {background: url(../images/innear-page-banner/rating-bannerImg.jpg);background-position: center;}



/*Slider Animation*/
.innerPageBanner .bannerSlideMain {
  position: relative;
}
.innerPageBanner .bannerSlideMain .slideInnerIMG {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;  
  transform: translate3d(0px, 0px, 0px);
  transition: all 0ms ease 0s;
}
.bannerSlideMainTaxt {
  position: absolute;
  width: 50%;
  top: 50%;
  transform: translateY(-50%);
}
/* ----------------------------------------
     About Us Page CSS Start
-------------------------------------------- */

.innerPageBannerContainer {
  position: relative;
  text-align: center;
  top: 160px;
}

.innerPageBannerContainer .innerPageTitle h1 {
  color: #fff;
  font-family: var(--title-fonts);
  font-size: 45px;
  text-align: center;
  font-weight: 600;
}

.innerPageBanner .breadcrumb {
  background: #00000054;
  border-radius: 0;
  padding: 10px 25px;
  display: inline-flex;
  opacity: 0.8;
}
.innerPageBanner .breadcrumb span {
  display: block;
  color: #fff;
  margin-left: 15px;
}
.innerPageBanner .breadcrumb li a {
  color: #fff;
}
.innerPageBanner .breadcrumb li {
  margin-left: 10px;
  color: #9a9a9a;
}
/* ----------------------------------------
     About Us Page CSS End
-------------------------------------------- */

/* ----------------------------------------
     Our Management CSS Start
-------------------------------------------- */
.ourManagement {
  margin: 60px 0;
  position: relative;
}
.ourManagement .ourManagementTitle h1 {
  font-size: 26px;
  text-align: center;
  color: #000;
}
.ourManagement .ourManagementTitle p {
  color: var(--paragraph-color);
  font-size: 14px;
  text-align: center;
  margin: 15px 0 35px 0;
}
.ourManagement p {
  color: var(--paragraph-color);
  font-weight: 500;
}
.ourManagement .ManagementTeam {
  text-align: center;
  margin-bottom: 30px;
}
.ourManagement .ManagementTeam img {
  border: 10px solid #fff;
  box-shadow: 4px 4px 0px 0px #00000036;
}
.ourManagement .ManagementTeam h1 {
  font-size: 18px;
  margin: 15px 0 5px 0;
  text-align: center;
  color: #000;
}

.ourManagement .btn-primary {
  background: none;
  border: none;
}

.ourManagement .btn-primary:focus,
.btn-primary.focus {
  box-shadow: none;
}

.ourManagement .btn-primary:not(:disabled):not(.disabled):active:focus,
.ourManagement .btn-primary:not(:disabled):not(.disabled).active:focus,
.ourManagement .show > .ourManagement .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.ourManagement p {
  color: var(--paragraph-color);
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 15px;
}
.ourManagement .modal-header h4 {
  font-size: 18px;
}
.ourManagement .btn-danger {
  color: #000000;
  background-color: #fde40d;
  border: none;
  font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
.ourManagement .btn-danger:not(:disabled):not(.disabled):active {
  background: #a6a6ff;
    color: #000;
    transition: 0.9s 0s;
    outline: none;
    box-shadow: none;
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: none;
  border: none;
  outline: none; 
}
.modal-backdrop.show {opacity: 0.8;}

.ManagementTeam .btn-primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #dfdfdf;
    border-color: #005cbf;
}
.ourManagement h2 {
    font-size: 21px;
    color: var(--title-fonts-color);
    margin: 25px 0;
    border-bottom: 1px solid;
    border-color: #bdbdbd;
    padding-bottom: 15px;
  }

  .ourManagement .table-bordered th, .table-bordered td {
    border: 1px solid #c1bcbc;
  }

  .ourManagement .table-bordered tr:nth-child(even):hover, .ourManagement .table-bordered tr:nth-child(odd):hover {
    background: #fff;
  } 

  .ourManagement .table-bordered tr:nth-child(even) {background: #f7f7f7}
  .ourManagement .table-bordered tr:nth-child(odd) {background: #eeeeee}

/* ----------------------------------------
     Our Management CSS End
-------------------------------------------- */

/* ----------------------------------------
     Business Services Section CSS Start
-------------------------------------------- */
.businessServicesSection {
  margin: 50px 0;
}
.businessServicesSection .sideStickyForm {
  position: sticky;
  top: 80px;
  height: 1002px;
  margin-bottom: 20px;
}

.businessServicesSection .businessFeedBackForm {
  background: #22366d;
  padding: 25px;
  margin-left: 25px;
  border-radius: 5px;
}
.businessServicesSection .businessFeedBackForm .formTitle h2 {
  font-family: var(--title-fonts);
  font-size: 21px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 15px;
}

.businessServicesSection .businessFeedBackForm .form-group .form-control {
  border-radius: 0;
  border: 1px solid #4d5979;
  background: #22366d;
  color: #fff !important;
}
.businessServicesSection .businessFeedBackForm .form-group .form-control:focus {
  box-shadow: 0 0 0 5px rgb(18 34 76 / 45%);
}

.businessServicesSection .businessFeedBackForm .form-group input {
  color: #fff !important;
}

.businessServicesSection .businessFeedBackForm button {
  width: 100%;
  border: none;
  background: #fde40d;
  padding: 13px;
  color: #000;
  font-weight: 600;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 25px;
}

/* form theme design option 02 start */

.businessServicesSection .businessFeedBackFormThemeTwo {
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 0 10px 4px #00000008;
}
.businessServicesSection .businessFeedBackFormThemeTwo .formTitle h2 {
  font-family: var(--title-fonts);
  font-size: 21px;
  color:var(--title-fonts-color);
  font-weight: 400;
  margin-bottom: 15px;
}
.businessServicesSection .businessFeedBackFormThemeTwo .formTitle p {
  font-size: 14px;
  color: var(--paragraph-color);
  margin-bottom: 15px;
}
.businessServicesSection .businessFeedBackFormThemeTwo .form-group .form-control {
  border-radius: 3px;
  border: 1px solid #e1e1e1;
  background: #efefef;
  color: #495057 !important;
  height: 50px;
}
.businessServicesSection .businessFeedBackFormThemeTwo .form-group .form-control:focus {
  box-shadow: 0 0 0 5px rgb(231 231 231 / 45%);
}

.businessServicesSection .businessFeedBackFormThemeTwo .form-group input {
  color: #000 !important;
}

.businessServicesSection .businessFeedBackFormThemeTwo button {
  width: 100%;
  border: none;
  background: #fde40d;
  padding: 13px;
  color: #000;
  font-weight: 600;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 25px;
}

/* form theme design option 02 END */
.businessServicesSection .servicesBoxDesign {
position: relative;
padding: 40px;
margin-top: 30px;
border-radius: 8px;
z-index: 0;
border: 2px solid #fff;
background-color: #fff;
min-height: 458px;
}
.businessServicesSection .servicesBoxDesign:hover:before {
  opacity: 1;
  left: 0;
  right: auto;
  width: 100%;
  -webkit-transform-origin: right;
  transform-origin: right;  
  
}
.businessServicesSection .servicesBoxDesign:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  border-radius: 8px;
  background-color: #ebebeb;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 8px;
  cursor: pointer;
}

.businessServicesSection .servicesBoxDesign .item > i {
  display: inline-block;
  font-size: 60px;
  margin-bottom: 30px;
  color: var(--icon-color);
}
.businessServicesSection .servicesBoxDesign .item a i {
  font-size: 15px;
  border: 1px solid #dadada;
  width: 48px;
  height: 35px;
  border-radius: 50px;
  text-align: center;
  line-height: 33px;
  color: var(--title-fonts-color);
}
.businessServicesSection .servicesBoxDesign .item h4 {
  margin-bottom: 15px;
}
.businessServicesSection .servicesBoxDesign .item h4 a {
  font-size: 20px;
  color: var(--title-fonts-color);
  margin: 0 0 15px 0;
}
.businessServicesSection .servicesBoxDesign .item h4 a:hover {
  text-decoration: none;
}
.businessServicesSection .servicesBoxDesign .item p {
  font-size: 14px;
  color: var(--paragraph-color);
  margin-bottom: 25px;
}

.servicessBannerBox {
  background: url(../images/customersatiSatisfactionIMG.jpg);
  background-repeat: no-repeat;
  border-radius: 5px;
  min-height: 257px;
  background-position: 0px -20px;
  color: #fff;
  padding: 25px;
  text-align: right;
}
.servicessBannerBox h3,
.consultingBannerBox h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 15px;
}
.servicessBannerBox p,
.consultingBannerBox p {
  font-size: 14px;
  padding-left: 70px;
  font-weight: 600;
}

.consultingBannerBox {
  background: url(../images/consultingBannerIMG.jpg);
  background-repeat: no-repeat;
  border-radius: 5px;
  min-height: 257px;
  background-position: -35px -14px;
  color: #fff;
  padding: 25px;
  text-align: right;
}

/* ----------------------------------------
     Business Services Section CSS End
-------------------------------------------- */

/* ----------------------------------------
     PKI Digital Section CSS Start
-------------------------------------------- */
.businessServicesSection .pkiDigitalTxtContainer p {
  font-size: 15px;
  line-height: 27px;
  color: var(--paragraph-color);
  margin-bottom: 15px;
}
.businessServicesSection .innerPageSubTitle {
  font-family: var(--title-fonts);
  color: var(--title-fonts-color);
  font-size: 24px;
  margin-bottom: 18px;
}
.pkiDigitalTxtContainer address {
  font-size: 14px;
  color: var(--paragraph-color);
  line-height: 25px;
}
.pkiDigitalTxtContainer address h2 {
  font-size: 16px;
  margin: 25px 0 10px 0;
  font-weight: 700;
}
.businessServicesSection .pkiDigitalTxtContainer img {
  margin: 15px 0;
}

.businessServicesSection .pkiDigitalTxtContainer .innerPageliStyle,
.businessServicesSection .pkiDigitalTxtContainer .innerPageliStyle-2 {
  margin-bottom: 25px;
}
.businessServicesSection .pkiDigitalTxtContainer .innerPageliStyle li {
  list-style-type: none;
  font-size: 16px;
  margin: 30px 0 7px 0;
  color: var(--title-fonts-color);
  font-weight: 600;
}
.businessServicesSection .pkiDigitalTxtContainer .innerPageliStyle-2 li {
  list-style-type: none;
  font-size: 16px;
  margin: 0px 0 7px 0;
  color: var(--title-fonts-color);
  font-weight: 600;
}
.businessServicesSection .pkiDigitalTxtContainer .innerPageliStyle p {
  margin: 0 0 15px 0px;
}
.businessServicesSection .pkiDigitalTxtContainer .innerPageliStyle li i {
  margin-right: 10px;
  color: var(--icon-color);
}
.businessServicesSection .pkiDigitalTxtContainer .innerPageliStyle li:hover i {
  color: #b30b00;
}

.businessServicesSection .pkiDigitalTxtContainer .innerPageliStyle li a,
.businessServicesSection .pkiDigitalTxtContainer .innerPageliStyle-2 li a {
  color: var(--title-fonts-color);
}
.businessServicesSection .pkiDigitalTxtContainer .innerPageliStyle li a:hover {
  color: #000;
}

.pkiDigitalTxtContainer .innerPageSubContentContainer h2 {
  font-size: 16px;
  margin: 34px 0 15px 0;
}
.pkiDigitalTxtContainer .innerPageSubContentContainer {
  margin-left: 25px;
}
.pkiDigitalTxtContainer .innerPageSubContentContainer h3 {
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--paragraph-color);
}
.pkiDigitalTxtContainer .innerPageSubContentContainer p {
  color: var(--paragraph-color);
  font-size: 14px;
}
.pkiDigitalTxtContainer .innerPageSubContentContainer .innerPageSubliStyle li {
  list-style-type: inherit;
  color: var(--paragraph-color);
  display: flex;
  font-size: 14px;
  line-height: 24px;
  font-weight: inherit;
  margin-top: inherit;
}

.pkiDigitalTxtContainer .innerPageSubContentContainer .innerPageSubliStyle li i {
  color: var(--paragraph-color);
  font-size: 13px;
  margin-top: 5px;
}
.pkiDigitalTxtContainer .innerPageSubContentContainer .innerPageSubliStyle li strong {
  margin-right: 5px;
}
.pkiDigitalTxtContainer .innerPageSubContentContainer .innerPageSubliStyle li span {font-weight: 600;}
.pkiDigitalTxtContainer .innerPageSubContentContainer .innerPageSubliStyle .divHightLishtStyle {
  list-style-type: inherit;
  color: var(--paragraph-color);
  font-size: 14px;
  line-height: 30px;
}
.pkiDigitalTxtContainer .innerPageSubContentContainer .innerPageSubliStyle .divHightLishtStyle a {
  color: var(--paragraph-color);
}
.pkiDigitalTxtContainer .innerPageSubContentContainer .innerPageSubliStyle .divHightLishtStyle i {
  margin-right: 10px;
}
.innerPageliStyle .innerPageSubContentContainer ol li {
  list-style: decimal;
}

.pkiDigitalTxtContainer .innerPageSubContentContainer h2 {
  font-size: 16px;
  margin: 34px 0 15px 0;
}
.pkiDigitalTxtContainer .innerPageSubContentContainer {
  margin-left: 0px;
}

.innerPageliStyle .innerPageSubContentContainer ol li {
  list-style: decimal;
}
.innerPageolliStyle {margin-bottom: 25px;}
.innerPageolliStyle li {
  list-style-type: none;
  margin-top: 10px;
}
.innerPageolliStyle li i {
  margin-right: 10px;
}
.innerPageolliStyle ol {
  list-style-type: inherit;
}
.innerPageolliStyle ol li {
  list-style: decimal;
  margin-left: 20px;
  color: var(--paragraph-color);
  font-size: 14px;
}
.innerPageolliStyle p {
  margin-top: 15px;
}
.innerPageolliStyle2 p {
  margin-top: 10px;
}
.innerPageolliStyle ol li a{
  color: var(--title-fonts-color);
  text-decoration: none;
}
.innerPageolliStyle ol li a:hover {
  color: var(--title-fonts-color);
  text-decoration: underline;
}

ul.lowerAlphaLiStyle li {
  list-style: lower-alpha;
}

.pointLiTitle
  {
  list-style-type: none;
    font-size: 16px;
    margin: 30px 0 7px 0;
    color: var(--title-fonts-color);
    font-weight: 600;
  }

/* ----------------------------------------
     PKI Digital Section CSS End
-------------------------------------------- */

/* ----------------------------------------
     Support Sales page CSS Start
-------------------------------------------- */
.supportSalesBannerContainer {
  position: relative;
  background: url(../images/supportSalesBannerIMG.jpg) no-repeat;
  min-height: 220px;
  margin-bottom: 25px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  background-size: cover;
}
.supportSalesBannerContainer .supportSalesBanner {
  position: absolute;
  background-repeat: no-repeat;
  border-radius: 5px;
  width: 100%;
  text-align: right;
  padding: 25px;
}
.supportSalesBannerContainer .supportSalesBanner h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--title-fonts-color);
}
.supportSalesBannerContainer .supportSalesBanner p {
  font-size: 14px;
  margin: 5px 0 10px 0;
}
.supportSalesBannerContainer .supportSalesBanner h3 {
  font-weight: 900;
  color: var(--paragraph-color);
}
.supportSalesBannerContainer .supportSalesBanner span {
  font-size: 13px;
  margin-top: 15px;
  display: block;
}
/* ----------------------------------------
     Support Sales page CSS End
-------------------------------------------- */

/* ----------------------------------------
     FAQ page CSS Start
-------------------------------------------- */
.InnerPageBannerBox {
  margin-top: 25px;
}
.faqBannerBox {
  background: url(../images/faqBannerIMG.jpg);
  min-height: 257px;
  border-radius: 5px;
  background-repeat: no-repeat;
  color: #fff;
  padding: 25px;
  text-align: left;
  background-size: cover;
}
.faqBannerBox h3,
.feedbackBannerBox h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 15px;
}
.faqBannerBox a,
.feedbackBannerBox a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}
.faqBannerBox a:hover,
.feedbackBannerBox a:hover {
  color: #fde40d;
}
.feedbackBannerBox {
  background: url(../images/feedbackBannerIMG.jpg);
  min-height: 257px;
  border-radius: 5px;
  background-repeat: no-repeat;
  color: #fff;
  padding: 25px;
  background-size: cover;
}

.faqAccordionBox .card-header {
  background: linear-gradient(
    270deg,
    rgba(238, 238, 240, 1) 0%,
    rgba(213, 203, 255, 1) 100%
  );
  border: 1px solid #ffffff;
}
.faqAccordionBox .card-header,
.faqAccordionBox .btn {
  padding: 0rem 0rem;
}
.faqAccordionBox .btn:not(:disabled):not(.disabled) {
  padding: 20px 25px;
  width: 100%;
  text-align: left;
}
.faqAccordionBox .btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}
.faqPageTableDesign table {
  box-shadow: 5px 5px #88888857;
}

.faqPageTableDesign table th {
  font-size: 16px;
  background: #49557e;
  border: 1px solid #bdc1cf;
  color: #fff;
  padding: 12px 7px;
  font-weight: 500;
}
.faqPageTableDesign table td {
  padding: 10px 7px;
  border: 1px solid #e5e5e5;
  font-size: 15px;
}
.faqPageTableDesign .tableTR1 {
  background: #f8f8f8;
}
/* ----------------------------------------
     FAQ page CSS End
-------------------------------------------- */

/* ----------------------------------------
     Token Drivers CSS Start
-------------------------------------------- */

.tokenDriversSection .tokenDriversContainer .tokenDriversBox {
  background: rgb(135, 90, 254);
  background: linear-gradient(
    0deg, 
    rgba(135, 90, 254, 1) 0%,
    rgba(91, 90, 254, 1) 100%
  );
  border-radius: 5px;
  text-align: center;
  padding: 30px;
  margin-bottom: 35px;
  /* min-height: 511px; */
}
.tokenDriversSection .tokenDriversContainer .tokenDriversBox .tokenDriverBGcolor {
  background: #5d5afe;
  border-radius: 100%;
  height: 250px;
  width: 250px;
  margin: 0 auto 20px auto;
}
.tokenDriversSection .tokenDriversContainer .tokenDriversBox .tokenDriverBGcolor img {
  position: relative;
  top: 80px;
  width: 80%;
}
.tokenDriversSection .tokenDriversContainer .tokenDriversBox .tokenDriversDetails h2 {
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px dotted #fff;
  padding-bottom: 15px;
}
.tokenDriversSection .tokenDriversContainer .tokenDriversBox .tokenDriversDetails .tokenDriverGuideBox {
  margin-top: 25px;
  position: relative;
}
.tokenDriversSection .tokenDriversContainer .tokenDriversBox .tokenDriversDetails .tokenDriverGuideBox ul li {
  text-align: left;
  list-style-type: none;
  font-size: 18px;
  margin-top: 15px;
}
.tokenDriversSection .tokenDriversContainer .tokenDriversBox .tokenDriversDetails .tokenDriverGuideBox ul li i {
  position: absolute;
  right: 0;
}
.tokenDriversSection .tokenDriversContainer .tokenDriversBox .tokenDriversDetails .tokenDriverGuideBox ul li a {
  color: #fff;
}
.tokenDriversSection .tokenDriversContainer .tokenDriversBox .tokenDriversDetails .tokenDriverGuideBox ul li a:hover { 
  color: #fde40d;
}
/* ----------------------------------------
     Token Drivers CSS End
-------------------------------------------- */

/* ----------------------------------------
     Contact Us Page CSS Start
-------------------------------------------- */
.officeAddressBox {
  padding: 25px 0 25px 0;
}
.officeAddressBox h1 {
  font-size: 18px;
  color: var(--title-fonts-color);
  font-weight: 700;
  margin-bottom: 10px;
}
.officeAddressBox h2 {
  font-size: 16px;
  color: var(--title-fonts-color);
  margin-bottom: 7px;
}
.officeAddressBox address {
  font-size: 14px;
  color: var(--paragraph-color);
}
.contactFormBGcolor {
  background: #22366d;
  padding: 50px;
}

.contactFormSection input,
.contactFormSection textarea {
  padding: 10px 0px 15px 0px;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #ffffff21;
  background-color: unset;
  color: #ffffff;
  width: 100%;
  max-width: 100%;
  opacity: 1;
}
.contactFormSection input:focus,
.contactFormSection textarea:focus {
  outline: none;
  box-shadow: none;
}
.contactFormSection .titleSection {
  margin-bottom: 40px;
}
.contactFormSection .titleSection h2 {
  color: #bcc0cb;
  font-size: 45px;
  font-weight: 300;
}

.contactFormSection textarea {
  height: 120px;
}

.submitBTN input {
  width: 100%;
  border: none;
  background: #fde40d;
  padding: 13px;
  color: #000;
  font-weight: 600;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 25px;
}

.contactOfficeTitle {
  margin-top: 25px;
  font-size: 22px;
}

.officeAddressBox address, .officeAddressBox h5, .officeAddressBox p, .officeAddressBox a {
  color: var(--paragraph-color);
  font-size: 15px;
}
.officeAddressBox a:hover {
  color: var(--title-fonts-color);
}
.officeAddressBox h5  {
  
  font-weight: 600;
}
.officeAddressBox .text-primary {
  display: block;
  width: 35px;
  color: #99a5b3 !important;
}
.contact-table-format {
  padding: 20px;
  border: 1px solid #d0d0d0;
  background: #fff;
}
/* ----------------------------------------
     Contact Us Page CSS End
-------------------------------------------- */

.newsletterBanner {
  background: url(../images/innerBannerElement.png) #e5e5e5;
  background-repeat: no-repeat;
  border-radius: 5px;
  min-height: 257px;
  background-position: right 0px;
  color: #fff;
  padding: 25px;
  text-align: left;
  margin: 25px 0 0px 25px;
}
.newsletterBanner h3 {
  font-size: 22px;
  color: #000;
}
.newsletterBanner h4 {
  font-size: 35px;
  font-weight: 300;
  color: #22366d;
  margin: 5px 0 20px 0;
}
.corporateProfile {position: relative;}
.corporateProfile h5  {
  font-size: 32px;
  font-weight: 400;
  margin-top: 5px;
  color: #22366d;
}
.corporateProfile img {position: absolute; margin-top: 27px;}

/* ----------------------------------------
     Career Post Page CSS Start
-------------------------------------------- */
.careerPostAccrdionBox p {
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 15px;
  color: var(--paragraph-color);
}
.careerPostAccrdionBox .applyNowBtn {
  text-align: right;
}
.careerPostAccrdionBox .applyNowBtn a {
  background: #fde40d;
  display: inline-block;
  padding: 7px 12px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}
.careerPostAccrdionBox .applyNowBtn a:hover {
  background: #a6a6ff;
  color: #000;
  transition: 0.9s 0s;
}

.customeBTN a{
border: none;
font-size: 14px;
color: #fff;
background: #a6a6ff;
padding: 11px 32px;
border-radius: 3px;
text-transform: uppercase;
margin-top: 30px;
box-shadow: 0 0 6px 1px #00000026;
-webkit-transition: 0.3s all ease;
-o-transition: 0.3s all ease;
transition: 0.3s all ease;
display: inline-block;
}

.customeBTN a:hover {box-shadow: none;}

.leftbarBannerIMG img {margin-left: 25px;}
/* ----------------------------------------
     Career Post Page CSS End
-------------------------------------------- */


/* ----------------------------------------
     Certificate Page CSS Start
-------------------------------------------- */
.certificateContainerBox {
  background: #fff;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 25px;
}
.certificateContainerBox h1 {
  font-family: var(--title-fonts);
  font-size: 17px;
  font-weight: 700;
  color: var(--title-fonts-color);
}
.certificateContainerBox ol li {
  margin: 0 0 10px 17px ;
  padding: 0 0 0 5px ;
  line-height: 21px;
  color: var(--paragraph-color);
  font-size: 14px;
}
.certificateContainerBox img {
  margin: 20px 0 0px 0;
}
.certificateContainerBox .logoBorder {
  border: 1px solid #000;
  padding: 5px;
}
.certificateContainerBox p {
  font-size: 12px;
  margin-bottom: 25px;
}
/* ----------------------------------------
     Certificate Page CSS End
-------------------------------------------- */



/* ----------------------------------------
     Banners CSS Start
-------------------------------------------- */

.taxDeclarationBanner {
  position: relative;
  background: rgb(104,221,255);
  background: linear-gradient(180deg, rgba(104,221,255,1) 0%, rgba(149,140,255,1) 100%);
  background-repeat: no-repeat;
  border-radius: 5px;
  min-height: 287px;
  color: #fff;
  padding: 25px;
  text-align: left;
  margin: 0px 0 0px 25px;
  width: auto;
}
.taxDeclarationBanner h3 {
  font-size: 22px;
  color: #000;
  margin-bottom: 15px;
  
}
.taxDeclarationBanner h4 {
  font-size: 35px;
  font-weight: 700;
  color: #22366d;
  margin: 5px 0 00px 0;
}
.taxDeclarationBanner p {
  padding-right: 50%;
  margin-bottom: 15px;
  color: #fff;
}

.taxDeclarationBanner .taxDeclBannerIMG img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.gnfcInfoTowerBanner {
  position: relative;
 background: url(../images/gnfcInfoTowerIMG.png) #e5ecfa;
 background-repeat: no-repeat;
 border-radius: 5px;
 min-height: 377px;
 color: #fff;
 padding: 25px;
 text-align: left;
 margin: 25px 0 0px 25px;
 width: auto;
 background-position: -13px 61px;
 background-size: cover;
}
.gnfcInfoTowerBanner h3 {
  font-size: 22px;
  color: #000;
  margin: 5px 0 00px 0;
}
.gnfcInfoTowerBanner p {
  color:#22366d;
}
.gnfcInfoTowerBanner h4 {
  font-size: 35px;
  font-weight: 700;
  color: #22366d;
  margin-bottom: 15px; 
}
.gnfcInfoTowerBanner a img {
  position: absolute;
  bottom: 25px;
}

/* ----------------------------------------
     Banners CSS End
-------------------------------------------- */

/* ----------------------------------------
     Search Certificate CSS Start
-------------------------------------------- */

.searchCertificateContainer {
  background: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
  }
  
a .searchCertificateContainer  {color: #000;}
a:hover .searchCertificateContainer  {color:var(--title-fonts-color); background: #cbcdff;}
.searchCertificateContainer h1 {
  font-size: 18px;
  font-weight: 600;
}

.searchCertificateContainer p {
  color: var(--paragraph-color);
  font-size: 14px;
}
/* ----------------------------------------
     Search Certificate CSS End
-------------------------------------------- */

/* ----------------------------------------
     Live Chat Option CSS Start
-------------------------------------------- */

#liveChatContainer {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 150;
}
.whatsAppIcon {
  position: fixed;
  right: 19px;
  bottom: 23px;
  right: 76px; 
  z-index: 15;
}
.whatsAppIcon img:hover {
  margin-bottom: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
/* ----------------------------------------
     Live Chat Option CSS End
-------------------------------------------- */


/* ----------------------------------------
     Pricing CSS Start
-------------------------------------------- */
.pricingCertificatesBox {
  background: url(../images/dscPriceListBannerBG.png) #062a51;
  background-repeat: no-repeat;
  min-height: 352px;
  border-radius: 5px;
  background-position: -15px -189px;
  padding: 30px;
  margin-bottom: 25px;
}
.pricingDscForTenderBox {
  background: url(../images/dscPriceListEncryption-tender.png) #062a51;
  background-repeat: no-repeat;
  min-height: 352px;
  border-radius: 5px;
  background-position: -15px -147px;
  padding: 30px;
  margin-bottom: 25px;
}
.priceListImportExportBox {
  background: url(../images/dscPriceListImportExportBG.png) #062a51;
  background-repeat: no-repeat;
  min-height: 352px;
  border-radius: 5px;
  background-position: -15px -143px;
  padding: 30px;
  margin-bottom: 25px;
}
.pricingCertificatesBox .pricingTitle,
.pricingDscForTenderBox .pricingTitle,
.priceListImportExportBox .pricingTitle{
  font-size: 35px;
  color: #fde40d;
  font-weight: 200;
}

.pricingCertificatesBox .pricingType,
.pricingDscForTenderBox .pricingType,
.priceListImportExportBox .pricingType{
  color: #fff;
}

.pricingCertificatesBox .pricingPriceDetails,
.pricingDscForTenderBox .pricingPriceDetails,
.priceListImportExportBox .pricingPriceDetails {
  position: absolute;
  color: #fff;
  margin-top: 35px;
}
.pricingCertificatesBox .pricingPriceDetails .pricingDuration,
.pricingDscForTenderBox .pricingPriceDetails .pricingDuration,
.priceListImportExportBox .pricingPriceDetails .pricingDuration {
  font-size: 20px;
  font-weight: 700;
  line-height: 18px;
}
.pricingCertificatesBox .pricingPriceDetails p,
.pricingDscForTenderBox .pricingPriceDetails p,
.priceListImportExportBox .pricingPriceDetails p  {
  font-size: 14px;
  line-height: 20px;
}
.pricingCertificatesBox .pricingPriceDetails figure,
.pricingDscForTenderBox .pricingPriceDetails figure,
.priceListImportExportBox .pricingPriceDetails figure {
  font-size: 35px;
  font-weight: 800;
  line-height: 30px;
}
.pricingPriceDetails a  {
  background: #fde40d;
  color: #000;
  font-size: 12px;
  border-radius: 2px;
  border: none;
  font-weight: 600;
  padding: 5px 8px;
  text-transform: uppercase;
  margin-top: 15px;
  display: inline-block;
}
.dscPriceTitle {
  font-size: 21px;
  font-weight: 500;
  color: var(--title-fonts-color);
  margin-bottom:15px ;
}
.dscPricingBanner {
background: url(../images/innerBannerElements-02.png) #05274c;
border-radius: 5px;
min-height: 200px;
background-position: -80px -120px;
padding: 25px;
}
a .dscPricingBanner h3, a .downloadUtilityBanner  h3{
font-size: 21px;
font-weight: 800;
margin-bottom: 15px;
color: #fff;
}
a .dscPricingBanner p, a .downloadUtilityBanner p { 
  color: #fff;
}
a:hover .dscPricingBanner h3, a:hover .downloadUtilityBanner  h3 {
  color: #fde40d;
}
.downloadUtilityBanner {
background: url(../images/innerBannerElements-03.png) #205b91;
border-radius: 5px;
min-height: 200px;
background-position: -183px -90px;
padding: 25px;
}
/* ----------------------------------------
     Pricing CSS End
-------------------------------------------- */

/* ----------------------------------------
     Award and Certificate CSS Start
-------------------------------------------- */
.awardTitle {
  color: var(--title-fonts-color);
  font-size: 16px;
  margin-bottom: 10px;
}
.awardsCertificatesBox {
  background: #fff;
  padding: 25px;
  border-radius: 5px;
}
.awardsCertificatesBox h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 7px;
 }
.awardsCertificatesBox p {
  font-size: 14px;
  color: var(--paragraph-color);
}
/* ----------------------------------------
     Award and Certificate CSS End
-------------------------------------------- */

/* ----------------------------------------
    Repository CSS Start
-------------------------------------------- */
a .repositoryDocsBox {
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  margin-bottom: 25px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a .repositoryDocsBox:hover{
  background: #cbcdff;
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a .repositoryDocsBox p {
  font-weight: 600;
  font-size: 16px;
  color: var(--paragraph-color);
 }
a .repositoryDocsBox h3 {
  margin-bottom: 7px;
  font-size: 14px;
  color: var(--title-fonts-color);
}


/* ----------------------------------------
    Training CSS Start
-------------------------------------------- */
.businessServicesSection .donwloadCretiContainer  {
  list-style-type: none;
}

.donwloadCretiContainer .tableTD1 .fa-file-pdf, .donwloadCretiContainer .tableTD1 .fa-file-powerpoint {
  font-size: 18px;
  color: var(--paragraph-color);
}
.linkTableDesign table {
  box-shadow: 5px 5px #88888857;
}
.linkTableDesign table th {
  font-size: 16px;
  background: #49557e;
  border: 1px solid #49557e;
  color: #fff;
  padding: 12px 7px;
  font-weight: 500;
}
.linkTableDesign table td {
  border: 1px solid #bdc1cf;
  font-size: 15px;
}
.linkTableDesign table td a {
  padding: 10px 7px;
  display: block;
  color: var(--paragraph-color);
}
.linkTableDesign .tableTR1 {
  background: #f8f8f8;
}
.tableTitle{
  list-style-type: none;
  font-size: 18px;
  margin: 30px 0 7px 0;
  color: var(--title-fonts-color);
  font-weight: 600;
}
/* ----------------------------------------
    Training CSS End
-------------------------------------------- */


/* ----------------------------------------
    Online DSC progress bar CSS Start
-------------------------------------------- */

#dscProgressBar {padding: 10px;}
#dscProgressBar .dscProBarPart .proSection {margin-bottom: 25px;}
.dscProgressBarSection { margin: 0; list-style-type: none;  font-family:'Roboto', sans-serif; }
.dscProgressBarSection li { position: relative; color: #acb0b1; padding: 2px 0 2px 23px;  font-size: 21px;}
.dscProgressBarSection li a { color: inherit; }
.dscProgressBarSection li.done { color: #0d9424; font-size: 21px; }
.dscProgressBarSection li.done:before {color: #0d9424;content: "\f058";}
.dscProgressBarSection li.current { color: #294388; font-weight: bold;  font-size: 21px;}
.dscProgressBarSection li.current:before { color: #294388; content: "\f192"; }
.dscProgressBarSection li:before {position: absolute;left: 0;font: normal normal normal 14px/1 FontAwesome;font-size: 38px;background-color: #fff;content: "\f10c";}
@media all and (max-width: 600px) { 
    .dscProgressBarSection li:before { top: calc(50% - 8px); font-size: 16px; }
    }
@media all and (min-width: 600px) {
    .dscProgressBarSection { display: table; list-style-type: none; margin: 20px auto; padding: 0; table-layout: fixed; width: 100%; }
    .dscProgressBarSection li {
        display: table-cell;
        text-align: center;
        padding: 0;
        padding-bottom: 23px;
        white-space: nowrap;
        position: relative;
        border-left-width: 0;
        border-bottom-width: 4px;
        border-bottom-style: solid;
        border-bottom-color: #acb0b1;
        white-space:pre-wrap;
        }
    .dscProgressBarSection li.done { border-bottom-color: #0d9424; }
    .dscProgressBarSection li.current { color: #294388; border-bottom-color: #294388; }
    .dscProgressBarSection li.current:before { color: #294388; content: "\f192"; }
    .dscProgressBarSection li:before {bottom: -21px;left: 50%;margin-left: -9px;}
    }
/* ----------------------------------------
    Online DSC progress bar CSS END
-------------------------------------------- */

.fixed-bottom {right: inherit; z-index: 0 !important; display:block;} 
.fixed-bottom h4 {font-size: 21px; margin-bottom: 10px;}

.toast {
background-color: #fff;
    border-radius: 11px;
    position: fixed;
    /* width: 100%; */
    padding: 5px;
    font-size: 1em;
    z-index: 99;
    box-shadow: 0 6px 40px rgb(0 0 0 / 30%);
    bottom: 1.25em;
    right: 1.25em;
    left: 1.25em;
    display: none;
  }


/* ----------------------------------------
      Side bar CSS start
-------------------------------------------- */
.rightbarSublinks .widget {
  padding: 30px;
  box-shadow: 0px 0px 50px 0px rgb(7 14 39 / 10%);
  margin-bottom: 3rem;
  background-color: #fff;
  border-radius: 5px;
}
.rightbarSublinks .work-title {
  margin-bottom: 30px;
  padding-bottom: 15px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  font-size: 24px;
}
.rightbarSublinks .work-title::before {
  position: absolute;
  z-index: -1;
  height: 2px;
  width: 8rem;
  border-radius: 2rem;
  content: '';
  bottom: 0;
  left: 0;
  background-color: var(--title-fonts-color);
}
.rightbarSublinks .category-list ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rightbarSublinks .category-list ul li {
  border: 1px dashed #d6ccfe;
  -webkit-transition: 0s all;
    -o-transition: 0s all;
    transition: 0s all;
  list-style: none;
}
.rightbarSublinks .category-list ul li:hover {
  background-color: #d6ccfe;
  border: 1px solid transparent;
  transition: 250ms ease;
  -webkit-transition: 250ms ease;
}
.rightbarSublinks .category-list ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--title-fonts-color);
  padding: 13px 10px;
}
.rightbarSublinks .category-list ul li a i {
  color: #a6a6ff;
  display: inline-block;
  font-size: 15px;
}
/* ----------------------------------------
      Side bar CSS END
---------------------------------------- */

/* ----------------------------------------
      Cash study CSS Start
---------------------------------------- */

.cashStudyProcess {
  background-image: linear-gradient(to bottom, rgb(48 3 137 / 90%), rgb(2 136 145 / 70%)), url(../images/cashStudy-process-bg.png);
  background-size: cover;
  color: white;
  padding: 100px 30px;
  min-height: 350px;
}
.cashStudyprocessInfo {
  padding: 70px 25px 70px 0;
}
.cashStudyprocessInfo h1 { 
  font-size: 23px;
  text-align: center;
  margin-bottom: 26px;
  font-weight: 700;
}
.cashStudyprocessInfo p{ 
  font-size: 17px;
  line-height: 28px;
  text-align: center;
}
.processInfoGraphics h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}


.infoGraphicsCard.center {
  text-align: center;
}
.infoGraphicsCard.bg-white {
  padding: 30px;
}
.infoGraphicsCard {
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.bg-white {
  --bs-bg-opacity: 1;
  background-color: #fff;
  min-height: 250px;
  cursor: pointer;
}

.cashStudyProcess .col-lg-7 .row .col-lg-4:nth-child(2) {
  margin-top: 40px;
}
.cashStudyProcess .col-lg-7 .row .col-lg-4:nth-child(4) {
  margin-top: -40px;
}
.cashStudyProcess .col-lg-7 .row .col-lg-4:nth-child(6) {
  margin-top: -40px;
}

.infoGraphicsCard .icon i {
  background-color: #ececff;
  height: 65px;
  width: 65px;
  text-align: center;
  line-height: 65px;
  border-radius: 50%;
  font-size: 30px;
  color: #696969;
  display: inline-block;
  margin-bottom: 25px;
}

.infoGraphicsCard .icon .number {
  position: absolute;
  background: #00cf81;
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 1.3em;
  margin: 0px 0px 20px -28px;
  font-size: 10px;
  padding: 5px;
}

.infoGraphicsCard .icon i {
  background-color: #fff;
  height: 85px;
  width: 85px;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  font-size: 35px;
  color: #b1b1b1;
  display: inline-block;
  margin-bottom: 25px;
}
.infoGraphicsCard h3 {color: #fff;}
.bx {
  font-family: boxicons!important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gradient01 {
  background: rgb(3,173,180);
  background: linear-gradient(60deg, rgb(6 186 193) 0%, rgb(157 231 239) 100%);
}
.gradient02 {
  background: rgb(255,139,104);
  background: linear-gradient(60deg, rgba(255,139,104,1) 0%, rgba(250,234,149,1) 100%);
}

.cashStudyTableSection {
  position: relative;
  margin: 70px 0;
}
.cashStudyTableSection .cashStudyTableDesign {
  position: relative;
  padding: 25px;
  border-radius: 15px;
  background: #fff;
}

.cashStudyTableSection h2 {
  position: absolute;
  background: #fff;
  font-size: 18px;
  display: block;
  top: -25px;
  border-radius: 10px;
  padding: 10px 30px;
  font-weight: 800;
  text-transform: uppercase;
}
.cashStudyTableSection h2.challengesColor  {
  color: #cd4c34;
}
.cashStudyTableSection .challengesColor  i {
  color: #888888;
}
.cashStudyTableSection h2.solutionsColor, .cashStudyTableSection .solutionsColor  i {
  color: #257d51;
}

.cashStudyTableSection .cashStudyUlLiTable p {
  font-size: 16px;
  margin: 15px 0;
  font-weight: 600;
}
.cashStudyTableSection .cashStudyUlLiTable ul li {
  margin-bottom: 17px;
  display: inline-flex;
  color: var(--paragraph-color);
}
.cashStudyTableSection .cashStudyUlLiTable ul li i {
  margin-right: 10px;
  font-size: 23px;
}
.challengesColor {border: 2px solid #cd4c34;}
.solutionsColor {border: 2px solid #257d51;}

.graphTitle h2{
  font-family: var(--title-fonts);
  color: var(--title-fonts-color);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}

/* -----( e Procurement case study)----------- */

.projectStutsBG {
  background: rgb(213,221,234);
  background: linear-gradient(152deg, rgba(213,221,234,1) 0%, rgba(225,206,229,1) 100%);
  padding: 50px;
  border-radius: 7px;
}
.projectStutsBG .projectStatusContainer h4 {
  font-size: 21px;
  color: var(--title-fonts-color);
  margin-bottom: 15px;
}
.projectStutsBG .projectStatusContainer .projectHightData {
 padding: 15px;
 font-size: 15px;
}
.projectStutsBG .projectStatusContainer .projectHightData .rowmb {margin-bottom: 1px; background: #fff;}
.phdp {padding: 10px; font-weight: 600;}
.phdC-1 {background: #ff9f74;}
.phdC-2 {background: #00d0a6;}
.phdC-3 {background: #ffd07e;}
.phdC-4 {background: #03b4c0;}
.phdC-5 {background: #ca8cb1;}
.phdC-6 {background: #75c97e;}
.phdC-7 {background: #52c2c6;}
.phdC-8 {background: #c6a952;}
.pshp-10 {padding: 10px; border-right: 1px solid #e7e2f3;}
.projectHightData h5 {font-size: 14px; font-weight: 600; color: #6c6c6c;}
.projectHightData h6 {font-size: 19px; font-weight: 500; margin: 7px 0; }


.progress-container {
  width: 100%;
    height: 6px;
    background: #443852;
    z-index: 104;
    position: fixed;
}

.progress-bar {
  height: 6px;
  background: #04AA6D;
  width: 0%;
}