/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/*:root, html {
  scroll-behavior: smooth;
}*/

body {
  font-family: 'Poppins', sans-serif;
  color: #000;
  /*background-image: url(../img/body_bg.png);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;*/
}

a {
  color: #2670b0;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

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

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

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #2670b0;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 500;
  color: #4BB3EE;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

.section-sub-header-grey {
  font-weight: 300;
  color: #898989;
}

.section-small-para-grey {
  font-size: 18px;
  font-weight: 300;
}

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

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

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

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

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

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

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4BB3EE;
  font-family: 'Poppins', sans-serif;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# 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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #013289;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #2670b0;
}

.navbar .getstarted {
  background: #2670b0;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #4bb3ee;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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: 15px;
  text-transform: none;
  font-weight: 400;
}

.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: #2670b0;
}

.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: #4BB3EE;
  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(1, 22, 61, 0.9);*/
  background: #000000d6;
  transition: 0.3s;
}

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

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

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #ffffff;

  justify-content: center;
}

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

.navbar-mobile .getstarted {
  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: #2670b0;
}

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

.nav-logo {
  display: none;
}
/* Mobile CSS */
@media (max-width: 768px) {
  .nav-logo {
    display: unset;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-logo {
  width: 310px;
}
.hero {
  width: 100%;
  height: 100vh;
  /*background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;*/
}

.hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 400;
  color: #4BB3EE;
}

.hero h2 {
  color: #898989;
  margin: 15px 0 0 0;
  font-size: 20px;
  font-weight: 300;
}

.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #2670b0;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.hero .btn-get-started span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .hero-img {
  text-align: right;
}

/* XL screens */
@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

/* MD screens */
@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
}

/* Mobile CSS */
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 26px;
    margin-top: .7rem !important;
  }
  .hero h2 {
    font-size: 20px;
    margin-top: .5rem !important;
  }

  .hero .hero-img img {
    width: 40vh;
  }

  .hero-wrapper {
    display: flex;
    flex-direction: column;
  }
  .mobile-first {
    order: 1;
  }
  .mobile-second {
    display: block;
    order: 2;
  }

  .hero-logo {
    display: none;
  }

  .hero-mobile-store-logo {
    margin-top: 2.2rem !important;
    width: 40%;
  }

}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
@media screen and (max-width: 500px) { /* Remove on mobile */
  #counts {
    display: none;
  }
}

.counts {
  padding: 40px 0 0;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 3;
}

.counts .count-box {
  display: flex;
  align-items: center;
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: #2670b0;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #5BCD67;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #666666;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.feature-text {
  font-weight: 300;
  font-size: 14px;
}

.animated-circle {
  border: 4px solid #4bb3ee;
  border-radius: 300px;
  height: 110px;
  width: 110px;
  padding: 10px;
}
/*--------------------------------------------------------------
# Get Started
--------------------------------------------------------------*/
.get-started .get-started-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  /*background: #fff;*/
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.get-started .get-started-item .stars {
  margin-bottom: 15px;
}

.get-started .get-started-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.get-started .get-started-item .get-started-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.get-started .get-started-item h3 {
  font-size: 30px;
  font-weight: 500;
  margin: 10px 0 5px 0;
  color: #5BCD67;
}

.get-started .get-started-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.get-started .get-started-item p {
  font-weight: 300;
}

.get-started .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.get-started .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5BCD67;
}

.get-started .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5BCD67;
}

.get-started .swiper-slide {
  opacity: 1;
}

.get-started-demo-img {
  float: right;
  width: 85%;
}

