/**
* Template Name: Ixiloan
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

a {
  color: #f07923;
  text-decoration: none;
}

a:hover {
  color: #f6b688;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f07923;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #f07923;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #f07923;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 255, 255, 0.9);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #f07923;
}

#header .logo img {
    max-height: 50px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 6px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #f07923;
}

.get-started-btn:hover {
  background: #f07923;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
    float: left;margin-top: 3px;margin-right: 20px;margin-left: 24%;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {position: relative;
  display: flex;text-transform: uppercase;
  align-items: center;font-family: 'Raleway';
  justify-content: space-between;
  padding: 10px 15px 10px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: #f07923;
  transition: width .4s ease-in;
}

.navbar a:hover::after {
  width: 100%;
}


.navbar a:hover, .navbar a.nav-link.active,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #f07923;
}

.navbar a {
  display: inline-block;
  position: relative;
  color: #f07923;
}

.navbar a:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f07923;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.navbar a:hover:after, .navbar a.active:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


.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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none; display: block;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #f47820;
}

.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;
}

@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(0, 0, 0, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #f07923;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.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 {
  background-color: #f07923;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  
}

#hero img {
    width: 100%;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
    margin: 0;
    font-size: 86px;
    font-weight: 700;
    line-height: 94px;
    color: #fff;
    font-family: "Raleway", sans-serif;
}

#hero h1 span {
  color: #f07923;
}

#hero p {
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 10px 0 0 0;
  font-size: 16px;margin-bottom: 15px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #f07923;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #f07923;
}

#hero .icon-box:hover {
  border-color: #f07923;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  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: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  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: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #f07923;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f07923;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 0;
}

.features h2 {
  font-weight: 600;
  font-family: Raleway;
  font-weight: 700;
  font-size: 26px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #f07923;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/*.services{background:url(../img/service-bg.jpg) no-repeat 0 0;background-size: cover; background-attachment: fixed*/ background:#fff}
.services .icon-box {
  text-align: cente;
  padding: 20px 20px;
  transition: all ease-in-out 0.3s;
/*  border: 1px solid rgba(88,86,233,.2);
    background: rgb(207,255,224);
    background: linear-gradient(45deg, rgba(207,255,224,1) 0%, rgba(238,253,243,1) 35%, rgba(255,250,225,1) 100%);*/
    background: linear-gradient(to top, #f8fbe8 74%, #d6ffe4 32%);
}


.services .icon-box .icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
      background: #fff;
    border-radius: 60px;
    border: 1px solid #ccc;
    width: 100px;
    height: 100px;
    padding: 18px;transition: width 1s, height 1s, transform 1s;
}



.services .icon-box:hover .icon{ background: #fff0ab;transform: rotate(180deg);}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 600;font-family: 'Raleway';text-transform: capitalize;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #f07923;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn, .allservbtn .cta-btn, .calculoan .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover, .allservbtn .cta-btn:hover, .calculoan .cta-btn:hover {
  background: #f07923;
  border-color: #f07923;
  color: #151515;
}

.calculoan .cta-btn{background:#41965f}
.calculoan .cta-btn:hover{background:#fff}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #151515;
  background: #f07923;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #f07923;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f07923;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f07923;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #f07923;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("../img/home-achivments.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background-image: linear-gradient(rgba(91, 91, 91, 0.612), rgba(65, 65, 65, 0.525)), url("../img/testim-bg.jpg");
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(244, 120, 32, 0.6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f07923;
  opacity: 1;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: #f07923;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #f07923;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #f07923;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #f07923;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #145887;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer a{color: #fff}


#footer .footer-top .footer-info img {
  margin-bottom: 10px;
}
#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #f07923;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #f07923;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f07923;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #f07923;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer_disclmr span{
  font-weight: 600;
  font-size: 15px;
}
#footer .footer_disclmr p{
  font-size: 13px;
  margin-top: 20px; color: #ccc;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #f07923;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: left;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 30px;
  text-align: right;
  font-size: 13px;
  color: #fff;
}
.footer-links-inner{margin-left: 100px}

