<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
 font-family: 'Roboto', sans-serif;
  color: #202020;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.home-slider{

    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
    min-height: 650px;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@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: 15px;
  z-index: 996;
  background: #106eea;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

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


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
}

#header.fixed-top {
  height: 70px;
}


#header .logo img {
 width: 100%;
}

#header a.logo {
    width: 200px;
}
.news-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.enquiry-txt .enquiry-content {
    width: calc(100% - 150px);
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar ul .menu-item {
    white-space: nowrap;
    padding: 10px 0 10px 50px;
}
.navbar ul .current-menu-item a {
    color: #0A427C;
}
li#menu-item-22 {
    padding-left: 0;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 17px;
  font-weight: 400;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  font-weight: 500;
}

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

.navbar&gt;ul&gt;li&gt;a:before {
  content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -6px;
    left: 2px;
    background-color: #0A427C;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
    border-radius: 100px;
}

.navbar a:hover:before,
.navbar li:hover&gt;a:before,
.navbar .active:before {
  visibility: visible;
  width: 50%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover&gt;a {
  color: #0A427C;
      
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  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-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&gt;a {
  color: #106eea;
}

.navbar .dropdown:hover&gt;ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover&gt;ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover&gt;ul {
    left: -100%;
  }
}

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

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 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;
  border-radius: 20px;
    height: max-content;
}

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

.navbar-mobile&gt;ul&gt;li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover&gt;a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}


.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;
}

.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&gt;a {
  color: #106eea;
}

.navbar-mobile .dropdown&gt;.dropdown-active {
  display: block;
}
.navbar li.header_btn:hover&gt;a {
    border: 0 !important;
    color: #fff;
}
.navbar&gt;ul&gt;li.header_btn&gt;a:before{
  background: transparent;
}
.service-content ul.post-categories {
    padding: 0;
    list-style: none;
	margin:0px;
}
.navbar ul .menu-item a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -6px;
    left: 2px;
    background-color: #0A427C;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
    border-radius: 100px;
}

.navbar a:hover:before, .navbar li:hover&gt;a:before, .navbar .active:before {
    width: 50%;
    visibility: visible;
}
.navbar ul .current-menu-item a {
    color: #0A427C;
}
.navbar .menu-primary-menu-container ul .current-menu-item a::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 4px;
    bottom: -6px;
    left: 2px;
    background-color: #0A427C;
    visibility: visible;
    transition: all 0.3s ease-in-out 0s;
    border-radius: 100px;
}
.service-content li a {
    color: #0A427C;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 12px;
    list-style: none !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  
}
#hero .container {
  position: relative;
}
#hero h1 {
    margin: 0;
    font-size: 69px;
    font-weight: 900;
    line-height: 90px;
    color: #000;
    max-width: 87%;
}
h2.heading-title {
    font-size: 44px;
    line-height: 55px;
    font-weight: 600;
}
p.welcome-heading {
    color: #FF9E45;
    font-size: 20px;
    margin-bottom: 25px;
        text-transform: uppercase;
}
h2.heading-title span {
    color: #0A427C;
}
p.pera-content {
    font-size: 16px;
    line-height: 30px;
    color: #4F4F4F;
}
#hero h1 span {
  color: #0A427C;
}
a.all_btn:hover {
    background: #e98122;
   
}
#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}
.client-section {
   
    background-size: cover !important;
    width: 100%;
    text-align: center;
    padding: 165px 0px;
}

a.all_btn {
    background: #FF9E45;
    color: #fff;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    width: fit-content;
}
a.all_btn i {
    margin-left: 10px;
    font-size: 20px;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}


/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px 18px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  text-align: center;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;  
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #0a427c;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .title a {
  color: #202020;
}

.featured-services .description {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 0;
    color: #404040;
    min-height: 110px;
}
.featured-services .icon-box:hover .title,
.featured-services .icon-box:hover .description {
  color: #fff;
}
.featured-services .icon-box:hover img {
    filter: brightness(4.5);
}
.featured-services .icon-box:hover .icon i {
  color: #fff;
}.maldhani-first-box .icon-box {
    background: #0A427C;
    color: #fff;
        text-align: left;
            padding: 50px 18px;
}
h4.maldhani-first-feature {
    font-size: 44px;
    position: relative;
}
a.view-btn {
    font-size: 18px;
    color: #fff;
        display: flex;
    align-items: center;
}
a.view-btn i {
    margin-left: 10px;
}
p.maldhani-first-description {
    font-size: 16px;
    margin-top: 50px;
}
h4.maldhani-first-feature:before {
    content: " ";
    background: #fff !important;
    width: 90px;
    height: 4px;
    position: absolute;
    bottom: -15px;
}

