/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import "root.css";

@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@200;300;400;500;600;700;800;900&family=Poppins:wght@200;300;400;500;600;700&display=swap');


@media (min-width: 1200px){
  .container {
    max-width: 1170px;
  }
}
body {
  background: var(--white);
  color: #444;
      font-family: 'Montserrat', sans-serif;;
}

a {
  color: var(--primary-color);
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: var(--secondary-color);
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
      /* font-family: 'Montserrat', sans-serif;; */
      font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}
button:focus{
  outline: none;
}
/*sticky footer*/
.site { display: flex;min-height: 100vh;flex-direction: column;overflow-x: hidden}
#main {flex: 1 0 auto; /*overflow-x: hidden;*/}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  background: var(--text-black);
  color: var(--white);
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  border: 5px solid var(--dark-black);
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}
.back-to-top i {
  padding-top: 8px;
  color: var(--white);
}
/*--------------------------------------------------------------
# Prelaoder
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000000d1;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid var(--green-primary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
}
.header-scrolled .main-nav li a {
  color: var(--white);
}
.header-scrolled .main-nav li:hover a{
    color: var(--white);
}
.header-scrolled .main-nav a:after{
    background: var(--white);
    border-color: var(--white);
}
.header-scrolled .main-nav li.active a {
  color: var(--white);
}
#header.header-scrolled,
#header.header-pages {
  padding: 10px 0;
  background: var(--dark-black);
  box-shadow: 0px 0px 25px 0px rgba(0,0,0,20%);
}
#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.logo-white{
    display: none;
}
.header-scrolled .logo-white{
    display: block;
}
.header-scrolled .logo-main{
    display: none;
}
.header-scrolled .main-nav .active a:after{
    background: var(--white);
    border-color: var(--white);
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}
.main-nav a:hover:after, .main-nav li.active a:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  background: var(--primary-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  margin-top: 8px;
  width: 26px;
  border: 1px solid var(--primary-color);
  border-radius: 30%;
  margin: 5px auto;
  display: none;
}

#header .logo img {
  padding: 0;
  height: 60px;
}
.main-pages {
  margin-top: 60px;
}
.mobile-nav li.active a {
  background: #fff;
  color: var(--primary-color);
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  position: relative;
  background: url("../images/bg-image.svg") center no-repeat;
  background-size: cover;
  height: 100vh;
  /*padding-top: 50px;*/
  background-position:center center;
  background-color: var(--dark-black);
}

#intro .intro-img {
  background: url(../images/app-screens.svg) center no-repeat;
  background-size: 80%;
  background-position: center center;
  height: 100vh;
  position: relative;
  right: -12%;
}
/*a.scrollto img {
  margin: 0 10px 0 0;
}*/
.intro-text h2 {
  letter-spacing: 0px;
  color: var(--text-black);
  text-transform: capitalize;
  font-size: 62px;
  font-weight: bold;
  line-height:80px;
}
.intro-text h3 {
  letter-spacing: 0px;
  color: var(--dark-secondary);
  opacity: 1;
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 8%;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
      font-family: 'Montserrat', sans-serif;;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: var(--white);
}
#intro .intro-info .btn-get-started {
  background: #007bff;
  border: 2px solid #007bff;
  color: var(--white);
}
#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: var(--white);
  color: var(--white);
}
#intro .intro-info .btn-services {
  border: 2px solid var(--white);
}
#intro .intro-info .btn-services:hover {
  background: #007bff;
  border-color: #007bff;
  color: var(--white);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 2px;
}
.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}
.main-nav a {
  display: block;
  position: relative;
  padding: 10px 18px;
  transition: 0.3s;
  font-size: 16px;
  letter-spacing: 0px;
  color: var(--secondary-color);
  line-height: 18px;
      font-family: 'Montserrat', sans-serif;;
  font-weight: 600;
}
.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: var(--primary-color);
  text-decoration: none;
}
.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}
.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}
.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #004289;
}
.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #007bff;
}
.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}
.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}
.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}
.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}
/*--------------------------------------------------------------
# Mobile Navigation Menu
--------------------------------------------------------------*/
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  /* background: var(--primary-color); */
  background: var(--dark-black);
  transition: 0.4s;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: var(--white);
  padding: 10px 20px;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #E82A9Ff;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav-toggle {
  float: right;
  background: none;
  border: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  margin-top: 15px;
  color: var(--primary-color);
}
.header-scrolled .mobile-nav-toggle {
    color: var(--white);
}
i.fa.fa-times {
  position: fixed;
  z-index: 99999;
  right: 47px;
  float: right;
  background: none;
  color: var(--white);
  border: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  top: 25px;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}
