@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "cursive", sans-serif;
}
p{
  font-family: 'Poppins' sans-serif;
} */

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 82px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.enquiry_model_back {
  width: 100%;
  background-image: url(../img/enq_model.jpg);
  /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

.btn_message {
  color: #14226d;
  background-color: white;
}

.btn_message:hover {
  background-color: #14226d;
  color: #ffffff;
}

#header {
  transition: all 0.5s;
  z-index: 997;
  background: #141f6e;
}

#header.header-scrolled,
#header.header-inner-pages {
  /* background-image: url(../img/new_footer.jpg); */
  /* background: rgba(255, 255, 255, 0.9); */
  background: #141f6e;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo {
  width: 38%;
  background: #fff;
  border-top-right-radius: 75px;
  text-align: center;
  padding: 5px 0px;
}

#header .logo img {
  max-height: 72px;
  margin-top: 4px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding-right: 7%;
}

.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: 15px;
  font-weight: 700;
  color: #f6f1f1;
  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,
.navbar li:hover > a {
  color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  font-size: 14px;
  border: 2px solid #fff;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #14226d;
}

.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: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.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: #47b2e4;
}

.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: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #ffffff;
}

@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(40, 58, 90, 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: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
  border: 2px solid #14226d;
}

.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: #ffffff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  /* background: #37517e; */
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: -75px 0 10px 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-transform: uppercase;
}

#hero h2 {
  color: #14226dff;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #14226d;
  /* border: none; */
}

#hero .btn-get-started:hover {
  background: #ffffff;
  color: #14226d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    /* height: 100vh; */
    text-align: center;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  margin-top: 30px;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: #212f54;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #212f54;
}

/*-------------------------
----------SLIDER-----------
------------------------*/

/* .container_right::before{
  content: "";
  position: absolute;
  height: 300px;
  width: 300px;
  top: 325px;
  left: 48%;
  background-image: linear-gradient(-45deg, #20dbc2 0%, #00bfa6 100%);
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 1;
} */

/*-------------------------
----------SEction heading-----------
------------------------*/
/* .main_sec_head {
  background-color: #a5cad7;
} */
/* .abt_img_inner img{
  border: 2px solid black;
  border-radius: 50%;

} */
.section_title_new {
  text-align: center;
  /* padding-bottom: 30px; */
}

.loan_work {
  color: #14226d;
}

.section_title_new h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #10526a;
  /* margin-top: 100px; */
}

.section_title_new h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 3px;
  background: #10526a;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section_title_new h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 6px;
  background: #14226d;
  bottom: 0;
  left: calc(50% - 20px);
}

.section_title_new_process {
  text-align: center;
  padding-bottom: 30px;
}

.section_title_new_process h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000000;
  /* margin-top: 100px; */
}

.section_title_new_process h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: rgb(0, 0, 0);
  bottom: 1px;
  left: calc(50% - 60px);
}

.section_title_new_process h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #000000;
  bottom: 0;
  left: calc(50% - 20px);
}

/*-------------------------
----------SEction heading closed-----------
------------------------*/

/*-------about-section--------*/
/*---------about-page---------*/

.about_banner {
  min-height: 50vh;
  width: 100%;
  position: relative;
  background-image: url("../img/about/about_background.jpg");
  /* background-color: #14226d; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 75px;
}

.director {
  margin-top: 30px;
  margin-bottom: 28px;
}

.director img {
  width: 343px;
}

.director-bio {
  margin-top: 5.5%;
}

.our-director {
  width: 46%;
}

/* #abt_background{
  position: relative;
  background-image: url("../img/about/about-me-pattern.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

/* .aboutbanner:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
} */

.about_banner h2 {
  font-size: 56px;
  font-weight: 500;
  color: #14226d;
  /* font-family: monospace; */
}

.about_banner ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #14226d;
}

.about_banner ol a {
  color: #14226d;
  transition: 0.3s;
}

.about_banner ol a:hover {
  text-decoration: underline;
}

.about_banner ol li + li {
  padding-left: 10px;
}

.about_banner ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #14226d;
  content: "/";
}

.abt_content h2 {
  margin-top: 20px;
  letter-spacing: 10px;
  font-weight: 600;
  color: #14226d;
}

.btn_about {
  margin-top: 10px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px 11px 28px;
  border: 2px solid #14226d;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #14226d;
  background: #ffffff;
}

.btn_about:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.about_wind_image {
  margin-top: -100px;
  /* margin-bottom: -100px; */
}

.goal_about h4 {
  font-size: 20px;
}

.our_vision {
  background-color: rgba(255, 255, 255, 0);
  background-image: linear-gradient(270deg, #f9fafb 94%, #f9fafb 94%);
  background-position: center center;
  background-repeat: no-repeat;
}

.first_vision {
  padding: 50px;
}

.first_vision h1 {
  font-size: 45px;
  color: #000000;
  font-weight: 600;
}

.first_vision p {
  font-size: 20px;
}

.our_mission {
  background-color: rgba(255, 255, 255, 0);
  background-image: linear-gradient(270deg, #e8e8e8 94%, #e8e8e8 94%);
  background-position: center center;
  background-repeat: no-repeat;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 43px;
  height: 39px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #00838d;
  border-radius: 0 0px 0 80px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.card_one {
  display: block;
  position: relative;
  background-color: #f2f8f9;
  border-radius: 4px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
}

.card_one:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -4px;
  right: -43px;
  background: #00838d;
  height: 32px;
  width: 70px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.5s ease-out;
}

.card_one:hover:before {
  transform: scale(21);
}

.card_one:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.card_one:hover h4 {
  transition: all 0.3s ease-out;
  color: #ffffff;
}

/*-------------------------------
--------Products page--------*/
.products_banner {
  min-height: 50vh;
  width: 100%;
  position: relative;
  background-image: url("../img/Products/products_background.jpg");
  /* background-color: #14226d; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 75px;
}

.products_banner h2 {
  font-size: 56px;
  font-weight: 500;
  color: #14226d;
  /* font-family: monospace; */
}

.products_banner ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #14226d;
}

.products_banner ol a {
  color: #14226d;
  transition: 0.3s;
}

.products_banner ol a:hover {
  text-decoration: underline;
}

.products_banner ol li + li {
  padding-left: 10px;
}

.products_banner ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #14226d;
  content: "/";
}