/* Custom Css Start */
#message {
    text-align: left;
    display: block;
    margin-top: 0;
    width: 100%;
}
a.get-started-btn.scrollto {font-family: Raleway;font-size: 16px;text-transform: uppercase;
    float: left;margin-top: 3px;font-weight: 500;
}
.fixed-top a.get-started-btn.scrollto{color: #000}
#hero span.hdrtxtspn{font-size: 18px; color: #fff; text-align: center;}
#hero .cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}
#hero .cta-btn:hover {
    background: #f07923;
    border-color: #f07923;
    color: #151515;
}
.fixed-top {
    background: #fff;
}
.fixed-top .navbar a, .navbar a:focus{color: #145887}

.fixed-top .normallogo{display: inline-block}
.fixed-top .fixedlogo{display: none}
.header-scrolled .normallogo{display: none}
.header-scrolled .fixedlogo{display: inline-block}
.header-scrolled .navbar a{color: #f07923}
.header-scrolled .navbar a:hover{color: #165785;}
.header-scrolled .navbar a.nav-link.active{color: #165785;}
.header-scrolled a.get-started-btn.scrollto{color: #fff}
.hdngtoptxt {
  font-size: 18px;
  font-weight: 600;
  border-left: 3px solid #f07923;
  padding-left: 10px;
  line-height: normal;
  padding-bottom: 5px;
  margin-bottom: 10px;
  display: block;
}
.abouttxt{padding-left: 15px;}
.features p{margin-bottom: 40px}
.whychoose .section-title h2{font-size: 36px !important;margin-bottom: 10px !important}
.whychoose .section-title h2::after{width: 0;height: 0}
.services .section-title h2, .counts h2, .testimonials h2, .calculoan h2, .whychoose .section-title h2{font-size: 26px;font-weight: 700;font-family: 'Raleway'; color: #000;margin-top: 20px;display: block; line-height: normal}
.counts h2{font-size: 26px;font-weight: 700;font-family: 'Raleway'; color: #000;margin-top: 0 !important;text-transform:uppercase;display: block;}
.services .section-title h2, .services .section-title .hdngtoptxt,{color: #000}
.testimonials h2{color: #f47820}
.testimonials h2{text-transform: uppercase;text-align: center;margin-bottom: 20px;position: relative;}
.testimonials h2:after{position: absolute;content: ''; left: 0;right: 0; bottom: -6px; width: 50px;height: 1px; background: #fff;margin:0 auto}
.allservbtn {
  text-align: center;
  padding-top: 30px;
}
.calculoan .ui-slider {
    margin:20px;
    width: 300px;
}
.emicalcultr {
  background-image: linear-gradient(rgb(0 0 0 / 59%), rgb(11 11 11 / 53%)), url("../img/emi-cal.jpg");
    background-size: cover;
    padding:40px;
    text-align: center;
}
.emicalcultr h3 {
  font-size: 16px; color: #fff;
  font-weight: 600;
}
.emicalcultr .lontxt {
  font-size: 35px; color: #fff;
}
.ttlinttxt, .ttlpaytxt {
    font-size: 20px;
    color: #fff;
}

#innerhdr{
  height: 550px;
  background-clip: initial;
  background-origin: initial; 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;background-attachment: fixed;background-position: center center;background-size: 100% auto;
  background-color: rgba(0, 0, 0, 0.192);padding: 300px 0 220px;
}
#innerhdr h1 {
    font-family: 'Raleway';
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;position: relative;
}
#innerhdr h1:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: #fff;
}
.breadcrmb ul {
    margin: 30px 0 0;
    padding: 0; text-align: left;
    list-style: none;
}
.breadcrmb ul li {
    display: inline;
    padding-right: 5px;}
.breadcrmb ul li.frstbrdcrmb a{position: relative;}
.breadcrmb ul li.frstbrdcrmb a:after {
    content: "/";position: absolute;
    margin-left: 49px;left: 0;top: 0; color: #fff;

}
.aboutbnr{background-image: linear-gradient(rgb(0 0 0 / 59%), rgb(11 11 11 / 53%)), url("../img/brnd-hstry4.jpg");}

.innsction-title.abt-scttl{margin-top:100px}
.innsction-title.abt-hstttl{margin-top:40px}

.innsction-title h2{font-size: 35px; font-family: Raleway; font-weight: 600;position: relative;}
.innsction-title h2:after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}
.innsction-title h2.whchsabout {
    margin-top: 50px;
}

.innsction-title h2 span{color: #41965f; font-weight: 700;font-style: italic;}

.aboutussction{background: url("../img/about-img.jpg") no-repeat right top;background-size: 44% auto}

ul.aboutmidtxt{margin:40px 0 0;padding: 0}
ul.aboutmidtxt li{text-align: justify;background: url("../img/about-list.png") no-repeat 0 4px;list-style: none;padding-left: 30px;margin-bottom: 10px;background-size: 16px auto}
ul.aboutmidimg img{border-radius: 20px 0 20px 0}

section.msnbox.features {
    background: #eee;
}

section.msnbox.vsnbox.features {
    background: #fff;
}


section.msnbox.features img{border-radius: 100px 0 100px 0;}

.msnbox.features .icon-box h4 {
    margin-top: 12px;
    display: inline-block;
    text-align: left;
    margin-left: 10px;
}
.msnfetrbx{margin-bottom: 20px}
.msnbox.features .icon-box i{color: #41965f}
.msnbox.features .icon-box {
    background: #eee;
    padding: 10px;
}
ul.innsection_mid_text{
  margin:40px 0 0;
  padding: 0;
}
ul.innsection_mid_text li{
  text-align: justify;
  background: url("../img/about-list.png") no-repeat 0 4px;
  list-style: none;
  padding-left: 30px;
  margin-bottom: 10px;
  background-size: 16px auto;
}
ul.aboutmidimg img{
  border-radius: 20px 0 20px 0;
}

/*.msnbox.vsnbox{background:#f07923}*/

section.srvsction.srvsctionalt {
    background: #ffe7d1;
}

section.srvsction img{border: 6px solid #79b2e0}
section.srvsctionalt img{border: 6px solid #79b2e0}

.srvsction a.enqbtnsrv, .srvsction button.btn.btn-primary {
    color: #fff;border: 0;
    background: #5fa671;
    text-transform: uppercase;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: 5px;
}
.srvsction a.enqbtnsrv:hover, .srvsction button.btn.btn-primary:hover {background: #f07923;border: 0}
#info_online_loan .container{margin: 0}

.modal-header {
    position: absolute;
    right: 0;
    z-index: 9999;
}
.form-info-loan .form-select.form-control {
  float: left;
  padding: 5px 10px;
}

/* Custom CSS End */
.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #04AA6D;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #41965f;
  cursor: pointer;
}

/* ============================================service page start================================== */


#bsnbanr{
  background-image: linear-gradient(rgb(0 0 0 / 59%), rgb(11 11 11 / 53%)), url("../img/bsnbnr.jpg");
  height: 550px;
  background-clip: initial;
  background-origin: initial; 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;padding: 300px 0 220px;
  background-color: rgba(0, 0, 0, 0.192);
}

#inctaxfilbnr{
  background-image: linear-gradient(rgb(0 0 0 / 59%), rgb(11 11 11 / 53%)), url("../img/incbanr.jpg");
  height: 550px;
  background-clip: initial;
  background-origin: initial; 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;padding: 300px 0 220px;
  background-color: rgba(0, 0, 0, 0.192);
}

section.srvsction.srvsctionalt.inctxbg {
  background-image: url("../img/inc-tax-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}

.ptb-220{
  padding: 220px 0;
}
.Pro_service  h1{
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}
.Pro_service h1:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 70px;
  height: 2px;
  background: #fff;
}
.pro_service_heading_content h2{
  margin-bottom: 20px;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 1px;
}
.pro_service_heading_content h2 span{
  color: #f07923;
}
.pro_service_heading_content p{
  font-weight: 500;
  font-size: 16px;
  color: grey;
  margin-bottom: 50px;
}
.pdl-0{
  padding-left: 0px!important;
}
.service_sec_1 h2{
  font-size: 35px;
    font-family: Raleway;
    font-weight: 600;
    position: relative;
}
.service_sec_1 h2 span{
  color: #41965f;
    font-weight: 700;
    font-style: italic;
}
.service_sec_1 h2:after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}
.service_sec_1 p{
  font-size: 16px; line-height: 24px;
  font-weight: 400;
  margin-top: 20px;text-align: justify;
}
.service_sec_1 em{
  font-size: 18px;
  /* color: #777777; */
  color: #ebc713;
}
.service_sec_2 h2{
  font-size: 35px;
    font-family: Raleway;
    font-weight: 600;
    position: relative;
}
.service_sec_2 h2 span{
  color: #41965f;
    font-weight: 700;
    font-style: italic;
}
.service_sec_2 h2:after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}
.service_sec_2 p{
  font-size: 16px; line-height: 24px;
  font-weight: 400;
  margin-top: 20px;

}

/* ................................ services page ends......................................... */

/* ======================================================================================== */

/*................................... calucator page............................................ */



.header {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header button {
  height: max-content;
  width: max-content;
  padding: 10px;
  border: none;
  background-color: transparent;
  font-size: 35px;
  color: #9088d2;
}

.header button:hover {
  cursor: pointer;
}

.view,
.breakup {
  width: 50%;
}
.details input {
  width: 100%;
}

.detail {
  display: flex;
  justify-content: space-between;
}

.footer {
  display: flex;
  justify-content: space-between;
}

/*----- Styling the sliders ----*/
input[type="range"] {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #f07923;
  border-radius: 10px;
}

input[type="range"]::-webkit-slider-thumb {
  box-shadow: 2px 2px 5px #b3b3b3, -1px -1px 3px grey;
  border: 5px solid #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
  margin-top: -6px;
  -webkit-appearance: none;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #b3b3b3;
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #9088d2;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
  border-radius: 10px;
}

input[type="range"]::-moz-range-thumb {
  box-shadow: 2px 2px 5px #b3b3b3, -1px -1px 3px grey;
  border: 5px solid #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #9088d2;
  cursor: pointer;
  margin-top: -6px;
}

input[type="range"]::-ms-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #9088d2;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
  border-radius: 10px;
}

input[type="range"]::-ms-fill-lower {
  background: #9088d2;
  border-radius: 5px;
}

input[type="range"]::-ms-fill-upper {
  background: #9088d2;
  border-radius: 5px;
}

input[type="range"]::-ms-thumb {
  box-shadow: 2px 2px 5px #b3b3b3, -1px -1px 3px grey;
  border: 5px solid #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #9088d2;
  cursor: pointer;
  margin-top: -6px;
}

input[type="range"]:focus::-ms-fill-lower {
  background: #04AA6D;
}

input[type="range"]:focus::-ms-fill-upper {
  background: #9088d2;
}
canvas#pieChart {
    height: 400px !important;
    width: 400px !important;
    margin: 0 auto;
    margin-bottom: 20px;
}
.details{
  margin-top: 55px;

}

/*-------------------------------------*/
#price {
  color: #130f31;
  font-size: 25px;
}

.loan-details {
  width: 90%;
  display: flex;
  justify-content: space-between;
  /* gap: 30px; */
  margin-top: 30px;
}

#price-container {
  color: #9088d2;
  margin-top: 50px;
}

#price-container::before {
  content: "Monthly Payable:";
  font-size: 12px;
  display: block;
}


/*................................... calucator page end............................................ */

/* ======================================================================================== */


/* .............................contact_us starts............................................ */




.contactbnr{background-image: linear-gradient(rgb(0 0 0 / 59%), rgb(11 11 11 / 53%)), url("../img/contact.jpg");} 
.contactbnr1 {
    background-image: linear-gradient(rgb(0 0 0 / 59%), rgb(11 11 11 / 53%)), url(../img/cntct-img.jpg);
}

.termsbnr{background: #000 !important}

#innercnct{
  height: 400px;
  background-clip: initial;
  background-origin: initial; 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;background-attachment: fixed;background-position: center center;background-size: 100% auto;
  background-color: rgba(0, 0, 0, 0.192);padding: 220px 0;
}
#innercnct h1 {
    font-family: 'Raleway';
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;position: relative;
}
#innercnct h1:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -7px;
    width: 70px;
    height: 2px;
    background: #fff;
}
.ptb-110{
  padding: 110px 0;
}
.contact_us  h2{
  font-size: 46px;
  font-weight: 700;
}
.contact_us h2:after {
  background: #41965f;
  content: "";
  height: 35px;
  left: 65px;
  position: absolute;
  top: 122px;
  width: 6px;
}
.contact_heading_content h2{
  font-size: 35px;
  font-weight: 600; line-height: 42px;
  margin-bottom: 20px;
}
.contact_heading_content h2 span{
  color: #f07923;
}
.contact_us_git {
    background: #fcf7e2;
}
.cont_git_Box{
  color: #444444;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 10px 0;
  height: 173px;width:49%;margin-right:1%;float:left;
  margin-top: 10px;
}
.contact_heading_content p span{
  color: #41965f;
  cursor: pointer;
  font-weight: 500;
}
.cont_us_Contents .icon{
  color: #41965f;
}
.cont_us_Contents h4 {
    margin-top: 10px;
    margin-bottom: 15px;
    color: #145887;
    font-size: 20px;
    font-weight: 600;
}
.cont_us_Contents p{
  line-height: 0.6;
  color: #59715e;
  font-size: 15px;
}

/* info form */

#contact_information{
  background-image: linear-gradient(to right bottom, #ffffffeb, #f3f4f9bf),url("../img/elevate-your-home.jpg");
  background-size: cover;
  background-repeat: no-repeat;

}

.form-container{
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 30px 25px 70px 25px;
  border-radius: 10px;
  box-shadow: 0 0 25px -15px rgba(0,0,0,0.3);
  position: relative;
}
/* .form-container:before,
.form-container:after{
  content: '';
  background-color: #f07923;
  height: 50%;
  width: 4px;
  position: absolute;
  left: 10px;
  top: 10px;
} */
.form-container:after{
  top: auto;
  bottom: 10px;
  left: auto;
  right: 10px;
}
.form-container p{
  color: #41965f;
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 15px;
}
.form-container .social-links{
  padding: 0;
  margin: 0 0 15px;
  list-style: none;
}
.form-container .social-links li{
  display: inline-block;
  margin: 0 3px;
}
.form-container .social-links li a{
  color: #555;
  line-height: 27px;
  height: 28px;
  width: 28px;
  border: 1px solid #555;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease 0s;
}
/* .form-container .social-links li a:hover{
  color: #fff;
  background-color: #41965f;
}
.form-container .description{
  color: #555;
  font-size: 13px;
  margin: 0 0 10px;
  display: block;
} */
.form-information .form-group{ margin: 0 0 15px; }
.form-information .form-group:last-of-type{
  text-align: left;
  margin-bottom: 15px;
}
.form-information .form-control{
  color: #000;
  background: #F7F8F9;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  height: 40px;
  padding: 6px 12px;
  border-radius: 5px;
  border: 2px solid #d2d2d2;
  box-shadow: none;
}
.form-information .form-control:focus{
  border-color: rgba(78, 76, 151, 0.5);
  box-shadow: none;
}
.form-information .form-control::placeholder{
  color: #000;
  font-size: 14px;
  font-weight: 300;
}
.form-information .form-group .check-label{
  color: #555;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  margin: -2.5px 0 0;
  vertical-align: text-top;
  display: inline-block;
}
.form-information .form-group .check-label a{
  color: #41965f;
  transition: all 0.3s ease;
}
.form-information .form-group .check-label a:hover{ text-decoration: underline; }
.form-information .checkbox{
  height: 17px;
  width: 17px;
  min-height: auto;
  margin: 0 3px 0 0;
  border: 1px solid #999;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s ease;
}
.form-information .checkbox:before{
  content: '';
  height: 6px;
  width: 12px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 1;
  transform: rotate(-45deg);
  position: absolute;
  left: 2px;
  top: 2.5px;
  transition: all 0.3s ease;
}
.form-information .checkbox:checked{
  background-color: #41965f;
  border-color: #41965f;
}
.form-information .checkbox:checked:before{ opacity: 1; }
.form-information .checkbox:not(:checked):before{ opacity: 0; }
.form-information .checkbox:focus{ outline: none; }
.form-information .btn{
  color: #fff;
  background-color: #f07923;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  width: 130px;
  padding: 11px;
  margin: 0; float: left;
  border: 2px solid #f07923;
  border-radius: 15px;
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.form-information textarea.form-control{
  height: auto;
  width: 100%;
}
.form-information .btn.signin{
  color: #f07923;
  background-color: #fff;
}
.form-information .btn:hover,
.form-information .btn:focus{
  color: #41965f;
  background-color: #fff;
  box-shadow: 0 0 5px #f07923, 0 0 15px #f07923 inset;
}
.form-information .btn.signin:hover,
.form-information .btn.signin:focus{
  text-shadow: 3px 3px rgba(0,0,0,0.3);
  box-shadow: 0 0 5px #f07923;
}

/* ................................contact_us ends......................................... */


/*Online Form Start*/
#info_online_loan{
    background-repeat: no-repeat;
    /* background: linear-gradient(4deg, black, transparent); */
    /* background: repeating-radial-gradient(#b1dbc083, transparent 100px); */
  }
  
  .form_apply_loan{
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 30px 25px 70px 25px;
    border-radius: 10px;
    box-shadow: 0 0 25px -15px rgba(0,0,0,0.3);
    position: relative;
  }
  /* .form_apply_loan:before,
  .form_apply_loan:after{
    content: '';
    background-color: #f07923;
    height: 50%;
    width: 4px;
    position: absolute;
    left: 10px;
    top: 10px;
  } */
  .form_apply_loan:after{
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
  }
  .form_apply_loan p{
    color: #41965f;
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 15px;
  }
  .form_apply_loan .social-links{
    padding: 0;
    margin: 0 0 15px;
    list-style: none;
  }
  .form_apply_loan .social-links li{
    display: inline-block;
    margin: 0 3px;
  }
  .form_apply_loan .social-links li a{
    color: #555;
    line-height: 27px;
    height: 28px;
    width: 28px;
    border: 1px solid #555;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease 0s;
  }
  /* .form_apply_loan .social-links li a:hover{
    color: #fff;
    background-color: #41965f;
  }
  .form_apply_loan .description{
    color: #555;
    font-size: 13px;
    margin: 0 0 10px;
    display: block;
  } */
  .form-info-loan .form-group{ margin: 0 0 15px; }
  .form-info-loan .form-group:last-of-type{
    text-align: left;
    margin-bottom: 15px;
  }
  .form-info-loan .form-control{
    color: #000;
    background: #F7F8F9;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    height: 40px;
    padding: 22px 12px;
    border-radius: 5px;
    border: 2px solid #d2d2d2;
    box-shadow: none;
  }
  .form-info-loan .form-control:focus{
    border-color: rgba(78, 76, 151, 0.5);
    box-shadow: none;
  }
  .form-info-loan .form-control::placeholder{
    color: #000;
    font-size: 14px;
    font-weight: 300;
  }
  .form-info-loan .form-group .check-label{
    color: #555;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    margin: -2.5px 0 0;
    vertical-align: text-top;
    display: inline-block;
  }
  .form-info-loan .form-group .check-label a{
    color: #41965f;
    transition: all 0.3s ease;
  }
  .form-info-loan .form-group .check-label a:hover{ text-decoration: underline; }
  .form-info-loan .checkbox{
    height: 17px;
    width: 17px;
    min-height: auto;
    margin: 0 3px 0 0;
    border: 1px solid #999;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
  }
  .form-info-loan .checkbox:before{
    content: '';
    height: 6px;
    width: 12px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    opacity: 1;
    transform: rotate(-45deg);
    position: absolute;
    left: 2px;
    top: 2.5px;
    transition: all 0.3s ease;
  }
  .form-info-loan .checkbox:checked{
    background-color: #41965f;
    border-color: #41965f;
  }
  .form-info-loan .checkbox:checked:before{ opacity: 1; }
  .form-info-loan .checkbox:not(:checked):before{ opacity: 0; }
  .form-info-loan .checkbox:focus{ outline: none; }
  .form-info-loan .btn{
    color: #fff;
    background-color: #f07923;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    width: 130px;
    padding: 11px;
    margin: 0; float: left;
    border: 2px solid #f07923;
    border-radius: 15px;
    display: inline-block;
    transition: all 0.3s ease 0s;
  }
  .form-info-loan textarea.form-control{
    height: auto;
    width: 100%;
  }
  .form-info-loan .btn.signin{
    color: #f07923;
    background-color: #fff;
  }
  .form-info-loan .btn:hover,
  .form-info-loan .btn:focus{
    color: #41965f;
    background-color: #fff;
    box-shadow: 0 0 5px #f07923, 0 0 15px #f07923 inset;
  }
  .form-info-loan .btn.signin:hover,
  .form-info-loan .btn.signin:focus{
    text-shadow: 3px 3px rgba(0,0,0,0.3);
    box-shadow: 0 0 5px #f07923;
  }
 *::-webkit-input-placeholder{
    color: #8a8a8a!important;
    font-weight: 500!important;
 }
 .form_apply_loan h2{
    text-transform: uppercase;
    font-weight: 600;
 }
 .form_apply_loan h2 span{
    color: #f07923;
 }
/*Online Form End*/



.ixiserv-w-process-steps {
    padding-left: 18px;
    /*padding-top: 37px;*/
    margin-bottom: 30px;
    position: relative;
}
.ixiserv-w-process-steps {
  padding-top: 50px !important;
}

.ixiserv-w-process-steps .ixiserv-large-number {
    color: #86c4a28c;
    font-size: 50px;
    font-weight: 800;
    line-height: 0px;
    position: absolute;
    left: 0px;
    top: 30px;
}

.ixiserv-w-process-steps .ixiserv-w-pro-top {
    margin-left: 20px;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    min-height: 80px;
}

.ixiserv-w-process-steps .ixiserv-w-pro-top .ixiserv-media {
    position: absolute;border: 4px solid #ffe8d8;
    padding: 15px;
    left: 0;
    top: -30px;
    width: 100px !important;
    height: 100px !important;
    background-color: #145983;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    right: 0;
    margin: 0 auto;
}
.ixiserv-w-process-steps .learnzoid-w-pro-top .learnzoid-title {
    color: #000;
    padding-left: 80px;
    margin-bottom: 0px;
}
.ixiserv-w-process-steps .ixiserv-w-pro-top .ixiserv-title {
    margin-left: 0;
    font-size: 22px;
    text-align: center;margin-top: 80px;
}

.ixiserv-w-pro-top.bg-clr-sky p{text-align: center;}
.ixiserv-w-process-steps .ixiserv-w-pro-top .ixiserv-title a{color: #000;font-weight: bold;}
.ixiserv-w-process-steps .ixiserv-w-pro-top .ixiserv-media img {
    width: 65px;
    height: auto;
}
.bg-clr-sky {
    background-color: #ffffff ;
    box-shadow: 0 0 6px;box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}


.social-links i.bx{
    font-size: 25px;
}


.services span.hdngtoptxt1 {
    font-size: 18px; display:block;
    font-weight: 600;
    text-align: center;
}


.services{background: url(../img/cap-serv.png) no-repeat 0 0;}


.services h2{text-align: center;display: block;position: static;}
.services .section-title h2::after{width: 0;height: 0;}
.services .section-title p, .whychoose .section-title p{text-transform: none;font-size: 16px;font-weight: 400;text-align: center;padding: 0 300px 20px}
.whychoose .section-title p{padding: 0;text-align: left;margin-bottom: 20px;text-align: justify;}

/*.whchmncollft {
    margin-top: 120px;
}*/

.whchlftarw img {
  width: 300px;
  float: right;
}
.whchrtarw img {
  width: 300px;
}
.whchbox {
    float: left;background: #ffecde;
    padding: 30px 20px;
    width: 100%;margin-bottom: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.whchbox.whchboxlast{margin-bottom: 0}
.whchcollftmn{margin-top: 150px;}
.whychicn {
    float: left;
    width: 65px;
    margin-right: 15px;
}
.whychicn img {
    width: 100%;
}
.whchtxt {
    float: left;
    width: 75%;
}
.whchtxt h3 {
    font-size: 20px;
    font-weight: 600;margin-bottom: 10px;
}
.ftrdtlrow{width: 100%; float: left; margin-bottom: 10px}

section#hero{padding-top: 40px;}
.whatsbox {
  position: fixed;
  bottom: 70px;right: 16px;
}
.whatsbox img {
  width: 45px;
  height: 45px;
}
section#aboutsction {
    padding-top: 0;
}
.services .section-title {
  padding-bottom: 0;
}

.owl-2-style .owl-dots {
    text-align: center;
    position: relative;
    bottom: -30px;
}
.owl-2-style .owl-dots .owl-dot {
    display: inline-block;
}
.owl-2-style .owl-dots .owl-dot.active span {
    background: #007bff;
}
.owl-2-style .owl-dots .owl-dot span {
    display: inline-block;
    width: 15px;
    height: 3px;
    border-radius: 0px;
    background: #cccccc;
    -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    margin: 3px;
}

.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display: block !important}

.bsnspn {
  font-size: 500px;
  line-height: normal;
  margin-top: -150px;
  font-weight: 600;
  z-index: 0;
  position: absolute;
  color: rgba(0,0,0,0.04);
}

.srvsctionalt img.img-fluid {
  width: 100%;
}

#product_1 {
  margin-top: -100px;
}


