* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*  
    font-family: "Inter", sans-serif;
    font-family: "Heebo", sans-serif;
*/
body {
  background: #fff;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  font-family: "Heebo", sans-serif;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  background: transparent;
  color: #fff;
  transition: 0.4s all ease;
}
a:hover {
  color: #fff;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}
p {
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 0rem;
  color: #141414;
  font-weight: 400;
}
section {
  padding: 100px 0;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
/* SITE BTN */
.site-btn {
  z-index: 1;
  line-height: 1;
  overflow: hidden;
  text-align: center;
  position: relative;
  padding: 15px 40px;
  display: inline-block;
  color: var(--s-white);
  transition: all ease 0.5s;
  background-color: var(--s-primary);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.site-btn:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  background-color: var(--s-secondary);
  /* transform: translateY(-5px); */
}
.revSite-btn {
  background-color: #fff;
  color: var(--s-primary);
  border-color: #fff;
}
.revSite-btn span {
  color: var(--s-primary);
}
.revSite-btn:hover span {
  color: var(--s-white);
}
.site-outline-btn {
  background-color: transparent;
  border-color: var(--s-primary);
  color: var(--s-primary);
}
/* TITLE BAR */
.titleBar {
  margin-bottom: 30px;
  position: relative !important;
}
.titleBar h6 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--s-primary);
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  padding-left: 88px;
}
.titleBar h6::before{
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: currentColor;
  left: 0;
  top: 6px;
}
.titleBar h6::after{
  content: '';
  position: absolute;
  top: 8px;
  left: 14px;
  height: 2px;
  width: 50px;
  background-color: currentColor;
}
.titleBar h3 {
  font-size: 45px;
  font-weight: 600;
  color: var(--s-black);
  margin-bottom: 20px;
}
.iconbg {
  background: var(--s-primary);
  border-radius: 100px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
:root {
  --s-primary: #eaa62c;
  --s-secondary: #56bbb2;
  --s-third: #8ac7c2;
  --s-white: #ffffff;
  --s-black: #000000
;
}
.bg-s-primary {
  background-color: var(--s-primary) !important;
}
.text-s-primary {
  color: var(--s-primary) !important;
}
.bg-s-secondary {
  background-color: var(--s-secondary) !important;
}
.text-s-secondary {
  color: var(--s-secondary) !important;
}
.bg-s-third {
  background-color: var(--s-third) !important;
}
.text-s-third {
  color: var(--s-third) !important;
}
.text-s-white {
  color: var(--s-white) !important;
}
.bg-s-white {
  background-color: var(--s-white) !important;
}
.text-s-black {
  color: var(--s-black) !important;
}
.bg-s-black {
  background-color: var(--s-black) !important;
}
/*************************************/
/***     Header CSS Start Here     ***/
/*************************************/
/* Sticky Header CSS Start */
header .header-scrolled {
  transition: all 0.5s linear;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  background-color: #FFFFFFC7;
  z-index: 99999;
  backdrop-filter: blur(12px);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}
.header-scrolled nav .navbar-brand{
  color: var(--s-primary) !important;
}
.header-scrolled .navbar-brand img{
  filter: brightness(0);
}
.navbar-brand img{
  filter: brightness(0) invert(1);
}
.header-scrolled .nav-link {
  color: var(--s-black) !important;
}
.header-scrolled .navbar{
      background-color: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}
/* Main Header CSS */
header {
  background-color: transparent;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  padding: 40px;
  /* box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); */
}
/* Bottom Header Start Here */
.dropdown-menu {
  left: 15px;
  border-radius: 0;
  border: none;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.dropdown-item:hover {
  background-color: var(--s-primary);
  color: var(--s-white);
}
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.bottom-header .navbar {
  width: 100%;
  z-index: 10;
  border-radius: 15px;
  padding: 10px 35px;
  background-color: #ffffff70;
  backdrop-filter: blur(8px);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}
.bottom-header nav .navbar-brand {
  font-size: 25px;
  font-weight: 600;
  color: var(--s-primary);
  margin: 0;
}
.bottom-header nav .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: var(--s-white);
  padding: 3px 2px;
  margin: 0 15px;
  border-radius: 50px;
  position: relative;
}
.bottom-header nav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  height: 1px;
  border-radius: 0px;
  border: 0 !important;
  background: currentColor;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
}
.bottom-header nav .navbar-nav .nav-item .nav-link:hover::after {
  transform: scale(1);
  color: var(--s-primary);
}