.our_products {
  background-image: url(../img/Products/Products_back.jpg);
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.description {
  font-size: larger;
  font-family: "Poppins";
}

.timeline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
}

.timeline .timeline-section {
  display: flex;
  min-height: 164px;
  background-color: #e8e8ed;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16); */
  margin-left: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  width: calc(50% + 250px);
}

.timeline .timeline-section .timeline-year {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #13184a;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  padding: 0;
  max-width: 175px;
  flex: 1 1 0;
}

.timeline .timeline-section .timeline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #13184a;
  max-width: 150px;
  flex: 1 1 0;
  padding: 0;
}

.timeline .timeline-section .timeline-icon i {
  font-size: 74px;
  color: white;
}

.timeline .timeline-section .timeline-content {
  padding: 20px 45px;
  flex: 2 1 0;
}

/*EXTRAS*/
.timeline-section:nth-child(even) {
  margin-left: 0;
  margin-right: auto;
  flex-direction: row-reverse;
}

.timeline-section.red .timeline-icon {
  background-color: #0097bf;
}

.timeline-section.red .timeline-year {
  color: #0097bf;
}

.timeline-section.green .timeline-icon {
  background-color: #32a852;
}

.timeline-section.green .timeline-year {
  color: #32a852;
}

.timeline-section.skyblue .timeline-icon {
  background-color: #3294a8;
}

.timeline-section.skyblue .timeline-year {
  color: #3294a8;
}

.timeline-section.blue .timeline-icon {
  background-color: #1768b9;
}

.timeline-section.blue .timeline-year {
  color: #1768b9;
}

.timeline-section.yellow .timeline-icon {
  background-color: #9b3c3c;
}

.timeline-section.yellow .timeline-year {
  color: #9b3c3c;
}

/*Responsive*/
@media only screen and (max-width: 1000px) {
  .timeline {
    padding: 0 15px;
  }

  .timeline .timeline-section {
    width: 100%;
    flex-direction: column;
  }

  .timeline .timeline-section .timeline-year,
  .timeline .timeline-section .timeline-icon {
    max-width: 100%;
    padding: 15px;
  }
}

/*-------------------------------
--------lap-module--------*/
.lap_banner {
  min-height: 50vh;
  width: 100%;
  position: relative;
  background-image: url(../img/lap_module/lap_background.jpg);
  /* background-color: #14226d; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* .lap_banner_2{
  min-height: 50vh;
  width: 100%;
  position: relative;
  background-image: url(../img/one.jpg);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

} */

.lap_banner h2 {
  font-size: 56px;
  font-weight: 500;
  color: #14226d;
  /* font-family: monospace; */
}

.lap_banner ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #14226d;
}

.lap_banner ol a {
  color: #14226d;
  transition: 0.3s;
}

.lap_banner ol a:hover {
  text-decoration: underline;
}

.lap_banner ol li + li {
  padding-left: 10px;
}

.lap_banner ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #14226d;
  content: "/";
}

.lap_back {
  width: 100%;
  /* height: 80vh; */
  background-image: url("../img/lap_module/new_lap.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 50px;
}

.loan_content {
  margin-top: 80px;
}

.loan_content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #14226d;
}

/*-------------------------------
--------EMI calculator page--------*/

.emi_banner {
  min-height: 50vh;
  width: 100%;
  position: relative;
  background-image: url("../img/emi_background.jpg");
  /* background-color: #14226d; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.emi_banner h2 {
  font-size: 56px;
  font-weight: 500;
  color: #14226d;
  /* font-family: monospace; */
}

.emi_banner ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #14226d;
}

.emi_banner ol a {
  color: #14226d;
  transition: 0.3s;
}

.emi_banner ol a:hover {
  text-decoration: underline;
}

.emi_banner ol li + li {
  padding-left: 10px;
}

.emi_banner ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #14226d;
  content: "/";
}

.loan-calculator {
  font-family: "Roboto", sans-serif;
  width: 600px;
  margin: 24px auto;
  background: #fff;
  box-shadow: 0 12px 50px -11px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: #14213d;
  overflow: hidden;
}

.loan-calculator,
.loan-calculator * {
  box-sizing: border-box;
}

.loan-calculator .top {
  background: #14226d;
  color: #fff;
  padding: 32px;
}

.loan-calculator .top h2 {
  margin-top: 0;
}

.loan-calculator form {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.loan-calculator .title {
  margin-bottom: 16px;
}

.loan-calculator form input {
  font-size: 20px;
  padding: 8px 24px;
  width: 100%;
}

.loan-calculator .result {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loan-calculator .result .left {
  width: 100%;
  padding: 8px 32px;
}

.loan-calculator .left h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}

.loan-calculator .result .value {
  font-size: 30px;
  font-weight: 900;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(20, 33, 61, 0.2);
}

.loan-calculator .result .value::before {
  content: "Rs.";
  font-size: 24px;
  font-weight: 400;
  margin-right: 6px;
  opacity: 0.4;
}

.loan-calculator .calculate-btn {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 8px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  margin: 24px 0;
}

.loan-calculator .right {
  width: 50%;
}

@media (max-width: 650px) {
  .loan-calculator {
    width: 90%;
    max-width: 500px;
  }

  .loan-calculator form {
    flex-direction: column;
    gap: 20px;
  }

  .loan-calculator .result {
    flex-direction: column;
    text-align: center;
  }
}

/*-------------------------------
--------Contact Us page--------*/

.contact_banner {
  min-height: 50vh;
  width: 100%;
  position: relative;
  background-image: url("../img/contact/about_background.jpg");
  /* background-color: #14226d; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 75px;
}

.contact_banner h2 {
  font-size: 56px;
  font-weight: 500;
  color: #14226d;
  /* font-family: monospace; */
}

.contact_banner ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #14226d;
}

.contact_banner ol a {
  color: #14226d;
  transition: 0.3s;
}

.contact_banner ol a:hover {
  text-decoration: underline;
}

.contact_banner ol li + li {
  padding-left: 10px;
}