.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  left: 0;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/


/* Sections Header
--------------------------------*/
.section-header h3 {
  line-height: 60px;
  font-size: 42px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0px;
  color: var(--text-black);
  opacity: 1;
  position: relative;
}
.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 51px;
  height: 5px;
  background: var(--red);
  bottom: -10px;
  left: calc(50% - 30px);
}
.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}
/* Section with background
--------------------------------*/
.section-bg {
  background: #ecf5ff;
}
/*--------------------------------------------------------------
#Feature section
--------------------------------------------------------------*/
#Features {
  padding: 80px 0 0;
}
.feature-extra h4:after {
    content: "";
    width: 100px;
    height: 3px;
    background: var(--yellow);
    position: absolute;
    left: 0;
    bottom: -10px;
}
.feature-extra h4 {
  position: relative;
  letter-spacing: 0px;
  color: var(--red);
  opacity: 1;
  font-size: 42px;
  font-weight: bold;
  line-height: 46px;
}
.feature-extra p {
  letter-spacing: 0px;
  color: var(--dark-secondary);
  opacity: 1;
  font-size: 20px;
  line-height: 36px;
}
/*#Features-2 .feature-extra h4, #Features-2 .feature-extra p, #Features-2-1 .feature-extra h4, #Features-2-1 .feature-extra p{
    color: var(--white);
}
#Features-2 .feature-extra h4:after, #Features-2-1 .feature-extra h4:after{
    background: var(--white);
}*/
#Features-2 {
  margin: 0 0px 80px 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0;
}
#Features-2-1{
  padding: 160px 0;
 margin: 0 0px 80px 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.fadeInRight .feature-info {
  margin-left: auto;
}
/*.feature-info:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: -50px;
    top: 50px;
    border-left: 5px dotted var(--primary-color);
    border-bottom: 5px dotted var(--primary-color);
}
.feature-extra .fadeInRight .feature-info:after {
    right: -50px;
    left: auto;
    border-left: none;
    border-right: 5px dotted var(--primary-color);
}*/
/*--------------------------------------------------------------
#Faq section
--------------------------------------------------------------*/
#faq{padding: 100px 0 0;}
.faq_detail .faq_questions { width: 100%;display: inline-block;vertical-align: top; padding-left: 30px;}
.faq_questions .que_ans { opacity: 1; border:0;float: none;color: #000;text-shadow: none; margin-bottom: 8px;}
.faq_questions .q { cursor: pointer; position: relative; line-height: normal;font-size: 18px;font-weight: bold;padding: 19px 40px 19px 20px; color:var(--white) ;border: 1px solid var(--primary-color);
  background: var(--primary-color); 0% 0% no-repeat padding-box;}
.faq_questions .open .q {color:var(--white);margin-bottom: 5px;}
.faq_questions .a { display: none;color: #161616;font-size: 16px;line-height: 25px; padding: 20px}
.faq_questions .open .a { width: 100%;display: block;box-sizing: border-box;color: var(--black);border: 2px dotted var(--primary-color);}
.faq_detail{margin-bottom: 100px;}
.faq_questions .open .a p{
    margin-bottom: 0;
}
.faq_questions .circle { position: absolute;width: 25px; height: 25px;border-radius: 4px; right: 12px; top: 20px;}
.faq_questions .circle .horizontal { position: absolute; background-color: var(--white);   width: 15px; height: 1.5px; left: 50%; margin-left: -7px; top: 50%; margin-top: -2px;}
.faq_questions .close_que .horizontal {transition: all 0.5s ease-in-out; transform: rotate(-90deg);opacity: 1;}
.faq_questions .open .horizontal { transition: all 0.5s ease-in-out; transform: rotate(90deg); opacity: 0;}
.faq_questions .circle .vertical { position: absolute;background-color: var(--white);width: 1.5px;height: 15px; left: 50%; margin-left: -0px; top: 50%;margin-top: -8px;}
.faq_questions .close_que .vertical { transition: all 0.5s ease-in-out; transform: rotate(-90deg);}
.faq_questions .open .vertical {transition: all 0.5s ease-in-out;transform: rotate(90deg);}
.btn:disabled {  background-color: #aaa!important; border-color: #aaa!important; box-shadow: 0 7px 10px rgba(0,0,0,0.1);}

/*--------------------------------------------------------------
#app section
--------------------------------------------------------------*/
.app-image {
  position: relative;
}
.app-image img {
  position: absolute;
  top: -329px;
  bottom: 0;
  right: -20%;
}
.app-info {
  width: 100%;
  position: relative;
  /*padding: 30% 0 0;*/
}
#app {
  background-color: var(--primary-color);
  background-repeat: no-repeat,no-repeat;
  background-size: cover,cover;
  background-position: center,center;
  padding: 150px 0;
  background-image: url(../images/get_bg.svg),url(../images/bg-img.svg);
  background-attachment: scroll,scroll;
}
.app-info .app-title {
  font-size: 42px;
  line-height: 60px;
  text-transform: capitalize;
}
.app-info .app-title::after{
  left: 0;
  bottom: 0;
}
.app-info .app-descr {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
}
.application img {
  margin-right: 20px;
  transition-duration: 0.3s;
}
.application a img {
    box-shadow: 0 0 15px -2px rgba(255,255,255,32%);
}
.application a:hover img {
    box-shadow: 0 0 5px -1px rgba(255,255,255,32%);
}

/*--------------------------------------------------------------
#Testimonial section
--------------------------------------------------------------*/
#testimonial {
  /*background: var(--dark-primary) 0% 0% no-repeat padding-box;*/
  padding: 80px 0;
}
#testimonial .owl-carousel .owl-item img {
  display: block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
}
#testimonial .testimonial-item h3 {
  color: var(--primary-color);
  font-size: 22px;
  line-height: 36px;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
  padding-top: 25px;
}
#testimonial .content {
  background: var(--secondary-color);
  padding: 32px 59px 40px;
  box-shadow: 0px 5px 25px #0000000D;
  margin-bottom: 25px;
  position: relative;
  color: var(--white);
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  border-radius: 30px;
}
.content:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 48%;
  border-top: 15px solid var(--secondary-color);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}