@media (max-width: 1199px) {
  .get-started .swiper-slide-active {
    opacity: 1;
  }
  .get-started .swiper-pagination {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .get-started .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

@media (max-width: 768px) {
  .get-started .get-started-item {
    box-sizing: content-box;
    padding: 0;
    margin: 30px 20px;
  }

  .get-started-demo-img {
    float: unset;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-slider .swiper-slide img {
  /*opacity: 0.5;*/
  transition: 0.3s;
  height: auto;
}

.clients .clients-slider .swiper-slide img:hover, .swiper-slide-active img {
  opacity: 1 !important;
}

.clients .clients-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5BCD67;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5BCD67;
}


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

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

/*--------------------------------------------------------------
# Chat
--------------------------------------------------------------*/
.chat .swiper-container {
  position:relative;
  width: auto;
  min-height: 610px;
}
.chat .swiper-container > .swiper-slide__content {
  position:absolute;
  top:0;
}

.chat .swiper-slide {
  min-height: 300px;
  display:flex;
  margin-top: 50px;
  align-items: center;
  justify-content:center;
  transition:all 200ms linear;
  transform: scale(0.8);
}
.chat .swiper-slide__content {
  height: 300px;
}

.chat .swiper-slide-active{
  transform: scale(1.25);
}

.chat-video-description {
  font-weight: 300;
  font-size: 14px;
}


@media (max-width: 768px) {
  .chat .swiper-container {
    position: relative;
    width: auto;
    min-height: 435px;
  }

  .chat-video-description {
    width: 84%;
    margin-left: 27px;
  }
}

/*--------------------------------------------------------------
# Minds
--------------------------------------------------------------*/
.minds-id-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}

.mind-description {
  font-size: 16px;
  font-weight: 300;
}


.minds-id-pic:after {
  content: "";
  position: absolute;
  top: -120px;
  left: -145%;
  width: 100%;
  height: 300%;
  background: linear-gradient(
    154deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(35deg);
  transition: 0.5s;
}

.minds-id-pic:hover:after {
  left: 150%;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  /*background: #2E2E2E;*/
  background: none;
  padding: 0 0 0 0;
  font-size: 14px;
}

.footer .footer-top {
  padding: 50px 0 0 0;
  /*background: #ffffff;*/
  background: none;
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 50px;
  margin-right: 6px;
  line-height: 0;
  margin-bottom: 15px;
}

.footer-heading-type {
  color: #999;
  font-size: 16px;
  font-weight: 500;
}

.footer-heading-type:after {
  content: " ";
  display: block;
  width: 55px;
  height: 5px;
  background: #4bb3ee;
  margin-left: 10px;
  position: relative;
  left: -10px;
  top: 6px;
  border-radius: 13px;
}

.footer-mobile-store-img {
  width: 140px;
}

.footer .footer-top .social-links a {
  font-size: 22px;
  display: inline-block;
  line-height: 0;
  margin-right: 3px;
  transition: 0.3s;
  color: #999999;
  padding: 8px;
  background: #dcdcdc;
}

.footer .footer-top .social-links a:hover {
  color: #4BB3EE;
}

.footer form {
  margin-top: 20px;
  background: #dcdcdc;
  /*padding: 6px 10px;*/
  position: relative;
  border: 1px solid #dcdcdc;
}

.footer form input[type="email"] {
  border: 0;
  padding: 8px;
  width: calc(100% - 50px);
  background: #dcdcdc;
  outline: none;
}

.footer form .subscribe-button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 26px;
  padding: 0 10px;
  background: #4bb3ee;
  color: #fff;
  transition: 0.3s;
}

.footer form .subscribe-button:hover {
  background: #2670b0;
}

.footer .copyright {
  text-align: center;
  padding: 15px 0 15px 0;
  color: #4BB3EE;
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #4BB3EE;
}

.footer-bottom {
  background: #2E2E2E;
}

.blue-link {
  color: #4BB3EE;
  font-weight: 400;
}

/*----------------------------------------------------------
# General CSS
----------------------------------------------------------*/
/* Mobile CSS */
@media (max-width: 768px) {
  .container .mt-5 {
    margin-top: 1rem !important;
  }

  section {
    padding: 20px 0 !important;
  }
  .text-center-mobile{
    text-align: center!important;
  }
}