/*--------------------------------------------------------------
# approch
--------------------------------------------------------------*/
.approach {
    position: relative;
}
.approach::before {
    content: " ";
    background: #0A427C;
    width: 50%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
}
.approach-content {
    z-index: 9;
    color: #fff;
}
.approach-content p {
    color: #fff;
}
.approch-btn {
    margin-top: 40px;
}
.approach::after {
    content: " ";
    background: url(../../assets/img/refer.png);
    width: 350px;
    height: 341px;
    position: absolute;
    z-index: 0;
    top: 0;
    background-size: cover;
}
.approach-content p.welcome-heading {
    color: #FF9E45;
}
img.approch-img {
    background: #FF9E45;
    padding: 15px;
    border-radius: 10px;
}
.approch-testimonial-item h3 {
    color: #202020;
    margin-bottom: 25px;
    font-size: 20px;
}
.approch-testimonial-item p {
    font-size: 14px;
    margin-top: 30px;
    color: #404040;
    line-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.approch-carousel .owl-pagination {
    display: none;
}
.approch-testimonial-item a.view-btn {
    color: #FF9E45;
}
.approch-testimonial-item {
    padding: 30px 18px;
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    border: 1px solid #ededed;
        width: 95%;
    margin: 0 auto;
}

.approch-carousel .owl-prev::after {
   content: "\ea6c";
    font-family: 'remixicon';
    color: #000;
    font-size: 18px;
}
.approch-carousel .owl-theme .owl-controls .owl-buttons  {
    width: 42px;
    height: 42px;
    line-height: 42px;
    border: solid 1px #373737;
    background: transparent !important;
    opacity: 1 !important;
    padding: 0 !important;
    border-radius: 100px !important;
    left: auto !important;
    right: auto !important;
}
.approch-carousel .owl-buttons {
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    right: 0;
    margin-top: 13px;
}
.approch-carousel .owl-prev, .owl-next {
    width: 42px;
    height: 42px;
    background: #fff !important;
    border: 1px solid #373737;
    opacity: 1 !important;
}
.approch-carousel .owl-prev:hover, .owl-next:hover {
    background: #FF9E45 !important;
    border-color: #ffcea2;
}
.approch-carousel .owl-prev::after {
    font-family: 'remixicon';
    color: #373737;
    font-size: 18px;
    transform: rotate(248deg) !important;
    content: "\ea60";
    line-height: 34px;
}
.approch-carousel .owl-next::after {
    font-family: 'remixicon';
    color: #373737;
    font-size: 18px;
    transform: rotate(248deg) !important;
    content: "\ea6c";
    line-height: 34px;
}
/*--------------------------------------------------------------
# approch
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about h2.heading-title {
    padding-right: 10px;
}
.about-right-li {
    display: flex;
    align-items: center;
}
.about .content ul {
  list-style: none;
  padding: 0;
  display: flex;
    align-items: baseline;
      column-gap: 50px;
      margin-bottom: 30px;
    margin-top: 10px;
}

.about .content ul i {
 font-size: 24px;
    margin-right: 10px;
    color: #FF9E45;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# client
--------------------------------------------------------------*/
.client-section p.welcome-heading {
    color: #fff;
}
.client-section h2.heading-title{
     color: #fff;
}
.client-section a.all_btn{
  margin: 0 auto;
  margin-top: 30px;
    background: #0A427C;
}
.client-section p.welcome-heading {
    margin-bottom: 18px;
}
.featured-services img.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}
.feature-content {
    margin-bottom: 30px;
}
section.featured-services {
    padding-bottom: 30px;
}
/*--------------------------------------------------------------
# review
--------------------------------------------------------------*/
.review-section p.welcome-heading {
    color: #FF9E45;
    font-weight: 500;
}
.review-section h2.heading-title{
     color: #fff;
}
.review-section a.all_btn{
  margin: 0 auto;
  margin-top: 30px;
    background: #0A427C;
}
.review-section p.welcome-heading {
    margin-bottom: 35px;
}
.review-section {
    background-size: cover !important;
    width: 100%;
    text-align: center;
    padding: 80px 0px;
}
.client-testimonial-carousel {
    margin-top: 60px;
}
p.client-review {
    line-height: 28px;
}
.single-testimonial-item {
        border: 1px solid #6B829A;
    padding: 30px 60px 33px 90px;
    color: #fff;
    width: 85%;
    margin: 0 auto;
    text-align: left;
        position: relative;
}
.client-name p {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 13px;
}
.rating .checked {
    color: #FFDF37;
}
img.client-img {
    position: absolute;
    left: -40px;
    border-radius: 100px;
    border: 3px solid #fff;
    width: 100px;
    height: 100px;
}
.single-testimonial-item::before {
    content: " ";
    position: absolute;
    background: url(../../assets/img/comma.png);
        width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    right: 30px;
    bottom: 22px;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    text-align: center;
    position: relative;
}
.services h2.heading-title {
    margin-bottom: 50px;
}
.services .icon-box {

 transition: all ease-in-out 0.3s;
 position: relative;
 }