.contact_banner ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #14226d;
  content: "/";
}

.info_items i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  border-radius: 50%;
  border: 2px dotted #14226d;
}

.info_items {
  padding: 20px 0 30px 0;
  background: linear-gradient(45deg, #bae9ff, #f7f7f7);
}

.add_card {
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.get_touch_content {
  margin: 10px 60px 10px 60px;
}

.btn-style {
  width: 50%;
}

.card_get_touch {
  padding: 45px;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  background-image: url(../img/contact/touch_back.jpg);
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*-------------------------------
--------section heading--------*/

.section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #001973;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(14, 29, 52, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header span {
    font-size: 38px;
  }
}

/*----------------------
--------------------------Loan Work--------
--------------------------------*/

/* .work_loan {
  background-color: #a5cad7;
} */
.new_loan_head {
  margin-top: 100px;
}

.loan_text h2,
p {
  color: #14226d;
  font-weight: 400;
}

.loan_card :hover {
  background-color: #dbf5ff;
}

/*----------------------
--------------------------Services Home page  --------
--------------------------------*/

.timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: relative;
}

.icon_loan_work {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 6px;
  align-self: center;
  width: 50vw;
}

.icon_loan_work:nth-child(2n + 1) {
  flex-direction: row-reverse;
}

.icon_loan_work:nth-child(2n + 1) .work_line_image {
  border-radius: 0 6px 6px 0;
}

.icon_loan_work:nth-child(2n + 1) .icon_loan_work__content {
  border-radius: 6px 0 0 6px;
}

.icon_loan_work:nth-child(2n + 1) .work_line_icons:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #9251ac;
  position: absolute;
  top: 0%;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-animation: fillTop 2s forwards 4s ease-in-out;
  animation: fillTop 2s forwards 4s ease-in-out;
}

.icon_loan_work:nth-child(2n + 1) .work_line_icons:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #9251ac;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  -webkit-animation: fillLeft 2s forwards 4s ease-in-out;
  animation: fillLeft 2s forwards 4s ease-in-out;
}

.icon_loan_work__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #9251ac;
  letter-spacing: 1.5px;
}

.icon_loan_work__content {
  padding: 20px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25),
    0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  background: #fff;
  width: calc(45vw - 84px);
  border-radius: 0 6px 6px 0;
}

.work_line_image {
  color: #9251ac;
  font-size: 1.5rem;
  font-weight: 600;
  background: #f6a4ec;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 20px;
  border-radius: 6px 0 0 6px;
}

.work_line_icons {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6a4ec;
  padding: 20px;
  align-self: center;
  margin: 0 20px;
  background: #9251ac;
  border-radius: 100%;
  width: 40px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25),
    0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  padding: 40px;
  height: 40px;
  position: relative;
}

.work_line_icons i {
  font-size: 32px;
}

.work_line_icons:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #9251ac;
  position: absolute;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  -webkit-animation: fillTop 2s forwards 4s ease-in-out;
  animation: fillTop 2s forwards 4s ease-in-out;
}

.work_line_icons:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #9251ac;
  position: absolute;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: fillLeftOdd 2s forwards 4s ease-in-out;
  animation: fillLeftOdd 2s forwards 4s ease-in-out;
}

.work_line_content {
  flex-basis: 60%;
}

.icon_loan_work--type2:after {
  background: #87bbfe;
}

.icon_loan_work--type2 .work_line_image {
  color: #555ac0;
  background: #87bbfe;
}

.icon_loan_work--type2:nth-child(2n + 1) .work_line_icons:before,
.icon_loan_work--type2:nth-child(2n + 1) .work_line_icons:after {
  background: #555ac0;
}

.icon_loan_work--type2 .work_line_icons {
  background: #555ac0;
  color: #87bbfe;
}

.icon_loan_work--type2 .work_line_icons:before,
.icon_loan_work--type2 .work_line_icons:after {
  background: #555ac0;
}

.icon_loan_work--type2 .icon_loan_work__title {
  color: #555ac0;
}

.icon_loan_work--type3:after {
  background: #aff1b6;
}

.icon_loan_work--type3 .work_line_image {
  color: #24b47e;
  background-color: #aff1b6;
}

.icon_loan_work--type3:nth-child(2n + 1) .work_line_icons:before,
.icon_loan_work--type3:nth-child(2n + 1) .work_line_icons:after {
  background: #24b47e;
}

.icon_loan_work--type3 .work_line_icons {
  background: #24b47e;
  color: #aff1b6;
}

.icon_loan_work--type3 .work_line_icons:before,
.icon_loan_work--type3 .work_line_icons:after {
  background: #24b47e;
}

.icon_loan_work--type3 .icon_loan_work__title {
  color: #24b47e;
}

.icon_loan_work:last-child .work_line_icons:before {
  content: none;
}

.icon_loan_work--type4:after {
  background: #07c6e3;
}

.icon_loan_work--type4 .work_line_image {
  color: #027893f9;
  background-color: #07c6e3;
}

.icon_loan_work--type4:nth-child(2n + 1) .work_line_icons:before,
.icon_loan_work--type3:nth-child(2n + 1) .work_line_icons:after {
  background: #027893f9;
}

.icon_loan_work--type4 .work_line_icons {
  background: #027893f9;
  color: #07c6e3;
}

.icon_loan_work--type4 .work_line_icons:before,
.icon_loan_work--type3 .work_line_icons:after {
  background: #027893f9;
}

.icon_loan_work--type4 .icon_loan_work__title {
  color: #027893f9;
}

.icon_loan_work:last-child .work_line_icons:before {
  content: none;
}

@media (max-width: 786px) {
  .icon_loan_work {
    flex-direction: column;
    align-self: center;
  }

  .icon_loan_work__content {
    width: 100%;
  }

  .work_line_icons {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .work_line_icons:before,
  .work_line_icons:after {
    display: none;
  }

  .work_line_image {
    border-radius: 0;
    padding: 20px;
  }

  .icon_loan_work:nth-child(2n + 1) {
    flex-direction: column;
    align-self: center;
  }

  .icon_loan_work:nth-child(2n + 1) .work_line_image {
    border-radius: 0;
    padding: 20px;
  }

  .icon_loan_work:nth-child(2n + 1) .work_line_icons {
    border-radius: 6px 6px 0 0;
    margin: 0;
  }
}

@-webkit-keyframes fillLeft {
  100% {
    right: 100%;
  }
}

@keyframes fillLeft {
  100% {
    right: 100%;
  }
}

@-webkit-keyframes fillTop {
  100% {
    top: 100%;
  }
}

@keyframes fillTop {
  100% {
    top: 100%;
  }
}

@-webkit-keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}

