* {
  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 #003399;
  border-color: #003399 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);
  }
}

/* scroll bar css */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(192, 192, 192);
}

::-webkit-scrollbar-thumb {
  background: #003399;
}

::-webkit-scrollbar-thumb:hover {
  background: #00b9fc;
}

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

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

.top_header a:hover {
  color: #00b9fc;
}

.top_section {
  position: relative;
}

.web-btn {
  font-size: 18px;
  margin-left: 15px;
  font-weight: 500;
  background-color: #003399;
  border-radius: 10px 10px 0;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  transition: 0.4s;
  padding: 9px 20px 9px 26px;
}

.web-btn:hover {
  background-color: #00b9fc !important;
  color: #fff !important;
}

.web-btn.banner-btn{
  background-color: #fff;
  color: #0147ff;
  margin-left: 0;
}

.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: #00b9fc !important;
}

.header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

/* banner section  */
.banner {
  position: relative;
  padding: 70px 0;
  background-image: url("../images/banner-bg.jpg");
  background-position: center;
  z-index: 1;
}
.banner .sub_heading {
  color: #fff;
}
.banner::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #003399ed;
}

.sub_heading {
  color: #00b9fc;
  font-size: 21px;
  font-weight: 600;
}

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

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

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

.getstart_btn {
  text-decoration: none;
  background-color: #003399;
  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: #00b9fc;
  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: 60px 0;
}

.about-point {
  height: 100%;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 15px #cfcfcf;
  border-bottom: 3px solid #138806;
}

.about-point-wrap {
  height: 100%;
}

.mission {
  position: relative;
  background-image: url("../images/mission.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
  color: #fff;
}

.mission::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #138806;
}

/* Service Section  */
.service-wrapper {
  position: relative;
  border-radius: 15px;
  transition: ease 0.5s;
  box-shadow: 0 0 10px #ddd;
  padding: 20px;
  height: 100%;
}

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

.service-wrapper:hover .service-icon {
  animation: rotation 4s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

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

.service-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #003399;
  display: inline-block;
  padding: 15px;
  margin: auto;
}

.service-wrapper h4::after {
  position: absolute;
  content: "";
  top: 0px;
  right: 0px;
  width: 30px;
  height: 30px;
}

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

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

/* pricing */
/* Price page css */
.price-section {
  position: relative;
  padding: 50px 0;
}

.single-price h3 {
  font-size: 26px;
  color: white;
  font-weight: 600;
}

.single-price {
  position: relative;
  margin: 15px 0;
  padding: 30px 20px;
  background-color: #1d3b74;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  transition: 0.6s;
}

.price-detail h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  color: #ffffff;
}

.price-detail {
  padding: 5px;
  text-align: center;
  background-color: #3767c1;
  margin: 15px 0;
  border-radius: 5px;
  transition: 0.5s;
}

.price-sub_heading {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.main-price {
  margin-bottom: 10px;
  font-weight: 500;
}

.get_start_btn {
  display: block;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 25px;
  color: #000;
  margin: 20px 0;
  background-color: #ffffff;
  text-decoration: none;
  transition: 0.5s;
}

.heading h2 {
  margin: 0 0 25px 0;
}

.main-price h5,
h6,
h5 {
  color: white;
}

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

.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 {
  margin: 10px 0;
  grid-template-columns: 17% 83%;
  grid-gap: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-wrapper {
    grid-template-columns: 22% 78%;
  }
}

.feature_icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #039;
  border: 5px solid #104abf;
  padding: 15px;
}
.feature_icon img{
  filter: invert(1);
}

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

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

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

.platform-wrapper p {
  margin: 0;
}

.platform-wrapper:hover {
  transform: translateY(-10px);
}

.plat-text {
  padding: 15px;
  position: relative;
  z-index: 1;
  transition: 0.4s;
}
.platform-wrapper:hover{
  color: #fff;
}
.plat-text::after{
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #003399;
  z-index: -1;
  transition: ease 0.5s;
}
.platform-wrapper:hover .plat-text::after{
  height: 100%; 
}

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

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

.social-icons a:hover {
  background-color: #00b9fc;
  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 {
  text-decoration: overline;
  color: #003399;
}

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

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

.cpoyright {
  background: #003399;
}

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

.cpoyright hr {
  color: #8d8d8d;
}