/* Variables Import */
@import "./variables.css";

/* NAVBAR */

/* .navbar-collapse.collapse {
  position: static;
} */

/* Sidebar */
.sidebar {
  padding: 20px;
  color: var(--dark);
  width: 300px;
  height: 100%;
  background-color: var(--light);
  position: fixed;
  top: 0px;
  right: -300px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: ease 0.4s;
  overflow-y: scroll;
}

.fa-times {
  text-align: right;
  font-size: 30px;
  cursor: pointer;
  transition: 0.5s ease;
}

.fa-times:hover {
  color: var(--primary);
}

.sidebar-icons {
  color: var(--light);
  background-color: var(--secondary);
  border-radius: 50%;
  justify-content: center;
  display: flex;
  align-items: center;
  min-width: 50px;
  min-height: 50px;
  vertical-align: middle;
}

.sidebar-icons i {
  font-size: 25px;
}

.sidebar-heading {
  font-weight: 700;
}

.sidebar-links {
  padding: 10px 0;
  display: inline-block;
  color: var(--dark);
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  transition: ease 0.4s;
}

.sidebar-links:hover {
  color: var(--primary);
}

.sidebar-nav {
  padding-top: 18px;
  height: 90%;
  position: relative;
}

.whatsapp-btn {
  background-color: #25d366;
  padding: 10px 20px;
  color: var(--light);
  position: absolute;
  bottom: 0;
  font-size: 16px;
  border-radius: 10px;
  width: 100%;
}

.whatsapp-btn:hover {
  color: var(--light);
  background-color: var(--dark);
}

.banner.deep-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  transition: ease 0.5s;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.offcanvas {
  width: 340px;
}

/* new sidebar css */
.sidebar-section {
  width: 100%;
  height: 100%;
}

.sidebar-overlay {
  /* position: fixed; */
  /* top: 0; */
  /* left: 0; */
  width: calc(100%-300px);
  height: 100%;
  z-index: 10000;
  background: red;
}

/* HEADER */
.header {
  position: absolute;
  z-index: 10;
  top: 0px;
  left: 0;
  width: 100%;
}

.header .navbar {
  background-color: var(--light);
  position: relative;
  border-radius: 12px;
  top: 70px;
  padding: 6px 0;
  box-shadow: 0px 0px 7px 0 #00000030;
  height: 60px;
}

.header .navbar-brand {
  width: 150px;
  position: absolute;
  left: 15px;
}

.header .contact {
  font-family: var(--sans-serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  color: var(--dark);
  padding: 10px 20px;
  border: 2px solid var(--primary);
  border-radius: 10px;
  transition: ease 0.4s;
}

.header .menu-icon {
  background-color: var(--primary);
  /* background-color: transparent; */
  padding: 10px 15px;
  border-radius: 10px;
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: 1px solid var(--primary);
}

.header .menu-icon span {
  /* color: #ffac12; */
  color: #040404;
}

.header .menu-icon i {
  font-size: 22px;
  width: 30px;
  display: block !important;
  color: #ffac12;
  color: #040404;
}

.header .menu-icon:hover {
  background-color: #ffac12;
}

.header .menu-icon:hover span,
.header .menu-icon:hover i {
  color: #040404;
}

.navbar-collapse {
  width: calc(100% - 180px);
  flex-grow: 0;
  margin: auto 0 auto auto;
}

.header .links {
  font-family: var(--sans-serif);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  transition: 0.4s ease;
  color: var(--dark);
  margin-right: 30px;
}

.banner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* background: url("../images/banner/banner.jpg") center top; */
  background-size: cover;
}

.banner::before {
  /* content: "";
  position: absolute;
  width: 100%;
  background: linear-gradient(to top, #ffffff, #fff3, #fff5);
  height: 100%;
  z-index: 2; */
}

.banner .banner-carousel {
  pointer-events: none;
  pointer-action: none;
}
.banner .banner-carousel .carousel-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.banner .banner-carousel .carousel-item img {
  height: 100vh;
  object-fit: cover;
  object-position: top;
}
.banner .banner-carousel .carousel-item .text-box {
  position: absolute;
  bottom: 7%;
  left: 1%;
  width: 575px;
  background-color: #ffac12e0;
  padding: 15px 20px;
  border-radius: 10px;
}
.banner .banner-carousel .carousel-item .text-box .title {
  color: var(--light);
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
}
.banner .banner-carousel .carousel-item .text-box h4 {
  color: var(--light);
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 400;
}

