
body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}

a {
  color: #325CB8;
}

a:hover {
  color: #9026DC;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #9026DC;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #9026DC;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  top: 20px;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.4) ;
  /* background: #000000 0% 0% no-repeat padding-box !important; */
}
.header_bg{
  background: #000000 0% 0% no-repeat padding-box !important;

}

#header .header-container {
  /* background: #fff; */
}

#header.header-scrolled {
  /* background: #fff; */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  top: 0;
}

#header .logo {
  overflow: hidden;
  padding: 16px 30px 12px 30px;
  /* background: #9026DC; */
}

#header .logo h1 {
  font-size: 26px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    top: 0;
    /* background: #9026DC; */
  }
  #header.header-scrolled, #header .header-container {
    /* background: #9026DC; */
  }
  #header .logo h1 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  padding: 23px 10px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #9026DC;
  text-decoration: none;
  /* border-bottom: 3px solid #9026DC; */
}

.nav-menu .get-started a {
  background: #9026DC;
  color: #fff;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 25px;
}

.nav-menu .get-started a:hover {
  background: #9026DC;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-weight: 500;
  text-transform: none;
  color: black;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #9026DC;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #36343a;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #9026DC;
  text-decoration: none;
}

.mobile-nav .get-started {
  text-align: center;
}

.mobile-nav .get-started a {
  background: #9026DC;
  color: #fff;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 25px;
  display: inline-block;
}

.mobile-nav .get-started a:hover {
  background: #00c28e;
  color: #fff;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(29, 28, 31, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/banner.jpg") center center;
  background-size: cover;
  position: relative;
}


#hero .container {
  padding-top: 80px;
}

#hero:before {
  content: "";
  /* background: rgba(0, 0, 0, 0.6); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0 5px 10px 5px;
  font-size: 40px;
  font-weight: 700 !important;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 32px;
  /* border-radius: 50px; */
  transition: 0.5s;
  margin: 10px;
  /* border: 2px solid #fff; */
  color: #fff;
}

#hero .btn-get-started:hover {
  /* background: #9026DC; */
  /* border: 2px solid #9026DC; */
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
  
  

}
@media (max-width: 1025px) {
 
  .nav-menu a {
    font-size: 10px !important;
  }
  #hero h1{
    font-size: 36px !important;
  }
  .text_service{
    font-size: 10px !important;
  }
  .bg-industry{
    /* height: 50vh; */
  }
  .bg-client{
    /* height: 45vh; */
  }
  .bg-count{
    /* height: 40vh; */
  }
  

}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero .container {
    padding-top: 60px;
  }
  #hero h1 {
    font-size: 24px !important;
    line-height: 36px;
  }
  
  .flex-container > .cardbox {
    width: 150px !important;
  }
  .ml-36{
    margin-left: 0px !important;
  }
  .w-96{
    width: 100% !important;
  }
  .w-10{
width: 20% !important;
  }
  .mr-0{
    margin-right: -15px !important;
  }
.pr-4{
  padding-right: 15px !important;
}
.pl-4{
  padding-left: 15px !important;
}
.bg-footer{
  height: 100% !important;
}
.bg-client{
  /* height: 80vh !important; */
}
.bg-count{
  /* height: 87vh !important; */
}
.bgimg-style{
  background-repeat: no-repeat !important;
  /* height: 95vh; */
  /* background-size: cover !important; */
}
.heightimg img{
  /* width: 90% !important; */
  height: 90%
}
.position_fix {
  position: inherit !important;
  width: 100% !important;
}
}
@media (max-width: 767px) {
  #exploreWork .text-uppercase{
    font-size: 1.1rem !important;
  }
  #exploreWork .heightimg{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  #exploreWork p{
    font-size: 0.8rem !important;
  }
  #exploreWork .pl-5{
    padding-left: 5px !important;
  }
 
  #exploreWork .pt-5{
    padding-top: 2px !important;
  }
   h1 {
    font-size: 30px !important;
  }
