
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');




.root{
  --color-white: #fff;
  --color-graySuperLight: #f8f8f8;
  --color-grayLight: #eeeff2;
  --color-grayBorder: #cfd8e9;
  --color-grayMedium: #93969d;
  --color-grayDark: #554f4f;
  --color-black: #000;
  --color-blueHoarfrost: #ceddfb;
  --color-blueLight: #7172da;
  --color-blueMedium: #4543d9;
  --color-blueDark: #1f2aac;
  --color-orange: #ff8045;
  --color-gradient-left: linear-gradient(46.19deg,#ff8045 10.56%,#f5905e 13.74%,#e5ab87 23.3%,#d7c1aa 31.26%,#ccd2c4 40.81%,#c5ded7 50.37%,#c0e6e2 59.92%,#bfe8e6 69.48%,#cdc4f5 109.28%,#ffbd45 147.5%);
  --color-gradient-right: linear-gradient(110.15deg,#ff8045 -39.33%,#f5905e -35.98%,#e5ab87 -25.91%,#d7c1aa -17.52%,#ccd2c4 -7.45%,#c5ded7 2.62%,#c0e6e2 12.68%,#bfe8e6 22.75%,#cdc4f5 64.7%,#ffbd45 104.97%);
  --color-gradient-text: linear-gradient(89.88deg,#29166F 2.69%,#FF9900 43.19%,#75C5F0 72%,#ffbd45 99.83%);
  --shadow-dropdown: 0 16px 80px rgba(0,0,0,0.07);
  --ease: cubic-bezier(1,0,0,1);
  --ease-out: cubic-bezier(0.19,1,0.22,1);
  --ease-in: cubic-bezier(0.95,0.05,0.795,0.035);
  --easeOutQuart: cubic-bezier(0.25,1,0.5,1);
  --easeOutExpo: cubic-bezier(0.16,1,0.3,1);
  --control-size-min: 48px;
  --z-index-header: 99;
  --z-index-header-link: 2;
  --z-index-header-nav: 1;
  --z-index-dropdown: 10;
}




*{ margin: 0; padding: 0;}
body{
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  background: #fff;
  letter-spacing: -0.5px;
}
.bg-dark{
  background: #000 !important;
}
a:hover{
  color: #29166F;
}

.action{
   text-align: center;
   display: block;
   margin-top: 20px;
}

a.btn {
  text-decoration: none;
  color: #666;
   border: 2px solid #666;
   padding: 10px 15px;
   display: inline-block;
   margin-left: 5px;
}
a.btn:hover{
   background: #21115f;
   color: #fff;
    transition: .3s;
-webkit-transition: .3s;
}
.btn:before{
  font-family: FontAwesome;
  font-weight: normal;
  margin-right: 10px;
}
.github:before{content: "\f09b"}
.down:before{content: "\f019"}
.back:before{content:"\f112"}
.credit{
    background: #fff;
    padding: 12px;
    font-size: 9pt;
    text-align: center;
    color: #333;
    margin-top: 40px;

}
.credit span:before{
   font-family: FontAwesome;
   color: #e41b17;
   content: "\f004";


}
.credit a{
   color: #333;
   text-decoration: none;
}
.credit a:hover{
   color: #1DBF73; 
}
.credit a:hover:after{
    font-family: FontAwesome;
    content: "\f08e";
    font-size: 9pt;
    position: absolute;
    margin: 3px;
}


article li{
   color: #444;
   font-size: 15px;
   margin-left: 33px;
   line-height: 1.5;
   padding: 5px;
}
article h1,
article h2,
article h3,
article h4,
article p{
   padding: 14px;
   color: #333;
}
article p{
   font-size: 15px;
    line-height: 1.5;
}

.set-overlayer,
.set-glass,
.set-sticky {
	cursor: pointer;
	height: 45px;
	line-height: 45px;
	padding: 0 15px;
	color: #333;
	font-size: 16px;
}
.set-overlayer:after,
.set-glass:after,
.to-active:after,
.set-sticky:after {
	font-family: FontAwesome;
	font-size: 18pt;
	position: relative;
	float: right;
}
.set-overlayer:after,
.set-glass:after,
.set-sticky:after {
	content: "\f204";
	transition: .6s;
}

.to-active:after {
	content: "\f205";
	color: #008080;
	transition: .6s;
}
.set-overlayer,
.set-glass,
.set-sticky,
.source,
.theme-tray {
	margin: 10px;
	background: #f2f2f2;
	border-radius: 5px;
	border: 2px solid #f1f1f1;
	box-sizing: border-box;
}
/* Syntax Highlighter*/

pre.prettyprint {
	padding: 15px !important;
   margin: 10px;
	border: 0 !important;
  background: #f2f2f2;
  overflow: auto;
}

.source {
	white-space: pre;
	overflow: auto;
	max-height: 400px;
}
code{
    border:1px solid #ddd;
    padding: 2px;
    border-radius: 2px;
}
*{
  font-family: "Inter", "Roboto", Arial, sans-serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.3s alternate;
}

.dropdown-menu.dropdown-menu2 {
  width: 40% !important;
  left: 30% !important;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
  /* top: auto; */
  left: auto;
  border: 0;
  min-width: 210px;
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}
.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}
.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}
.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

.icons {
  display: inline-flex;
  margin-left: auto;
}
.icons a {
  transition: all 0.2s ease-in-out;
  padding: 0.2rem 0.4rem;
  color: #ccc !important;
  text-decoration: none;
}
.icons a:hover {
  color: white;
  text-shadow: 0 0 30px white;
}


/** Header changes **/

.bb-header {
  -webkit-box-shadow: 0px 4px 4px 1px rgb(224 224 224 / 25%);
  -moz-box-shadow: 0px 4px 4px 1px rgba(224,224,224,0.25);
  box-shadow: 0px 4px 4px 1px rgb(224 224 224 / 25%);
}

.bb-header .navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}
.bb-header .dropdown-toggle::after{
  display: none;
}