/* abhishek raut css start */
/* Style for the mega dropdown */
.mega-dropdown {

  position: absolute;
  left: 0;
  top: 103%;
  width: 362%;
  height: 270px;
  background: #b1cef9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.mega-dropdown .dropdown-content {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.mega-dropdown .dropdown-section {
  flex: 1;
  padding: 10px;
}

.mega-dropdown .dropdown-section h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: black;
}

.mega-dropdown .dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-dropdown .dropdown-section ul li {
  margin-bottom: 10px;
}

.mega-dropdown .dropdown-section ul li a {
  text-decoration: none;
  color: #333;
}

.navbar ul li.dropdown:hover > .mega-dropdown {
  display: block;
}

/* Additional styles for responsiveness and overall appearance */
@media (max-width: 992px) {
  .mega-dropdown {
      position: static;
      width: 100%;
  }

  .mega-dropdown .dropdown-content {
      flex-direction: column;
  }
}
/* about page */
.breadcrmb{
  text-align: center;
}
.abt-us-hdng{
  font-size: 18px;
  font-weight: 600;
  color: #525275;
}
.hstry-cmpny{
  font-size: 32px;
  font-weight: 600;
  color: #f07923;
}
.abt-wlctext{
  font-size: 16px;
  color: black;
  text-align: justify;
}
.abt-imgs{
  width: 100%;
  /* border-radius: 10px; */
  background: linear-gradient(137deg, #145887 23%, white 40%);
  padding: 22px;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}
.abt-imgs2{
  width: 100%;
  /* border-radius: 10px; */
  background: linear-gradient(137deg, #ffffff 23%, #145887 40%);
  padding: 22px;
  height: 400px;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}
.counter-abt-box{
  background-color: #145887;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  color: white;
  margin: 20px 0px;
  padding: 20px;
}
.cnter-n{
  font-size: 32px;
  font-weight: 600;
}
.counter-abt-box2{
  background-color: #f07923;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  color: white;
  margin: 20px 0px;
  padding: 20px;
  margin-top: 60px;
}
.counter-abt-box3 {
  background-color: #f07923;
  width: 78%;
  text-align: center;
  border-radius: 10px;
  color: white;
  margin: 20px 14px;
  padding: 20px;
}
.cnter-hdng{
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.brnd-hstry{
  background-color: #ebf7ff;
}
.our-mssn-box{
  background-color: #ffffff;
  height: 360px;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  margin: auto;
}
.our-mss-vss{
  /* background-color: #ebf7ff; */
  /* background-image: url('../img/clients/actnt.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
  /* background-image: linear-gradient(rgb(0 0 0 / 59%), rgb(11 11 11 / 53%)), url(../img/clients/brnd-hstry4.jpg); */
  /* background-image: linear-gradient(rgb(139 139 139 / 59%), rgb(109 109 109 / 53%)), url(../img/brnd-hstry4.jpg);

  background-clip: initial;
  background-origin: initial;
  background-attachment: fixed; */
  background-color: rgba(255, 255, 255, 0.192);
}
.orvsms-img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.our-mssn-hndg{
  font-size: 30px;
  font-weight: 600;
  color: #145887;
  text-align: center;
}
.our-mssn-para{
  font-size: 16px;
  text-align:justify;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.or-box{
  /* background: linear-gradient(137deg, #145887 23%, white 40%); */
  padding: 22px;
  width: 100%;
  margin: auto;
  height: 400px;
  background-color: #145887;
}
/* .brndmain-box{
  border: 4px solid #f07923;;
  text-align: center;
  padding: 20px 15px;
  margin: 20px 15px 0 0;
  border-radius: 5px 5px;
  position: relative;
  z-index: 1;
}
.brndmain-box:before,
.brndmain-box:after{
  content: "";
  background: var(--main-color);
  width: 94%;
  height: 105%;
  border-radius: 5px 5px;
  position: absolute;
  top: -20px;
  right: -16px;
  z-index: -1;
}
.brndmain-box:after{
  background: #145887;
  top: -20px;
  left: 20px;
  height: 473px;
  box-shadow: 0 0 6px rgba(0,0,0,0.3); 
} */
.bg-founder{
  background-color: #ebf7ff;
}
.brndimg{
  width: 100%;
  box-shadow: -16px 16px 0px 0px #145887;
}
.brndimg.abtbrndimg{height:300px;object-fit:cover;}
.fndr-img{
  border-radius: 40px 0px 0px 40px;
  width: 80%;
  padding: 15px;
  background: -webkit-linear-gradient(-52deg, transparent 70%, #145887 50%);
}
.fndr-img2{
  position: absolute;
  left: 300px;
  z-index: -1;
  width: 300px;
}
.up-down{
  animation: up-down linear 4s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: up-down linear 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: up-down linear 4s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: up-down linear 4s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: up-down linear 4s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes up-down{
  0% {
    transform:  translate(1px,20px)  ;
  }
  24% {
    transform:  translate(1px,30px)  ;
  }
  50% {
    transform:  translate(1px,12px)  ;
  }
  74% {
    transform:  translate(1px,22px)  ;
  }
  100% {
    transform:  translate(1px,22px)  ;
  }
}

@-moz-keyframes up-down{
  0% {
    -moz-transform:  translate(1px,20px)  ;
  }
  24% {
    -moz-transform:  translate(1px,30px)  ;
  }
  50% {
    -moz-transform:  translate(1px,12px)  ;
  }
  74% {
    -moz-transform:  translate(1px,22px)  ;
  }
  100% {
    -moz-transform:  translate(1px,22px)  ;
  }
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform:  translate(1px,20px)  ;
  }
  24% {
    -webkit-transform:  translate(1px,30px)  ;
  }
  50% {
    -webkit-transform:  translate(1px,12px)  ;
  }
  74% {
    -webkit-transform:  translate(1px,22px)  ;
  }
  100% {
    -webkit-transform:  translate(1px,22px)  ;
  }
}

@-o-keyframes up-down {
  0% {
    -o-transform:  translate(1px,20px)  ;
  }
  24% {
    -o-transform:  translate(1px,30px)  ;
  }
  50% {
    -o-transform:  translate(1px,12px)  ;
  }
  74% {
    -o-transform:  translate(1px,22px)  ;
  }
  100% {
    -o-transform:  translate(1px,22px)  ;
  }
}

@-ms-keyframes up-down {
  0% {
    -ms-transform:  translate(1px,20px)  ;
  }
  24% {
    -ms-transform:  translate(1px,30px)  ;
  }
  50% {
    -ms-transform:  translate(1px,12px)  ;
  }
  74% {
    -ms-transform:  translate(1px,22px)  ;
  }
  100% {
    -ms-transform:  translate(1px,22px)  ;
  }
}
.or-vsn{
  font-size: 46px;
  font-weight: 600;
  color: #f07923;
}
.reg-comlnc-img{
  box-shadow: 10px 10px 0px 3px #f07923;
}
.bg-midc{
  background: #f1f4ff;
}
/* abhishek raut css end******** */
/* abhishek raut css end */

/*Roshni Ma'am Css Start*/
.profile-div h3 {
    color: #f07923;
    font-weight: 700;
    font-size: 26px;
}
#bsnbanr{
  background-image: linear-gradient(rgb(0 0 0 / 59%), rgb(11 11 11 / 53%)), url("../img/nri-bg.jpg");
  height: 400px;
  background-clip: initial;
  background-origin: initial; 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.192);
}
#virtual{
  background-image: linear-gradient(rgb(0 0 0 / 59%), rgb(11 11 11 / 53%)), url("../img/virtual-bg.jpg");
  height: 400px;
  background-clip: initial;
  background-origin: initial; 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.192);
}
#other-tax{
  background-image: linear-gradient(rgb(0 0 0 / 59%), rgb(11 11 11 / 53%)), url("../img/other-tax-bg.jpg");
  height: 400px;
  background-clip: initial;
  background-origin: initial; 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.192);
}
.nri-img {
  outline: 4px solid white;
  outline-offset: -10px;
  width: 100%;
  height: 400px;
}
.debt-img{
  box-shadow: 10px 10px 0px 3px #f07923;
  outline: 4px solid white;
  outline-offset: -14px;
  width: 100%;
  height: 450px;
}
/*Roshni Ma'am Css End*/