.box_scroll{
    
  /* overflow: scroll; */
  /* height: 423px; */
}
.w-10{
  width: 30% !important;
    }

    /* .card-text{
      height: 60px;
      overflow: auto;
    } */

    .card-horizontal{
      display: flow-root !important;
    }
    .w-75{
      width: 100% !important;
    }
    .img-card {
      width: 100%;
      height: 200px !important;
  }
  .flex-containerCount {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 340px;
    overflow: auto;
  }
  .testimonials {
    margin: 30px 10px;
  }
  .testimonials .testimonial-item{
    height: 285px;
  }

  .flex-containerCount > .countBox {
    width: 158px !important;
    height: 110px !important;
    margin: 8px !important;
    text-align: center;
    font-size: 24px;
}
.container{
  padding-left: 0px !important;
  padding-right: 0px !important;

}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0 20px 0;
  overflow: hidden;
}

.section-bg {
  /* background-color: #f6f6f7; */
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #9026DC;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  /* background: #9026DC; */
  padding: 40px 0 20px 0;
  color:#000;
}

.counts .counters span {
  font-size: 36px;
  /* display: block; */
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #FFFFFF 0% 0% no-repeat padding-box;
border: 1px solid #707070;

}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  border: 1px solid #9026DC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #9026DC;
}

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #36343a;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .icon-box:hover h4 a {
  color: #9026DC;
}

.services .icon-box:hover .icon {
  color: #fff;
  background: #9026DC;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 20px 20px 0 20px;
  margin: 30px 15px;
  text-align: center;
  min-height: 210px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  /* background: #fff; */
  background: #FFFFFF 0% 0% no-repeat padding-box;
/* box-shadow: 2px 8px 27px #00000052; */
}

.testimonials .testimonial-item .testimonial-img {
  width: 60px;
  /* border-radius: 50%; */
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #66ffd6;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  /* font-style: italic; */
  margin: 15px auto 15px auto;
  font-size: 13px;
}
.testimonial-text .color_blue{
  font-weight: 500;
  font-size: 14px;
  color: #9026DC !important;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  /* background-color: #ddd !important; */
  background: #A5A5A5 0% 0% no-repeat padding-box !important;
border: 1px solid #707070;
}

.testimonials .owl-dot.active {
  background-color: #9026DC !important;
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f6f7;
  margin-top: 100px;
}

.breadcrumbs h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4f4c55;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
  .width_text{
    padding: 0 0rem !important;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #f1f0f2;
}

#footer .footer-top {
  padding: 60px 0 10px 0;
  background: #f9f8f9;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #00c28e;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #9026DC;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 24px;
  background: #e4e3e6;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  /* border: 1px solid #e4e3e6; */
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #9026DC;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #9026DC;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2680EB;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #9026DC;
  color: #fff;
  text-decoration: none;
}
.explore_btn{
  background: #9026DC8C 0% 0% no-repeat padding-box;
border: 1px solid #D06DFF;
border-radius: 39px;
opacity: 1;
}

.bounce1 {
  background: url("../img/images/Icon.svg") center center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}  
  
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
.color_blue{
  font-weight: 600 ;
letter-spacing: 0px;
color: #325CB8;
}
.text_service{
letter-spacing: 0px;
color: #475677;
font-size: 12.5px;
font-weight: 500;
}
.card_border{
  border: 1px solid #13214A;
border-radius: 5px;
transition: transform .2s;
}

.card_border:hover {
background: #EACEFF 0% 0% no-repeat padding-box;
box-shadow: 0px 10px 25px #475677A6;
border: 1px solid #13214A;
border-radius: 5px;

transform: scale(1.07) !important;
}

.activehover{
  background: #EACEFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 25px #475677A6;
  border: 1px solid #13214A;
  border-radius: 5px;
  
  transform: scale(1.07) !important;
  }
.width_text{
  padding: 0 17rem;line-height: 1.4;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}

.flex-container > .cardbox {
  width: 127px;
  height: 122px;
  margin: 10px;
  text-align: center;
  font-size: 22px;
  padding: 10px 5px;
  border-radius: 15px;
}


.flex-container > .cardboxclient {
  width: 100px;
  height: 80px;
  margin: 8px;
  text-align: center;
  /* font-size: 22px; */
  padding: 10px 10px 10px 10px;
  overflow: hidden;
  
}
.wid-hei{
  /* width: 80px; */
  /* height: 70px; */
  margin: auto
}
.wid-hei .w-100{
  /* height: auto */
}

