/**
* Template Name: Vesperr - v4.9.1
* Template URL: https://bootstrapmade.com/vesperr-free-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #2890b7;
  text-decoration: none;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

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

.p110 {
  padding-top: 110px;
}

.dnone {
  display: none !important;
}

.dInlineBlock {
  display: inline-block;
}

.mb0 {
  margin-bottom: 0;
}

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

/*--------------------------------------------------------------
# Loader
--------------------------------------------------------------*/

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1); /* semi-transparent white background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.loader {
  position: relative;
}

.logo-reveal {
  overflow: hidden;
  width: 5px; /* Start with only 5px of the logo visible */
  animation: reveal 1.5s linear infinite; /* Infinite animation for continuous effect */
}

.loaderLogo {
  width: 130px; /* Adjust this to the actual width of your logo */
  height: 58px; /* Adjust this to the actual height of your logo */
}

@keyframes reveal {
  0% {
    width: 40px; /* Starting width */
  }
  100% {
    width: 135px; /* Full width of the logo */
  }
}

/* Hide loader when content is loaded */
body.loaded .loader-wrapper {
  display: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2890b7;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #57aae1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 18px 0;
  background: #fff;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #2890b7;
}

.navbar .contactNavBg,
.navbar .contactNavBg:focus {
  background: #2890b7;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
}

.navbar .contactNavBg:hover,
.navbar .contactNavBg:focus:hover {
  color: #fff;
  background: #4aa3df;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #2890b7;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.7);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #2890b7;
}

.navbar-mobile .contactNavBg {
  background: none;
  padding: 10px 20px;
  margin-left: 0;
  border-radius: 0;
  color: #222222;
}

.navbar-mobile .contactNavBg:focus, .navbar-mobile .contactNavBg:hover {
  color: #2890b7;
  background: none;
  border-radius: 0;
  margin-left: 0;
  padding: 10px 20px;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #2890b7;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  margin-top: 87px;
  /* background-color: #b3e0ff; */
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #2890b7
}

#hero h2 {
  color: #484848;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #2890b7;
  border: 2px solid #2890b7;
}

#hero .btn-get-started:hover {
  background: #2890b7;
  color: #fff;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

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

@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero {
    margin-top: 20px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

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

.section-bg {
  background-color: #f7fbfe;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #2890b7;
  display: inline-block;
}

.section-title h2::before {
  margin: 0 15px 10px 0;
}

.section-title h2::after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin: 15px 0 0 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f3f9fd;
  padding: 10px 0;
  text-align: center;
}

.clients .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients .slider {
  width: 100%;
  margin: 20px auto;
  padding: 0;
}

.clients .slick-slide {
  margin: 0px 20px;
}

.clients .slick-slide img {
  width: 100%;
}

.clients .slick-prev:before,
.clients  .slick-next:before {
  color: black;
}

.clients  .slick-slide {
  transition: all ease-in-out .3s;
  opacity: 1;
}

.clients  .slick-active {
  opacity: 1;
}

.clients  .slick-current {
  opacity: 1;
}

.clients .clientSlider img {
  width:140px;
}

.clientSlider .slick-prev, .clientSlider .slick-next {
  height: 40px;
  width: 20px;
  top: 50%;
  z-index: 9;
}
.clientSlider .slick-prev {
  left: -12px;
  background: #2890b7 url('../img/clientSlider-leftArrow.png') center no-repeat;
}
.clientSlider .slick-next {
  right: -12px;
  background: #2890b7 url('../img/clientSlider-rightArrow.png') center no-repeat;
}
.clientSlider .slick-prev:before, .clientSlider .slick-next:before {
  display: none;
}
.clientSlider .slick-prev:hover, .clientSlider .slick-next:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .clients img {
    width: 30%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #2890b7;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #2890b7;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #2890b7;
}

.about .content .btn-learn-more:hover {
  background: #2890b7;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 40px;
  padding-bottom: 40px;
}

.counts .content {
  padding: 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #222222;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #2890b7;
  float: left;
  line-height: 0;
}

.counts .content .count-box span {
  font-size: 20px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #222222;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #484848;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #484848;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #6f6f6f;
}

@media (max-width: 1024px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 70%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #2890b7;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #2890b7;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

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

.services .icon-box:hover .icon i {
  color: #2890b7;
}

/*--------------------------------------------------------------
# More Services
--------------------------------------------------------------*/
.more-services {
  padding-top: 20px;
}

.more-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}

