/********** Template CSS **********/

:root {
  --primary: #fda12b;
  --secondary: #8d9297;
  --light: #f8f9fa;
  --dark: #182333;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*============= Preloader =============*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .Pageloader {
    width: 90px;
    height: 90px;
  }
  .Pageloader .loader-inner {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto;
  }
  .Pageloader .loader-inner div {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #00bee0;
    position: absolute;
    top: 10px;
    left: 10px;
    transform-origin: 20px 20px;
    -webkit-animation: loading-14 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
    animation: loading-14 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
  }
  /*============= Loader animations =============*/
  .Pageloader .loader-inner .box-2 {
    top: 10px;
    left: auto;
    right: 10px;
    transform-origin: -4px 20px;
    -webkit-animation: loading-142 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
    animation: loading-142 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
  }
  .Pageloader .loader-inner .box-3 {
    top: auto;
    left: auto;
    right: 10px;
    bottom: 10px;
    transform-origin: -4px -4px;
    -webkit-animation: loading-143 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
    animation: loading-143 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
  }
  .Pageloader .loader-inner .box-4 {
    top: auto;
    bottom: 10px;
    transform-origin: 20px -4px;
    -webkit-animation: loading-144 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
    animation: loading-144 2s infinite cubic-bezier(0.5, 0, 0.5, 1);
  }
  .Pageloader .text {
    display: block;
    font-size: 12px;
    color: #00bee0;
    text-align: center;
  }
  @keyframes loading-14 {
    0% {
      transform: rotate(90deg);
    }
    50% {
      transform: rotate(180deg);
    }
    75% {
      transform: rotate(270deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes loading-142 {
    0%, 25% {
      transform: rotate(90deg);
    }
    50% {
      transform: rotate(180deg);
    }
    75% {
      transform: rotate(270deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes loading-143 {
    0%, 25% {
      transform: rotate(90deg);
    }
    50% {
      transform: rotate(270deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes loading-144 {
    0%, 25% {
      transform: rotate(90deg);
    }
    50% {
      transform: rotate(180deg);
    }
    75%, 100% {
      transform: rotate(360deg);
    }
  }

/*** Button ***/

.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/

.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link {
  margin-left: 30px;
  padding: 25px 0;
  color: #282828;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
  .navbar .navbar-nav {
    margin-top: 25px;
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.main-logo{
  width: 200px;
  height: auto;
}
.footer-logo{
  width: 180px !important;
  height: auto !important;
}
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  text-align: start;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 4rem;
  height: 4rem;
  /* background-color: var(--dark);
  border: 15px solid var(--dark); */
  background-color: #ff8f01;
  border: 15px solid #ff8f00;
  border-radius: 50px;
}

.carousel-caption .breadcrumb-item + .breadcrumb-item::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
}

@media (max-width: 768px) {
  /* #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  } */
  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-width: 12px;
  }
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)), url(https://stonechips.in/images/Breadcrumb.png) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}

/*** Facts ***/

.facts-overlay {
  position: absolute;
  padding: 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
}

.facts-overlay h1 {
  font-size: 120px;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
  color: var(--primary) !important;
}

/*** Service ***/

.img-fluid{
  border-radius: 5px;
}
.service-text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: var(--primary);
  opacity: 0;
  transition: 0.5s;
}

.service-item:hover .service-text::before {
  height: 100%;
  opacity: 1;
}

.service-text * {
  position: relative;
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover .service-text * {
  color: #ffffff !important;
}

.service-item .small{
    border: 1px solid #fda12b;
    border-radius: 15px;
    padding: 5px;
    font-size: 14px;
    background-color: #fda12b;
    color: #fff;
    text-decoration: none;
}

.service-item:hover .small{
    padding: 9px 15px;
    font-size: 14px;
    background-color: #fff !important;
    color: #fda12b !important;
    border-radius: 25px;
    border: 1px solid #fff;
    font-weight: 600;
}
.service-item:hover .small i{
  margin-left: 22px !important;
  color: #fda12b !important;
}



/*** Appointment ***/

.appointment {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
}

/*** Team ***/

.team-text {
  position: absolute;
  width: 75%;
  bottom: 30px;
  left: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  width: 100%;
}

.team-text * {
  transition: 0.5s;
}

.team-item:hover .team-text * {
  letter-spacing: 2px;
}

/*** Testimonial ***/

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-right: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #ffffff;
  background: var(--primary);
}

.testimonial-item .line{
  width: 60px;
  height: 3px;
}

/*============ Footer ============*/
.footer,
.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: .7s;
}
.footer a:hover {
  color: #fda12b;
  transition: .7s;
}
.bg-footer{
  /* background: linear-gradient(284deg, rgba(230,130,0,1) 0%, rgba(141,80,0,1) 26%, rgba(105,60,0,1) 66%, rgba(59,33,0,1) 100%); */
  /* background: linear-gradient(300deg, rgba(59,33,0,1) 0%, rgba(105,60,0,1) 26%, rgba(141,80,0,1) 66%, rgba(230,130,0,1) 100%); */
    background: linear-gradient(120deg, #e68200, #8d5000, #693c00, #4e2c00);
    /* height: 200px; example height */
    width: 100%; /* example width */
}
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}
.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  margin-right: 10px;
}
.footer .btn.btn-link:hover {
  color: #fda12b;
  letter-spacing: 1px;
  box-shadow: none;
}
.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}
.footer .copyright a {
  color: #ffffff;
}
.footer .copyright a:hover {
  color: #fda12b;
}
.social-links a{
  border: 2px solid #e68200;
  border-radius: 50%;
  transition: .5s;
}
.social-links a:hover{
  border: 2px solid #e68200;
  border-radius: 10px 10px 10px 0px;
  background-color: #fda12b;
  transition: .5s;
}
/*============ Custom Css ============*/
.btn_bgcolor {
  background-color: #fda12b;
  color: #ffffff;
}
.btn_bgcolor:hover {
  background-color: rgb(206, 118, 2);
  color: #ffffff;
}
.btn-readmore{
  text-decoration: none;
  color: #ffff;
  background-color: #fda12b;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 16px;
  transition: .5s;
}
.btn-readmore:hover{
  background-color: #f39213;
  padding: 8px 15px;
  transition: .5s;
  font-size: 17px;
  box-shadow: 5px 5px 8px #3c3c3c75;
}
.btn-readmore i{
  transition: .5s;
}
.btn-readmore:hover i{
  margin-left: 8px;
  transition: .5s;
}
.dropdown-menu .dropdown-item{
    font-weight: 500;
    transition: .8s;
}
.dropdown-menu .dropdown-item:hover{
    background-color: rgb(206, 118, 2);
    color: #ffffff;
    transition: .8s;
}
.contact_details a {
  color: #000 !important;
  text-decoration: none !important;
}
.contact_details:hover {
  color: #fda12b;
}
.contact_details a:hover {
  color: #fda12b !important;
}
.social_icons a:hover {
  color: #fda12b !important;
  background-color: #ededed !important;
  border-radius: none !important;
}
.carousel-caption p {
  font-size: 45px !important;
  font-weight: 500 !important;
}
.service-item img{
  transition: 3s;
}
.service-item:hover img{
  transform: scale(1.2);
  transition: 3s;
}
.service-item .service-image{
  transition: .5s;
}

.service-item .service-image:hover{
  transform: scale(1.1);
  transition: .5s;
}
/* Products Card Hover Effects */
.card-effects .img-hover:after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3
}
.card-effects .img-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
  top: -10%;
  right: 51%;
  bottom: -10%;
  left: 50%;
  background: rgba(255,255,255,0.3)
}
.card-effects .img-hover:after {
  top: 50%;
  right: -10%;
  bottom: 50%;
  left: -10%;
  background: rgba(255,255,255,0.6)
}
.card-effects .card-effect:hover .img-hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 900ms linear
}
.card-effects .card-effect:hover .img-hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 900ms linear
}
.card-effects .card-effect:hover .img-hover img {
    transform: scale(1.2)
}
.paragraph-mob{
  text-transform: capitalize !important;
  text-align: justify;
}
/*------------ Margin ------------*/
/* Margin Left */
.ml-half{
  margin-left: .5rem;
}
.ml-1{
  margin-left: 1rem;
}
.ml-2{
  margin-left: 2rem;
}
.ml-3{
  margin-left: 3rem;
}
.ml-4{
  margin-left: 4rem;
}
.ml-4{
  margin-left: 5rem;
}
.ml-5{
  margin-left: 1rem;
}
/* Margin Right */
.mr-half{
  margin-left: .5rem;
}
.mr-1{
  margin-left: 1rem;
}
.mr-2{
  margin-left: 2rem;
}
.mr-3{
  margin-left: 3rem;
}
.mr-4{
  margin-left: 4rem;
}
.mr-4{
  margin-left: 5rem;
}
.mr-5{
  margin-left: 1rem;
}