@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}

/*--------------------
-------FOOTER---------
--------------------*/
.footer {
  position: relative;
  padding-top: 90px;
  /* background: #212f54; */
  /* color: #000000; */
  background-image: url(../img/new_footer.jpg);
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
  position: relative;
  margin-bottom: 45px;
}

.footer h2 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #212f54;
}

.footer h2::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #212f54;
}

.footer .footer-link a {
  display: block;
  margin-bottom: 10px;
  color: #212f54;
  transition: 0.3s;
}

.footer .footer-link a::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .footer-link a:hover {
  color: #212f54;
  letter-spacing: 1px;
}

.footer .footer-contact p i {
  width: 25px;
}

.footer .copyright {
  padding: 30px 15px;
}

.footer .copyright p {
  margin: 0;
  color: #212f54;
}

.footer .copyright .col-md-6:last-child p {
  text-align: right;
}

.footer .copyright p a {
  color: #212f54;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer .copyright p a:hover {
  color: #212f54;
}

@media (max-width: 768px) {
  .footer .copyright p,
  .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center;
  }
}

.fa-facebook {
  background: #3b5998;
  color: white;
  font-size: large;
  padding: 12px;
  border-radius: 30%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.fa-youtube {
  background: #bb0000;
  color: white;
  font-size: large;
  padding: 12px;
  border-radius: 30%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.fa-instagram {
  background: #125688;
  color: white;
  font-size: large;
  padding: 12px;
  border-radius: 30%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.fa-linkedin {
  background: #125688;
  color: white;
  font-size: large;
  padding: 12px;
  border-radius: 30%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.fa-twitter {
  background: #1d9bf0;
  color: white;
  font-size: large;
  padding: 12px;
  border-radius: 30%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.fa-facebook:hover {
  background-color: whitesmoke;
  color: #3b5998;
}

.fa-instagram:hover {
  background-color: whitesmoke;
  color: #dd4b39;
}

.fa-youtube:hover {
  background-color: whitesmoke;
  color: #bb0000;
}

.fa-linkedin:hover {
  background-color: whitesmoke;
  color: #125688;
}

.fa-twitter:hover {
  background-color: whitesmoke;
  color: #1d9bf0;
}

/*-----social-icon-------*/
.social_drop {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content_share {
  color: #202020;
}

.share_btn {
  position: fixed;
  bottom: 0px;
  left: 5px;
  z-index: 1;
}

.share_btn span {
  height: 60px;
  width: 60px;
  background: #16a085;
  line-height: 60px;
  font-size: 25px;
  color: #e9fcf8;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #159d80;
}

.share_btn:hover span {
  background-color: #042e25;
  color: #ffffff;
}

.share_btn a span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 18px;
  border: 1px solid transparent;
  background: #16a085;
  opacity: 0;
  pointer-events: none;
  transition: 0.6s;
}

#click:checked ~ .share_btn a span {
  height: 50px;
  width: 50px;
  line-height: 25px;
  font-size: 23px;
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

#click:checked ~ .share_btn a:nth-child(1) span {
  bottom: 0px;
  left: 80px;
}

#click:checked ~ .share_btn a:nth-child(2) span {
  bottom: 0px;
  left: 80px;
}

#click:checked ~ .share_btn a:nth-child(3) span {
  bottom: 65px;
  left: 65px;
}

#click:checked ~ .share_btn a:nth-child(4) span {
  bottom: 80px;
  left: 0px;
}

#click {
  display: none;
}