.bb-header span.drop-icon {
  margin-left: 8px;
}

.bb-header .navbar-nav li.nav-item {
  padding: 12px 16px;
}

.bb-header .dropdown-menu{
  border-radius: 1.25rem;
}

.bb-primary-btn{
    background: #29166F;
    border-radius: 25px;
    padding: 12px 25px !important;
    color: #fff !important;
    text-decoration: none;
    border: 0!important;
    text-align: center;
    display: block;
}

.bb-header a.nav-link.dropdown-toggle.show {
  color: #29176f !important;
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:hover span.drop-icon{
  color: rgb(41 23 111);
}
.navbar-light .navbar-nav .nav-link{
  color: #333;
  font-weight: 600;
}
.bb-header .mega-content ul.sub-menu li {
  list-style: none;
  padding: 10px 0;
  font-weight: 500;
}

.bb-header .mega-content ul.sub-menu li a{
  color: #333;
  text-decoration: none;
  font-size: 15px;
}
.bb-header .mega-content ul.sub-menu li a:hover{
  text-decoration: underline;
}

.mega-content ul.sub-menu {
  padding-left: 0;
}
.mega-content .sub-menu-title {
  text-transform: uppercase;
  color: #717171;
}
/* Home Banner section */

.bb-home-banner{
  /* background: url('../img/banner-image.jpg') no-repeat right; */
  background: url(../img/bb-bg-shape.png) no-repeat 100% top;
  background-size: 40%;
  position: relative;
  overflow: hidden;
}

.banner-wrapper {
  padding: 8% 0;
  width: 650px;
}

.banner-wrapper h1 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 50px;
}

#inner-banner{
  padding: 40px 0;
  background: none;
}
#inner-banner .inner-banner-wrapper{
  padding: 20px 0;
  width: 70%;
}

#inner-banner .inner-banner-wrapper h3{
  font-size: 2.8rem;
  font-weight: 500;
  background: linear-gradient(89.88deg,#ffffff 4.69%,#FF9900 20.19%,#75C5F0 45%,#ffbd45 60.83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.inner-sub-heading{
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: -1px;
}

.inner-sub-text{
  margin: 27px 0;
    font-weight: 200;
    font-size: 1.8rem;
    width: 60%;
    letter-spacing: -1px;
    line-height: 2.6rem;
}

#inner-banner .inner-banner-wrapper p{
  padding: 14px 0 0 0;
  font-size: 19px;
  width: 60%;
  margin-bottom: 0;
}

