:root {
  --bs-primary: #ebbc62;
  --bs-secondary: #000;
}

.text-primary {
  color: #ebbc62 !important;
}

.text-dark {
  color: #000;
}

.bg-secondary {
  background-color: #ebbc62 !important;
}

a {
  color: #ebbc62;
}

a:hover {
  color: #fff;
}

.btn-primary {
  color: #000;
  background-color: #000;
  border-color: #000;
}

.btn-primary:hover {
  color: #fff;
  background-color: #ebbc62;
  border-color: #ebbc62;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  color: #000;
  background-color: #ebbc62;
  border-color: #ebbc62;
}

.form-control:focus {
  box-shadow: none;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  box-shadow: none;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup {
  padding: 4rem 0;
  z-index: 1021;
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: flex-start;
}

.popup-content {
  animation: fadeIn 0.3s ease;
}

.popup-content .popup-inner {
  background-image: url(/img/popup-bg.png);
  background-size: cover;
  border-radius: 12px;
  background-position: right;
  width: 350px;
}

.close {
  width: 40px;
  height: 40px;
  padding: 14px;
  top: -20px;
  font-size: 25px;
  cursor: pointer;
  right: -15px;
}

.popup .appointment {
  width: 92%;
  border-radius: 10px;
}

.popup h1 {
  font-size: 32px;
}

/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

.bg-black {
  background-color: #000;
}

.text-black {
  color: #000;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-primary-outline-0 {
  border: 0;
  color: var(--bs-white) !important;
}

.btn-light-outline-0 {
  border: 0;
  color: var(--bs-primary) !important;
  border: 1px solid var(--bs-primary);
}

.btn-primary-outline-0:hover {
  background: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}

.btn-light-outline-0:hover {
  background: var(--bs-secondary) !important;
  color: var(--bs-white) !important;
  border: 1px solid #000;
}

/*** Topbar Start ***/
.sticky-top {
  transition: 0.5s;
  background: var(--bs-white);
}

.topbar {
  padding: 10px 0;
  background: var(--bs-secondary) !important;
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
  padding: 10px 15px;
  font-size: 16px;
  transition: 0.5s;
  color: white;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
}


.hds-input-popup input,
.hds-input-popup select {
  color: #3f3f3f;
}

.hds-input-popup input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0);
}

.hds-input-popup input::placeholder,
.hds-input-popup textarea::placeholder {
  color: #3f3f3f;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    transition: 0.5s;
    opacity: 0;
  }

  .popup {
    align-items: center !important;
  }

  .popup .btn-primary {
    border: 0 !important;
  }

  .popup .appointment {
    width: 885px !important;
  }

  .popup h1 {
    font-size: 50px !important;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-secondary);
  color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light) !important;
  border-radius: 10px !important;
  transition: 0.5s;
  opacity: 1;
}

#searchModal .modal-content {
  background: rgba(250, 250, 250, 0.6);
}

.sticky-top.shadow-sm {
  background-color: #402d22 !important;
}

/*** Navbar End ***/

/*** Carousel Start ***/
/* .carousel-inner {
  overflow: inherit !important;
} */

.carousel-item {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
}

.carousel-item .container {
  padding-bottom: 5rem;
}

.carousel-item::before {
  content: '';
  position: absolute;
  background-image: url(/img/banner1.png);
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.carousel-item:nth-child(2)::before {
  background-image: url(/img/banner2.png);
}

.carousel-item:last-child::before {
  background-image: url(/img/banner3.png);
}

@media (min-width: 375px) {

  .carousel-item::before {
    background-size: cover;
    background-position: center;
  }

  .carousel-item h1 {
    font-size: 30px !important;
  }
}

.banner-btn {
  width: 55px;
  height: 55px;
  display: none;
  padding: 15px !important;
}


.carousel-item .banner-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.carousel-item .carousel-caption {
  display: flex;
  position: relative;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 0;
}

.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
  background: transparent;
}

#carouselId .carousel-indicators {
  padding-bottom: 30px;
}

#carouselId .carousel-indicators li {
  border-top: 10px solid var(--bs-white);
  border-bottom: 10px solid var(--bs-white);
  border-right: 5px solid var(--bs-white);
  border-left: 5px solid var(--bs-white);
  margin-right: 10px;
  border-radius: 10px;
  transition: 0.5s;
}

#carouselId .carousel-indicators li.active {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  border-right: 15px solid var(--bs-primary);
  border-left: 15px solid var(--bs-primary);
}

/*** Carousel End ***/