.bg-industry{
  width: 100%;
  /* height: 80vh; */
  background: url("../img/images/Group11762-min.png") center center;
  background-size: cover;
  /* position: relative; */
  /* background-attachment: fixed; */
  color: white;
}
.bg-client{
  width: 100%;
  /* height: 70vh; */
  background: url("../img/images/Group11763-min.png") center center;
  background-size: cover;
  position: relative;
  /* background-attachment: fixed; */
  color: white;
}
.bg-count{
  width: 100%;
  /* height: 70vh; */
  background: url("../img/images/Group11763-min.png") center center;
  background-size: cover;
  /* position: relative; */
  /* background-attachment: fixed; */
  color: white;
}

.bg-footer{
  width: 100%;
  /* height: 60vh; */
  background: url("../img/footer.png") center center !important;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  color: white;
}
.img_width{
  width: 45%;
}
.bg_pink{
  background: #FBD0D0 0% 0% no-repeat padding-box;

}
.bg_lightgrren{
  background: #BFF4FF 0% 0% no-repeat padding-box;

}
.bg_lightyellow{
  background: #FBFFC5 0% 0% no-repeat padding-box;
}
.bg_shadow{
  box-shadow: 0px 3px 6px #4A4A4A52;
border: 1px solid #475677;
border-radius: 15px;
}
.industry{
padding-top: 35px;
}

.box_scroll{
  /* position: relative; */
  /* top: 100px; */
  /* bottom: 100px; */
  
}
.height_imgcard{
  height: 52px;
}

.flex-containerCount {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.flex-containerCount > .countBox  {
  width: 250px;
  height: 150px;
  margin: 10px;
  text-align: center;
  font-size: 30px;
}


.count_color_yr{
  color: #2680EB;
}
.count_color_txt{
  color: #7D8597;
}
.count_color_pr{
color: #00B592;

}

.count_color_busi{
  color: #FF9158;
  
  }
  
  .count_color_client{
    color: #E0474E;
    
    }
    h1{
      font-weight: 600 !important;
      font-size: 2.2rem;
    }
    h6{
      font-weight: normal !important;
      color: #666667;
    }

    input:focus, textarea:focus, select:focus{
      outline: none;
  }

  button:focus {
    outline: 1px dotted;
    outline: 0px auto -webkit-focus-ring-color !important;
  }

  @-webkit-keyframes bounceRight {
    0%,
    20%,
    50%,
    80%,
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    40% {
      -webkit-transform: translateX(-30px);
      transform: translateX(-30px);
    }
    60% {
      -webkit-transform: translateX(-15px);
      transform: translateX(-15px);
    }
  }
  @-moz-keyframes bounceRight {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateX(0);
    }
    40% {
      transform: translateX(-30px);
    }
    60% {
      transform: translateX(-15px);
    }
  }
  @keyframes bounceRight {
    0%,
    20%,
    50%,
    80%,
    100% {
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    40% {
      -ms-transform: translateX(-30px);
      transform: translateX(-30px);
    }
    60% {
      -ms-transform: translateX(-15px);
      transform: translateX(-15px);
    }
  }
  /* /right bounce */
  
  
  /* assign bounce */
  .fa-arrow-right {
    -webkit-animation: bounceRight 2s infinite;
    animation: bounceRight 2s infinite;
    float:right;
  }

  .card-horizontal {
    display: flex;
    flex: 1 1 auto;
}
.card-text{
  font-size: 14px;
  font-weight: 400!important;

}
.mrtop{
  margin-top: 27px;

}
.img-card{
  width: 100%;
  height: 100%;
}
.card-title{
  font-weight: 500!important;
  font-size: 1.5rem !important;
}

.dropdown-product {
  display: none;
}
.dropdown-toggle:hover + .dropdown-product {
  display: block;
}
.dropdown-product:hover{
  display: block;

}

.rapid-product {
  width: 85%;
  top: 68px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  top: 68px;
  width: 90%;
  margin: 0 auto;
  left: -20px; 
  right: 0;
  z-index: 1;
  position: fixed;

}
/* .dropdown:hover .dropdown-content {display: block;} */


.color_pink{
  color: #9026DC;
}

.white_space{
  white-space: inherit  !important;
    
}
.nav-menu > ul > li {
  position: relative;
  white-space: inherit;
  float: left;
}

.productdiv > div {
  padding: 8px;
  font-size: 13px;
letter-spacing: 0px;
color: #13214A;
text-transform: capitalize;
font-weight: 500;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}
.productdiv > div >a:hover{
  color: #9026DC !important;
  font-weight: 600;
  
}
.productdiv > div:hover{
  color: #9026DC;
  font-weight: 600;
  
}

.productmid > div{
  letter-spacing: 0px;
color: #777778;
font-size: 14px;

}
/* .productdiv > div .first:hover +.productmid > div.first{
display: block !important;

}

.firstone:hover + .first {
  display: block;
  color: red;
}  */




/* .productmid > div.first{
  display: none;
}
.productmid > div.second{
  display: none;
}
.productmid > div.third{
  display: none;
}
.productmid > div.fourth{
  display: none;
}
.productmid > div.five{
  display: none;
}
.productmid > div.six{
  display: none;
} */

@keyframes animatedBackground {
	100% { background-position: -300px 0; }
	0% { background-position: 0 0; }
}
@-moz-keyframes animatedBackground {
	100% { background-position: -300px 0; }
	0% { background-position: 0 0; }
}
@-webkit-keyframes animatedBackground {
	100% { background-position: -300px 0; }
	0% { background-position: 0 0; }
}
@-ms-keyframes animatedBackground {
	100% { background-position: -300px 0; }
	0% { background-position: 0 0; }
}
@-o-keyframes animatedBackground {
	100% { background-position: -300px 0; }
	0% { background-position: 0 0; }
}

#hero { 
	background-position: 0px 0px;
	animation: animatedBackground 10s linear infinite;
	-moz-animation: animatedBackground 10s linear infinite;
	-webkit-animation: animatedBackground 10s linear infinite;
	-ms-animation: animatedBackground 10s linear infinite;
	-o-animation: animatedBackground 10s linear infinite;
}