.inner-wrapper{
  padding: 80px 0;
}

.banner-wrapper h3{
  font-size: 2.8rem;
  font-weight: 500;
}

.banner-wrapper p{
  margin: 60px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.banner-wrapper ul{
  margin: 30px 0 30px 30px;
  padding: 0;
}

.banner-wrapper ul li{
  font-size: 18px;
  margin: 10px 0;
}

.home-section{
  padding: 80px 20px;
}

.home-section .text-gradient{
  background:linear-gradient(89.88deg,#29166F 2.69%,#FF9900 43.19%,#75C5F0 72%,#ffbd45 99.83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-section .home-heading{
  font-size: 3rem;
  width: 48%;
  font-weight: 500;
  letter-spacing: -3px;
}

.about-cta-section{
  padding: 50px 20px;
}

.inner-wrapper h2{
  font-size: 4rem;
}

.Xperience-text{
  font-size: 18px;
  line-height: 32px;
}
#bb-services {
  background: url(../img/dots-right.png) right bottom no-repeat, url(../img/dots-left.png) left top no-repeat;
  background-size: 3%;
}

.inner-para-text p{
  font-size: 16px;
    color: #444;
    line-height: 1.8rem;
    margin-bottom: 1.8rem;
}

.inner-para-text-big p{
  font-size: 20px;
  color: #222;
  line-height: 2rem;
  width: 80%;
}

.w-70{
  width: 70%;
}
.w-60{
  width: 60% !important;
}
.w-40{
  width: 40% !important;
}

.w-30{
  width: 30% !important;
}
.mt-50{
  margin-top: 50px;
}

.mt-30{
  margin-top: 30px;
}

.mt-80{
  margin-top: 80px;
}

.text-size-40{
  font-size: 40px !important;
}

/** Services Tabs **/
.services-tabs{
  margin-top: 60px;
}

.services-tabs .nav-pills .nav-link {
  text-align: left;
  margin: 16px 0;
  padding: 12px;
  border-radius: 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
  color: #333;
  width: 70%;
}

.services-tabs .nav-pills .nav-link.active span, .nav-pills .show>.nav-link span{

  background: #fff;

}

.services-tabs button#v-pills-profile-tab {
  margin-left: 40px;
}

.services-tabs button#v-pills-product-tab {
  margin-left: 40px;
}



.services-tabs .nav-pills .nav-link span img {
  width: 32px;
}

.services-tabs .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #291670;
}

.services-tabs .nav-pills .nav-link span {
  background: #f8f7ff;
  display: inline-block;
  padding: 15px;
  border-top-right-radius: 30px !important;
  border-radius: 6px;
  margin-right: 10px;
}

.services-tabs .bg-circle h4 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  color: #29166F;
}

.services-tabs .tab-content {
  position: relative;
  right:-8%;
}

  .services-tabs .tab-pane {
   /*  background: url(../img/service-tabs-circles.png) no-repeat;
    background-size: contain;
    margin: -40px 0;
    height: 600px;
    align-items: center; */
    width: 600px;
    height: 600px;
    align-items: center;
    background: #f8f7ff;
    border-radius: 50%;
}

.services-tabs button#v-pills-settings-tab {
  margin-left: 40px;
}

.services-tabs .analytics-content {
  width: 427px;
  position: relative;
  text-align: center;
  font-size: 18px;
  top: 26%;
  margin: 0 auto;
}

/* Industries Tabs */

.industries-tabs div#iv-pills-tab {
  position: relative;
  width: 40%;

}

.industries-tabs .tab-pane{
    margin: 0;
    align-items: center;

}

.industries-tabs .bg-circle img {
  width: 90%;
}

.industries-tabs .nav-pills h6{
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 14px;
}


.industries-tabs .tab-content .get-cta
{
  display: flex;
  justify-content: center;
  position: relative;
  left: -13%;
}

.industries-tabs .about-list p{
  font-size: 17px;
  line-height: 28px;
}

#bb-offerings{
  
}

.offerings-icon{
  padding: 15px;
  background: #fff;
  margin: 15px 0;
  /* border: 1px solid #ccc; */
  display: flex;
  align-items: center;
  /* border-radius: 8px; */
  box-shadow: 0 10px 16px 7px rgb(0 0 0 / 10%);
  height: 100%;
}