.header .contact:hover {
  color: var(--primary);
}

.header .links:hover {
  color: var(--primary);
}

.navbar-toggler {
  position: absolute;
  right: 20px;
  padding: 0.25rem;
}

.sidebar-toggle {
  position: absolute;
  right: 12px;
  width: 20px;
  display: none;
}

.sidebar-toggle i {
  font-size: 26px;
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 2px var(--primary);
}

.dropdown-menu.show {
}

.header .navbar .navbar-nav .dropdown-menu li a {
  padding: 10px 12px;
  display: inline-block;
  border-bottom: 1px dashed var(--dark-alt);
  transition: 0.5s all ease;
}

.header .navbar .navbar-nav .dropdown-menu {
  /* top: 0; */
  padding: 0;
  border: 0;
  border-bottom: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

/* CARDS SECTION */
.cards {
  padding: 100px 0;
}

.cards .container {
  position: relative;
}

.cards .card-box {
  position: relative;
  transition: 0.4s ease;
  z-index: 100;
  margin: 0 auto;
  max-height: 450px;
  height: 100%;
  max-width: 400px;
  border-radius: 14px;
  overflow: hidden;
}

.cards .card-text {
  margin-top: 20px;
  position: relative;
  text-align: center;
  color: var(--dark);
  font-family: var(--sans-serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  margin: 0 auto;
  margin-top: 20px;
  width: 95%;
  /* text-shadow: 1px 1px 2px #9b8f8f; */
  z-index: 4;
}

.card-box .card-image {
  transition: ease 0.4s;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.card-box:hover {
  transform: scale(1.01);
}

/* .card-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
  z-index: 3;
} */

.image-one {
  position: absolute;
  width: 120px;
  bottom: 20px;
  left: -25px;
  z-index: 0;
}

.image-two {
  position: absolute;
  width: 300px;
  top: -119px;
  right: 283px;
  z-index: 0;
}

/* ABOUT US SECTION */

.about-us {
  padding: 100px 0;
  position: relative;
  background: var(--lighter-pink);
  z-index: 1;
}

.wave-two img {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 10;
}

.wave-one img {
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 10;
}

/* .about-us::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #272727, transparent, transparent);
  z-index: 2;
} */

.about-us-text {
  /* color: var(--light); */
  position: relative;
  z-index: 3;
}

.about-us-text .para-text {
  position: relative;
  /* color: var(--light); */
}

.about-us-text .title {
  margin-bottom: 10px;
}

.about-us-text .para-text {
  margin-bottom: 10px;
}

.image-box {
  overflow: hidden;
  border-radius: 14px;
}
.image-box.sticky {
  position: sticky;
  top: 20px;
}
.image-box img {
  min-height: 380px;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.read-more {
  padding: 8px 25px;
  color: var(--light);
  background-color: var(--primary);
  border-radius: 10px;
  border: 1px solid var(--primary);
  outline: none;
  margin: 10px 0;
  display: inline-block;
  transition: 0.4s ease;
}

.read-more:hover {
  color: var(--primary);
  background-color: var(--light);
}

/* SERVICES SECTION */
.services .title {
  color: var(--primary);
}

.services {
  padding: 80px 0 100px 0;
  background: url("../images/new_bg/new2.png"), rgba(255, 255, 255, 0.8);
  background-repeat: repeat;
  background-position: center center;
}

.services .tertiary-heading {
  color: var(--dark);
}

.services .para-text {
  color: var(--dark-alt);
}

.services .para-text a {
  transition: 0.3s ease;
}

.services .boy-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 300px;
  height: 200px;
  user-select: none;
}

.services .boy-1 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 300px;
  height: 200px;
  user-select: none;
}

.services .boy-1 {
}

.icon {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.icon.light-green {
  background-color: var(--light-green);
}

.icon.light-pink {
  background-color: var(--light-pink);
}

.icon img {
  width: 90%;
  height: 90%;
  padding: 10px;
}

.card-title-text {
  font-family: var(--sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #5c5c5c;
  margin: 10px 0;
}

.arrow {
  width: 10px;
}

.learn-more {
  font-family: var(--sans-serif);
  color: #000000;
  display: block;
  text-align: right;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  right: 20px;
  transition: 0.5s ease;
  text-decoration: none;
}

.learn-more:hover {
  color: var(--primary);
}

.card-tile.light-pink {
  background-color: var(--light-pink);
}

.card-tile.light-green {
  background-color: var(--light-green);
}

.icon-box {
  padding-right: 20px;
}

.my-card .card-tile {
  height: 100%;
  position: relative;
  padding: 16px 16px 20px 16px;
  border-radius: 14px;
  transition: 0.5s ease;
}

.my-card .card-tile:hover {
  box-shadow: var(--shadow);
}

/* Choose Us Section */
.choose-us {
  padding: 100px 0px;
  position: relative;
  background-color: var(--lighter-green);
  z-index: 1;
}

/* .choose-us::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to left, rgb(0 0 0 / 41%), rgb(0 0 0 / 32%), rgb(0 0 0 / 0%));
  z-index: 3;
} */

.choose-us .sub-heading,
.choose-us .para-text,
.choose-us .read-more,
.choose-us .choose-us-heaading {
  /* color: var(--light); */
  position: relative;
  z-index: 4;
}

.choose-us .choose-us-heaading {
  margin: 15px 0 10px 0;
  font-weight: 500;
  font-size: 24px;
}

.choose-us .para-text:not(:last-child) {
  margin-bottom: 30px;
}

.choose-us .read-more {
  margin: 0;
}

.choose-us .read-more:hover {
  color: var(--primary);
}

/* Testimonials */
/* .testimonials {
  padding: 100px 10px 120px 10px;
}

.testimonial-heading {
  position: relative;
  padding-top: 50px;
}

.testimonial-heading::before {
  position: absolute;
  content: "";
  top: 10px;
  left: -30px;
  background: url("../images/testimonials/quotes.svg") no-repeat;
  width: 100px;
  height: 100px;
}

.testimonials .row {}

.testimonials .container {
  position: relative;
  background-color: #4DC4CE;
  border-radius: 0px 100px 100px 100px;
}

.control-buttons img {
  width: 50px;
  height: 50px;
}

.testimonial-box {
  padding: 20px 10px 20px 40px;
  position: relative;
  height: 400px;
}

.flip {
  transform: scaleX(-1);
}

.testimonials-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}

.testimonials-image img {
  position: relative;
  top: 60px;
  max-width: 300px;
}

.testimonial-box .sub-heading,
.testimonial-box .para-text {
  color: var(--light);
}


.testimonial-box .sub-heading {
  margin-bottom: 20px;
}

.testimonial-box .para-text {
  margin-bottom: 20px;
}

.italic-text {
  font-style: italic;
} */

/* Testimonials Section */
.testimonials {
  padding: 100px 0px 100px 0px;
}

.testimonial-heading {
  position: relative;
  padding-top: 50px;
}

.testimonial-heading::before {
  position: absolute;
  content: "";
  top: 10px;
  left: -30px;
  background: url("../images/testimonials/quotes.svg") no-repeat;
  width: 100px;
  height: 100px;
}

.testimonials .row {
}

.testimonials .container {
  position: relative;
  background-color: #4dc4ce;
  border-radius: 0px 100px 100px 100px;
}

.control-buttons img {
  width: 40px;
  height: 40px;
}

.testimonial-box {
  padding: 20px 10px 20px 40px;
  position: relative;
  height: 400px;
}

.flip {
  transform: scaleX(-1);
}

.testimonials-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials-image img {
  position: relative;
  top: 60px;
  max-width: 300px;
}

.testimonial-box .sub-heading,
.testimonial-box .para-text {
  color: var(--light);
}

.testimonial-box .sub-heading {
  margin-bottom: 20px;
}

.testimonial-box .para-text {
  margin-bottom: 20px;
}

.testimonials .testimonial-btn {
  font-size: 12px;
  text-transform: capitalize;
  padding: 8px 14px;
  border-radius: 5px;
  color: #000;
  display: block;
  margin-top: 23px;
  background: var(--primary);
}

@media only screen and (max-width: 768px) {
  .testimonial-flex {
    flex-direction: column !important;
    align-items: start !important;
    gap: 5px;
    justify-content: flex-start;
  }

  .testimonial-box .sub-heading {
    margin-bottom: 0 !important;
  }

  .testimonial-btn {
    margin-top: 0 !important;
    margin-bottom: 10px;
  }
}

.italic-text {
  font-style: italic;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-next,
.carousel-control-prev {
  position: relative;
  z-index: 1;
  width: fit-content;
  opacity: 1;
}

.carousel-box {
  height: 180px;
  overflow: auto;
}

.control-buttons {
  gap: 10px;
  align-items: center;
}

/* Footer Section */
.brand-logo img {
  width: 150px;
  height: 150px;
}

.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 0px 0 23px 0;
  position: relative;
}

.footer-links li {
  padding: 0 0 10px;
  font-style: normal;
  transition: all 0.4s;
  font-family: var(--sans-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}

.footer-links li a {
  color: #bda8a8;
  transition: all 0.4s;
}

.footer-links li:hover {
  transform: translateX(6px);
}

.footer .para-text {
  color: #bda8a8;
}

.socials i {
  font-size: 30px;
  margin-right: 15px;
  color: #ffe5b6;
  transition: all 0.4s;
}

.socials i:hover {
  transform: translateX(6px);
}

.socials {
  margin-top: 20px;
}

.footer .container {
  position: relative;
}

.appointment-btn {
  padding: 8px 15px;
  color: var(--dark);
}

.appointment-box {
  background-color: var(--secondary);
  padding: 30px;
  margin-bottom: 80px;
  border-radius: 25px;
}

.footer::after {
  content: "";
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background-color: var(--light);
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-text {
  border-top: 1px solid #877c7c;
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
}

.footer-icons {
  font-size: 20px;
  color: #bda8a8;
}

.footer-icons i {
  font-size: 20px;
}

.main-footer-texts {
  padding-bottom: 50px;
}

.footer-heading {
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: bold;
}

.appointment-text {
  font-family: var(--sans-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--light);
}

/* .footer-links {
  margin-top: 70px;
} */

/* CAROUSEL */

/* .carousel-control-next {
  right: 0;
}

.control-buttons {
  display: flex;
  top: 10px;
  position: relative;

}

.carousel-control-next {
  position: relative;
  z-index: 1;
  width: 8%;
  padding: 0;
  opacity: 1;
  color: #fff;
  transition: opacity .15s ease;
}

.carousel-control-prev {
  position: relative;
  z-index: 1;
  width: 8%;
  padding: 0;
  opacity: 1;
  color: #fff;
  transition: opacity .15s ease;
  margin-right: 30px;
}

.carousel-box {
  height: 180px;
  overflow-y: scroll;
} */

/* Media Queries */
/* @media only screen and (min-width: 1800px) {
  .about-us .container {
    padding: 100px 0;
  }

  .choose-us .container {
    padding: 100px 0;
  }
} */

@media only screen and (max-width: 991px) {
  .footer .sub-heading {
    text-align: center;
  }

  .navbar-collapse {
    background-color: var(--light);
    color: var(--light);
    padding: 10px;
    transition: none;
    border-radius: 10px;
    position: absolute;
    top: 100%;
    width: 100%;
  }

  .footer .appointment-text {
    text-align: center;
  }

  .menu-icon {
    display: none !important;
  }

  .navbar-toggler {
    right: 45px;
  }

  .sidebar-toggle {
    display: inline-block;
    vertical-align: middle;
  }
}

/* @media only screen and (max-width: 1023px) {
  .banner {
    background: url("../images/banner/banner_image.jpg") center center/cover;
  }
} */

@media only screen and (max-width: 767px) {
  .about-us {
    padding: 80px 0;
  }

  .brand-logo img {
    width: 100px;
    height: 100px;
  }

  .footer {
    padding: 50px 0 23px 0;
  }

  .footer-text {
    font-size: 12px;
  }

  .header .navbar {
    height: 60px;
  }

  .services {
    padding: 80px 0 95px 0;
  }

  .testimonials {
    padding: 80px 10px 80px 10px;
  }

  .testimonial-box {
    padding: 20px 15px 20px 15px;
    position: relative;
    height: 400px;
  }

  .control-buttons {
    position: relative;
    top: 20px;
  }

  .testimonials-image img {
    width: 250px;
  }

  .choose-us::before {
    background: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.4)
    );
  }

  .navbar-brand img {
    width: 100px;
  }

  .navbar {
    position: relative;
    top: 20px;
  }

  .header-box {
    /* width: 100%; */
    height: 55px;
  }

  .header {
    padding: 0 10px;
  }

  .banner {
    height: 80vh;
  }
  .banner .banner-carousel .carousel-item img {
    height: 80vh;
  }

  .choose-us {
    padding: 100px 0px;
    position: relative;
    /* background: url("../images/choose-us/choose-us.jpg") no-repeat center center/cover; */
    z-index: 1;
  }

  .cards {
    padding: 50px 0;
  }

  .tertiary-heading {
    font-size: 20px !important;
  }

  .testimonials-image img {
    top: 30px;
  }

  .appointment-box {
    margin-bottom: 50px;
    padding: 10px;
  }

  /* ABOUT US PAGE */
  .about-us-heading,
  .services-section-heading {
    font-size: 40px !important;
  }

  .about-us-main-section .sub-heading {
    font-size: 32px !important;
  }

  .why-choose-us .sub-heading {
    font-size: 32px !important;
  }

  .choose-us-box {
    flex-direction: column;
  }

  /* SERVICES PAGE */
  .services-section .sub-heading {
    font-size: 32px !important;
  }
}

/* ABOUT US PAGE */
.about-us-banner.deep-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  transition: ease 0.5s;
}

.about-us-banner {
  position: relative;
  top: 0;
  left: 0;
  height: 400px;
  z-index: 1;
}

.about-us-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-position: center;
  object-fit: cover;
  height: 100%;
}

.about-us-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  background: linear-gradient(
    to top,
    #00000054,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.122)
  );
  height: 100%;
  z-index: 2;
}

.about-us-heading,
.services-section-heading {
  /* text-align: center; */
  color: var(--light);
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 35px;
  z-index: 9;
  text-align: center;
  transform: translateY(200px);
  position: relative;
}

.about-us-main-section {
  padding: 100px 0 10px 0;
}

.about-us-main-section .sub-heading {
  color: var(--primary);
  font-size: 36px;
}

.about-us-main-section .about-us-page-img {
  border-radius: 12px;
  overflow: hidden;
}

.about-us-page-img img {
  transition: all 0.5s ease-in-out;
}

.about-us-page-img img:hover {
  scale: 1.1;
  transition: all 0.5s ease-in-out;
}

.about-us-main-section .para-text {
  margin-bottom: 15px;
}

.about-us-main-section .navbar {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.choose-us-icon img {
  width: 60px;
  height: 60px;
}

.choose-us-card {
  border: 1px solid var(--primary);
  background-color: #fff;
  padding: 18px;
  border-radius: 12px;
}

.choose-us-cards-heading {
  color: var(--primary);
}

.why-choose-us .sub-heading {
  /* font-size: 40px; */
}

.why-choose-us {
  background-image: linear-gradient(
      to bottom,
      rgba(245, 246, 252, 0.32),
      rgba(255, 255, 255, 0.38)
    ),
    url("../images/new_bg/new1.png");
}

.about-us-page-img {
  height: 350px;
}

.about-us-page-img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-us-page-img_1 {
  width: 100%;
  background: #000000;
  text-align: center;
}
.about-us-page-img_1 img {
  width: 365px;
  text-align: center;
  margin: auto;
}
/* SERVICES PAGES */
.services-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-position: center;
  object-fit: cover;
  height: 100%;
}

.services-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  background: linear-gradient(
    to top,
    #00000054,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.122)
  );
  height: 100%;
  z-index: 2;
}