.owl-stage-outer {
  margin-top: 5%;
}
.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 23%;
  font-size: 20px!important;
  background: var(--primary-color) !important;
  box-shadow: 0px 0px 15px #0000001A!important;
  color: #1A1A1A !important;
  border: 1px solid #ddd;
  text-align: center;
}
.owl-nav i {
  font-size: 30px !important;
  text-align: center;
  margin: 0 auto;
  display: block;
  color: var(--white);
}
.owl-carousel .owl-prev {
  left: -130px;
}

.owl-carousel .owl-next {
  right: -130px;
}
#testimonials {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}
/*--------------------------------------------------------------
#Contact section
--------------------------------------------------------------*/
.form {
  margin: 0 auto;
  padding: 50px 0;
}
#contact{
  width: 100%;
  background-size: cover;
  padding-bottom: 110px;
  background-repeat:no-repeat;
}
#contact .form-control {
  background: #F3EDFF 0% 0% no-repeat padding-box;
  border: 1px solid #D3D0DC;
  border-radius: 5px;

  height: 55px;
}
#contact  textarea.form-control{
  height: auto;
}
.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
 color: #87858C;
 opacity: 1;}
 .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #87858C;
  opacity: 1;
}
.form-control::-ms-input-placeholder { /* Microsoft Edge */
 color: #87858C;
 opacity: 1;
}
button.submit-btn {
  background: var(--dark) 0% 0% no-repeat padding-box;
  border-radius: 5px;
  height: 55px;
  line-height: 19px;
  padding: 15px;
  color: var(--white);
  opacity: 1;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid var(--dark);
  cursor: pointer;
}
button.submit-btn:hover {
  border-color: var(--white);
}
/* banner section start
============================================================================================ */
.hero-banner {
  background: url(../images/feature-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
  padding: 200px 0;
}
@media (min-width: 768px) {
  .hero-banner {
    padding: 150px 0;
  }
}
.hero-banner-sm {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .hero-banner-sm {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.hero-banner h1 {
  color: #2a2a2a;
  margin-bottom: 25px;
  font-size: 28px;
}
@media (min-width: 768px) {
  .hero-banner h1 {
    font-size: 60px;
    margin-bottom: 45px;
  }
}
.hero-banner h2 {
  font-size: 22px;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero-banner h2 {
    font-size: 42px;
  }
}
.hero-banner p {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 0;
}
.hero-banner-icon {
  color: var(--white);
  display: inline-block;
}
@media (min-width: 768px) {
  .hero-banner-icon {
    margin-bottom: 10px;
  }
}
.hero-banner-icon i,
.hero-banner-icon span {
  font-size: 35px;
}
@media (min-width: 768px) {
  .hero-banner-icon i,
  .hero-banner-icon span {
    font-size: 60px;
  }
}
.hero-banner-icon[class^="flaticon-"]:before,
.hero-banner-icon[class*=" flaticon-"]:before,
.hero-banner-icon[class^="flaticon-"]:after,
.hero-banner-icon[class*=" flaticon-"]:after {
  font-size: 35px;
}
@media (min-width: 768px) {
  .hero-banner-icon[class^="flaticon-"]:before,
  .hero-banner-icon[class*=" flaticon-"]:before,
  .hero-banner-icon[class^="flaticon-"]:after,
  .hero-banner-icon[class*=" flaticon-"]:after {
    font-size: 60px;
  }
}

/* banner section end
  ============================================================================================ */
.inner-title {
    font-size: 40px;
    font-weight: bold;
    color: var(--white);
    padding: 0 0 15px;
}
section.paddings {
    padding: 50px 0;
}
.privacy-info {
    text-align: justify;
}
.privacy-info p, .privacy-info li{
  color: var(--gray);
}
.inner-pages #header.header-scrolled .bottom-logo {
    display: block !important;
}
.inner-pages #header.header-scrolled .top-logo {
    display: none;
}
.inner-pages #header .bottom-logo {
    display: none;
}
/* breadcrumb section start
  ============================================================================================ */