.offerings-icon p {
  margin-bottom: 0px;
    font-size: 16px;
    font-weight: 500;
    margin-left: 15px;
}

.offerings-icon img {
  margin-bottom: 20px;
  margin-top: 15px;
}
.pt-40{
  padding-top: 40px;
}

#bb-help {
  /* background: url(../img/bb-bg-shape.png) no-repeat 100% 0; */
  background: url(../img/footer-shape.png) no-repeat 100% 0;
  background-size: 25%;
  background-color: #f9f9f9;
}

/* Footer */

.site-footer
{
  background-color:#000;
  padding:50px 0 20px;
  font-size:15px;
  line-height:24px;
  color:#fff;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#f2f2f2;
  font-size:18px;
  margin-top:5px;
  letter-spacing:1px;
  font-weight: 600;
}
.site-footer a
{
  color:#f8f8f8;
  text-decoration: none;
}
.site-footer a:hover
{
  color:#3366cc;
}
.footer-links
{
  padding-left:0;
  list-style:none;
  padding-top: 10px;
}
.footer-links li
{
  display:block;
  padding: 4px 0;
}
.footer-links a
{
  color:#f8f8f8;
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#fff;
  text-decoration:underline;
}
.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#33353d
}

.footer-about img{
  filter: invert(1);
    mix-blend-mode: luminosity;
    width: 150px;
}

.footer-about p{
margin-top: 30px;
color:#f1f1f1;
font-size: 16px;
}
.copyright-text
{
  margin:0
}
.tc ul li {
  display: flex;
  padding: 0px 20px;
}
.tc ul{
  padding-left: 0;
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons a.facebook:hover
{
  background-color:#3b5998
}
.social-icons a.twitter:hover
{
  background-color:#00aced
}
.social-icons a.linkedin:hover
{
  background-color:#007bb6
}
.social-icons a.dribbble:hover
{
  background-color:#ea4c89
}
@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
  .bb-header .navbar-nav li.nav-item {
    padding: 0px 12px;
  }
  .nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 100%;
  }

}

/** About Page **/

.bb-secondary-btn{
  background-color: #74c5f0;
  color: #29166F !important;
}
a.bb-secondary-btn:hover{
  background-color: #74c5f0 !important;
  color: #29166F !important;
}

.about-list{
  margin-top: 30px;
  margin-left: 40px;
}

.about-list ul {
  padding: 10px;
}

.about-list ul li span{
  background: #76c5f0;
  width: 24px;
  height: 24px;
  color: #fff;
  border-radius: 50%;
  margin-right: 25px;
  display: inline-block;
  text-align: center;
}

.about-list ul li {
  list-style: none;
  padding: 15px 0;
  font-size: 16px;
  color: #444;
}


/** Services page **/

.indstries-list ul li {
  display: flex;
  align-items: flex-start;
}

.indstries-list ul li span{
  display: flex;
}

h2.home-heading.inner-heading {
  width: 100%;
}

.left-text{
  background: #73c5f0;
padding: 40px;
margin: 0 50px 0 0;
}

.bb-cta-wrapper h2{
  font-size: 2.4rem;
  letter-spacing: -2px;
}

.bb-cta-wrapper p{
  font-size: 18px;
  color: #555;
}