.img_down{
  z-index: -1;
  position: relative;
}
.img_up{
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding-left: .5rem;
  padding-right: .5rem;

  background-color: #fff;
}

.width_around{
  margin: 0 3%;
}
body{
  background-color: #f6f6f7 !important;
  background: #E6E6E6 0% 0% no-repeat padding-box !important;
}
.ml-36{
  margin-left: 36px;
}
.w-96{
  width: 94%;
}
.w-10{
  width: 10%;
}
.card{
  /* background-color: transparent; */
}
.mt-25{
margin-top: 2.5rem;
}
.serviceAnchor{
  padding: 0px !important;
  color: #13214A !important;
  font-size: 13px !important;
}
.scrollheight{
  height: 110px;
  overflow-y: scroll;
  scrollbar-width: thin;

}
/* .scrollable-element {
  scrollbar-width: none;
}
.scroller {
  width: 300px;
  height: 100px;
  overflow-y: scroll;
  scrollbar-width: thin;
} */


.scrollheight::-webkit-scrollbar-track
{
	/* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
	border-radius: 10px;
  /* background-color: #F5F5F5; */
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.scrollheight::-webkit-scrollbar
{
	width: 0px;
	background-color: #000
}




/* All work page  */


.bg-nkc {
  background: url(../img/images/NYGGS_BG-min.png) center center;
}
.bg-watsoo {
  background: url(../img/images/Watsoo_BG-min.png) center center;
}
.bg-sc-mercury {
  background: url(../img/images/sc-mercurybg-min.png) center center;
}
.bg-sc {
  background: url(../img/images/sc-bg-min.png) center center;
}
.bg-prithm{
  background: url(../img/images/Group11885-min.png) center center;
}
.bg-padi{
  background: url(../img/images/Group11887-min.png) center center;
}
.bg-digitalwallet{
  background: url(../img/images/digital-wallet-bg-min.png) center center;
}
.bg-mowize{
  background: url(../img/images/mowize-bg-min.png) center center;
}
.bg-beachdeal{
  background: url(../img/images/beach-bg-min.png) center center;
}
.bg-lavan{
  background: url(../img/images/laven-bg-min.png) center center;
}
.bg-shield{
  background: url(../img/images/shield-bg-min.png) center center;
}
.bg-brandlit{
  background: url(../img/images/brandlit-bg-min.png) center center;
}
.bg-alarmApp{
  background: url(../img/images/alarm-bg-min.png) center center;
}
.bg-protocol{
  background: url(../img/images/protocol-bg-min.png) center center;
}
.bg-livevideo{
  background: url(../img/images/livevideo-bg-min.png) center center;
}
.bg-iatro{
  background: url(../img/images/iatro-bg-min.png) center center;
}
.bg-favista{
  background: url(../img/images/favista-bg-min.png) center center;
}
.bg-grupo{
  background: url(../img/images/Groupoformula-bg-min.png) center center;
}
.bg-MyGIhealth{
  background: url(../img/images/MyGIhealth-bg-min.png) center center;
}
.bg-lynxs{
  background: url(../img/images/Lynxs\ -\ Business\ App_bg-min.png) center center;
}
.bg-medicine{
  background: url(../img/images/medicine-bg-min.png) center center;
}
.bg-ultimate{
  background: url(../img/images/ultimate-bg-min.png) center center;
}
.bg-fashion{
  background: url(../img/images/Fashion\ App_bg-min.png) center center;
}
.bg-lavanapp{
  background: url(../img/images/lavanapp-bg-min.png) center center;
}
.bg-roast{
  background: url(../img/images/Roast\ -\ Social\ Networking_bg-min.png) center center;
}
.bg-aresei{
  background: url(../img/images/aresei-bg-min.png) center center;
}
.bg-itrend{
  background: url(../img/images/ITRNDNG_bg-min.png) center center;
}
.bg-fitness{
  background: url(../img/images/fitness-bg-min.png) center center;
}

.bg-pinprick{
  background: url(../img/images/PINPRICKEFFECT_BG-min.png) center center;
}
.bg-unreavel{
  background: url(../img/images/unrevel-bg-min.png) center center;
}
.bg-musiclocker{
  background: url(../img/images/musiclocker-bg-min.png) center center;
}
.bg-littlemouse{
  background: url(../img/images/littlemouse-bg-min.png) center center;
}
.bg-nhai{
  background: url(../img/images/nhai-bg-min.png) center center;
}
.bg-mrt{
  background: url(../img/images/MRT-bg-min.png) center center;
}
.bg-Sparsh{
  background: url(../img/images/sparshmeditation-bg-min.png) center center;
}
.bg-tjs{
  background: url(../img/images/TJS-bg-min.png) center center;
}
.bg-mydaos{
  background: url(../img/images/mydaos-bg-min.png) center center;
}
.bg-reading{
  background: url(../img/images/reading-bg-min.png) center center;
}
.bg-easy{
  background: url(../img/images/easy-bg-min.png) center center;
}
.bg-Gidimo{
  background: url(../img/images/Gidimo-bg-min.png) center center;
}

.bg-Groupie{
  background: url(../img/images/groupie-bg-min.png) center center;

}
.bg-Emirates{
  background: url(../img/images/Emirates_BG-min.png) center center;
}
.bg-Farmer{
  background: url(../img/images/farmers-bg-min.png) center center;
}
.bg-Uniting{
  background: url(../img/images/Uniting\ Buyers_BG-min.png) center center
}
.bg-SelfHealing{
  background: url(../img/images/Self\ Healing_BG-min.png) center center;
}
.bg-SafeCrowd{
  background: url(../img/images/SafeCrowd_BG-min.png) center center;
}
.bg-homebrain{
  background: url(../img/images/home-brain-bg-min.png) center center;
}

.bg-OneContact{
  background: url(../img/images/OneContact-bg-min.png) center center;
}
.bg-Droid{
  background: url(../img/images/Droid-bg-min.png) center center;
}
.bg-FestiGoGo{
  background: url(../img/images/FestiGoGo-bg-min.png) center center;
}
.bg-Areseiweb{
  background: url(../img/images/Aresei-web-bg-min.png) center center;
}
.bg-Ripple{
  background: url(../img/images/Ripple-bg-min.png) center center;
}
.bg-Grocery{
  background: url(../img/images/Grocery-bg-min.png) center center;
}
.bg-Restaurant{
  background: url(../img/images/Restaurant-bg-min.png) center center;
}

.bg-SAFECELL{
  background: url(../img/images/SAFECELL-bg-min.png) center center;
}
.bg-TravelChannel{
  background: url(../img/images/Travel-bg-min.png) center center;
}
.bg-Toonect{
  background: url(../img/images/Toonect-bg-min.png) center center;
}
.bg-Dial-a-Dinner{
  background: url(../img/images/Dial-a-Dinner-bg-min.png) center center;
}
.bg-Meragana{
  background: url(../img/images/Meragana-bg-min.png) center center;
}
.bg-EMoo{
  background: url(../img/images/EMoo_BG-min.png) center center;
}
.bg-IBuzz{
  background: url(../img/images/IBuzz_BG-min.png) center center;
}
.bg-AirHockey{
  background: url(../img/images/AirHockey-bg-min.png) center center;
}
.bg-BreakBrick{
  background: url(../img/images/BreakBrick-bg-min.png) center center;
}
.bg-RapidPin{
  background: url(../img/images/Rapid\ Pin\ Ball_BG-min.png) center center;
}
.bg-French{
  background: url(../img/images/French\ Fry\ Heaven_BG-min.png) center center;
}
.bg-Water{
  background: url(../img/images/Water\ Bubble\ Rings_BG-min.png) center center;
}
.bg-Mahjong{
  background: url(../img/images/Mahjong\ HK_BG-min.png) center center;
}
.bg-CameraBag{
  background: url(../img/images/CameraBag_BG-min.png) center center;
}
.bg-Medelix{
  background: url(../img/images/Medelix\ LLC_BG-min.png) center center;
}


.bgimg-style{
  position: relative;
  color: white;
  border-radius: 15px;
  width: 100%;
  /* height: 70vh; */
  object-fit: cover;
}
#exploreWork .w-100{
  /* height: 100%; */
}
.hr-style{
  width:25%;text-align:left;margin-left:0;
  border: 1px solid #FFFFFF;
  margin-top: 1rem; 
 margin-bottom: 1rem;
}