/*------------ Padding ------------*/
/* Padding Left */
.pl-half{
  margin-left: .5rem;
}
.pl-1{
  margin-left: 1rem;
}
.pl-2{
  margin-left: 2rem;
}
.pl-3{
  margin-left: 3rem;
}
.pl-4{
  margin-left: 4rem;
}
.pl-4{
  margin-left: 5rem;
}
.pl-5{
  margin-left: 1rem;
}
/* Padding Right */
.pr-half{
  margin-left: .5rem;
}
.pr-1{
  margin-left: 1rem;
}
.pr-2{
  margin-left: 2rem;
}
.pr-3{
  margin-left: 3rem;
}
.pr-4{
  margin-left: 4rem;
}
.pr-4{
  margin-left: 5rem;
}
.pr-5{
  margin-left: 1rem;
}
/*============ Custom Color ============*/
.border-primary{
  border-color: #fda12b !important;
}
.text-primary{
  color: #fda12b !important;
}
.btn-primary{
  background-color: #fda12b !important;
  border: #fda12b !important;
}
.back-to-top:hover{
  background-color: #e68200 !important;
  border: #e68200 !important;
}
.bg-primary{
  background-color: #fda12b !important;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
  background-color: #fda12b;
  border-color: #fda12b;
}

/*============ Custom Height Width ============*/
.ptb-16{
  margin-top: 16px;
  margin-bottom: 16px;
}
.fs-17{
  font-size: 17px;
}
/*============ breadcrumb ============*/
.breadcrumb-item a{
  text-decoration: none;
  transition: .5s;
}