.banner-breadcrumb {
  display: inline-block;
}
.banner-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
}
.banner-breadcrumb .breadcrumb-item {
  padding: .1rem;
}
.banner-breadcrumb .breadcrumb-item a {
  text-transform: capitalize;
  color: var(--white);
}
.banner-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
  padding-left: .2rem;
  padding-right: .4rem;
}
.banner-breadcrumb .breadcrumb-item.active {
  color: var(--white);
}
.banner-breadcrumb .breadcrumb-item a:hover {
  color:var(--primary-color);
}

/* breadcrumb section end
  ============================================================================================ */
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {  
  background: var(--text-black);
  padding: 20px 0 30px 0;
  font-size: 16px;
  opacity: 1;
}
.copyright-menu li a {
  color: var(--white);
}
.copyright-menu li a:hover {
  color: var(--white);
}
.copyright {
  text-align: center;
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  padding-top: 20px;
}
.copyright-menu li {
  display: inline-block;
}
.copyright-menu ul , ul.social-icons{
  margin-bottom: 0;
}
span.pipe {
  margin: 0 15px;
  color: var(--white);
}
.footer-social-icons {
  width: 350px;
  display:block;
  margin: 0 auto;
}
.social-icon {
  color: var(--white);
}
.social-icons li {
  vertical-align: top;
  display: inline;
  height: 100px;
}
.social-icons a {
  color: var(--white);
  text-decoration: none;
  font-size: 22px;
}
.social-icons a i{
    padding:10px 14px;
  -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  transition: .5s;
  border: 1px solid transparent;
  border-radius: 10px;
}
.social-icons a:hover i{
    border-radius: 10px;
    border-color: var(--white);
}
.copyright a{
  color: var(--dark-primary);
}
/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/
@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
  .app-image img {
    right: 0;
  }
  .main-nav a {
    padding: 10px 10px;
  }
}
@media(max-width:1400px){
  #intro .intro-img {
    right: -5%;
    top: 0;
  }

  .intro-text h2 {
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 38px;
    font-weight: bold;
    line-height: 45px;
    padding-top: 50px;
  }

  .intro-text h3 {
    font-size: 19px;
    line-height: 29px;
    margin-bottom: 5%;
  }

}