.more-services .card:hover .card-body {
  background: #2890b7;
}

.more-services .card:hover .read-more a,
.more-services .card:hover .card-title,
.more-services .card:hover .card-title a,
.more-services .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(59, 175, 218, 0.85), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta .section-title h2 {
  color:#ffffff
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

.counter {
  display: flex;
  align-items: center;
}
.counterIcon {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.counterIcon img {
  width: 60px;
}
.counterDetail {
  margin-left: 22px;
}
.counterDetail .counterNumber {
  font-size: 30px;
  margin-bottom: 5px;
}
.counterDetail span {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px 18px;
    background: #ffffff;
    transition: ease-in-out 0.3s;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #ebebeb;
}

.features .icon-box i {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 20px;
}

.features .icon-box img {
  width:54px;
  margin-bottom: 25px;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 13.5px;
  text-align: center;
}

.features .icon-box h3 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #2890b7;
}

.features .icon-box:hover {
  background: #eef7fc;
}

/*--------------------------------------------------------------
# Web App Slider
--------------------------------------------------------------*/

.swiper.swiper-webApp {
  width: auto;
  padding: 0 300px 70px;
}
.swiper.swiper-webApp .swiper-slide {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #ebebeb;
  overflow: hidden;
}
.swiper.swiper-webApp img {
  width:100%;
  height: 100%;
  border-radius: 10px;
  
}
.swiper.swiper-webApp .swiper-button-prev {
  left: 280px;
}
.swiper.swiper-webApp .swiper-button-next {
  right: 280px;
}
.swiper.swiper-webApp .swiper-button-prev, .swiper.swiper-webApp .swiper-button-next {
  top: calc(50% - 40px);
  background: #2890b7;
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 1px 1px 8px 2px rgba(0,0,0,0.3);
}
.swiper.swiper-webApp .swiper-button-prev:after, .swiper.swiper-webApp .swiper-button-next:after {
  font-size: 12px;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Mobile App Slider
--------------------------------------------------------------*/

.swiper.swiper-staffApp img, .swiper.swiper-parentApp img {
  width:100%;
  height: 100%;
  box-shadow: 0px 0px 12px 1px rgba(0,0,0,0.2);
  border-radius: 10px;
}
.swiper-staffApp.swiper-3d .swiper-slide-shadow-left,
.swiper-staffApp.swiper-3d .swiper-slide-shadow-right,
.swiper-parentApp.swiper-3d .swiper-slide-shadow-left,
.swiper-parentApp.swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}
.swiper-staffApp.swiper-3d, .swiper-parentApp.swiper-3d {
    /* perspective: 600px !important; */
    /* perspective: 1200px; */
}
.swiper-staffApp .swiper-slide, .swiper-parentApp .swiper-slide {
  width:250px !important
}

/*--------------------------------------------------------------
# Recent Blog Postst Section
--------------------------------------------------------------*/
.recent-blog-postst .post-item {
  background: #ffffff;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-blog-postst .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-postst .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #2890b7;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-postst .post-item .post-content {
  padding: 30px;
  background-color: #ffffff;
}

.recent-blog-postst .post-item .post-title {
  color: #37517e;
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-postst .post-item .meta i {
  font-size: 16px;
  color: #47b2e4;
}

.recent-blog-postst .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, #444444, transparent 50%);
}

.recent-blog-postst .post-item hr {
  color: color-mix(in srgb, #444444, transparent 80%);
  margin: 20px 0;
}

.recent-blog-postst .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, #444444, transparent 40%);
}

.recent-blog-postst .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-postst .post-item:hover .post-title,
.recent-blog-postst .post-item:hover .readmore {
  color: #2890b7
}

.recent-blog-postst .post-item:hover .post-img img {
  transform: scale(1.1);
}
.recent-blog-postst .see-more-blog-btn {
  color: #2890b7;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Raleway", sans-serif;;
  transition: 0.3s;
  border: 1px solid #2890b7;
}
.recent-blog-postst .see-more-blog-btn:hover {
    background: #2890b7;
    color: #ffffff;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}

.pricing h4 {
  font-size: 48px;
  color: #37517e;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #47b2e4;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured {
  border-top-color: #47b2e4;
}

.pricing .featured .buy-btn {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .contact-about img {
  margin: 0 0 20px 0;
  width: 200px;
}

/* .contact .contact-about h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222222;
} */
.contact .contact-about h2 {
  color: #2890b7;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 10px;
}
.contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Raleway", sans-serif;
  color: #888;
  color: #444;
}
.contact .contact-about img {
  width:130px
}

.contact .social-links {
  padding-bottom: 20px;
}

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

.contact .social-links a:hover {
  background: #2890b7;
  color: #fff;
}

.contact .info {
  color: #444444;
}

.contact .info i {
  font-size: 32px;
  color: #2890b7;
  float: left;
  line-height: 1;
}

.contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

.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 .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #2890b7;
}

.contact .php-email-form button[type=submit] {
  background: #2890b7;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #2383c4;
}

.downloadApp p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Raleway", sans-serif;
  color: #444;
}