.breadcrumb-item a:hover{
  color:#e68200 !important;
  transition: .5s;
}

/*============ Product Details ============*/
.product-details ul{
  padding-left: 0px !important;
}

.list-details li {
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.product-details .list-details li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #fda12b;
}

.service-list a{
  text-decoration: none;
  transition: .5s;
}

.service-list a:hover {
  color: #000;
  background: #fda12b !important;
}

.service-list a::before{
  content: "\f054";
  /* content: "\f14a"; */
  font-family: "FontAwesome";
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.5s;
  transition: .5s; 
}

.service-list a:hover::before{
  transition: .5s; 
  opacity: 1;
  padding-right: 10px;
}

.contact-detail a{
  text-decoration: none;
  transition: .5s;
}
.contact-detail a p{
  transition: .5s;
}
.contact-detail a p:hover{
  color: #fda12b !important;
  transition: .5s;
}
.hidden-lg{
  display: none;
}

/*============ Contact Us ============*/
.icon-box{
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fda12b ;
}
.icon-box::before{
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  border-top: 15px solid #fff;
  border-right: 15px solid transparent;
}
.icon-box::after{
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
  border-bottom: 15px solid #fff;
  border-left: 15px solid transparent;
}
.display-contents{
  display: contents;
}
.display-contents a{
  text-decoration: none;
  color: #fda12b;
}
.display-contents a:hover{
  color:#e68200;
}
.form-control:focus{
  border-color: #fda12b;
  box-shadow: 0 0 0 2px rgb(253 161 43);
}