.services-banner {
  position: relative;
  height: 400px;
  z-index: 1;
}

.services-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  background: linear-gradient(
    to top,
    #00000054,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.122)
  );
  height: 100%;
  z-index: 2;
}

.services-banner.deep-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  transition: ease 0.5s;
}

.services-section {
  padding: 100px 0 100px 0;
}

.why-choose-us {
  padding-bottom: 100px;
}

.services-section .sub-heading {
  color: var(--primary);
}

.services-section .service-image {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 22px;
}

.service-image img {
  transition: transform 0.5s ease-in;
  object-position: center;
  object-fit: cover;
}

.service-image:hover img {
  transform: scale(1.02);
}

.services-section .para-text {
  margin-bottom: 15px;
}

.service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.212),
    rgba(0, 0, 0, 0.1)
  );
  border-radius: 14px;
  z-index: 3;
}

.service-image.pediatrician {
  height: 400px;
}

.service-image.pediatrician img {
  height: 100%;
  object-fit: cover;
}

/* .services-section .tertiary-heading {
  font-size: 23px;
} */

/* .services-section .sub-heading {
  font-size: 37px;
} */

/* Adoloscent Page Css */
.adoloscent-image {
  height: 400px;
  object-position: center;
  object-fit: cover;
}

#adolescent-section {
  padding: 70px 0 10px 0;
}

