html {
    overflow-x: hidden;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    color: #9fa1a4;
    line-height: 1.5;
  }
  
  a {
    color: #777;
    text-decoration: none;
    transition: 0.3s all ease;
  }
  
  a:hover {
    color: #000;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .font-heading {
    font-family: "Poppins", sans-serif;
    color: #000;
  }
  
  .container {
    z-index: 2;
    position: relative;
  }
  
  .text-black {
    color: #000 !important;
  }
  
  .text-primary {
    color: #2d71a1 !important;
  }
  
  .border-top {
    border-top: 1px solid #f2f2f2 !important;
  }
  
  .border-bottom {
    border-bottom: 1px solid #f2f2f2 !important;
  }
  
  figure figcaption {
    margin-top: 0.5rem;
    font-style: italic;
    font-size: 0.8rem;
  }
  
  section {
    overflow: hidden;
  }
  
  .section {
    padding: 7rem 0;
  }
  
  .section-heading {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(-45deg, #3db3c5, #274685);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #2d71a1;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #3687c1;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /* Default btn sre-tyling */
  .btn {
    border: none;
    padding: 15px 30px !important;
  }
  
  .btn.btn-outline-white {
    border: 2px solid #fff;
    background: none;
    color: #fff;
  }
  
  .btn.btn-outline-white:hover {
    background: #fff;
    color: #2d71a1;
  }
  
  .btn.btn-primary {
    background: #2d71a1;
    background: linear-gradient(-45deg, #1391a5, #274685);
    color: #fff;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
  }
  
  /* Feature 1 */
  .feature-1 .wrap-icon {
    margin: 0 auto;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-1 .wrap-icon.icon-1 {
    background: linear-gradient(-45deg, #3b87bd, #2d71a2);
  }
  
  .feature-1 .wrap-icon i {
    font-size: 40px;
    line-height: 0;
    color: #fff;
  }
  
  .feature-1 h3 {
    font-size: 20px;
  }
  
  .feature-1 p {
    color: #b1b1b1;
  }
  
  /* Review */
  .review h3 {
    font-size: 20px;
  }
  
  .review p {
    line-height: 1.8;
    font-style: italic;
    color: #333333;
  }
  
  .review .stars span {
    color: #FF8803;
  }
  
  .review .stars .muted {
    color: #ccc;
  }
  
  .review .review-user img {
    width: 70px;
    margin: 0 auto;
  }
  
  /* Testimonial Carousel */
  .testimonials-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .testimonials-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #2d71a1;
  }
  
  .testimonials-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #2d71a1;
  }
  
  /* CTA Section */
  .cta-section {
    background: linear-gradient(to right, rgb(39, 70, 133) 0%, rgb(61, 179, 197) 100%);
    color: #fff;
  }
  
  .cta-section img{
    height: 80px;
  }
  
  .cta-section h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
  }
  
  @media screen and (max-width: 768px) {
    .cta-section h2 {
      font-size: 2rem;
    }
  }
  
  .cta-section .btn {
    background: #000000;
    color: #fff;
  }
  
  .cta-section .btn i {
    margin-right: 5px;
    font-size: 24px;
    line-height: 0;
  }

/* Contact Form */

.form-control {
  height: 48px;
  border-radius: 0;
  border: 1px solid #dae0e5;
}

.form-control:active,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #2d71a1;
}
.section iframe{
  position: relative; 
  top: -23%;
}
.list-unstyled{
  position: relative; 
  top: -23%;
}
@media (max-width: 991px) {
  .section iframe{
    position: relative; 
    top: 0%;
  }
  .list-unstyled{
    position: relative; 
    top: 0%;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
}

#header.header-scrolled {
  background: rgba(39, 70, 133, 0.8);
  height: 60px;
}

#header .logo h1 {
  font-size: 20px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: 500;
}

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

#header .logo img {
  padding: 0;
  margin: 0;
  height: 40px;
  width: 50px;
}