.arrow {
  z-index: 1000;
  opacity: 0.5;
  position: absolute;
}
.arrow--top {
  top: 0;
  left: -9em;
}
.circle {
  transform: translate(50%, -50%) rotate(0deg);
  transform-origin: center;
}
.circle--ltblue {
  height: 20em;
  width: 20em;
  border-radius: 20em;
  background: linear-gradient(#15e0ff, #3800e7);
}
.backdrop {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: block;
  background-color: pink;
}
.dotted-circle {
  position: absolute;
  top: 0;
  right: 550px;
  opacity: 0.3;
  animation: rotation 38s linear infinite;
}
.draw-in {
  stroke-dasharray: 1000;
  stroke-dashoffset: 10;
  animation: draw 15s ease-in-out alternate;
}
@keyframes draw {
  from {
    stroke-dashoffset: 1000;
 }
  to {
    stroke-dashoffset: 0;
 }
}
.item-to {
  animation-duration: 10s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
}
.bounce-1 {
  animation-name: bounce-1;
  animation-timing-function: ease;
}
.bounce-2 {
  animation-name: bounce-2;
  animation-timing-function: ease;
}
.bounce-3 {
  animation-name: bounce-3;
  animation-timing-function: ease;
}

.geo-arrow {
  fill: none;
  stroke: #29176f;
  stroke-width: 2;
  stroke-miterlimit: 10
}
@keyframes bounce-1 {
  0% {
    transform: translateY(0);
 }
  50% {
    transform: translateY(50px);
 }
  100% {
    transform: translateY(0);
 }
}
@keyframes bounce-2 {
  0% {
    transform: translateY(0);
 }
  50% {
    transform: translateY(-30px);
 }
  100% {
    transform: translateY(0);
 }
}
@keyframes bounce-3 {
  0% {
    transform: translateY(0);
 }
  50% {
    transform: translateY(30px);
 }
  100% {
    transform: translateY(0);
 }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
 }
  to {
    transform: rotate(360deg);
 }
}
@keyframes gradient-fade {
  from {
    transform: translate(10%, -10%) rotate(0deg);
 }
  to {
    transform: translate(50%, -50%) rotate(360deg);
 }
}
@keyframes gradient-fade-alt {
  from {
    transform: translate(-20%, 20%) rotate(0deg);
 }
  to {
    transform: translate(-60%, 60%) rotate(360deg);
 }
}


.square {
  position: absolute;
  margin: 0 10px;
  width: 600px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 0;
  z-index: -9;
}

.square span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #975f88;
  border-radius: 32% 58% 69% 43% / 48% 32% 59% 55%;
  transition: 0.5s;
  animation: animate 12s linear infinite;
}

/* .linkedin span:nth-child(1) {
  background: #f0f0f0;
} */

.square span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #e38810;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  transition: 0.5s;
  animation: animate 10s linear infinite;
}

.square span:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #76c5f0;
  border-radius: 31% 45% 74% 35% / 38% 56% 51% 87%;
  transition: 0.5s;
  animation: animate2 30s linear infinite;
}

@keyframes animate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

@keyframes animate2 {
  0% {
      transform: rotate(360deg);
  }
  100% {
      transform: rotate(0deg);
  }
}

.infographics{
  text-align: center;
}

.infographics img{
  width: auto;
}

/* @media (min-width:768px) and (max-width:992px){
  .banner-wrapper{
    width: 100%;
  }
  .banner-wrapper h3{
    font-size: 2.2rem;
  }
  .banner-wrapper p {
    margin: 20px 0 30px 0;
  }
  .bb-home-banner{
    background: none;
  }
} */


@media (max-width:992px){
  #inner-banner .inner-banner-wrapper p{
    width: 100%;
  }

  .inner-para-text-big p{
    width: 100%;
    font-size: 16px;
  }

  .home-section{
    padding: 40px 20px;
  }

  .inner-sub-heading{
    font-size: 1.5rem;
  }

  .about-list{
    margin-left: 0px;
  }

  .about-list ul li span{
    display: none;
  }

  .about-list ul li{
    border-left: 3px solid #007bb6;
    margin: 15px 0;
    padding-left: 15px;
  }

  .bb-cta-wrapper.w-60{
    width: 100%!important;
  }

  .bb-cta-wrapper h2 {
    font-size: 1.9rem;
    letter-spacing: -2px;
}
#inner-banner .inner-banner-wrapper{
  width: 100%;
}
#inner-banner .inner-banner-wrapper h3{
  font-size: 2.2rem;
}

.banner-wrapper{
  width: 100%;
}
.banner-wrapper h3{
  font-size: 2.2rem;
}
.banner-wrapper p {
  margin: 20px 0 30px 0;
}
.bb-home-banner{
  background: none;
}
.home-section .home-heading {
  font-size: 2.2rem;
  width: 80%;
}
.industries-tabs div#iv-pills-tab{
  width: 100%;
}


.industries-tabs .tab-content{
  display: none;
}

#bb-offerings .pt-40{
  padding-top: 10px;
}

#bb-services .d-flex{
display: block!important;
}

.services-tabs .nav-pills .nav-link{
  width: 100%;
}

.square{
  display: none;
}