/* roshni css start */
.valuationbnr {
  background-image: linear-gradient(rgb(0 0 0 / 59%), rgb(11 11 11 / 53%)), url('../img/valuation-banner-img.jpg');background-size:cover !important; background-repeat: 0 0 !important;
}
.profile-content-div h2{
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.profile-content-div{
  text-align: justify;
}
.profile-div{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 25px;
}
.border-left{
  border-left: 5px solid #56b849;
  padding-left: 15px;
}
.ca-img-div img {
  width: 500px;
    height: 540px;
    border: 6px solid #56b849;
    border-radius: 10px;
}
.ca-img-div.valuimgdiv img{height:auto;}
.ca-img-div{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.valuation-div h2{
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}
.valuation-section{
  background-color: #ffe7d1;

}
.advantage-grid-div{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.advantage-img-div{
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.ptb{
  padding: 0px;
  padding: 40px 0;
}
.advantages-div h2{
  font-weight: 600;
  margin-bottom: 30px;
}
.advantages-div h6{
  font-weight: 700;
  padding: 10px 0 0 0;
}
.our-approach-div img{
  width: 900px;
}
.our-approach-section{
  padding: 10px 0px 30px 0px;
  background:  #E9F0FF;
}
/* valuation accordian css start*/
.accordion {
  background-image: linear-gradient(to right, #145887, #145887c2);
  color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: 1px solid #fff;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "\2212";
}


/*.panel {
  padding: 0 18px;
  background-image: linear-gradient(to right, #145887, #529cd0db);
  color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}*/

.panel {
  padding: 0 18px;
  background: #fff;
  color: #000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel h6, .panel ul{padding-top:10px}


/* valuation accordian css end */

/* ................................ blog page starts......................................... */
.blogbnr{
  background-image: linear-gradient(rgb(0 0 0 / 59%), rgb(11 11 11 / 53%)), url('../img/CA-blog-banner.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-section{
  padding: 100px 60px;
}
.blog-post {
  position: relative;
  margin-bottom: 30px;
}
.blog-post .blog-img-effect {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 30px;
  border: 1px solid #d8d8d8;
  background: -webkit-linear-gradient(-35deg, transparent 67%, #e3d4c0 85%) !important;
}
.blog-post-img:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  width: 35%;
  height: 200%;
  left: -100%;
  top: -50%;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -moz-transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}
.blog-post .post-date {
  color: #000;
  position: absolute;
  left: 0px;
  top: 0px;
  text-align: center;
  text-transform: uppercase;
  background-color: #f2f2f2;
  z-index: 1;
  padding: 15px;
}
.blog-post .post-date strong {
  font-size: 36px;
  line-height: 40px;
  padding: 0px;
  position: relative;
}
.blog-post .post-date span {
  font-size: 14px;
  font-weight: 500;
  padding: 0px;
  padding-left: 2px;
  letter-spacing: 2px;
  text-align: center;
}
.blog-post .post-date strong, .blog-post .post-date span {
  display: block;
  padding: 5px 10px ;
}

.blog-post-info .blog-post-meta ul{
  padding: 0;
}
.blog-post-info .blog-post-meta li {
  padding: 0;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #23252d;
}
.blog-post-info .blog-post-meta .post-author, .post-comment{
  padding-top: 20px;
}
.blog-post-info .blog-post-meta li a{
  font-size: 12px;
  color: #000!important;
}
.blog-post-title .post-title a,.blog-post-readmore a{
  color: #000;
}
.blog-post-title .post-title a:hover,.blog-post-readmore a:hover{
  color: #cfab79;
}

/* .blog-post-meta li:after {
  content: "";
  display: inline-block;
  font-weight: normal;
  margin-left: 5px;
  opacity: 0.5;
} */

/* ................................ blog page ends......................................... */
/* inner-blog page css start */
.inner-blog-section{
  padding: 100px 60px;
}
.shadow{
  position: relative;
  overflow: hidden;
  display: block; 
  transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  
}

.shadow img {
  display: block;
  margin: 0;
  width: 100%;
  height: auto;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.25s;
  -moz-transition: all 0.25s;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
}

.shadow img {
  width: 100%;
  min-height: 365px;
  max-height: 365px;
  object-fit: cover;
  transition: all 5s;
}
.shadow:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.inner-main{
  overflow: hidden;
  height: 350px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.inner-main img:hover {
  transition: all 10s;
  -moz-transition: all 10s;
  -o-transition: all 10s;
}
.inner-icons {
  padding: 10px 15px;
  font-size: 17px;
  border-bottom: 1px solid #eee;
} 
.inner-icons i{
  color:#003d6a;
}
.inner-icons span{
  margin-right: 16px;
} 
.inner-contain {
  padding: 15px 15px;
}
.inner-contain p{
  font-size: 16px;
  color: black;
  text-decoration: none;
}

.side {
  padding: 10px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  display: grid;
  grid-template-columns: 30% 70%;
}

.side img {
  border-style: none;
  height: 80px;
  vertical-align: middle;
  width: 100%;
  object-fit: cover;
}
.post-info {
  padding-left: 20px;
}
.bg-f5f5f5 {
  background-color: #f5f5f5;
}
.ellipsis{
  line-height: 1.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-dialog-scrollable .modal-content {
  position: relative;
}
.modal-button-close {
  position: absolute;
  right: 10px;
  top: 10px;
}
/* inner-blog css end*/


/*Responsive CSS Start*/
@media screen and (max-width: 1366px) {
section#aboutsction {
    padding-top: 60px;
}
}

@media screen and (max-width: 1279px) {
.navbar{margin-left: 8%}
section#hero {
  padding-top: 0;padding-bottom: 0;
}
.features .image {
  background-size: contain !important;
  background-position: top !important;
}
.services .section-title p {
  padding-left: 100px;
  padding-right: 100px;
}

.whychicn {
  margin-bottom: 5px;
}
#hero{height: inherit;}
.container, .container-md, .container-sm {
  max-width: 96%;
}
}

@media screen and (max-width: 1023px) {
#navbar {
  float: right;
}
.mobile-nav-toggle{color: #f07923;font-size: 40px !important}
a.get-started-btn.scrollto{float: right;}
#hero h1 {
  font-size: 65px; line-height: normal;
}
.navbar-mobile ul {
  background: rgba(0, 0, 0, 0.6);
}
.navbar a {
  width: 100%;
  border-bottom: 1px dotted #f07923;
}
.fixed-top .navbar a, .navbar a:focus {
  color: #fff;
}
.abouttxt {
  padding: 0;
  margin-top: 20px;
}
.services .icon-box .icon {
  margin: 0 0 15px;
}
.aboutussction{background: none}
.mt-5 {
  margin-top: 0 !important;
}
#innercnct{background-size: cover;}
.form-container {
  margin-bottom: 30px;
}

#header .social-links.mt-3 {
  display: none;
}
#hero{padding-top: 70px !important}

#aboutsction .image {
  order: 2;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
}
#footer .copyright {
  padding-top: 20px;
  text-align: center;
}
}

@media screen and (max-width: 767px) {
#innerhdr{background-size: cover; background-repeat: no-repeat;}
.footer-links-inner {
  margin-left:0;
}
#footer .copyright, #footer .credits{text-align: center;}
.moblogobox {
  width: 50% !important;
  float: left !important;
}
.mobmenubox {
  float: right !important;
  width: 50% !important;
}
a.get-started-btn.scrollto{font-size: 12px}
.navbar {
  margin-left: 0%;
}
.get-started-btn{
  padding:7px 20px 7px 20px;margin-top: 11px !important
}

.navbar{
  margin-top: 8px
}
.view, .breakup{
  width: 100%
}

#header .logo img {
  max-height: 45px;
}
.service_sec_1 h2, .service_sec_2 h2 {
  height: 40px;
}
.srvsction .pdl-0{padding-left: 15px !important}

.whchcollftmn {
  margin-top: 0;
}
#whychoose {
  padding-top: 0;
}

.services .section-title p {
  padding-left: 0;
  padding-right: 0;
}
.whchlftarw, .whchrtarw {
  display: none;
}


.navbar a:hover, .navbar a.nav-link.active,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.profile-content-div h3{text-align: left}
.ca-img-div img {
  width: 100%;
}
.advantage-grid-div{display: block}
.our-approach-div img {
  width: 100%;
}
.advantages-div h2{text-align: center;}


#innerhdr {
  height: auto;
  padding: 160px 0 60px;background-size: contain;
}
#bsnbanr, #inctaxfilbnr {height: auto;
  background-position: center center;
  background-size: contain;
  padding: 160px 0 60px;
}
.bsntable {
  overflow-x: scroll;
}
.bsnspn {
  display: none;
}
.reg-comlnc-img {
  width: 100%;margin-left: -6px;
}
.Pro_service h1 {
  font-size: 34px;
}
}