/* Banner Section Start Here */
#banner {
  background-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 850px;
  min-height: 850px;
  display: block;
}
#banner::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.445);
  background-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/banner-shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
#banner .container .row {
  height: 850px;
  min-height: 850px;
}
.banner-text {
  position: relative;
  z-index: 2;
  -webkit-mask-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/masking_3.png);
  mask-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/masking_3.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  padding: 50px;
  width: 510px;
  height: 510px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.banner-text h1 {
  font-size: 40px;
  display: block;
  margin-bottom: 20px;
  color: var(--s-primary);
  font-weight: 500;
  text-transform: capitalize;
}
.banner-text p {
  margin-bottom: 35px;
  color: var(--s-black);
}
.innerbanner {
  position: absolute;
  transform: translate(0%, -25%) !important;
  left: 0;
  z-index: 1;
  bottom: 0;
}

/* About Section */
.about_image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
}
/* Counter */
.hero-box
{
    background-color: var(--s-white);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 32px 32px 32px 32px;
    transition: all.3s;
    border-radius: 10px;
}
.hero-box:hover {
    box-shadow: 0 22px 40px -22px rgba(0, 0, 0, 0.3);
    transform: scale(1.1, 1.1);
    z-index: 4;
    transition: all.3s;
}
.counter-content h3{
    color: var(--s-white);
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.counter-content p{
  color: var(--s-white);
}

/* Expert Section Start Here */
.expertSection{
  background: 
  linear-gradient(90deg, #2C394100 0%, var(--s-secondary) 100%), 
  url('https://babylonpaintingltd.com/wp-content/uploads/2025/08/expert-bg.jpg');
  background-position: center;
  background-size: cover;
}
.expert-box{
  background: rgba(255, 255, 255, 0.562);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.6px);
  -webkit-backdrop-filter: blur(5.6px);
  /* min-height: 300px; */
  text-align: center;
  padding: 3em 2em 3em 2em;
  transition: all.3s;
}
.expert-box:hover{
  background-color: var(--s-primary);
}
/* .expert-box:hover .expert-icon{
  background-color: var(--s-primary);
} */
.expert-icon{
  background-color: var(--s-white);
  color: var(--s-primary);
  font-size: 35px;
  display: inline-flex;
  width: 75px;
  height: 75px;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-bottom: 30px;
}
.expert-box h3{
     font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--s-white);
}
.expert-box p{
     font-size: 15px;
    font-weight: 400;
    margin-bottom: 0px;
    color: var(--s-white);
}

/* Services-Section Start Here */
.servicesSection{
  background-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/services-bg.png);
}
.services-content{
  padding: 20px 30px;
}
#services-slider .item{
  padding: 20px;
}
.services-box
{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 6px 40px 0px rgba(31, 31, 31, .05);
  transition: all ease .3s;
}
.services-box:hover{
  margin-top: -10px;
  transition: all ease .3s;
}
.services-box:hover .services-icon{
  opacity: 1;
  visibility: visible;
  transition: all ease .3s;
}
.services-image{
  height: 200px;
  overflow: hidden;
  position: relative;
}
.services-image img{
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.services-icon{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #00000096;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all ease .3s;
}
.services-icon img{
      background-color: var(--s-primary);
    width: 80px !important;
    height: 80px !important;
    padding: 13px;
    border-radius: 100px;
}
.services-content h3{
  color: var(--s-black);
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 19px;
}
.services-content .services-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--s-primary);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
.services-content .services-btn i{
  font-size: 20px;
}
.custom-nav {
  text-align: center;
  margin-top: 10px;
}
.owl-prev,
.owl-next {
  background: var(--s-primary);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 6px 10px;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 4px;
}

/* Our Process Section */
.ourProcessSection{
  background-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/dashed.png);
  background-repeat: no-repeat;
  background-position:  0% 40%;
  background-size: contain;
  /* background-color: var(--s-secondary); */
}
.expert-icon  h2{
  margin: 0;
  font-weight: bold;
  font-size: 40px;
}

/* professional-execution */
.professional-execution{
  background-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/professional-bg.jpg);
  background-attachment: fixed;
}
.overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .5;
}

/* Top Quality Start Here */
.topQuality{
    background-color: #f8f8f8;
  background-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/banner-shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
.top-image{
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center center;
  -webkit-mask-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/top-bg.png) !important;
  mask-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/top-bg.png);
  -webkit-mask-size: contain !important;
  mask-size: contain;
  -webkit-mask-position: center center !important;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat;
}