/* Contact Us Page */
.contact-us-image {
  position: relative;
  height: 100%;
}

.contact-us-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
  z-index: 3;
}

.contact-us-image img {
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.contact-us-box {
  border-radius: 100px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.form-label {
  margin: 5px 0;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 0.1rem var(--primary);
}

.submit-button {
  padding: 8px 25px;
  color: var(--light);
  background-color: var(--primary);
  border-radius: 10px;
  border: 1px solid transparent;
  outline: none;
  margin: 0;
  display: inline-block;
  transition: 0.4s ease;
}

.contact-us-main-section {
  padding: 100px 0 10px 0;
}

.contact-us-main-section .sub-heading {
  color: var(--primary);
}

.contact-details i {
  font-size: 35px;
}

.contact-details a {
  color: rgb(92, 92, 92);
}

.contact-details .text-center.d-flex {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 30px 0 #0001;
  height: 100%;
}

.contact-details {
  padding: 100px 0;
}

/* FAQ ACCORDIONS */
.accordion-button:focus {
  z-index: 3;
  border-color: rgb(134, 183, 254);
  outline: 0px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #4dc4ce54;
  box-shadow: none !important;
}

/* GALLERY SECTION */
.events {
  background: url("../images/new_bg/new1.png");
}

.events .image {
  height: 300px;
}

.events .sub-heading {
  color: #ffac12;
}

.events .image img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.events .image {
  width: 100%;
  position: relative;
  overflow: visible;
  text-align: center;
  margin-bottom: 50px;
}

.events .image img:nth-child(1) {
  position: relative;
  width: 100%;
  transform: rotate(0);
  transition: 0.5s ease all;
  z-index: 2;
}
.event-gallery-modal .carousel-item {
  height: 100%;
}
.event-gallery-modal .carousel-item img {
  object-fit: cover;
  height: 100%;
}
.event-gallery-modal .carousel-inner {
  height: 600px;
}
.events .image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 90%;
  transform: rotate(0);
  transition: 0.5s ease all;
}

.events .image:hover img:nth-child(1) {
  transform: rotate(5deg);
}

.events .image:hover img:nth-child(2) {
  transform: rotate(-5deg);
}

/* GALLERY SECTION */
.event-gallery-modal .modal-dialog {
  max-width: 750px;
  height: 600px;
}
.event-gallery-modal .modal-header {
  background: var(--secondary);
  border: 0;
}
.event-gallery-modal .modal-header h5 {
  color: var(--light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.event-gallery-modal .modal-dialog .modal-body {
  padding: 0px !important;
}
.event-gallery-modal .btn-close {
  background: unset;
  opacity: 1;
  position: absolute;
  right: -35px;
  z-index: 9;
  top: 10px;
  opacity: 0.8;
}
.event-gallery-modal .btn-close i {
  color: var(--light);

  font-size: 24px;
}
.event-gallery-modal .carousel-control-prev,
.event-gallery-modal .carousel-control-next {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  height: 40px;
  width: 40px;
  top: 45%;
}
.event-gallery-modal .carousel-control-prev span,
.event-gallery-modal .carousel-control-next span {
  width: 24px;
}
.events .image h4 {
  font-size: 20px;
  color: var(--primary);
  padding-top: 10px;
}
/* Appointment Box */

.appointment-text {
  display: none;
}

/* Appointment Box */

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary);
}

.about-us-boy-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  z-index: -1;
}