@media screen and (max-width: 599px) {
.loan-details{display:block; width:100%}
.chart-details{width:100%;display:block}
.breakup {
  width: 80%;
  margin: 0;
}

.chart-details p {
  font-size: 24px;
}
.chart-details p#cp, .chart-details p#ci, .chart-details p#ct {
  font-size: 30px !important;
}

.prodcolboxes {
  width: 50%;
}

.prodcolboxes .ixiserv-title a {
  font-size: 14px;
  line-height: ;
}

.prodcolboxes .ixiserv-title {
  line-height: 14px;
}
.features {
  padding-top: 0;
  padding-bottom: 0;
}
.prodcolboxes {
  width: 100%;
}
.ixiserv-w-process-steps{padding-left: 0}
.ixiserv-w-process-steps .ixiserv-w-pro-top {
  margin-left: 0;
}
}



@media screen and (max-width: 479px) {
.col-xl-4.col-lg-4.col-md-4.col-sm-4.col-xs-2.moblogobox {
  width: 40% !important;
}
.col-xl-8.col-lg-8.col-md-8.col-sm-8.col-xs-10.mobmenubox {
  width: 60% !important;
}
.service_sec_1 h2, .service_sec_2 h2 {
  height: inherit;
}

.services .icon-box{width: 100%;margin-bottom: 15px;background:linear-gradient(to top, #f8fbe8 60%, #d6ffe4 32%) }
.services .icon-box p{display: none}
.ixiserv-w-process-steps .ixiserv-w-pro-top .ixiserv-title{margin-left: 30px}
.ixiserv-w-process-steps .ixiserv-w-pro-top .ixiserv-media{width: 40px !important; height: 40px !important;top: 20px}
.ixiserv-w-process-steps .ixiserv-w-pro-top .ixiserv-media img {
  width: 65px;
  height: auto;
}
.ixiserv-w-process-steps .ixiserv-w-pro-top .ixiserv-title{margin-left: 10px !important}
.chart-details p {
  font-size: 24px;
}
.chart-details p#cp {
  font-size: 30px !important;
}
.whchtxt {
  float: left;
  width: 71%;
}
.fndr-img2 {
  left: 140px;
  top: 20px;
  width: 200px;
}
.brndimg {
  width: 90%;
  display: block;
  margin: auto;
}
}
@media screen and (max-width: 320px){

  .fndr-img2 {
    left: 110px;
    top: 20px;
    width: 180px;
}
.brndimg {
  width: 90%;
  display: block;
  margin: auto;
}
};
  

/*Responsive CSS End*/


.inner-blog-section .inner-icons.ms-2 {
    margin-top: 30px;
}
.inner-blog-section .inner-contain.my-3 {
    margin-top: 0 !important;
    padding-top: 0;
}