/* WHy Choose US */
.why-clipmask{
  height: 680px;
  width: 100%;
   -webkit-mask-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/why-choose-mask.png) !important;
  mask-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/why-choose-mask.png);
  -webkit-mask-size: contain !important;
  mask-size: contain;
  -webkit-mask-position: center center !important;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat;
}
.image-box i{
  font-size: 40px;
}

/* Testimonial Section */
.testimonialSection{
  padding-top: 150px;
}
.td-single-testimonial-item {
  background: transparent;
  padding: 40px;
  transition: 0.8s;
  border-radius: 0px;
  border: 1px solid #eee;
}
.td-testimonial-rating {
  color: #eee;
}
.td-testimonial-rating ul li {
  margin: 0 1px;
}
.td-testimonial-header .td-testimonial-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50px;
  width: 50px;
  margin-right: 15px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--s-white);
}
.td-testimonial-image h3 {
  margin-bottom: 0;
  font-size: 25px;
  color: var(--s-primary);
  font-weight: 700;
}
.td-name-designation h6 {
  font-size: 18px;
  margin-bottom: 3px;
  font-weight: 400;
  color: #eee;
  transition: 0.3s;
}
.td-name-designation p {
  color: #eee;
  font-weight: 300;
  font-size: 13px;
}
.td-testimonial-description {
  margin: 20px 0 30px 0;
}
.td-testimonial-description p {
  display: block;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 1rem;
  color: #eee;
}


/* Footer Section Start Here */
footer {
  background-color: var(--s-primary);
  position: relative;
  padding-top: 25px;
}
/* footer:after {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-color: #222222f5;
          z-index: 0;
        } */
.footer-box h2 {
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 17px;
  color: var(--s-black);
}
.footer-box p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--s-black);
}
.footer-box h3 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--s-black);
  text-transform: uppercase;
}
.footer-box ul li {
  margin-bottom: 0.5rem;
}

.footer-box ul li a {
  font-size: 15px;
  color: var(--s-black);
}
.footer-box ul li a:hover {
  color: var(--s-white);
  letter-spacing: 1px;
}
.footer1stRow {
  padding: 2rem 0 1.5rem 0;
  position: relative;
  z-index: 1;
  /* border-top: 1px solid #2525251e; */
}
.socialmediaicon ul li a i {
  background-color: var(--s-black);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 8px;
  padding: 0;
  color: var(--s-primary);
  transition: 0.3s;
  border-radius: 100px;
}
.socialmediaicon ul li a i:hover {
  transform: rotate(360deg);
  background-color: var(--s-secondary);
  color: var(--s-white);
}
.SocialIcon h3 {
  font-size: 17px;
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
}
.copyRight {
  border-top: 1px solid #0000005b;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

/* Back To Top CSS Start Here */
.button {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid var(--s-primary);
  overflow: hidden;
  border-radius: 30px;
  color: var(--s-primary);
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.btn-txt {
  z-index: 1;
}
.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: var(--s-primary);
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}
.button:hover {
  box-shadow: 1px 1px 200px var(--s-white);
  color: #fff;
  border: none;
}
.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}






/*=========================================  
       ABOUT US PAGE CSS START HERE 
============================================*/
.innerPagesBanner {
  background-color: var(--s-black);
  background-image: url(https://babylonpaintingltd.com/wp-content/uploads/2025/08/inner-opages-.jpg);
  height: 450px;
  display: flex;
  align-items: end;
  justify-content: start;
}
.innerPagesBanner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #00000094;
}
.innerpage-title {
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
.innerpage-title h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 78px;
  position: relative;
  display: block;
  color: var(--s-white);
  margin-bottom: 10px;
}
.breadcrumb-content ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin: 0 5px;
}
.breadcrumb-content ul li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin-right: 5px;
}
/* Mission Section Start here */
.ourMission {
  background-color: var(--s-primary);
  position: relative;
  background-attachment: fixed;
}
/* .ourMission::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000b7;
  z-index: 0;
} */
.valueBox {
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  /* margin: 10px 10px 10px 10px; */
  --e-column-margin-right: 10px;
  --e-column-margin-left: 10px;
  padding: 3em 1em 3em 1em;
  background-color: var(--s-secondary);
}
.valueBox h4 {
  color: #000;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 25px;
  margin-top: 25px;
  letter-spacing: 1px;
}
/* FAQs  Section */
.accordion-item {
  background-color: #f3f3f3;
}
.accordion-header .accordion-button {
  font-size: 20px;
  background-color: #f3f3f3;
  color: var(--black);
  padding: 20px 30px 20px 34px;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  font-weight: 700;
}
.faq-image {
  height: 600px;
  object-fit: cover;
  object-position: top;
}
.accordion-button:not(.collapsed) {
  color: var(--s-white);
  background-color: var(--s-primary);
}
.contactIcon h5 {
  font-size: 17px;
  font-weight: 600;
}