.bg-breadcrumb {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(/img/appointment-background.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}


/*** Services Start ***/

.services .services-item {
  transition: 0.5s;
}

.services .services-item .services-content h3 {
  color: #ebbc62;
}

.services .services-item .services-content p {
  color: white;
}

.services-outer .services-item .services-content p {
  color: black;
}

.services .services-item:hover {
  background: rgb(45, 25, 12) !important;
  border-color: var(--bs-secondary) !important;
}

.services .services-item:hover .services-content p,
.services-outer .services-item:hover .services-content p,
.services .services-item:hover .services-content h3 {
  color: var(--bs-white);
  transition: 0.5s;
}

.services .services-item:hover .services-content a.btn {
  /* background: var(--bs-white); */
  color: var(--bs-primary) !important;
}

.services .services-item:hover .services-content a.btn:hover {
  color: var(--bs-white) !important;
}

.services .services-item .services-img {
  overflow: hidden;
  height: 199px;
  position: relative;
}

.services .services-item .services-img::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  transition: 0.5s ease;
  height: 100%;
  bottom: 0;
  z-index: 1;
}

.services .services-item .services-img img {
  transition: 0.5s;
  filter: brightness(0.6);
}

.services .services-item .services-img img:hover {
  transform: scale(1.3);
}

/*** Services End ***/

/*** About Start ***/
.about .sandeep-image{
  width: 440px;
}
.about .tools-image{
  width: 300px;
}
/*** Youtube Video start ***/
.video {
  position: relative;
  padding-right: 70px;
  padding-bottom: 70px;
  border-radius: 10px;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -45%);
  margin-left: -35px;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-secondary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-primary);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--bs-white);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

.navbar-light .navbar-brand {
  width: 120px;
}

.navbar-light .navbar-brand img {
  width: 100%;
  height: 100%;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Youtube Video End ***/
/*** About End ***/

/*** Appointment  Start ***/
.appointment {
  background: url(/img/appointment-background.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.appointment .appointment-form {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  object-fit: cover;
  border-radius: 10px;
}

.appointment .appointment-time {
  background: linear-gradient(rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.2));
  object-fit: cover;
  border-radius: 10px;
}

/*** Appointment End ***/

/*** Counter Start ***/
.counter-section .counter-item .counter-content {
  position: relative;
  margin-bottom: 60px;
  border-radius: 10px;
  z-index: 9;
}

.counter-section .counter-item .counter-content img {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
}

.counter-section .counter-item .counter-content i {
  font-size: 50px;
}

.counter-section .counter-item .counter-content h5 {
  font-size: 18px;
  margin: 0;
}

.counter-section .counter-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.5) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  object-fit: cover;
  border-radius: 0 20% 0 20%;
}

.counter-section .counter-item .counter-content .svg-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -50px;
  margin-left: -45px;
  transform: rotate(180deg);
}

.counter-section .counter-item .counter-quantity p {
  color: black;
  margin-bottom: 0;
  font-size: 15px;
}

/*** Counter End ***/
.expect {
  background-image: url(/img/expect-bg.jpeg);
  background-size: cover;
  background-position: center;
}

.expect .counter-item {
  background: transparent !important;
}

.expect .counter-item p,
.expect .counter-item h3 {
  color: white !important;
}

.expect .counter-item h3 {
  font-size: 26px !important;
}

.expect .counter-item .counter-content {
  background-color: transparent !important;
  padding: 0 !important;
  margin-bottom: 1.5rem !important;
}

/*** Events Start ***/
.gallery .tab-class .nav-item {
  padding: 0 0 20px 0;
}

.gallery .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
  color: #000000 !important;
}

.gallery .gallery-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-img img {
  transition: 0.5s;
}

.gallery .gallery-img:hover img {
  transform: scale(1.3);
}

.gallery .gallery-img .gallery-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
}

.gallery .gallery-img .search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
  z-index: 2;
}

.gallery .gallery-img:hover .gallery-overlay,
.gallery .gallery-img:hover .search-icon {
  opacity: 1;
}

/*** Events End ***/