.download-button a img {
  width: 150px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8f8f8;
  min-height: 40px;
  margin-top: 86px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 72px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

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

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

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

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

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #222222;
  font-size: 14px;
}

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

#footer .footer-links a {
  color: #222222;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #2890b7;
}

/**** Animated Downward Arrow ****/

.arrows {
  width: 60px;
  height: 72px;
  position: absolute;
  left: 0;
  margin-left: 0;
}
.svgArrows {
  width: 100%;
  height: 100%;
}
.arrows path {
	stroke: #2890b7;
	fill: transparent;
	stroke-width: 1px;	
	animation: arrow 2s infinite;
	-webkit-animation: arrow 2s infinite; 
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.arrows path.a1 {
	animation-delay:-1s;
	-webkit-animation-delay:-1s; /* Safari 和 Chrome */
}

.arrows path.a2 {
	animation-delay:-0.5s;
	-webkit-animation-delay:-0.5s; /* Safari 和 Chrome */
}

.arrows path.a3 {	
	animation-delay:0s;
	-webkit-animation-delay:0s; /* Safari 和 Chrome */
}

/*--------------------------------------------------------------
# Client Page
--------------------------------------------------------------*/

.clientsPage .clientList .clientLogoWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 9px #3c3c3c21;
  border: 1px solid #f3f3f3;
  margin-bottom: 20px;
  border-radius: 6px;
}
.clientsPage .clientList img {
  width: 150px;
}

/*--------------------------------------------------------------
# Web Application Slider
--------------------------------------------------------------*/

.webAppSS .nav-tabs, .mobileAppSS .nav-tabs {
  background-color: #f1f4fb;
  border: 0;  
  width: fit-content;
  margin: auto auto 60px;
  border-radius: 20px;
}
.webAppSS .nav-tabs li button, .mobileAppSS .nav-tabs li button { 
  color: #222222;
  border-radius: 0;
  transition: 0.1s ease-in-out;
}
.webAppSS .nav-tabs li button.active, .mobileAppSS .nav-tabs li button.active {
  background-color: #2890b7;
  color: #ffffff;
  border-radius: 20px;
}

/*--------------------------------------------------------------
# Inner Page Header Image
--------------------------------------------------------------*/

.breadcrumbs.withBackgroundImg {
  height: 300px;
}

