* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

.navbar-toggler {
  background-color: #fff !important;
}

/* Preloader  */
.lds-hourglass {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  box-sizing: border-box;
  border: 32px solid #062969;
  border-color: #062969 transparent #02baf2 transparent;
  animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

/* Header  */
/* top header  */
.top_header {
  padding: 10px 0;
  background-color: #09324e;
}

.top_header a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
  transition: 0.4s;
}

.top_header a:hover {
  color: #f8bc06;
}

.top_section {
  position: relative;
}

.nav-item .btn {
  font-size: 18px;
  margin-left: 15px;
  font-weight: 500;
  background-color: #09324e;
  border-radius: 10px 10px 0;
  color: #fff;
  transition: 0.4s;
  padding: 9px 20px 9px 26px;
}

.nav-item .btn:hover {
  background-color: #f8bc06 !important;
  color: #fff !important;
}

.nav-link {
  font-weight: 500 !important;
  margin: 0 6px;
  font-size: 18px !important;
  border-radius: 5px;
  color: #000 !important;
  padding: 7px 12px !important;
}

.nav-link:hover {
  color: #f8bc06 !important;
}

.header {
  background-color: #f8f6f7;
  border-bottom: 1px solid #e3f0f5;
}

/* banner section  */
.banner {
  position: relative;
  padding: 75px 0 90px;
  background-color: #fff;
  z-index: 1;
}

.sub_heading {
  color: #038e41;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 7px;
  display: block;
}

.heading {
  color: #09324e;
  font-weight: 700;
}

.banner h1 {
  font-size: 60px;
}

.banner p {
  font-size: 17px;
  font-weight: 400;
}

.getstart_btn {
  text-decoration: none;
  background-color: #01073e;
  color: #fff;
  border-radius: 10px 10px 0;
  padding: 13px 35px 13px 25px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
  transition: ease 0.5s;
}

.getstart_btn:hover {
  background-color: #5eb700;
  color: #fff;
}

@media only screen and (max-width: 1199px) {
  .banner h1 {
    font-size: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .banner_shape {
    top: 50%;
  }
}

@media only screen and (max-width: 575px) {
  .banner h1 {
    font-size: 38px;
  }

  .banner-text {
    padding: 20px;
  }

  .banner_shape {
    display: none;
  }
}

/* About Section  */
.about-us {
  padding: 70px 0;
  background-color: #09324e;
}


/* Service Section  */
.service {
  padding: 50px 0;
}

.service-wrapper {
  position: relative;
  border-radius: 15px;
  transition: ease 0.5s;
  padding: 20px;
  box-shadow: 0 0 8px #ddd;
  text-align: center;
  height: 100%;
}

.service-wrapper:hover {
  transform: translateY(-15px);
}

.service-wrapper h3 {
  padding: 2px 10px 6px;
  margin-top: 20px;
  position: relative;
  background: #fff;
  color: #063776;
  border: 1px solid #ffffff;
}

.service h1.heading {
  font-size: 45px;
}

@media only screen and (max-width: 550px) {
  .service h1.heading {
    font-size: 27px;
  }
}

/* counter  */
.counter-sec {
  position: relative;
  background-color: #663dff;
  background-image: url("../images/counter-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 30px 0;
  z-index: 1;
}
.counter-sec::after{
  position: absolute;
  content: "";
  background-color: #000;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.counter-wrapper {
  position: relative;
  color: #fff;
  z-index: 1;
}

.count_wrap img {
  filter: invert(1);
}

/* Features Section  */
.features {
  background-color: #ffffff;
  padding: 50px 0;
}

.feature-wrapper {
  padding: 10px;
  border-radius: 15px;
  background: linear-gradient(45deg, #063776, #09324e);
  color: #fff;
  text-align: center;
  height: 100%;
}

.feature_icon {
  width: 105px;
  margin: 11px auto 15px;
  height: 105px;
  border-radius: 50%;
  background-color: #fff;
  border: 5px solid #e5e5e5;
  padding: 20px;
}

.feature_icon img {
  max-width: 100%;
}


/* Business Steps Section  */
.business-steps {
  padding: 50px 0 60px;
}

.step-wrapper h3 {
  font-size: 28px;
  font-weight: 700;
}

.step-wrapper {
  position: relative;
  padding: 20px 45px;
  border: 1px solid #ddd;
  height: 100%;
  border-radius: 0 50px 50px 0;
  overflow: hidden;
  z-index: 1;
}

.step-sn {
  position: absolute;
  font-size: 45px;
  font-weight: 700;
  left: 10px;
  line-height: 35px;
  top: 10px;
  transition: ease 0.4s;
}

.step-wrapper p {
  margin: 0;
}

/* platforms section  */
.platforms {
  padding: 0px 0 50px;
}

.platform-wrapper {
  position: relative;
  border: 1px solid #ddd;
  height: 100%;
  transition: ease-out 0.4s;
}

.platform-wrapper p {
  margin: 0;
}

.plat-text {
  padding: 15px;
  position: relative;
  z-index: 1;
  transition: 0.4s;
}

/* footer section  */
.footer {
  padding: 40px 0;
  background-color: #f8f6f7;
}

.social-icons a {
  color: #ffffff;
  margin: 0 5px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  text-decoration: none;
  border-radius: 50%;
  background-color: #09324e;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: ease-out 0.3s;
}

.social-icons a:hover {
  background-color: #f8bc06;
  transform: translateY(5px);
  color: #fff;
}

.page-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.4s;
  display: block;
}

.page-links a:hover {
  color: #f8bc06;
}

.call a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.call a:hover {
  color: #f8bc06;
}

.cpoyright {
  background: #05193e;
}

.cpoyright p a {
  color: #062969;
  text-decoration: none;
  font-weight: 700;
}

.cpoyright hr {
  color: #8d8d8d;
}