body {
  font-family: "Poppins", sans-serif;
  color: #000;
  background: #fff;
}

a {
  color: #ff7e00
}

a:hover {
  color: #ff7e00;
  text-decoration: none
}

.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #ff7e00;
  color: #fff;
  transition: display .5s ease-in-out;
  z-index: 99999
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px
}

.back-to-top:hover {
  color: #fff;
  background: #ff7e00;
  transition: background .2s ease-in-out
}

#header {
  height: auto;
  transition: all .5s;
  z-index: 997;
  transition: all .5s;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase
}

#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 {
    height: 60px;
    padding: 8px 0
  }
}

.darkHeader {
  background: #0a0c12d1 !important;
}}

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
  list-style-type: none;
}

.nav-menu>ul>li:last-child a {
  margin: 0 0 0 10px
}

.nav-menu>ul>li:not(:first-child):before {
  content: " | ";
  vertical-align: text-bottom;
  color: #d5d5d5
}

.nav-menu a {
  display: inline-block;
  position: relative;
  color: #fff;
  padding: 8px 0 12px;
  transition: .3s;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 15px 0 10px
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #fff
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all .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 .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: #21413c;
  padding: 10px 20px;
  font-weight: 500;
  outline: none
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #ff7e00;
  text-decoration: none
}

.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(16, 31, 29, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out .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 {
  width: 100%;
  height: 100vh;
  background: url(../img/hero-bg.jpg) center center;
  background-size: cover;
  position: relative;
  padding: 0
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0
}

#hero .container {
  z-index: 2
}

#hero h1 {
  margin: 0 0 30px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-size: 55px;
 text-transform: uppercase;
 text-shadow: 0 0 4px #0000, 0 0 9px #000;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-size: 24px
}

#hero .btn-get-started {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: .5s;
  border: 2px solid #fff;
  color: #fff
}

#hero .btn-get-started:hover {
  border-color: #ff7e00;
  background: #ff7e00
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed
  }
}

@media (max-width: 992px) {
  #hero {
    margin-top: 60px;
    height: calc(100vh - 60px)
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px
  }
}

section {
  padding: 50px 0;
  overflow: hidden
}
/* 
.section-bg {
  background-color: #fff
}

 */

 .section-bg-one {
  background-color: #000
}

.section-title {
  padding-bottom: 40px;
  text-align: center
}

.section-title-testimonial {
  padding-bottom: 10px !important;
}

.section-title h2 {
  font-size: 48px;
  /* font-family: 'Niconne', cursive; */
  font-weight: 600;
  width: 100%;
  text-align: center;
  padding: 5px 10px;
}

.section-title p {
  margin-bottom: 0
}

.about {
  padding: 0;
  padding: 50px 0px 0px;
}

.about h3 {
  font-weight: 400;
  font-size: 34px;
  color: #21413c
}

.about-heading {
  font-size: 48px;
  /* font-family: 'Niconne', cursive; */
  font-weight: 600;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  padding: 5px 10px;
}

.about-text {
  font-size: 18px;
  padding: 5px 10px;
  text-align: justify
}

.about-point {
  padding: 5px 10px;
  float: left;
  width: 100%
}

.about-point ul {
  padding: 0;
  margin: 0
}

.about-point ul li {
  width: 50%;
  float: left;
  list-style: none;
  margin: 25px 0 0
}

.about-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  float: left
}

.about-icon-text {
  font-size: 18px;
  font-weight: 600;
  float: left;
  padding: 18px 15px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px;
  font-weight: 400;
  font-size: 13px
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px
}

.contact .php-email-form input {
  height: 44px
}

.contact .php-email-form textarea {
  padding: 10px 12px
}

.contact .php-email-form button[type="submit"] {
  background: #ff7e00;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: .4s;
  border-radius: 4px
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ff7e00
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

#footer {
  padding: 40px 0px 0px;
  background: #0a0c12d1 !important;
  font-size: 18px
}

#footer .footer-top .footer-info {
  margin-bottom: 20px;
  text-align: center
}