.small-text {
  font-size: 18px !important;
}

/* --- edited by prajwal 04-10-24 --- */
/* testimonial page */
/* .testimonials-page {
  background: url("../images/new_bg/new1.png");
} */
.testimonials-page .sub-heading {
  color: var(--primary);
}
.testimonials-page .card-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials-page .row.g-6 > * {
  margin-top: calc(var(--bs-gutter-y) * 1.3) !important;
}
.testimonials-page .row.g-6 > :nth-child(1) {
  margin-top: calc(var(--bs-gutter-y) * 1) !important;
}
.testimonials-page .row.g-6 > :nth-child(2) {
  margin-top: calc(var(--bs-gutter-y) * 1) !important;
}
.testimonials-page .card-tile .icon-box {
  position: absolute;
  top: -25px;
  left: 10px;
}
.testimonials-page .card-tile .para-text.mt-30 {
  margin-top: 30px !important;
}
.testimonials-page .card-tile .review-star i {
  color: #fdcc0d;
}

/* testimonial page end */
/* --- edited by prajwal 04-10-24 end --- */

@media screen and (max-width: 991.5px) {
  .cards .card-box {
    display: flex;
    flex-direction: column;
  }
  .cards .card-box .text-box {
    order: 1;
  }
  .cards .card-box .image-box {
    order: 2;
  }
  .cards .card-text {
    text-align: start;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .image-one {
    bottom: -54px;
  }
  .image-two {
    right: unset;
    left: 10px;
  }
  .services {
    background-size: contain;
  }
}
@media screen and (max-width: 600px) {
  .banner .banner-carousel .carousel-item .text-box {
    width: calc(98%);
  }
  .banner .banner-carousel .carousel-item .text-box .title {
    font-size: 20px;
  }
  .banner .banner-carousel .carousel-item .text-box h4 {
    font-size: 14px;
  }
  .header .navbar {
    top: 35px;
  }
  .banner .banner-carousel .carousel-item img {
    height: 85vh;
  }
  .banner {
    height: 85vh;
  }
  .enquiry {
    bottom: 1.5rem !important;
  }
  .enquiry .img-box-1 a {
    background: var(--secondary) !important;
  }
  .enquiry .img-box__text {
    right: 40px !important;
  }
}
@media screen and (max-width: 380px) {
  .banner .banner-carousel .carousel-item .text-box .title {
    font-size: 16px;
  }
}
.pediatrician {
  height: 580px !important;
}
.image-one {
  display: none;
}
.image-two {
  display: none;
}
/* sticky icons */ /* enquiry */

.enquiry {
  position: fixed;
  bottom: 4rem;
  right: 0rem;
  z-index: 99;
}
.enquiry .img-box {
  position: relative;
  margin-bottom: 10px;
}
.enquiry .img-box a {
  background: #7cc242;
  border-radius: 3px;
  height: 40px;
  width: 40px;
  display: inline-block;
  text-align: center;
  line-height: 45px;
}
.enquiry .img-box-1 a {
  background: var(--secondary);
}
.enquiry .img-box-3 a i {
  font-size: 20px;
}
.enquiry .img-box i {
  color: var(--light);
}
.enquiry .img-box__text {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  top: 12%;
  right: 3vw;
  padding: 0.5em 1em;
  white-space: nowrap;
  background: var(--secondary);
  border-radius: 10em;
  cursor: default;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  color: var(--light);
  transition: transform ease 0.3s;
  font-size: 13px;
}
/* .enquiry .img-box__text::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: -1px;
  left: -5px;
  right: 0;
  bottom: 0;
  width: 105%;
  height: 105%;
  border-radius: 10em;
  background: var(--secondary);
} */
.enquiry img {
  width: 45px;
}
.enquiry .img-box:hover .img-box__text {
  opacity: 1;
}