.main_header {
  background-image: linear-gradient(45deg, #3a4664, rgba(8, 83, 156, 0.75)),
    url("../img/back.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .service-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-box h3 {
  color: #444444;
  font-weight: 600;
}

.services .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-box.blue {
  border-bottom: 3px solid #14226d;
}

.services .service-box.blue .icon {
  color: #2db6fa;
  background: #dbf3fe;
}

.services .service-box.blue .read-more {
  color: #2db6fa;
}

.services .service-box.blue:hover {
  background: #f2f7fa;
}

.services .service-box.orange {
  border-bottom: 3px solid #14226d;
}

.services .service-box.orange .icon {
  color: #f68c09;
  background: #fde3c4;
}

.services .service-box.orange .read-more {
  color: #f68c09;
}

.services .service-box.orange:hover {
  background: #f2f7fa;
}

.services .service-box.green {
  border-bottom: 3px solid #14226d;
}

.services .service-box.green .icon {
  color: #08da4e;
  background: #cffddf;
}

.services .service-box.green .read-more {
  color: #08da4e;
}

.services .service-box.green:hover {
  background: #f2f7fa;
}

.services .service-box.red {
  border-bottom: 3px solid #14226d;
}

.services .service-box.red .icon {
  color: #e9222c;
  background: #fef7f8;
}

.services .service-box.red .read-more {
  color: #e9222c;
}

.services .service-box.red:hover {
  background: #f2f7fa;
}

.services .service-box.purple {
  border-bottom: 3px solid #14226d;
}

.services .service-box.purple .icon {
  color: #b50edf;
  background: #f8e4fd;
}

.services .service-box.purple .read-more {
  color: #b50edf;
}

.services .service-box.purple:hover {
  background: #f2f7fa;
}

.services .service-box.pink {
  border-bottom: 3px solid #14226d;
}

.services .service-box.pink .icon {
  color: #f51f9c;
  background: #feecf7;
}

.services .service-box.pink .read-more {
  color: #f51f9c;
}

.services .service-box.pink:hover {
  background: #f2f7fa;
}

.services .service-box:hover h3,
.services .service-box:hover p,
.services .service-box:hover .read-more {
  color: #000;
}

.services .service-box:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.pricing .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: #444444;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing img {
  padding: 30px 40px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: #4154f1;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #4154f1;
}

.pricing .btn-buy:hover {
  background: #4154f1;
  color: #fff;
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #4154f1;
  color: #fff;
}

.model_back {
  background-image: url(../img/model_back.jpg);
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*----------------------
--------Technology--------
-------------------------*/

.tech_image img {
  margin-top: -200px;
  margin-bottom: -130px;
}

/* .tech_img {
  width: 250px;
  height: 250px;
  padding: 60px 35px 35px 35px;
  border-radius: 40px;
  background-color: #ecf0f3;
  box-shadow: 13px 13px 20px #cbced1,
      -13px -13px 20px #fff;
}
.tech_img img{
  text-align: center;
    width: 100%;
} */

/*----------------------------------
-----------------------------------
-------Phone and Whatsup-----------
-----------------------------------
---------------------------------*/
.phone-icon {
  position: fixed;
  bottom: 75px;
  left: 1.6%;
  z-index: 9999;
}

.whatsapp-icon {
  position: fixed;
  bottom: 10px;
  left: 1.6%;
  z-index: 9999;
}

.whatsapp-icon a i {
  background: rgb(0 178 9);
  padding: 12px;
  border-radius: 50%;
  font-size: 30px;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 27px;
}

.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  /* bottom: 105%; */
  right: 50px;
  font-size: 16px;
  border-radius: 50%;
  z-index: 99;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background: #1351a8;
  transition: 1s ease;
  border: none;
}

/*-----------
---------------
-------------------
------------------------
-------------------------------
----------------------------------------
-----------------------------------------Responsive------
---------------------------------------------------------------*/

/*Extra small devices (portrait phones, less than 576px)*/

@media (min-width: 320px) and (max-width: 575px) {
  section {
    padding: 10px;
  }

  .abt_img img {
    /* width: 100%; */
    width: 60%;
  }

  .about_wind_image img {
    width: 122%;
  }

  .icon_loan_work__content {
    padding: 10px;
  }

  .about_banner {
    min-height: 37vh;
    margin-top: 60px;
  }

  .about_wind_image {
    margin: -55px 0px 0px -100px;
  }

  .card_one {
    margin-top: 10px;
  }

  .products_banner {
    min-height: 37vh;
    margin-top: 75px;
  }

  .emi_banner {
    min-height: 44vh;
  }

  .contact_banner {
    min-height: 37vh;
    margin-top: 75px;
  }

  .lap_banner {
    min-height: 60vh;
  }

  .get_touch_content {
    margin: 0;
  }

  .add_card {
    margin-top: 10px;
  }

  .first_vision {
    padding: 10px;
  }

  .loan_image img {
    width: 100%;
  }

  .icon_loan_work {
    width: 80vw;
  }

  .tech_image img {
    width: 100%;
    margin-top: -100px;
    margin-bottom: 0px;
  }

  #pricing {
    display: none;
  }

  .btn_new {
    background-color: #001973;
    border-radius: 10px;
    color: #ffffff;
    padding: 8px;
  }

  .carousel-inner {
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    padding: 10px;
  }
}

/*Small devices (landscape phones, 576px and up)*/

@media (min-width: 576px) and (max-width: 767px) {
  section {
    padding: 10px;
  }

  .abt_img img {
    /* width: 100%; */
    width: 60%;
  }

  .icon_loan_work__content {
    padding: 10px;
  }

  .about_banner {
    min-height: 37vh;
  }

  .about_wind_image {
    margin-top: 0;
  }

  .card_one {
    margin-top: 10px;
  }

  .products_banner {
    min-height: 37vh;
  }

  .emi_banner {
    min-height: 48vh;
  }

  .contact_banner {
    min-height: 37vh;
  }

  .lap_banner {
    min-height: 60vh;
  }

  .get_touch_content {
    margin: 0;
  }

  .add_card {
    margin-top: 10px;
  }

  .first_vision {
    padding: 10px;
  }

  .loan_image img {
    width: 100%;
  }

  .icon_loan_work {
    width: 80vw;
  }

  .tech_image img {
    width: 100%;
    margin-top: -100px;
    margin-bottom: 0px;
  }

  #pricing {
    display: none;
  }

  .carousel-inner {
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    padding: 10px;
  }

  .btn_new {
    background-color: #001973;
    border-radius: 10px;
    color: #ffffff;
    padding: 8px;
  }
}

/*Medium devices (tablets, 768px and up)*/

@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 10px;
  }

  .about_banner {
    min-height: 30vh;
  }

  .products_banner {
    min-height: 30vh;
  }

  .emi_banner {
    min-height: 30vh;
  }

  .contact_banner {
    min-height: 30vh;
  }

  .abt_img img {
    /* width: 100%; */
    width: 60%;
  }

  #carouselExampleIndicators {
    display: none;
  }

  .tech_image img {
    width: 100%;
    margin-top: -100px;
    margin-bottom: 0px;
  }

  /* #pricing{
    display: none;
  } */
}

/*Large devices (desktops, 992px and up)*/

@media (min-width: 992px) and (max-width: 1199px) {
  #carouselExampleIndicators {
    display: none;
  }
}

/*Extra large devices (large desktops, 1200px and up)*/

@media (min-width: 1200px) and (max-width: 1299px) {
  #carouselExampleIndicators {
    display: none;
  }
}

@media (min-width: 1300px) and (max-width: 1899px) {
  #carouselExampleIndicators {
    display: none;
  }
}

@media (min-width: 1920px) {
  #carouselExampleIndicators {
    display: none;
  }
}

@media (min-width: 1980px) {
  #carouselExampleIndicators {
    display: none;
  }
}

/*--------------
-------snackbar-----
----------------------*/
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

/*--------sticky-calculator---------*/
.calculator_icon {
  position: fixed;
  top: 35%;
  z-index: 1;
  transform: translate(-250px, 0);
}

.calculator_icon a {
  background: #0078d6;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin: 0px;
  padding: 20px;
  width: 297px;
  text-align: right;
  border-radius: 50px;
  transition: 1s;
  transition-property: transform;
}

.calculator_icon a:hover {
  transform: translate(140px, 0);
  background-color: #14226d;
  color: white;
}