@media (max-width:1280px) {
  #intro .intro-img {
    right: 0 !important;
  }

  .intro-text h2 { 
    font-size: 32px;
    line-height: 40px;
  }

}

@media (max-width:991px) {
  #intro .intro-img {
    right: 0 !important;
  }
  #intro {
    background-position: 100% 15%;
    height: auto;
  }
  .app-image img {
    position: unset;
    top: 0;
    bottom: 0;
  }
  .intro-text h2 {
    font-size: 33px;
    line-height: 50px;
    margin-top: 0;
  }
  #intro .intro-img {
      background-size: contain;
      padding: 50% 0;
      height: auto;
  }
  .owl-carousel .owl-next {
    right: -15px;
  }
  .owl-carousel .owl-prev {
    left: -15px;
  }
  .app-info {
    width: 100%;
    position: relative;
    padding: 0;
  }
  #app {
    height: 100%;
  }
  .application img {
    margin-right: 10px;
    width: 121px;
  }
  span.pipe {
    margin: 0 10px;
  }
  .copyright-menu li a {
    font-size: 14px;
  }
  .form {
    margin: 0 auto;
    padding: 25px;
  }
  ul.social-icons {
    padding-left: 0;
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-top: 10px;
  }
  .copyright-menu {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .section-header h3 {
    line-height: 60px;
    font-size: 30px;
  }
  #testimonial .content {
    padding: 25px 25px 25px;
  }
  #Features-2, #Features-2-1{
    line-height: initial;
    margin: 0;
    padding: 100px 0;
  }
  #Features {
    padding: 5% 0 0;
    text-align: center;
  }
  #Features .text-right{
    text-align: center !important;
  }
  .feature-info {
    max-width: 100%;
  }
  .feature-extra h4 {
    font-size: 30px;
    line-height: 30px;
    margin-top: 20px;
  }
  .feature-extra p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
  }
  .row.feature-extra {
    margin: 30px 0 0 !important;
  }
  .faq_detail .faq_questions {
    padding-left: 0;
  }
  .faq_detail {
    margin-bottom: 50px;
  }
  .faq_questions .q {
    font-size: 16px;
  }
  #faq {
    padding: 50px 0 0;
  }
  #header {
    padding: 10px 0;
  }
  #intro .intro-img {
    right: 0 !important;
  }
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
  #intro {
    padding: 85px 0 0px 0;
  }
  #why-us .card {
    margin: 0;
  }
  .feature-extra h4:after {
    left: 50%;
    transform: translate(-50px);
  }
  
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  #app{
    background-image: url(../images/bg-img.svg);
    padding: 50px 0;
  }
  .inner-title {
    font-size: 32px;
    text-align: center;
  }
  .app-info .app-title{
    font-size: 32px;
    text-align: center !important;
  }
  .section-header h3::after {
    left: calc(50% - 30px) !important;
  }
  .hero-banner {
    padding: 70px 0 0;;
    min-height: 250px;
  }
  #intro .intro-info {
    width: 100%;
  }
  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
  .section-header p {
    width: 100%;
  }
  #testimonials .testimonial-item {
    text-align: center;
  }
  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }
  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
  #footer .text-right {
    text-align: center !important;
    float: unset !important;
  }
  #intro .scrollto img {
    width: 121px;
  }
  .faq_detail {
    margin-bottom: 0;
  }
}
@media(max-width: 575px){
  .footer-social-icons{
    width: 100%;
  }
  .intro-text h2{
    font-size: 24px;
  }

  #header .logo img {
    height: 35px;
  }

  .mobile-nav-toggle {
    margin-top: 3px;
  }

  #header.header-scrolled .mobile-nav-toggle .fa.fa-bars {
    color: var(--text-black);
  }

  .mobile-nav {
    padding: 15px;
  }
  
  #intro {
    padding-bottom: 30px;
  }

  .intro-text h2 {
    line-height: 33px;
    margin-top: 20px;
  }

  .inner-heding-content {
    margin: 30px 0 0;
  }

}