/*============ Mobile Responsive ============*/
/*------ banner ------*/
@media (max-width: 350px) {
  /*------ breadcrumb ------*/
  .breadcrumb-mobile{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .breadcrumb-header{
    margin-top: 0px !important;
  }
  /*------ Logo ------*/
  .main-logo{
    width: 150px;
    height: auto;
  }
  .footer-logo{
    width: 180px !important;
    height: auto !important;
  }
  /*------ Banner ------*/
  #header-carousel .carousel-item {
    position: relative;
    min-height: 200px !important;
  }
  .carousel-caption h4{
    font-size: 13px !important;
  }
  .carousel-caption p{
    font-size: 17px !important;
  }
  .carousel-caption button{
    font-size: 10px !important;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-width: 12px;
  }
  .navbar-toggler{
    border: 1px solid #feaa2b8c;
  }
  .navbar-toggler:focus{
    box-shadow: 5px 5px #feaa2b8c;
  }
  /*------ about us ------*/
  .about-us{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .about-us img{
    height: 70% !important;
    --bs-gutter-y: 0px;
  }
  .content {
  --bs-gutter-y:none !important;
  }
  .about-content{
    margin-top: -80px !important;
  }
  /*------ whyChooseUs ------*/
  .whyChooseUs-image{
    padding-left: 0px !important;
    min-height: 210px !important;
  }
  .whyChooseUs-image img{
    height: auto !important;
  }
  /*------ product-category ------*/
  .product-category{
    --bs-gutter-y: none !important;
    margin-top: -80%;
  }
  /*------ Our Products ------*/
  .products{
    --bs-gutter-y: none !important;
    margin-top: -45% !important;
  }
  .service-item .small{
    padding: 9px !important;
    font-size: 10px !important;
    border-radius: 32px !important;
  }
  .hidden-sm{
    display: none;
  }
  .visible-sm{
    display: inline-block;
  }
 
  /*------ testimonial ------*/
  .testimonial{
    --bs-gutter-y: none !important;
    margin-top: -30% !important;
  }
}

@media (max-width: 355px) {
/*------ breadcrumb ------*/
.breadcrumb-mobile{
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.breadcrumb-header{
  margin-top: 0px !important;
}
/*------ Logo ------*/
.main-logo{
  width: 150px !important;
  height: auto !important;
}
.footer-logo{
  width: 180px !important;
  height: auto !important;
}
/*------ banner ------*/
#header-carousel .carousel-item {
  position: relative;
  min-height: 200px !important;
}
.carousel-caption h4{
  font-size: 13px !important;
}
.carousel-caption p{
  font-size: 17px !important;
}
.carousel-caption button{
  font-size: 13px !important;
}
button {
  padding: 13px 15px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-width: 12px;
}
.navbar-toggler{
  border: 1px solid #feaa2b8c;
}
.navbar-toggler:focus{
  box-shadow: 5px 5px #feaa2b8c;
}
/*------ about us ------*/
.about-us{
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.about-us img{
  height: 70% !important;
  --bs-gutter-y: 0px;
}
.about-us .about-image{
  padding-top: 0px !important;
  padding-left: 0px !important;
}
.content {
--bs-gutter-y:none !important;
}
.about-content{
  margin-top: -90px !important;
}
.about-content p{
  margin-top: -1.25rem !important;
  margin-bottom: 2rem !important;
}
/*------ whyChooseUs ------*/
.whyChooseUs-image{
  padding-left: 0px !important;
  min-height: 210px !important;
}
.whyChooseUs-image img{
  height: auto !important;
}
/*------ product-category ------*/
.product-category{
  --bs-gutter-y: none !important;
  margin-top: -80% !important;
}
.product-category{
  --bs-gutter-y: none !important;
  margin-top: -80% !important;
}
/*------ Our Products ------*/
.products{
  --bs-gutter-y: none !important;
  margin-top: -45% !important;
}
.service-item .small{
  padding: 8px !important;
  font-size: 10px !important;
  border-radius: 32px !important;
}
.service-text{
  padding: 1rem !important;
}
.service-text h5{
  font-size: 1rem !important;
}
.hidden-sm{
  display: none;
}
.visible-sm{
  display: inline-block;
}
/* .breadcrumb-header{
  margin-bottom: 0px !important;
} */
.product-section{
  padding-bottom: 0px !important;
  padding-top: 0px !important;
}
/*------ Product Detsils ------*/
.product-details-section{
  padding-bottom: 0px !important;
  padding-top: 0px !important;
}
/*------ testimonial ------*/
.testimonial{
  --bs-gutter-y: none !important;
  margin-top: -20% !important;
}
.testimonial-section{
  padding-bottom: 0px !important;
  padding-top: 0px !important;
}
/*------ Team ------*/
.team-section{
  padding-bottom: 0px !important;
  padding-top: 0px !important;
}
/*------ Contact Us ------*/
.contact{
  padding-bottom: 0px !important;
  padding-top: 0px !important;
}
.contact .mobile-view{
  margin-left: 10px !important;
}
.contact .icon-box{
  width: 50px !important;
  height: 50px !important;
}
.contact .heading{
  font-size: 18px !important;
}
.contact .sub-heading{
  font-size: 18px !important;
}
}

@media (max-width: 400px) {
  /*------ breadcrumb ------*/
  .breadcrumb-mobile{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .breadcrumb-header{
    margin-top: 0px !important;
  }
  /*------ Logo ------*/
  .main-logo{
    width: 150px !important;
    height: auto !important;
  }
  .footer-logo{
    width: 180px !important;
    height: auto !important;
  }
  /*------ banner ------*/
  #header-carousel .carousel-item {
    position: relative;
    min-height: 200px !important;
  }
  .carousel-caption h4{
    font-size: 13px !important;
  }
  .carousel-caption p{
    font-size: 17px !important;
  }
  .carousel-caption button{
    font-size: 13px !important;
  }
  button {
    padding: 13px 15px;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-width: 12px;
  }
  .navbar-toggler{
    border: 1px solid #feaa2b8c;
  }
  .navbar-toggler:focus{
    box-shadow: 5px 5px #feaa2b8c;
  }
  /*------ about us ------*/
  .about-us{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .about-us img{
    height: 70% !important;
    --bs-gutter-y: 0px;
  }
  .about-us .about-image{
    padding-top: 0px !important;
    padding-left: 0px !important;
  }
  .content {
  --bs-gutter-y:none !important;
  }
  .about-content{
    margin-top: -90px !important;
  }
  .about-content p{
    margin-top: -1.25rem !important;
    margin-bottom: 2rem !important;
  }
  /*------ whyChooseUs ------*/
  .whyChooseUs-image{
    padding-left: 0px !important;
  }
  .whyChooseUs-image img{
    height: auto !important;
  }
  /*------ product-category ------*/
  .product-category{
    --bs-gutter-y: none !important;
    margin-top: -60%;
  }
  /*------ Our Products ------*/
  .products{
    --bs-gutter-y: none !important;
    margin-top: -20% !important;
  }
  .service-item .small{
    padding: 9px !important;
    font-size: 10px !important;
    border-radius: 32px !important;
  }
  .service-text{
    padding: 1rem !important;
  }
  .service-text h5{
    font-size: 1rem !important;
  }
  .hidden-sm{
    display: none;
  }
  .visible-sm{
    display: inline-block;
  }
  /* .breadcrumb-header{
    margin-bottom: 0px !important;
  } */
  .product-section{
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  /*------ Product Detsils ------*/
  .product-details-section{
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  /*------ testimonial ------*/
  .testimonial{
    --bs-gutter-y: none !important;
    margin-top: -20% !important;
  }
  .testimonial-section{
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  /*------ Team ------*/
  .team-section{
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  /*------ Contact Us ------*/
  .contact{
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  .contact .mobile-view{
    margin-left: 10px !important;
  }
  .contact .icon-box{
    width: 50px !important;
    height: 50px !important;
  }
  .contact .heading{
    font-size: 18px !important;
  }
  .contact .sub-heading{
    font-size: 15px !important;
  }
  
}

@media (max-width: 767px) {
  /*------ breadcrumb ------*/
  .breadcrumb-mobile{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .breadcrumb-header{
    margin-top: 0px !important;
  }
  /*------ Logo ------*/
  .main-logo{
    width: 150px !important;
    height: auto !important;
  }
  .footer-logo{
    width: 180px !important;
    height: auto !important;
  }
  /*------ Chart ------*/
  /* .select-place{
    width: 20px !important;
  } */
  /*------ banner ------*/
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }
  .carousel-caption h4{
    font-size: 17px;
  }
  .carousel-caption p{
    font-size: 27px;
  }
  .carousel-caption button{
    font-size: 13px !important;
  }
  button {
    padding: 13px 15px;
  }
  /*------ about us ------*/
  .about-us{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .about-us img{
    height: 70% !important;
    --bs-gutter-y: 0px;
  }
  .about-us .about-image{
    padding-top: 0px !important;
    padding-left: 0px !important;
  }
  .content {
  --bs-gutter-y:none !important;
  }
  .about-content{
    margin-top: -90px !important;
  }
  .about-content p{
    margin-top: -1.25rem !important;
    margin-bottom: 2rem !important;
  }
  /*------ whyChooseUs ------*/
  .whyChooseUs-image{
    padding-left: 0px !important;
  }
  .whyChooseUs-image img{
    height: auto !important;
  }
  /*------ product-category ------*/
  .product-category{
    --bs-gutter-y: none !important;
    margin-top: -20% !important;
  }
  .product-category{
    --bs-gutter-y: none !important;
    margin-top: -20% !important;
  }
  /*------ Our Products ------*/
  .products{
    --bs-gutter-y: none !important;
    margin-top: -20% !important;
  }
  .service-item .small{
    padding: 9px !important;
    font-size: 10px !important;
    border-radius: 32px !important;
  }
  .service-text{
    padding: 1rem !important;
  }
  .service-text h5{
    font-size: 1rem !important;
  }
  .hidden-sm{
    display: none;
  }
  .visible-sm{
    display: inline-block;
  }
  /* .breadcrumb-header{
    margin-bottom: 0px !important;
  } */
  .product-section{
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  /*------ Product Detsils ------*/
  .product-details-section{
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  /*------ testimonial ------*/
  .testimonial{
    --bs-gutter-y: none !important;
    margin-top: -20% !important;
  }
  .testimonial-section{
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  /*------ Team ------*/
  .team-section{
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  /*------ Contact Us ------*/
  .contact{
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  .contact .mobile-view{
    margin-left: 10px !important;
  }
  .contact .icon-box{
    width: 50px !important;
    height: 50px !important;
  }
  .contact .heading{
    font-size: 18px !important;
  }
  .contact .sub-heading{
    font-size: 15px !important;
  }
  
}