#footer .footer-top .social-links a {
  font-size: 30px;
  display: inline-block;
  background: #242A63;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 50px;
  height: 50px;
  transition: .3s;
}

#footer .footer-top .social-links a:hover {
  background: #ff7e00;
  color: #fff;
  text-decoration: none
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: inline-block;
  color: #fff;
}

#footer .footer-top .footer-links ul li:not(:first-child):before {
  content: " | ";
  vertical-align: text-bottom
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: .3s;
  display: inline-block;
  margin: 0 5px;
  text-transform: uppercase
}

#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}

#footer .copyright {
  text-align: center;
  padding-top: 10px;
  color: #fff;
  font-size: 16px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff
}

.ourworks-item {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #878787;
  padding: 10px;
  margin: 0 auto
}

.softwareuse-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 10px;
  margin: 0 auto
}

.softwareuse-text {
  text-align: center;
  color: #fff;
  font-size: 18px;
  width: 80%;
  margin: 0 auto
}

.skillset-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 10px;
  margin: 0 auto
}

.skillset-text {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  width: 50%;
  margin: 0 auto;
}

.ourworks .owl-nav,
.ourworks .owl-dots,
.softwareuse .owl-nav,
.softwareuse .owl-dots,
.skillset .owl-nav,
.skillset .owl-dots,
.testimonials .owl-nav,
.testimonials .owl-dots {
  margin-top: 40px;
  text-align: center
}

.ourworks .owl-dot,
.softwareuse .owl-dot,
.skillset .owl-dot,
.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #464646 !important
}

.ourworks .owl-dot.active,
.softwareuse .owl-dot.active,
.skillset .owl-dot.active,
.testimonials .owl-dot.active {
  background-color: #8d8d8d !important
}

.brandtrust-icon {
  width: 200px;
  height: 200px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 40%);
  border-radius: 50%;
  margin: 0 auto;
  transition: all .4s ease-in-out;
}

.brandtrust-icon:hover {
  transform: scale(1.1);
}


.brandtrust-icon img {
  position: relative;
  top: 50%;
  transform: translateX(20%) translateY(-50%);
  margin: 0 auto;
  width: 70%;
  filter: grayscale(100%);
}

.brandtrust-icon:hover img {
  filter: grayscale(0%);
}

.contact-btn,
.contact-btn:hover {
  background: #ff7e00;
  border-radius: 5px;
  color: #fff;
  padding: 3%20%;
  /* width: 100%; */
  float: right;
  text-align: center;
  font-size: 24px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #a8d3cc;
  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: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #eff7f6;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #242A63;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  /* border-bottom: 3px solid #242A63; */
  box-shadow: 0 2px 29px 0 rgb(37 37 37 / 10%);
}

.services .icon-box:hover {
  box-shadow: 0 2px 29px 0 rgba(37, 37, 37, 0.1);
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}

.services .title {
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  color: #c0c0c0;
}

.services .icon-box-pink .icon i {
  color: #ff689b;
}

.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services .icon-box-green .icon i {
  color: #41cf2e;
}

.services .icon-box-blue .icon i {
  color: #2282ff;
}

.services .icon-box-red .icon i {
  color: #ec1111;
}

.services .icon-box-purple .icon i {
  color: #c568ff;
}

.services .icon-box-yellow .icon i {
  color: #c0dc24;
}

.services .icon-box-light-blue .icon i {
  color: #2eb1cf;
}



.counts .count-box {
  padding: 20px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
}

.counts .count-box i {
  font-size: 40px;
  background: #ff7e00;
  padding: 15px;
  color: #fff;
  border-radius: 50px;
}

.counts .count-box span {
  font-size: 44px;
  margin-top: 25px;
  display: block;
  font-weight: 600;
  /* color: #242A63; */
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-top: 5px;
}

.videobgmini video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

a.scrollani {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}

a.scrollani:hover {
  opacity: .5;
}

#scrollani a {
  padding-top: 50px;
}

#scrollani a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: scrollani 2s infinite;
  animation: scrollani 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

#scrollani a span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

#scrollani a span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}

#scrollani a span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

@-webkit-keyframes scrollani {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes scrollani {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}