.bg-red {
  background: var(--red);
}

.inner_content ul li:not(:last-child) {
  margin-bottom: 10px;
}


/* new css 22-06-23*/
* {
  font-family: 'Montserrat', sans-serif;
}

.logo {
  max-width: 250px;
}

body .text-primary, body .text-primary:hover, body .text-primary:focus {
  color:  var(--green-primary) !important;
}

body .bg-primary,
body .bg-primary:focus {
  background: var(--green-primary) !important;
  background-color: var(--green-primary) !important;
  border-color: var(--green-primary) !important;
  box-shadow: none;
}

body .bg-primary:hover {
  background: var(--green-primary) !important;
  background-color: var(--green-primary) !important;;
}

.mobile-nav-toggle {
  color: var(--green-primary);
}

#intro {
  /* background: var(--dark-black); */
  background: url(../images/test1.jpg);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-size: auto;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}

#intro::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: #000000b2;
}

.banner-carousel {
  position: relative;
  z-index: 11111;
  text-align: center;
}

#header {
  z-index: 999999;
}



#intro .intro-img {
  background: url(../images/app-screens.svg) center no-repeat;
  background-size: 92%;
  background-position: center right;
  height: 100vh;
  position: relative;
  right: 0;
}

.banner-carousel .owl-stage-outer {
  margin-top: 0;
}

.banner-carousel .owl-dots {
  position: absolute;
  top: calc(100% - 10%);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.banner-carousel .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius:10px;
  background: var(--white);
  margin: 0 4px;
  box-shadow: none;
  transition: all ease-in-out 0.2s;
}

.banner-carousel .owl-dots .owl-dot.active {
  width: 17px;
  background: var(--green-primary);
}
.fw-500 {
  font-weight: 500;
}

.news-search {
  position: relative;
  padding: .375rem .75rem .375rem 40px;
  border: 1px solid #ced4da;  
}
.news-search .form-control {
  padding: 0;
  border: none;
  box-shadow: none;
  height: auto;
  min-height: 28px;
}

.news-search .fa-solid {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 20px;
  font-size: 20px;
}

.newsletter .btn {
  min-height: 42px;
}

.btn {
  border-radius: 0;
}

.services {
  padding: 70px 0;
  position: relative;
  background: #e3e3e3;
  z-index: 0;
}



.services .container {
  position: relative;
  z-index: 1;
}

.cmn-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: 45px;
}

/* we oofer  */

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
  background: #ffffff none repeat scroll 0 0;
  border: 2px solid;
  height: 15px;
  margin: 0 5px;
  width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
  background: #00a01d none repeat scroll 0 0;
  border-color: #00a01d;
}

.we-offer-area .item {
  background: #ffffff none repeat scroll 0 0;
  border-left: 2px solid #00a01d;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  overflow: hidden;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.we-offer-area .item:hover {
  cursor: pointer;
}

.we-offer-area.text-center .item {
  background: #ffffff none repeat scroll 0 0;
  border: medium none;
  padding: 67px 40px 64px;
}

.we-offer-area.text-center .item i {
  background: #00a01d none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  font-size: 40px;
  height: 80px;
  line-height: 80px;
  position: relative;
  text-align: center;
  width: 80px;
  z-index: 1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  margin-bottom: 25px;
}

.we-offer-area.text-center .item i::after {
  border: 2px solid #00a01d;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 90px;
  left: -5px;
  position: absolute;
  top: -5px;
  width: 90px;
  z-index: -1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
  border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
  margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
  font-family: "Poppins",sans-serif;
  font-size: 50px;
  font-weight: 900;
  opacity: 0.1;
  position: absolute;
  right: 30px;
  top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
  background: #00a01d none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
  color: #ffffff;
}