.calculator_emi {
  background: #0fa0e5;
  color: white;
}

.fa-calculator {
  font-size: x-large;
}

.wrapper {
  /* width: 540px; */
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 0 60px rgba(1, 0, 5, 0.15);
}

.wrapper h2 {
  font-size: 28px;
  font-weight: 700;
}

.wrapper .div-bar {
  display: block;
  width: 120px;
  background: #0a1137;
  height: 6px;
  border-radius: 10px;
  margin: 10px 0px;
}

.wrapper .calculator {
  position: relative;
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 10px 0px;
}

.calculator .calculator-input {
  position: relative;
  width: 100%;
  justify-content: space-around;
  padding: 5px 10px;
  display: block;
}

.calculator .calculator-input input {
  width: 100%;
  height: 40px;
  padding: 20px 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  border: 1px solid #7d7d7d;
  border-radius: 4px;
}

.calculator .calculator-input input:focus {
  outline: none;
  border: 1px solid #0a1137;
}

.calculator .calculator-input label {
  color: #0a1137;
  font-size: 16px;
  padding: 2px 4px;
  font-weight: 500;
}

.calculator .calculator-input button {
  width: 100%;
  padding: 14px 16px;
  margin-top: 20px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  background: #0a1137;
  border: 0;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
}

/*chrome, safari, edge, opera*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*Firefox*/

input[type="number"] {
  -moz-appearance: textfield;
}

.wrapper .calculator-result {
  position: relative;
  display: block;
  padding: 10px;
  margin: 20px 0;
}

.wrapper .calculator-result ul {
  width: 100%;
  background: #96125110;
  padding: 10px 15px;
  border-radius: 5px;
}

.wrapper .calculator-result li {
  list-style: none;
  line-height: 28px;
  font-weight: 500;
  font-size: 18px;
}

.calculator-result .loan_emi {
  font-weight: 700;
  font-size: 22px;
  color: #0a1137;
}

.calculator-result .loan_principle,
.calculator-result .loan_interest_rate,
.calculator-result .loan_total {
  color: #333332;
  font-weight: 700;
  font-size: 22px;
}

.calculator-result canvas {
  padding: 20px;
}

/*--------custom-plan---------*/
.clients {
  padding: 0 0 60px 0;
}

/* .clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
} */

/* .clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
} */
.swiper-slide {
  border: 2px solid #14226d;
  padding: 10px;
  border-radius: 10px;
  margin: 10px 30px 10px 30px;
  width: 100%;
}

.custom-btn {
  width: 90%;
  margin: 5px;
  color: #004f9e;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  /* box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1); */

  outline: none;
}

/* 6 */
.btn-6 {
  background: #004f9e;
  background: linear-gradient(90deg, #f3f9f9, #ffffff);
  line-height: 42px;
  padding: 0;
  border: none;
}

.btn-6 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.btn-6:before,
.btn-6:after {
  position: absolute;
  content: "";
  height: 0%;
  width: 1px;
  box-shadow: -1px -1px 20px 0px rgba(255, 255, 255, 1),
    -4px -4px 5px 0px rgba(255, 255, 255, 1),
    7px 7px 20px 0px rgba(0, 0, 0, 0.4), 4px 4px 5px 0px rgba(0, 0, 0, 0.3);
}

.btn-6:before {
  right: 0;
  top: 0;
  transition: all 500ms ease;
}

.btn-6:after {
  left: 0;
  bottom: 0;
  transition: all 500ms ease;
}

.btn-6:hover {
  background: transparent;
  color: #14226d;
  box-shadow: none;
}

.btn-6:hover:before {
  transition: all 500ms ease;
  height: 100%;
}

.btn-6:hover:after {
  transition: all 500ms ease;
  height: 100%;
}

.btn-6 span:before,
.btn-6 span:after {
  position: absolute;
  content: "";
  box-shadow: -1px -1px 20px 0px rgba(255, 255, 255, 1),
    -4px -4px 5px 0px rgba(255, 255, 255, 1),
    7px 7px 20px 0px rgba(0, 0, 0, 0.4), 4px 4px 5px 0px rgba(0, 0, 0, 0.3);
}

.btn-6 span:before {
  left: 0;
  top: 0;
  width: 0%;
  height: 0.5px;
  transition: all 500ms ease;
}

.btn-6 span:after {
  right: 0;
  bottom: 0;
  width: 0%;
  height: 0.5px;
  transition: all 500ms ease;
}

.btn-6 span:hover:before {
  width: 100%;
}

.btn-6 span:hover:after {
  width: 100%;
}

.frame {
  width: 90%;
  margin: 40px auto;
  text-align: center;
}

.custom_btn {
  width: 130px;
  height: 40px;
  color: #001973;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}

/* 3 */
.btn-3 {
  background: rgb(0, 172, 238);
  /* background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%); */
  background: linear-gradient(90deg, #dafbfb, #ffffff);
  width: 250px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
  margin: 10px;
}

.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #001973;
  transition: all 0.3s ease;
}

.btn-3:before {
  height: 0%;
  width: 2px;
}

.btn-3:after {
  width: 0%;
  height: 2px;
}

.btn-3:hover {
  background: transparent;
  box-shadow: none;
}

.btn-3:hover:before {
  height: 100%;
}

.btn-3:hover:after {
  width: 100%;
}

.btn-3 span:hover {
  color: rgba(2, 126, 251, 1);
}

.btn-3 span:before,
.btn-3 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #001973;
  transition: all 0.3s ease;
}

.btn-3 span:before {
  width: 2px;
  height: 0%;
}

.btn-3 span:after {
  width: 0%;
  height: 2px;
}

.btn-3 span:hover:before {
  height: 100%;
}

.btn-3 span:hover:after {
  width: 100%;
}

.plan_commingsoon_img {
  height: 480px;
}

.banner_sec {
  background-image: url(../img/banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  position: relative;
  background-color: #fff;
  height: 80vh;
}

.banner_section_content {
  text-align: center;
  width: 80%;
  margin: auto;
}

.banner_section_content h2 {
  font-size: 50px;
  color: #fff;
  padding-top: 8%;
  line-height: 60px;
}

/* demo section start */

.demo_sec {
  background-image: url(../img/finance-solution.jfif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-attachment: fixed;
}

.demo_card {
  padding: 16px 20px;
  border-radius: 13px;
  box-shadow: 0 20px 20px 0 rgb(0 0 0 / 25%);
  background-color: #ffffff;
  align-self: flex-start;
  z-index: 1;
  text-align: center;
}

.demo_card h2 {
  font-size: 26px;
  color: #0e304f;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: center;
}

.demo_card input,
.demo_card input:hover,
.demo_card input:focus,
.demo_card textarea,
.demo_card textarea:hover,
.demo_card textarea:focus {
  margin-top: 15px;
  border-radius: 0px;
  background-color: #f6f9fc;
  color: #000;
  border: 0;
  box-shadow: none;
}

.demo_card button {
  margin-top: 15px;
}

/* demo section end */
.uniqueness_details {
  padding: 16px 20px;
  border-radius: 13px;
  box-shadow: 0 20px 20px 0 #00000008;
  background-color: #ffffff;
  margin-bottom: 30px;
}

.uniqueness_details ul {
  padding-left: 15px;
}

.uniqueness_details b {
  color: #141f6e;
}

.timeline-content ul {
  padding-left: 18px;
}

.timeline-content li {
  text-transform: capitalize;
}

.free_demo_text {
  color: #141f6e;
  font-weight: 800;
}

#about_page_start {
  margin-top: -50px;
}

@media (max-width: 767px) {
  #hero .container {
    padding-top: 130px;
  }

  #hero {
    background: #141f94;
    height: auto;
  }

  #hero h1 {
    font-size: 22px;
    margin-top: 0px;
  }

  .demo_sec .offset-3 {
    margin-left: 0px;
  }

  #about_page_start {
    margin-top: 0px;
  }

  #header .logo {
    width: 55%;
    max-height: 124px;
  }

  .abt_img {
    /* margin-top: 28% !important; */
    margin-top: 0 !important;
  }

  .loan_parent .box {
    /* display: flex; */
  }

  .boxFirstChild {
    margin-top: 15px !important;
  }

  #header .logo img {
    max-height: 50px !important;
  }

  .logo_horizontal {
    margin-left: 5% !important;
  }

  .logo h3 {
    font-size: 24px !important;
  }

  #header .logo {
    width: 65% !important;
  }
}