.services-tabs .tab-pane{
  width: 100%;
  height: auto;
  border-radius: 0;
  padding: 15px;
}

.services-tabs .analytics-content{
  width: 100%;
}
.services-tabs .tab-content{
  right: 0;
}
.services-tabs .bg-circle h4{
  font-size: 24px;
}
.services-tabs button#v-pills-profile-tab{
  margin-left: 0;
}
.services-tabs button#v-pills-settings-tab{
  margin-left: 0;
}
#experiance .d-flex{
  display: block!important;
}
#experiance .w-40, #experiance .w-60{
  width: 100%!important;
}

#experiance .cta{
  display: none;
}
}

.error{
  color: red;
  display: none;
}

.expertise-icon{
  padding: 15px;
}

.expertise-icon i{
font-size: 3rem;
background: linear-gradient(178deg, #29166F 30%, #FF9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.default-text{
  font-size: 16px;
  line-height: 26px;
}

.tech-icon-wrapper{

}

.step-number{
  position: relative;
}

.step-number span{
  font-size: 26px;
    background: #76c5f0;
    width: 48px;
    height: 48px;
    line-height: 48px;
    margin: 0 auto;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
}

.step-number::before{
  content: '';
  position: absolute;
  height: 1px;
  background: #29176f;
  width: 100px;
  left: 12px;
  top:49%;
}

.step-number::after{
  content: '';
  position: absolute;
  height: 1px;
  background: #29176f;
  width: 100px;
  right: 12px;
  top:49%;
}

/* careers style */
.job-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.job-card h5 {
  color: #29176f;
  margin-bottom: 15px;
  font-weight: 600;
}

.job-card p {
  color: #666;
  margin-bottom: 8px;
  font-size: 16px;
}

.job-card .mt-auto {
  margin-top: auto;
}

.job-card .bb-primary-btn{
  padding: 8px 20px !important;
    font-size: 16px!important;
}

.benefits-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.benefit-item {
  margin-bottom: 35px;
  display: flex;
  align-items: flex-start;
}

.benefit-item i {
  color: #999;
    margin-right: 30px;
    font-size: 43px;
    margin-top: 3px;
    margin-bottom: 22px;
    background: linear-gradient(178deg, #76c5f0 30%, #29176f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-content h6 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.career-banner-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}

.career-banner-text h1 {
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}

.validation {
  color: red;
}

.services-card{
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.services-card-body{

}

.services-card-title{
  margin-bottom: 10px;
  color: #000;
}

.services-card-title i{
  display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 40px;
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    background: linear-gradient(178deg, #76c5f0 30%, #29176f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-card-text{}

.services-card li{
  margin-bottom: 8px;
}

.gradient-icon{
  background: linear-gradient(178deg, #76c5f0 30%, #29176f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.key-list{
  font-size: 18px;
  padding: 30px 0;
}

.key-list ul{
  
}

.key-list li{
  list-style-type: none;
  margin-bottom: 35px;
}

.key-list li .key-icon{
  background: linear-gradient(178deg, #29166F 30%, #FF9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 10px;
}

.key-list li .key-text{
  display: block;
}

.text-primary {
  color: #29176f !important;
}

.use-case-card {
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.use-case-card h4 {
  color: var(--bb-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.use-case-icon {
  font-size: 2.2rem;
  color: var(--bb-primary);
  margin-bottom: 15px;
}

.use-case-card{
  background-color: #fff;
    border-radius: 8px;
    padding: 30px;
}

.use-case-card .use-case-icon{
  text-align: center;
  padding: 15px;
    margin-bottom: 20px;
}

.use-case-card .use-case-icon i{
  background: linear-gradient(178deg, #76c5f0 30%, #29176f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-study {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 25px;
  height: 100%;
}

.case-study h4 {
  color: var(--bb-primary);
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.case-study p{
  font-size: 16px;
}

.result-metric {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.result-metric i {
  font-size: 1.4rem;
  color: var(--bb-primary);
  margin-right: 12px;
  background: linear-gradient(178deg, #76c5f0 30%, #29176f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-highlight {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--bb-primary);
  margin-bottom: 8px;
  display: block;
  background: linear-gradient(89.88deg, #29166F 2.69%, #FF9900 43.19%, #75C5F0 72%, #ffbd45 99.83%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}