.we-offer-area .item i {
  color: #00a01d;
  display: inline-block;
  font-size: 36px;
  margin-bottom: 20px;
}

.we-offer-area .item h4 {
  font-weight: 600;
  text-transform: capitalize;
}

.we-offer-area .item p {
  margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
  background: #00a01d none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 100%;
  z-index: -1;
}

.we-offer-area .item:hover::after {
  left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
  color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
  border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
  background-color: #ffffff !important;
  color: #00a01d !important;
}

.we-offer-area.text-left .item i {
  background: #00a01d none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 60px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 30px;
  position: relative;
  width: 100px;
  z-index: 1;
  text-align: center;
}

.we-offer-area.text-left .item i::after {
  border: 2px solid #00a01d;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 120px;
  left: -10px;
  position: absolute;
  top: -10px;
  width: 120px;
}


  .equal-height .item {
    height: 100%;
  }

  .we-offer-area .item h4 {
    font-size: 20px;
    line-height: 31px;
    min-height: 62px;
    margin-bottom: 10px;
  }

/* we oofer end */

.intro-text h3 {
  margin-bottom: 25px;
}

.intro-text h2 {
  padding-top: 0;
}

.video-box video {
  width: 100%;
  border-radius: 10px;
  max-height: 500px;
  object-fit: cover;
}

.video-sec {
  padding: 80px 0;
}


/* listing */
ol.gradient-list > li::before, ol.gradient-list > li {
  box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
}


ol.gradient-list {
  counter-reset: gradient-counter;
  list-style: none;
  margin: 1.75rem 0;
  padding-left: 1rem;
}
ol.gradient-list > li {
  background: white;
  border-radius: 0 0.5rem 0.5rem 0.5rem;
  counter-increment: gradient-counter;
  margin-top: 1rem;
  min-height: 3rem;
  padding: 1rem 1rem 1rem 3rem;
  position: relative;
  line-height: 30px;
}
ol.gradient-list > li::before, ol.gradient-list > li::after {
  background: linear-gradient(135deg, #83e4e2 0%, #a2ed56 100%);
  border-radius: 1rem 1rem 0 1rem;
  content: "";
  height: 3rem;
  left: -1rem;
  overflow: hidden;
  position: absolute;
  top: -1rem;
  width: 3rem;
}
ol.gradient-list > li::before {
  align-items: flex-end;
  content: counter(gradient-counter);
  color: #1d1f20;
  display: flex;
  font: 900 1.5em/1 "Montserrat";
  justify-content: flex-end;
  padding: 0.125em 0.25em;
  z-index: 1;
}
ol.gradient-list > li:nth-child(10n+1):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.2) 0%, rgba(253, 220, 50, 0.2) 100%);
}
ol.gradient-list > li:nth-child(10n+2):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.4) 0%, rgba(253, 220, 50, 0.4) 100%);
}
ol.gradient-list > li:nth-child(10n+3):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.6) 0%, rgba(253, 220, 50, 0.6) 100%);
}
ol.gradient-list > li:nth-child(10n+4):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.8) 0%, rgba(253, 220, 50, 0.8) 100%);
}
ol.gradient-list > li:nth-child(10n+5):before {
  background: linear-gradient(135deg, #a2ed56 0%, #fddc32 100%);
}
ol.gradient-list > li:nth-child(10n+6):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.8) 0%, rgba(253, 220, 50, 0.8) 100%);
}
ol.gradient-list > li:nth-child(10n+7):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.6) 0%, rgba(253, 220, 50, 0.6) 100%);
}
ol.gradient-list > li:nth-child(10n+8):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.4) 0%, rgba(253, 220, 50, 0.4) 100%);
}
ol.gradient-list > li:nth-child(10n+9):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0.2) 0%, rgba(253, 220, 50, 0.2) 100%);
}
ol.gradient-list > li:nth-child(10n+10):before {
  background: linear-gradient(135deg, rgba(162, 237, 86, 0) 0%, rgba(253, 220, 50, 0) 100%);
}
ol.gradient-list > li + li {
  margin-top: 2rem;
}

.right-vid {
  padding-left: 30px;
}

/* listing end */