/*************************Products section starts here**************************************/
.box {
  padding: 30px 20px;
  background: var(--body-color);
  box-shadow: 0px 12px 24px rgb(47 65 129 / 5%);
  border-radius: 5px;
  float: left;
  margin-bottom: 30px;
  width: 100%;
  /* border: 1px solid #1635db; */
  transition: 0.3s;
}
.box:hover {
  box-shadow: 0px 12px 24px rgb(47 65 129 / 50%);
}
.home,
.property,
.personal,
.car,
.sme,
.gold {
  /* background: #F5FAFF; */
  /* border-radius: 40px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* transition: 0.3s; */
  float: center;
  height: auto;
}

.box1 {
  width: 100%;
  /* float: center; */
  text-align: center;
  margin-top: 29px;
  /* margin-left: 22px; */
}

.about_new_text h4 {
  font-size: 18px;
  text-align: center;
}

/***********************Client slider*********************/
.items {
  width: 90%;
  margin: 0px auto;
  margin-top: 100px;
}

/* .slick-slide {
  margin-top: 46px!important;
} */

.slick-slide img {
  width: 100%;
  border: 0px solid #fff;
}

header .logo p {
  margin-bottom: 0px;
}

.logo_text {
  color: #14226d;
  font-size: 13px;
  padding-top: 0px;
  font-weight: 600;
}

.loan-flow-chart img {
  width: 100%;
}

.logo h3 {
  color: #14226d;
  font-weight: 600;
  font-size: 40px;
  text-align: left;
}

.logo_text span {
  border-top: 2px solid #14226d;
  padding-top: 3px;
}

.logo_horizontal {
  display: flex;
  margin-left: 21%;
}

.logo_horizontal div {
  margin-left: 15px;
}
.loan_content p {
  text-align: justify;
  font-size: 14px;
}
.header_dropdown li {
  display: block !important;
  position: relative;
  line-height: 21px;
  text-align: left;
}
.header_dropdown li a {
  display: block;
  padding: 8px 25px;
  color: #3e3e3e;
  text-decoration: none;
}
.header_dropdown li a:hover {
  color: black !important;
  /* background: #ebeaea; */
  /* width: 100%; */
}
ul li ul.header_dropdown {
  min-width: 100%; /* Set width of the dropdown */
  background: #f2f2f2;
  display: none;
  position: absolute;
  z-index: 999;
  left: 0;
}
ul li:hover ul.header_dropdown {
  display: block; /* Display the dropdown */
}
ul li ul.dropdown li {
  display: block;
}
.navbar a,
.navbar a:focus {
  padding: 8px 25px;
}
.mobile-li{
  display: none !important;
}
.desktop-li{
  display: block !important;
}
@media screen and (max-width: 990px) {

  ul li ul.header_dropdown {
    min-width: 100%; /* Set width of the dropdown */
    background: #f2f2f2;
    display: none;
    position: relative !important;
    z-index: 999;
    left: 0;
    height: fit-content;
    top: 0px;
  }
  ul li:hover ul.header_dropdown {
    display: block;
  }
  ul li ul.dropdown li {
    display: block;
  }
  .mobile-li {
    display: block !important;
  }
  .desktop-li{
    display: none !important;
  }
  .header_dropdown li{
    padding-left: 15px !important;
  }
}