.clientsPage .breadcrumbs.withBackgroundImg {
  background-image: url('../img/clients/clientsPageBg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.privacyPolicyPage .breadcrumbs.withBackgroundImg {
  background-image: url('../img/privacyPageBg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.termsPage .breadcrumbs.withBackgroundImg {
  background-image: url('../img/termsBg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}


.breadcrumbs.withBackgroundImg h2 {
  font-size: 34px;
  font-weight: 600;
  color: #ffffff;
}

.breadcrumbs.withBackgroundImg ol li+li, .breadcrumbs.withBackgroundImg ol li+li::before {
  color: #ffffff;
}

/*--------------------------------------------------------------
# Inner Page Common
--------------------------------------------------------------*/

.innerPage {
  padding-top: 130px;
}
.innerPage ul {
  margin: 0;
  padding-left: 20px;
}
.innerPage ul li {
  margin-bottom: 8px;
}
.innerPage ul li:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: #ffffff;
  background-color: #2890b7;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, #2890b7, transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: #ffffff;
  margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: #ffffff;
  font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #37517e
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #37517e;
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: #37517e;
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: #37517e;
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, #2890b7, transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: #37517e;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: #2890b7;
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: #37517e;
  font-weight: 500;
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: #2890b7;
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: #37517e;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, #2890b7, transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: #37517e;
  margin: 0 0 1rem;
  position: relative;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
  color: #37517e;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, #2890b7, transparent 90%);
  color: #2890b7;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: #2890b7;
  color: #ffffff;
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, #2890b7, transparent 90%);
  color: #2890b7;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: #2890b7;
  color: #ffffff;
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Responsive CSS
--------------------------------------------------------------*/

@media (max-width: 1400px) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 42px;
  }
  #hero h2 {
    font-size: 22px;
    line-height: 28px;
  }
  #hero img {
    padding-left: 30px;
  }
  .counts .content .count-box span {
    font-size: 19px;
  }
  .features .icon-box h3 {
    min-height: 27px;
  }
  .features .icon-box img {
    margin-top: 10px;
  }
  .swiper.swiper-webApp {
    padding: 0 200px 70px;
  }
  .swiper.swiper-webApp .swiper-button-prev {
    left: 180px;
  }
  .swiper.swiper-webApp .swiper-button-next {
    right: 180px;
  }
  .services .description {
    font-size: 14px;
  }
  .clients .clientSlider img {
    width: 130px;
  }
  .clients .clientSlider .slick-dots li button {
    width: 11px;
    height: 11px;
  }
}

@media (max-width: 1200px) {
  #hero h1 {
    font-size: 36px;
  }
  #hero h2 {
    font-size: 21px;
    line-height: 29px;
  }
  #hero img {
    padding-left: 40px;
  }
  .section-title h2 {
    font-size: 30px;
  }
  .counts .image img {
    max-width: 75%;
  }
  .counts .content .count-box p {
    font-size: 15px;
  }
  .features .col-lg-2 {
    width:20%
  }
  .features .col-lg-2:nth-child(6) .icon-box {
    margin-top: 1.5rem;
  }
  .webAppSS .nav-tabs li button {
    font-size: 15px;
  }
  .swiper.swiper-webApp {
    padding: 0 140px 70px;
  }
  .swiper.swiper-webApp .swiper-button-prev, .swiper.swiper-webApp .swiper-button-next {
    top: calc(50% - 30px);
  }
  .swiper.swiper-webApp .swiper-button-prev {
    left: 124px;
  }
  .swiper.swiper-webApp .swiper-button-next {
    right: 124px;
  }
  .swiper-staffApp .swiper-slide, .swiper-parentApp .swiper-slide {
    width: 240px !important;
  }
  .services .col-lg-3 {
    width:33.33%
  }
  .services .col-lg-3:nth-child(4) .icon-box {
   margin-top: 1.5rem; 
  }
  .cta {
    padding: 50px 0;
  }
  .counterIcon {
    padding: 18px;
  }
  .counterIcon img {
    width: 55px;
  }
  .counterDetail {
    margin-left: 15px;
  }
  .counterDetail .counterNumber {
    font-size: 28px;
  }
  .contact .social-links {
    padding-bottom: 0;
  }
  .download-button a img {
    width: 140px;
  }
  #footer {
    padding: 25px 0;
  }
}