.btn_style{
  border: 1px solid #FFFFFF;
  padding: 10px 15px;
  border-radius: 50px;
}
.btn_style:hover{
  border: 1px solid #FFFFFF !important;

}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: transparent !important;
  color: #9026DC;
}

a {
color: #888888;
text-transform: uppercase;

}

.heightimg{
  height: 100%;
}

#exploreWork .nav-pills .nav-link{
  font-size: 13px;
}
#exploreWork .text-uppercase{
  font-size: 1.4rem;
  font-weight: 600;
}





#clientsDropDown {
    position: fixed;
    /* bottom: 0; */
    right: 0px;
    z-index: 1002;
    /* float: right; */
    top: 100px;
}

#clientsDropDown {
    /* top: 130px!important; */
}
.rotateclass {
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  top: 250px;
  left: -97px;
}
#to_get_quote_form {
  /* float: right; */
  background-color: #662d91;
  cursor: pointer;
  /* font-size: 22px; */
  font-size: 1em;
  font-weight: 600;
  text-shadow: 1px 1px 1px #000;
  line-height: 40px;
  color: #ffffff;
  margin: -2px 0 0 5px;
  padding: 0 15px 0;
  text-decoration: none;
  width: 154px;
  height: 40px;
  text-align: center;
  /* border-radius: 17px 17px 0 0; */
  -moz-border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
}
#quote_form {
  color: #353535;
  margin: 0;
  padding: 10px;
  text-decoration: none;
  width: 260px;
  height: 100%;
  border: 1px solid #43175e;
  /* border-radius: 0 17px 17px 17px; */
  -moz-border-radius: 8px 0 0 0;
  -webkit-border-radius: 8px 0 0 0;
  border-radius: 8px 0 0 0;
  background-color: #e9e9e9;
  /* float: right; */
}
#contactFormValidation label {
  font-size: 10px;
  margin-bottom: 0px !important;
}
#contactFormValidation .form-control{
  height: calc(1em + .5rem + 2px);
}

#contactFormValidation input[type="submit"]{
  /* height: calc(1em + .75rem + 2px); */
  font-size: 12px;
  background-color: #662d91;
}




textarea.form-control {
  height: auto !important;
}

.position_fix{
  position: absolute;width: 32%;
}