.services img.service-img {
    width: 100%;
    height: 260px;
}
.services .icon-box {
    transition: all ease-in-out 0.3s;
    position: relative;
    box-shadow: 0px 0 25px 0 rgb(122 124 127 / 10%);
    margin-bottom: 20px;
    width: 100%;
}
.services p.welcome-heading {
    color: #0A427C;
    font-weight: 500;
}
.service-content {
    text-align: left;
    padding: 18px 70px 30px 20px;
    position: relative;
}
.service-content a.view-btn {
    color: #FF9E45;
    font-size: 16px;
    margin-top: 15px;
}
.service-content p {
    color: #0A427C;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.calender {
    background-color: #FF9E45;
    position: absolute;
    text-align: center;
    color: #fff;
    right: 20px;
    top: -43px;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calender span {
    margin-top: 10px;
}
.service-content h3 {
    font-size: 24px;
    line-height: 30px;
    
}
.calender span h4 {
    font-size: 32px;
    line-height: 20px;
    font-weight: 600;
}
.calender span p {
    font-size: 16px !important;
    color: #fff !important;
    margin-bottom: 0 !important;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/



#footer .footer-top {
  padding: 60px 0;
  background: #303030;
}
.footer-contact {
    color: #fff;
}
.copyright p {
    margin: 0;
    font-size: 16px;
    color: #fff;
}
p.footer-address {
    font-size: 17px;
    line-height: 28px;
    padding-right: 100px;
}
p.footer-top-content {
    font-size: 15px;
}
.footer-contact h3 {
    font-size: 34px;
    font-weight: 600;
}
#footer .copyright {
    text-align: center;
    background: #252525;
    padding: 20px 0px;
}
.footer-form input {
    background: #555555 !important;
    border: 0 !important;
    height: 50px !important;
    border-radius: 100px !important;
	padding: 0.375rem 0.75rem !important;
	    color: #fff !important;
}
.footer-form input::placeholder {
    color: #DDDDDD !important;
    padding: 15px  !important;
}
.footer-form textarea::placeholder {
    color: #DDDDDD !important;
    padding: 15px  !important;
}
.footer-form textarea{
    background: #555555 !important;
    border: 0;
    height: 114px !important;
    border-radius: 20px !important;
	padding: 0.1rem 0.75rem !important;
	    color: #fff !important;
}
.footer-form input:focus {
    background: #555555 !important;
    border: 0;
    box-shadow: none;
}
.footer-form .wpforms-container .wpforms-field {
    padding: 0px 0px 15px 0px !important;
    position: relative;
}
.footer-form button.wpforms-submit {
    background: #FF9E45 !important;
    color: #fff !important;
    padding: 16px 30px !important;
    border-radius: 100px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px !important;
    border: 0 !important;
}
.footer-form input.submit_btn {
    background: #ff9e45 !important;
    padding: 10px 30px !important;
}
.footer-form button.submit_btn i {
    margin-left: 6px;
    font-size: 18px;
}
.enquiry {
    display: flex;
    column-gap: 50px;
        flex-wrap: wrap;
    row-gap: 25px;
}
.enquiry-txt {
    display: flex;
    column-gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
.enquiry-icon i {
    font-size: 36px;
}
.enquiry-icon img {
    width: 45px;
    height: 45px;
    filter: invert(1);
}
p.footer-address-link {
    font-size: 14px;
    margin-bottom: 7px;
}
.enquiry-content p {
    margin: 0;
    letter-spacing: .5px;
}
.footer-form input:focus {
    background: #555555 !important;
    border: 0;
    box-shadow: none;
}
i.ri-menu-3-fill.mobile-nav-toggle.bi-list.bi-x:before {
    content: "\eb99" !important;
    font-family: 'remixicon' !important;
    position: absolute;
    top: 25px;
    right: 8px;
    color: #fff !important;
    z-index: 999;
}
/*about-page*/
section.brudcome {
    background: #f0f0f0;
	padding: 100px 0px;
}
.banner-txt {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}
.banner-txt a {
    color: #0c447d;
}
.about-section {
    padding-bottom: 0;
}
.about-section .icon-ab i {
    font-size: 70px;
    color: #fff;
    border: 1px solid;
    padding: 16px;
    border-radius: 100px;
}
.about-section .icon-box-txt {
    font-size: 22px;
    color: #fff;
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
}
.about-page-section {
    padding: 70px 0px;
}
.about-icon {
    margin-top: 30px;
}
.inqury h2 {
    color: #000 !important;
}
.inqury {
    box-shadow: 0px 0px 20px 0px #ebeaea;
    padding: 50px 0px;
    border-radius: 10px;
}
/*end about-page*/
/*service-page*/
.service-section .description {
    font-size: 16px;
  }
  .service-section {
    background: aliceblue;
}
.service-icon {
    margin-top: 30px;
    display: flex;
    align-items: center;
    column-gap: 28px;
}
.service-section .icon-ab i {
    font-size: 70px;
    color: #fff;
}
.service-page-section {
    padding: 70px 0px;
}
.service-page-section .icon-box-txt {
    font-size: 24px;
    color: #fff;
    margin-top: 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: left;
    line-height: 32px;
}
.service-main-section .icon-ab i {
    font-size: 70px;
    color: #fff;
    
}
section.work-section {
    text-align: center;
}
p.work-subheading {
    font-size: 16px;
    max-width: 50%;
    margin: 0 auto;
}
.service-main-section {
    padding-bottom: 0;
}


.news-grid-box {
    border: solid 1px #ddd;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
}
.news-img img {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 280px;
    object-fit: cover;
}
.news-content {
    padding: 15px;
}
.news-content span {
    display: block;
    margin: 0 0 10px;
    font-size: 15px;
    color: #808080;
}
.news-content h3 {
    margin: 0 0 10px;
    font-size: 24px;
}
.news-content a.view-btn {
    color: #e4832a;
    font-size: 16px;
}
.contact-inner-section {
    padding: 50px 0;
}
.contect-address .enquiry-icon {
    width: 100%;
	 margin-bottom: 25px;
}
.contect-address .enquiry-icon img {
    filter: inherit;
    height: auto;
}
.contect-address h4 {
    margin: 0 0 20px;
    font-weight: 400;
}
.contactform-bg {
    background: #f5f5f5;
    padding: 40px 0 20px;
}
.contactform-bg form.footer-form input {
    background: #fff !important;
    border: solid 1px #ddd !important;
    color: #494949 !important;
    padding: 0 20px !important;
}
.contactform-bg form.footer-form textarea {
    background: #fff !important;
    border: solid 1px #ddd;
    color: #494949 !important;
    padding: 20px  !important;
}
.contactform-bg h4 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 15px;
}
.contactform-bg p {
    text-align: center;
    font-size: 18px;
    margin: 0 0 30px;
}
.contactform-bg .wpforms-submit-container {
    text-align: center;
}
.contactform-bg .wpforms-submit-container .wpforms-submit {
    display: inline-block;
}
.contect-address {
    border: solid 1px #ddd;
    padding: 25px;
    border-radius: 10px;
}
section.error-404.not-found {
    text-align: center;
}
.error-img {
    text-align: center;
    background: #f0f0f0;
    margin-bottom: 50px;
}
.book-appointment-section fieldset {
    text-align: center;
}
.book-appointment-section fieldset label {
    font-size: 24px;
    font-weight: 500;
    width: 100%;
}
.book-appointment-section fieldset label  br {
    display: none;
}
.book-appointment-section fieldset label span.selct-hdr-msg {
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0 20px;
    display: block;
    border-bottom: solid 1px #ccc;
    padding-bottom: 20px;
}
.book-appointment-section fieldset .xdsoft_datetimepicker {
    width: 100%;
}
.book-appointment-section .fieldset-cf7mls-wrapper {
    width: 70%;
    display: block;
    margin: 10px auto 40px;
    background: #fff;
    box-shadow: 0 0 10px #ddd;
    padding: 40px;
    border-radius: 5px;
}
.book-appointment-section .fieldset-cf7mls-wrapper .cf7mls-btns .action-button {
    float: none;
    margin: 15px 0 0;
}
.book-appointment-section fieldset .xdsoft_datetimepicker {
    width: 80%;
    border: none;
}
.book-appointment-section fieldset .xdsoft_datetimepicker .xdsoft_datepicker {
    width: 100%;
}
.book-appointment-section .xdsoft_datetimepicker .xdsoft_calendar td, .book-appointment-section .xdsoft_datetimepicker .xdsoft_calendar th {
    font-size: 14px;
    height: 50px;
    text-align: center;
}
.cf7mls-no-moving-animation .fieldset-cf7mls-wrapper .fieldset-cf7mls input.wpcf7-form-control {
    height: 50px;
    padding: 0 15px;
}
.cf7mls-no-moving-animation .fieldset-cf7mls-wrapper .fieldset-cf7mls .submit_btn {
    background: #ff9e45;
    border-color: #ff9e45;
    color: #fff;
}
.financial-inner-box select {
    width: 100%;
}
.financial-inner-box p:nth-child(3) select {
    width: auto;
    min-width: 140px;
    margin-right: 10px;
}
.financial-inner-box p:nth-child(3) input[type="button"] {
    height: 31px;
}
.financial-inner-box {
    padding-bottom: 40px;
}
.financial-inner-box form{
    background: #fff;
    box-shadow: 0 0 10px #ebebeb;
    padding: 30px;
    border-radius: 6px;
    max-width: 100%;
}
.financial-inner-box ul.nav.nav-pills {
    padding: 0;
    margin: 0 0 25px;
    justify-content: center;
    column-gap: 15px;
}
.financial-inner-box .nav-item a.nav-link {
    border: solid 1px #0a427c;
    color: #0a427c;
}
.financial-inner-box .nav-item a.nav-link.active {
    color: #fff;
    background: #0a427c;
    border-color: #0a427c;
}
.brand-section h2.heading-title {
    text-align: center;
    margin: 0 0 30px;
}
.brand-section {
    background: #fff6ed;
}
.brand-section .owl-carousel .owl-wrapper-outer {
    text-align: center;
    margin: 0 0 30px;
}
.footer-form {
    margin-top: 30px;
}
.footer-form form.wpcf7-form {
    margin-bottom: 0;
}

 /*end service-page*/