@media (max-width: 992px) {
  #hero {
    padding: 40px 0;
  }
  #hero .hero-img img {
    width: 380px;
    padding-left: 0;
  }
  .heroContent {
    padding-top: 40px !important;
  }
  #hero h1 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 5px;
  }
  #hero h2 {
    font-size: 19px;
    text-align: center;
    margin-bottom: 0;
  }
  #hero .arrows {
    display: none;
  }
  section {
    padding: 50px 0;
  }
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 0;
  }
  .section-title {
    padding-bottom: 25px;
  }
  .section-title p {
    margin: 10px 0 0 0;
  }
  .pt-md-0 {
    padding-top:0;  
  }
  #counts .countsContent .col-md-6:nth-child(3) .count-box,
  #counts .countsContent .col-md-6:nth-child(4) .count-box {
    padding-bottom:0;
  }
  .featureBoxes {
    margin-top:20px;
  }
  .features .col-md-4 {
    width: 25%;
  }
  .features .col-md-4:nth-child(5) .icon-box {
    margin-top: 1.5rem;
  }
  .webAppSS .nav-tabs {
    margin: 10px auto 30px;
  }
  .swiper.swiper-webApp {
    padding: 0 80px 60px;
  }
  .swiper.swiper-webApp .swiper-button-prev, .swiper.swiper-webApp .swiper-button-next {
    top: calc(50% - 26px);
    width: 36px;
    height: 36px;
  }
  .swiper.swiper-webApp .swiper-button-prev {
    left: 65px;
  }
  .swiper.swiper-webApp .swiper-button-next {
    right:65px;
  }
  .mobileAppSS .swiper-staffApp.swiper-3d, .mobileAppSS .swiper-parentApp.swiper-3d {
    margin-top: 20px;
  }
  .swiper-staffApp .swiper-slide, .swiper-parentApp .swiper-slide {
    width: 220px !important;
  }
  .services .serviceBoxes {
    margin-top:20px;
  }
  .services .col-lg-3 {
    width: 50%;
  }
  .services .col-lg-3:nth-child(4) .icon-box {
    margin-top: 0;
  }
  .services .col-lg-3 {
    width: 50%;
    margin-top: 0 !important;
    margin-bottom: 30px !important;
  }
  .services .col-lg-3:nth-child(7), .services .col-lg-3:nth-child(8) {
    margin-bottom: 0 !important;
  }
  .cta .row {
    margin-top: 15px !important;
  }
  .cta .col-lg-3 {
    width: 50%;
  }
  .cta .col-lg-3:nth-child(1), .cta .col-lg-3:nth-child(2) {
    margin-bottom: 20px;
  }
  .cta .col-lg-3 .counter {
    margin-left: 50px;
  }
  .contact .downloadApp {
    margin-top: 25px;
  }
  .contact .info .dInlineBlock {
    display: block;
  } 
  #footer .col-lg-6 {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #header {
    padding: 15px 0;
  }
  #header .logo img {
    max-height: 50px;
  }
  #hero {
    margin-top: 80px;
    padding: 25px 0 40px;
  }
  #hero .hero-img img {
    width: 340px;
  }
  #hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  #hero h2 {
    font-size: 16px;
    line-height: 22px;
  }
  .clients {
    padding: 0 0 10px;
  }
  .clients .clientSlider img {
    width: 120px;
  }
  .slick-dots li {
    margin: 0 4px;
  }
  .clients .clientSlider .slick-dots li button {
    width: 10px;
    height: 10px;
  }
  section {
    padding: 40px 0;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .section-title h2::before, .section-title h2::after {
    width: 45px;
    height: 1px;
  }
  .section-title h2::before {
    margin: 0 12px 8px 0;
  }
  .section-title h2::after {
    margin: 0 0 8px 12px;
  }
  .section-title p {
    margin: 10px 0 0 0;
    font-size: 15px;
  }
  .about .content p, .about .content ul li {
    font-size:15px;
  }
  .about .content ul {
    margin: 0;
  }
  .about .content ul li {
    padding-left: 26px;
  }
  .about .content ul li+li {
    margin-top: 8px;
  }
  .counts .content .count-box i {
    font-size: 30px;
  }
  .counts .content .count-box span {
    font-size: 18px;
    margin-left: 47px;
  }
  .counts .content .count-box p {
    padding: 10px 0 0 0;
    margin: 0 0 0 47px;
  }
  .counts .content .count-box {
    padding: 20px 0 10px;
  }
  .features .col-md-4 {
    width: 50%;
  }
  .features .col-md-4:nth-child(3) .icon-box, .features .col-md-4:nth-child(4) .icon-box {
    margin-top: 1.5rem;
  }
  .features .icon-box {
    padding: 25px 20px;
  }
  .features .icon-box h3 {
    min-height: auto;
  }
  .webAppSS .nav-tabs li button {
    font-size: 14px;
  }
  .swiper.swiper-webApp {
    padding: 0 0 55px;
  }
  .swiper.swiper-webApp .swiper-button-prev, .swiper.swiper-webApp .swiper-button-next {
    display: none;
  }
  .mobileAppSS .swiper-staffApp.swiper-3d, .mobileAppSS .swiper-parentApp.swiper-3d {
    margin-top: 0px;
  }
  .swiper-staffApp .swiper-slide, .swiper-parentApp .swiper-slide {
    width: 210px !important;
  }
  .swiper-button-next, .swiper-button-prev {
    width: 20px;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 36px;
  } 
  .services .col-lg-3 {
    width: 330px;
    margin: auto auto 30px !important;
  }
  .services .col-lg-3:nth-child(7) {
    margin-bottom: 30px !important;
  }
  .cta .col-lg-3 {
    width: 50%;
  }
  .cta .col-lg-3:nth-child(1), .cta .col-lg-3:nth-child(2) {
    margin-bottom: 25px;
  }
  .cta .col-lg-3 .counter {
    margin-left: 0;
  }
  .counterIcon img {
    width: 50px;
  }
  .counterDetail .counterNumber {
    font-size: 24px;
    margin-bottom: 2px;
  }
  .counterDetail span {
    font-size: 15px;
  }
  .download-button a img {
    width: 130px;
  }
  #footer {
    padding: 20px 0;
  }
  #footer .col-lg-6 {
    width: 100%;
    text-align: center;
  }
  #footer .copyright {
    margin-bottom: 8px;
  }
  #footer .footer-links {
    text-align: center !important;
  }
}
@media (max-width: 480px) {
  #hero .hero-img img {
    width: 320px;
  }
  section {
    padding: 35px 0;
  }
  .section-title h2 {
    font-size: 20px;
  }
  .section-title h2::before, .section-title h2::after {
    width: 35px;
    height: 1px;
  }
  .section-title h2::before {
    margin: 0 12px 7px 0;
  }
  .section-title h2::after {
    margin: 0 0 7px 12px;
  }
  .section-title p {
    margin: 8px 0 0 0;
    font-size: 14px;
  }
  .features .col-md-4 {
    width: 100%;
  }
  #hero h1 {
    font-size: 26px;
  }
  #hero h2 {
    font-size: 15px;
    line-height: 23px;
  }
  .heroContent {
    padding-top: 30px !important;
  }
  .about .content p, .about .content ul li {
    font-size: 14px;
  }
  .counts {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .counts .content .count-box i {
    font-size: 26px;
  }
  .counts .content .count-box span {
    font-size: 18px;
    margin-left: 42px;
  }
  .counts .content .count-box p {
    padding: 10px 0 0 0;
    margin: 0 0 0 42px;
  }
  .features .icon-box {
    width: 160px;
    margin: auto;
  }
  .features .col-md-4:nth-child(2) .icon-box {
    margin-top: 1.5rem;
  }
  .webAppSS .nav-tabs li button {
    font-size: 13px;
  }
  .webAppSS .nav-tabs {
    margin: 10px auto 28px;
  }
  section.webAppSS {
    padding: 35px 0 30px;
  }
  .swiper-staffApp .swiper-slide {
    width: 190px !important;
  }
  .services .col-lg-3 {
    width: 300px;
  }
  .services .icon-box {
    padding: 25px;
  }
  .services .icon {
    padding-top: 9px;
    width: 50px;
    height: 50px;
  }
  .services .icon i {
    font-size: 30px;
  }
  .services .title {
    margin-bottom: 12px;
    font-size: 17px;
  }
  .services .description {
    font-size: 13.5px;
    line-height: 24px;
  }
  .cta {
    padding: 40px 0;
  }
  .cta .col-lg-3 {
    width: 100%;
  }
  .counter {
    flex-direction: column;
    text-align: center;
  }
  .counterDetail {
    margin-left: 0;
    margin-top: 8px;
  }
  .counterDetail .counterNumber {
    font-size: 22px;
    margin-bottom: 0;
  }
  .counterDetail span {
    font-size: 14px;
  }
  .cta .col-lg-3:nth-child(3) {
    margin-bottom: 25px;
  }
  .contact .contact-about img {
    width: 120px;
  }
  .contact .contact-about p {
    line-height: 22px;
  }
  .contact .social-links a {
    font-size: 16px;
    padding: 7px 0;
    width: 32px;
    height: 32px;
  }
  .contact .info i {
    font-size: 26px;
  }
  .contact .info p {
    padding: 0 0 0 38px;
    line-height: 26px;
    font-size: 14px;
  }
  .contact .downloadApp {
    margin-top: 0;
  }
  .download-button a img {
    width: 120px;
  }
  #footer {
    padding: 18px 0;
  }
  #footer .copyright {
    margin-bottom: 2px;
  }
  #footer .footer-links a {
    padding-left: 12px;
  }
}