#footer .footer-logo {
  max-width: 250px;
}

#footer .footer-logo img {
  width: 100%;
}


.bookademo .intro-text h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 46px;
}

#footer {
  padding: 35px 0 30px;
}

.book-form .form-control  {
  background: transparent;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid;
  border-color: #515151;
  color: #fff;
  border-radius: 0;
}

.book-form .form-label {
  color: #bfbfbf;
}

.bookdemo-section {
  background: url(../images/test1.jpg);
  position: relative;
  padding: 100px 0 0;
}

.bookdemo-section .container {
  position: relative;
  z-index: 1;
}

.bookdemo-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: #000000cf;
}

.bookdemo-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.bookdemo-heading h2 {
  font-size: 46px;
  font-weight: 700;
  margin: 0;
  color: var(--dark-black);
}

.bookdemo-form {
  padding: 50px 0;
}

.vido-sec {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

.vido-sec video {
  width: 100%;
}

/* 11-07-2023 */
.city-animate {
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #00a01d 0%,
    #83e4e2 29%,
    #a2ed56 67%,
    #585858 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 40px;
      font-weight: bold;
}
@keyframes textclip {
  to {
    background-position: 200% center;
  }
}


.terms-link a {
  padding-right: 15px;
  margin-right: 10px;
  position: relative;
  color: #fff;
}

.terms-link a:last-child {
  margin-right: 0;
  padding-right: 0;
}

.terms-link a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}

@media (min-width:1025px) {
  .banner-carousel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
  }

}

@media (max-width:991px) {
  .logo {
    max-width: 200px;
  }

  #header.header-scrolled .mobile-nav-toggle .fa.fa-bars {
    color: var(--green-primary);
  }

  #intro .intro-img {
    height: auto;
    background-position: center;
  }

  #intro {
    padding: 85px 0 30px 0;
  }

  .banner-carousel .owl-dots {
    top: calc(100% - 5px);
  }

  .we-offer-area .item h4 {
    min-height: auto;
  }

  .right-vid {
    padding-left: 0px;
    padding-top: 15px;
  }

  .video-sec {
    padding: 34px 0;
  } 

  .bookdemo-section {
    padding: 80px 0 0;
  }

  .bookdemo-heading h2 {
    font-size: 32px;
    line-height: normal;
  }
  
  
}

@media (max-width: 767px) {
  .newsletter h3 {
    font-size: 22px;
    padding-bottom: 5px;
  }
  .newsletter h6 {
    font-size: 14px;
  }

  .news-search .form-control {
    min-height: 24px;
  }

  .newsletter .btn {
    min-height: 38px;
  } 

  #intro .intro-img {
    background-size: 85%;
  }

  .cmn-heading h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
 
  .services {
    background: #e3e3e3;
    padding: 34px 0 10px;
  }

  .we-offer-area .our-offer-items.less-carousel .equal-height:not(:last-child) {
    margin-bottom: 20px;
  }

  .video-sec {
    padding: 34px 0 10px;
  } 

  #footer .footer-logo {
    max-width: 220px;
    margin: 0 auto 20px;
  }

  #footer {
    padding:30px 0;
  }


  .bookdemo-heading h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .bookdemo-form {
    padding: 30px 0;
  }

  .bookdemo-heading {
    margin-top: 20px;
  }

  .bookdemo-form {
    padding: 15px 0;
  }

} 

@media (max-width: 575px) {
  .intro-text h2 {
    line-height: 33px;
    margin-top: 0;
    padding-top: 10px;
  }

  #intro {
    padding: 85px 0 40px 0;
  }

  .intro-text h2 {
    font-size: 26px;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .intro-text h3 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 5%;
  }

  .application {
    padding-bottom: 10px;
  }

  .we-offer-area .item i {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .we-offer-area .item h4 {
    min-height: auto;
    font-size: 17px;
    line-height: 24px;
  }

  .bookdemo-section {
    padding:60px 0 0;
  }

  .bookdemo-heading h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .bookdemo-form .form-control {
    height: 35px;
  }

  ol.gradient-list > li + li {
    margin-top: 40px;
  }

  .copyright {
    margin-bottom: 10px;
  }
  
}