/*responsive*/

@media (min-width: 991px) and (max-width: 1024px){
  .home-slider {
    min-height: 500px;
}
  #hero h1 {
    font-size: 57px;
    line-height: 67px;
}
}
@media (max-width: 991px){
  
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
  #header .logo img {
    width: 50%;
}
  .home-slider {
    background-size: cover !important;
    background-position: left bottom !important;
    min-height: 400px;
}
.slider-text p.welcome-heading {
    margin-bottom: 6px;
}
.slider-text {
    max-width: 66%;
    margin: 0 auto;
    text-align: center;
    background: #1d1d1d5c;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}
#hero h1 span {
    color: #fff;
}
.slider_btn_fix {
    margin-top: 12px !important;
    justify-content: center;
}
#hero h1 {
    font-size: 32px;
    line-height: 40px;
    color: #fff;
    max-width: 85%;
    margin: 0 auto;
}
  a.all_btn {
    padding: 5px 7px;
    line-height: 26px;
}
  .approch-btn {
    margin-top: 20px;
}
.approach::before {
    width: 100%;
    height: 100%;
  }
 p.welcome-heading {
    font-size: 20px;
}
  h2.heading-title {
    font-size: 26px;
    line-height: 36px;
   
}
p.welcome-heading {
     margin-bottom: 15px;
}
img.approch-img {
    padding: 7px;
    width: 70px;
    height: 70px;
}
.approch-testimonial-item {
    padding: 20px 18px;
  }
  a.view-btn {
    font-size: 16px;
}
.approch-testimonial-item p {
    margin-top: 20px;
}
.approch-testimonial-item h3 {
    margin-bottom: 20px;
}
.approch-carousel .owl-buttons {
    margin-top: 0;
}
.approch-carousel .owl-prev, .owl-next {
    width: 30px;
    height: 30px;
    padding: 0 !important;
}
.approch-carousel .owl-prev::after {
    line-height: 30px;
}
.approch-carousel .owl-next::after {
    line-height: 30px;
}
a.all_btn {
    font-size: 13px;
}
p.pera-content {
    line-height: 26px;
}
.about .content ul {
    display: block; 
    margin-bottom: 20px;
    margin-top: 0;
}
.about .content ul i {
    font-size: 20px;
}
.about .content ul p {
    font-size: 14px;
}
.client-section{
    padding: 50px 0px;
}
.client-section p.welcome-heading {
    margin-bottom: 10px;
}
.client-section a.all_btn {
    margin-top: 20px;
}
h4.maldhani-first-feature {
    font-size: 26px;
}
p.maldhani-first-description {
    margin-top: 40px;
}
.maldhani-first-box .icon-box {
  padding: 30px 18px;
}
.featured-services .title {
    font-size: 18px;
}
.featured-services img.feature-icon {
    width: 60px;
    height: 60px;
}
.featured-services .icon-box {
    padding: 25px 18px;
}
.single-testimonial-item {
    padding: 20px;
    width: 100%;
}
img.client-img {
    position: relative;
    left: 0;
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}
p.client-review {
    line-height: 26px;
    font-size: 15px;
}
.client-name p {
    font-size: 18px;
    margin-bottom: 7px;
}
.client-testimonial-carousel {
    margin-top: 30px;
}
.review-section p.welcome-heading {
    margin-bottom: 20px;
}
.review-section {
   padding: 40px 0px;
}
.service-content p {
    margin-bottom: 10px;
}
.services .icon-box {
    margin: 10px 0px;
}
.services h2.heading-title {
    margin-bottom: 35px;
}
.calender span h4 {
    font-size: 25px;
    line-height: 13px;
}
.calender span p {
    font-size: 14px !important;
}
.service-content {
    padding: 18px 50px 30px 20px;
}
.calender {
    top: -35px;
    height: 60px;
    width: 60px;
    
}
#footer .footer-top {
    padding: 40px 0;
}
.footer-contact h3 {
    font-size: 26px;
}
p.footer-address {
    font-size: 15px;
    line-height: 26px;
    padding-right: 0;
}
.enquiry-icon img {
    width: 35px;
    height: 35px;
}
.enquiry-content p {
    font-size: 14px;
}
form.footer-form {
    margin-top: 30px;
}
.header_btn a.all_btn {
    font-size: 13px;
    margin-left: 10px;
}
}

@media (max-width: 767px) {
  p.welcome-heading {
    font-size: 16px;
}
  .slider-text {
    max-width: 90%;
      padding: 15px;
    
}
#hero h1 {
    font-size: 26px;
    line-height: 32px;
    color: #fff;
    max-width: 85%;
    margin: 0 auto;
}
section {
    padding: 40px 0;
}
	a.all_btn.header_btn {
    position: absolute;
    right: 64px;
}
	.navbar ul .menu-item {
 
    padding: 3px 0px;
}
	header a.logo {
    width: 35%;
}
	.navbar .menu-primary-menu-container ul .current-menu-item a::before {
   
    width: 7%;
    height: 4px;
    bottom: 0px;
    left: 20px;
}

.navbar ul .menu-item a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0px;
    left: 20px;
    background-color: #0A427C;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
    border-radius: 100px;
}
		.navbar a:hover:before, .navbar li:hover&gt;a:before, .navbar .active:before {
    width: 7%;
    visibility: visible;
}
#header .logo img {
    width: 80%;
}
.about .content ul {
    margin-left: 15px;
}
.brand-section h2.heading-title {
    margin: 20px 0 15px;
}	
	
	

}</pre></body></html>