/*--------------------------------------------------------------
# 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: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  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{
  color: #fff;
}


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

@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(27, 49, 94, 0.9);
  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: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  background: linear-gradient(to right, rgba(39, 70, 133, 0.8) 0%, rgba(61, 179, 197, 0.8) 100%), url(../img/hero-bg.jpg) no-repeat;
  position: relative;
}

.hero-section .wave {
  width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  bottom: -150px;
}

@media screen and (max-width: 992px) {
  .hero-section .wave {
    bottom: -180px;
  }
}

.hero-section .wave svg {
  width: 100%;
}

.hero-section,
.hero-section>.container>.row {
  height: 100vh;
  min-height: 880px;
}

.hero-section.inner-page {
  height: 60vh;
  min-height: 0;
}

.hero-section.inner-page .hero-text {
  transform: translateY(-150px);
  margin-top: -120px;
}

@media screen and (max-width: 992px) {
  .hero-section.inner-page .hero-text {
    margin-top: -80px;
  }
}

.hero-section h1 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}

@media screen and (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 40px;
  }
}

@media screen and (max-width: 992px) {
  .hero-section .hero-text-image {
    margin-top: 4rem;
  }
}

.hero-section p {
  font-size: 18px;
  color: #fff;
}

.hero-section .iphone-wrap {
  position: relative;
}

@media screen and (max-width: 992px) {
  .hero-section .iphone-wrap {
    text-align: center;
  }
}

.hero-section .iphone-wrap .section {
  position: absolute;
  top: -55%;
  overflow: hidden;
  text-align: center;
  width: 500px;

}

@media screen and (max-width: 992px) {

  .hero-section .iphone-wrap .phone-1 {
    position: relative;
    top: 0;
    left: 75px;
    max-width: 100%;
    width: 250px;
  }
}


@media screen and (max-width: 992px) {
  .hero-section .iphone-wrap .phone-1 {
    margin-left: -150px;
  }
}


.counts-heading {
  font-size: 2rem;
  font-weight: 500;
  background: linear-gradient(-45deg, #3db3c5, #274685);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.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-xp{
  display: flex;
  align-items: center;
}

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

.counts .content .count-box span {
  font-size: 36px;
  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: "SFMono", 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%;
  }
}

/*--------------------------------------------------------------
# Counts-Xp
--------------------------------------------------------------*/
.counts-xp {
  padding: 70px 0 60px;
}

.counts-xp .countxp-box {
  display: flex;
  align-items: center;
  width: 100%;
  background: #fff;
}
.counts-xp .countxp-box i {
  font-size: 50px;
  line-height: 0;
  margin-right: 20px;
  color: #4154f1;
}
.counts-xp .row{
  position: relative;
  margin-left: auto;
  margin-right: auto;
  right: 0;
  width: auto;
}
.counts-xp .countxp-img img {
  max-width: 100%;
}
.counts-xp .countxp-box span {
  font-size: 40px;
  display: block;
  font-weight: 600;
  color: #0b198f;
}
.counts-xp .countxp-box p {
  padding: 0;
  margin: 0;
  font-family: "SFMono", sans-serif;
  font-size: 30px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 2rem 0 2.5rem 0;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 30px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: #000;
}

.footer .copyright {
  margin-bottom: 0px;
}

.footer .copyright,
.footer .credits {
  font-size: 14px;
}

.social a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f8f9fa;
  position: relative;
  text-align: center;
  transition: 0.3s background ease;
  color: #0d1e2d;
  line-height: 0;
}
.footer-not-index{
  background: linear-gradient(to right, rgb(39, 70, 133) 0%, rgb(61, 179, 197) 100%);
  color: #fff;
}
.social a span {
  display: inline-block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.social a:hover {
  color: #fff;
  background: #2d71a1;
}

.social a i {
  line-height: 0;
}
.section-us{
  padding: 1rem;
}
.section-us img{
  max-height: 400px;
  position: relative;
  left: 20%;
}
@media (max-width: 1200px) {
  .section-us img{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    width: auto;
    height: auto;
  }
}
  