/*============================================
     Inner Services Pages CSS STart Here 
=============================================*/
.innerServicesPage p {
  margin-bottom: 20px;
}
.innerServicesImage img {
  height: 400px;
  object-fit: cover;
}
.innerServices-overlay {
  background-color: #00000088;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}






/* WebSites Responsive  */
@media (max-width: 991px){
  section{
    padding: 50px 0;
  }
  header{
    position: relative;
    padding: 0;
  }
  .bottom-header{
    padding-left: 15px;
    padding-right: 15px;
  }
  .bottom-header .navbar
  {
    width: 100%;
    z-index: 10;
    border-radius: 0;
    padding: 10px 0;
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }
  .header-btn{
    display: none;
  }
  .navbar-nav
  {
    align-items: self-start !important;
    border-top: 1px solid #bc8f8f;
    margin-top: 10px;
    padding: 8px 0;
  }
  .bottom-header nav .navbar-nav .nav-item .nav-link {
    font-size: 15px;
    padding: 3px 2px;
    margin: 0px 0; 
    color: var(--s-black);
  }
  .bottom-header .navbar-brand img {
    width: 80px !important;
    filter: none !important;
  }
  .site-btn {
    padding: 15px 30px 15px 30px;
    font-size: 14px;
  }
  .titleBar h3{
    font-size: 24px; 
  }
  .titleBar span{
    font-size: 13px;
    letter-spacing: 1px;
  }
  .titleBar p{
    font-size: 15px;
  }
  p{
    font-size: 14px;
  }
 /* Banner */
 .Mainbanner
 {
   padding: 0;
 }
 .banner-text {
    -webkit-mask-image: none;
    mask-image: none;
    background-color: transparent;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  .banner-text h1{
   font-size: 32px;
 }
 .banner-text h5{
   font-size: 12px;
 }
 .banner-text p{
   font-size: 14px;
   color: var(--s-white);
 }
 #banner{
  min-height: 400px;
  height: 400px;
 }
 #banner .container .row {
   min-height: 400px;
   height: 400px;
 }
  .innerbanner
  {
      position: absolute;
      transform: translate(0%, -40%) !important;
  }
  /* Hero */
  .heroSection{
    padding-top: 40px;
  }
  .hero-box{
    height: auto;
    margin: 0;
  }
  /* About */
  .about_image img{
    height: 350px;
  }
  /* Counter */
  .counter-box:after{
    content: none;
  }
  .counter-box:before{
    content: none;
  }
  /* Practic */
  .practice-box{
    flex-direction: column;
  }
  .practice-icon
  {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
  }








 /* Value */
 .value-image img {
    margin-bottom: 0;
    height: 400PX;
  }
  /* WHy CHoose Us */
  .whySection {
    padding-top: 50px;
  }
  .why-box {
    padding: 40px 15px;
    padding-top: 20px;
  }
  .why-number-count h1 {
    font-size: 55px;
  }
  .why-content h3 {
    font-size: 18px;
  }
  .why-content p {
    font-size: 13px;
  }

  /* Map */
  .value-image iframe{
    margin-bottom: 0 !important;
    height: 450px;
  }
  /* TEstimonial */
  .testimonialSection {
    padding-top: 50px;
  }
  /* Inner Services */
  .innerPagesBanner {
    height: 180px;
    padding-bottom: 30px;
  }
  .innerpage-title h2 {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 10px;
  }
  .innerpage-title{
    margin-top: 0;
  }
  .listTwo li {
    font-size: 13px;
  }
  .content-box p{
    font-size: 12px;
  }
  .content-box h5{
    font-size: 15px;
  }
  .contactUSPage{
    background-color: #e6e6e6;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.07);
    padding: 30px 8px !important; 
    border-radius: 15px;
    margin: 0;
    border-radius: 10px !important;
  }
  /* FAqs */
  .accordion-header .accordion-button{
    font-size: 14px;
  }
  .accordion-body {
    font-size: 14px;
  }
}