/*** Pricing Start ***/
.pricing {
  background: url(/img/appointment-background.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pricing .pricing-item {
  color: var(--bs-white);
}

.pricing .pricing-item .pricing-content {
  background: rgba(255, 255, 255, 0.4);
}

.pricing .owl-carousel.pricing-carousel {
  position: relative;
}

.pricing .owl-carousel.pricing-carousel .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  font-size: 40px;
  color: var(--bs-white);
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev {
  margin-right: 40px;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next {
  transition: 0.5s;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev:hover,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next:hover {
  color: #000;
}

/*** Pricing End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 95%;
  margin: auto;
}

.team .owl-stage-outer {
  padding: 0;
}

.team .team-carousel {
  margin: auto;
}

.team .team-carousel .owl-nav {
  display: flex;
  justify-content: center;
}

.team .team-carousel .owl-nav .owl-prev {
  font-size: 50px;
  line-height: 1;
}

.team .team-carousel .owl-nav .owl-next {
  font-size: 50px;
  line-height: 1;
  margin-left: 2rem;
}

.team .team-item .team-text {
  background: var(--bs-primary);
}

.team .team-item .team-social {
  position: absolute;
  top: -180px;
  left: 20px;
  opacity: 0;
  transition: 0.5s;
}

.team .team-item:hover .team-social {
  top: 20px;
  left: 20px;
  opacity: 1;
}

.team .team-item .team-img img {
  position: relative;
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 330px;
  overflow: hidden;
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
}

.team .team-item:hover .team-img::after {
  bottom: 0;
  height: 100%;
}

.team .team-item .team-text {
  transition: 0.5s;
}

.team .team-item .team-text h3 {
  font-size: 23px;
}

.team .team-item:hover .team-text {
  background: var(--bs-secondary);
}

/*** Team End ***/


/*** testimonial Start ***/

/*** testimonial Start ***/
.testimonial {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/img/testimonial-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial .testimonial-item {
  background: rgba(0, 0, 0, 0.4);
}

.testimonial .testimonial-item .testimonial-content p {
  min-height: 90px;
}

.testimonial .owl-carousel.testimonial-carousel {
  position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  font-size: 40px;
  color: var(--bs-white);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
  margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
  transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--bs-primary);
}

/*** testimonial end ***/


/*** testimonial Start ***/
.testimonial-outer.testimonial {
  background-image: none;
}

.testimonial-outer.testimonial .testimonial-item {
  background: linear-gradient(45deg, rgb(45, 25, 12), rgb(189, 146, 120));
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: 1s all;
  margin-top: 2rem;
}

.testimonial-outer.testimonial .testimonial-item:last-child {
  margin-right: 0 !important;
}

.testimonial-outer.testimonial .testimonial-item:hover {
  background-size: 100% 100%;
}

.testimonial-outer.testimonial .testimonial-item .testimonial-content p,
.testimonial-outer.testimonial .testimonial-item .testimonial-text {
  transition: 1s all;

}

.testimonial-outer.testimonial .testimonial-item:hover .testimonial-content p,
.testimonial-outer.testimonial .testimonial-item:hover .testimonial-text {
  color: white;

}

.testimonial-outer.testimonial .owl-carousel.testimonial-carousel {
  position: relative;
}

.testimonial-outer.testimonial .owl-carousel.testimonial-carousel .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  font-size: 40px;
  color: var(--bs-white);
}

.testimonial-outer.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
  margin-right: 40px;
}

.testimonial-outer.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial-outer.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
  transition: 0.5s;
}

.testimonial-outer.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-outer.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--bs-primary);
}

/*** testimonial end ***/


/*** Contact Start ***/
.contact {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/img/appointment-background.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact .contact-form {
  background: rgba(255, 255, 255, 0.6);
}

/*** Contact End ***/

/*** footer start ***/
.footer {
  background: var(--bs-dark);
}

.footer .footer-item a,
.footer .footer-item p {
  color: var(--bs-white);
  line-height: 40px;
  font-size: 16px;
  transition: 0.5s;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark) !important;
}
.banner-btntext{
  display: none;
}
.form-inner{
    padding: 2rem 1rem;
    border-radius: 12px;
    background: rgb(45 25 12 / 29%);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus{
  color: white !important;
}

.display-3, .display-4{
  font-size: 40px;
}

@media (min-width: 768px) {
  
.banner p{
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
  .carousel-item{
    height: calc(100vh - 90px);
  }
}

@media (min-width: 1200px) {
  .navbar .navbar-collapse .border-top {
    border-top: none !important;
  }

  .carousel-item {
    height: calc(100vh - 157px);
    padding: 6rem 0;
  }

  .carousel-item h1 {
    font-size: 40px !important;
  }

  .banner-btn {
    display: flex;
  }

.banner-btntext{
  display: flex;
}

  .popup-content .popup-inner {
    width: 500px;
  }


  .testimonial-outer .testimonial-item {
    width: 31%;
    margin-right: 2rem;
  }
 
  .testimonial-outer .testimonial-item:nth-of-type(3n){
    margin-right: 0;
  }
 
  .testimonial-outer .testimonial-item .testimonial-content p {
    min-height: 120px;
    font-size: 18px !important;
    line-height: 30px
  }
}

        .input-error {
            border: 1px solid red !important;
            color: red !important;
        }
        .input-error::placeholder {
            color: red !important;
        }

        .applyBtn {
            color: #fff;
            background-color: #ebbc62;
            border-color: #ebbc62;
        }

/*** copyright end ***/