/* our value section css start  */
.our_values_sec {
  display: flex;
  justify-content: space-evenly;
  /* align-items: center; */
  margin: 0 30px;
}
.our_values_sec_descr {
  padding: 0 20px;
  max-width: 350px;
}
.our_values_sec_descr hr {
  width: 40%;
  background-color: #10526a !important;
  height: 3px;
  opacity: 1;
  transition: 0.8s;
}
.our_values_sec_descr h1 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #001973;
}
.our_values_sec_descr p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #444444;
}
.probity:hover hr,
.philanthropy:hover hr,
.commendable_work:hover hr,
.believe:hover hr,
.affiliation:hover hr {
  width: 100%;
}
@media (max-width: 991px) and (min-width: 768px) {
  .our_values_sec {
    flex-wrap: wrap;
  }
  .our_values_sec_descr {
    width: 320px;
    pointer-events: none !important;
  }
  .our_values_sec_descr hr {
    width: 100%;
  }
}
@media (max-width: 767px) and (min-width: 680px) {
  .our_values_sec {
    flex-wrap: wrap;
  }
  .our_values_sec_descr {
    width: 300px;
    pointer-events: none !important;
  }
  .our_values_sec_descr hr {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .our_values_sec {
    flex-wrap: wrap;
  }
  .our_values_sec_descr {
    width: 80%;
    pointer-events: none !important;
    text-align: center;
    margin: auto;
  }
  .our_values_sec_descr hr {
    width: 100%;
  }
}
 /* our value section css ends  */


 /* gallery page css start  */

 .feature-img{
  position: relative;
  margin-bottom: 30px;
 }
.feature-img img{
  border-radius: 10px;
  margin-bottom: 10px;
}
.play-btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.video-palyer{
  min-width:100%;
  height: 91% !important;
  position: fixed;
  left: 0;
  top: 85px;
  z-index: 99;
  display: none;
  background-color: #fff;
}
.close-btn{
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.scroll{
  overflow: hidden;
}
@media (max-width: 767px) {
  .video-palyer{
    top: 64px;
  }
}
 /* gallery page css ends  */

/* our value section css ends  */
/* about section header  */

/* chatbot start here  */

.chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: block;
}
.chatbot2 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
  display: none;
}
/* .chatbot img{
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  box-shadow: 0px 12px 24px rgb(47 65 129 / 30%);
} */
.chatbot_img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  box-shadow: 0px 12px 24px rgb(47 65 129 / 30%);
  transition: 0.3s ease;
  cursor: pointer;
  background: #fff;
  text-align: center;
  overflow: hidden;
}
.chatbot_img1 {
  width: 70px;
  height: 70px;
}
.chatbot_img2 {
  width: 40px;
  height: 40px;
  margin-top: 16px;
  display: none;
  margin-left: 17px;
}

.chatbot_img:hover .chatbot_img2{
  display: block;
}

.chatbot_img:hover .chatbot_img1{
  display: none;
}

/* chatbot ends here  */
/* -----------------------------Inventory Manganment Page Css------------------------------------------------------------------------------------------ */
.ben_image img{
  width: 100%;
}
.tailored_sec{
  background: #ecf6fd;

}
.get_started{
  background: #fff;
  border-left: 3px solid #14226d;
  padding: 8px;
  margin-top: 6px;
  text-align: center;
}
.get_started p{
margin-bottom: 0px;
}
.get_started h6{
color: #000;
  }
  .card_choose_us{
    background: #fff;
    box-shadow: 0 16px 24px 2px rgba(185, 183, 183, 0.14), 0 6px 30px 5px rgba(158, 158, 158, 0.12), 0 8px 10px -7px rgba(154, 151, 151, 0.2);
    margin-bottom: 30px;
    border-radius: 10px;
    transition: 0.5s;
 position: relative;
  }
  .top-color{
   
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 79px;
    width: 100%;
    position: relative;


  }
  .upper_color{
    background-color:#14226d ;
    height: 62px;
    width: 100%;
     border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .profile{
    margin-top: -32px;
  }
  .circle{
    background: #fff;
  }
  .content{
    margin-top: 20px;
    padding: 12px;
    text-align: center;
  }
   .content p{
  padding: 10px 0;
  }
  @media (min-width: 992px) {
    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }
}
/* .serv_sec_img img{



} */
.profile i {
  display: inline-block; /* Ensures the element behaves like a block-level element */
  width: 75px;
  height: 36px;
  line-height: 50px; /* Centers the icon vertically */
  background-color: white; /* Sets the background color to white */
  text-align: center; /* Centers the icon horizontally */
  border-radius: 5px; /* Optional: Rounds the corners */
  font-size: 24px; /* Adjust the icon size */
  color: #14226d;
 font-size: 30px;
}

.pricing .box {
  background: #fff;
 
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 

  padding: 20px;
  text-align: center;
}

 .pricing .box h3 {
  font-size: 1.5em;
  color: #333;
}

.pricing .box .price {
  font-size: 2em;
  color:#444444; /* Change color to match your theme */
  margin: 10px 0;
}

.pricing .box .discount {
  font-size: 1.2em;
  color: #004f9e; /* Highlight discount */
  margin: 10px 0;
}

.pricing .box button.btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: #4154f1;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #4154f1;
}

.pricing .box button.btn-buy:hover {
  background: #4154f1; /* Slightly darker color on hover */
  color: #fff;
}
.why_choose_us{
  background: #ecf6fd;
}

@media screen and (max-width: 1023px)  {
  .content_img {
      display: none;
  }
}
@media screen and (max-width: 991px) {
  .hidden-xs {
      display: none;
  }
  .improve-section .mt-5{
    margin-top: 0 !important;
  }
}
@media (min-width: 992px) {
  .col-md-offset-3 {
      margin-left: 25%;
  }
}


.serv_sec_img {
  height: 400px;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.serv_sec_img img{

  width: 100%;
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .improve-1  {
      text-align: center !important;
  }
}

@media screen and (max-width: 768px) {
  .improve-1  {
      text-align: center !important;
  }
}
.btn-bule{
  margin-bottom: 12px;
}
.free-trial{
  width: 100%;
  background: #fff;
   border-radius: 8px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 12px;
display: flex;
align-items: center;
justify-content: space-between;
}
.highlighted-text::before {
  content: "\f058"; /* Unicode for Font Awesome's 'fa-circle-check' icon */
  font-family: "Font Awesome 5 Free"; /* Specify Font Awesome */
  font-weight: 600; /* Necessary for solid icons */
  /* Customize the icon color */
  margin-right: 8px; /* Space between icon and text */
  font-size: 1.2em; /* Adjust the icon size */
  vertical-align: middle; /* Align the icon vertically with the text */
}
