body {
  font-size: 0.92rem;
  font-family: "Poppins", sans-serif;
  color: #000000;
  background-color: #F8F6F0;
}

a {
  text-decoration: none;
}

.text-orange {
  color: #ff8500;
}

.text-yellow {
  color: #ffc905;
}

.text-gray {
  color: #6e6e6e;
}

.light-yellow {
  color: #ffeca9;
}

.bg-light-yellow {
  background-color: #fcf6e0;
  border: solid 1px #ffeca9;
}

h2, h3, h4 {
  font-family: "Poppins", sans-serif;
}

.hand {
  cursor: pointer;
}

.btn-primary {
  background-color: #ff8500;
  border-color: #ff8500;
}
.btn-primary:hover {
  background-color: #ff911a;
  border-color: #ff8500;
}

#hideDiv {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  color: #fff;
  padding: 0px;
  text-align: center;
  position: absolute;
  top: -10%;
  left: 0;
  bottom: 0;
  z-index: 999;
}

.top-bar {
  padding-top: 0;
  padding-bottom: 5px;
}

.top-bar ul {
  padding: 0;
  margin: 0;
}

.top-bar ul li {
  list-style: none;
  display: inline-block;
  padding: 0 12px;
  border-right: 2px solid #e9eaea;
}
.top-bar ul li:last-child {
  border-right: 0;
  padding-right: 0;
}

.top-bar ul li img {
  width: 35px;
  display: inline-block;
  margin-top: 10px;
}

.top-bar ul li div {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 10px;
}

.top-bar ul li div span {
  font-size: 11px;
}

.top-bar ul li h4 a {
  font-size: 1.05rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #000;
}
@media (max-width: 768px) {
  .top-bar ul li h4 a {
    font-size: 0.8rem;
  }
}

.site-logo {
  width: 260px;
  transition: all 0.2s;
}

.emergiency-contact {
  padding-top: 20px;
}
@media (max-width: 768px) {
  .emergiency-contact {
    padding-top: 5px;
  }
}

.header-scrolled .site-logo {
  min-width: 200px;
  width: 200px;
}
.header-scrolled .top-bar ul li img {
  width: 25px;
}
.header-scrolled .top-bar ul li h4 {
  line-height: 0.8;
}
.header-scrolled .top-bar ul li h4 a {
  font-size: 0.9rem;
}
.header-scrolled .emergiency-contact {
  padding-top: 10px;
}
.header-scrolled .navbar > ul > li {
  padding: 4px 0 4px 20px;
}
.header-scrolled .appointment-btn {
  padding: 7px 25px;
}
.header-scrolled .appointment-btn.test {
  margin-top: 15px;
}

.site-nav {
  background-color: #ffeca9;
}

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

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

.navbar li {
  position: relative;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  transition: 0.3s;
  /* border-bottom: 2px solid #000; */
  padding: 5px 2px;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #ff8500;
  /* border-color: #ff8500; */
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #ff8500;
  background: #ffeca9;
}

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

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

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2c4964;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #F8F6F0;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #ff8500;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #1977cc;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.carousel-item {
  position: relative;
}
.carousel-item .carousel-content {
  color: #FFF;
  position: absolute;
  left: 11%;
  top: 40%;
}
.carousel-item .carousel-content span {
  font-size: 1.2rem;
  font-weight: 600;
}
.carousel-item .carousel-content h1 {
  color: #FFF;
  font-size: 3.1rem;
  font-weight: 600;
  margin-top: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}
.carousel-item .carousel-content p {
  font-size: 1.2rem;
  font-weight: 400;
}

.book-appointment {
  width: 75%;
  padding: 30px 40px;
  margin: -130px auto 0 auto;
  z-index: 99;
  position: relative;
}
.book-appointment .bookappointment {
  padding: 40px 20px;
  height: 200px;
  position: relative;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  /* background-image: url(../img/book-appointment.jpg);
  background-size: cover;
  background-repeat: no-repeat; */
  overflow: hidden;
  /*  &::before {
     content: "";
     position: absolute;
     background: rgba(190, 100, 2, 0.8);
     width: 100%;
     height: 100%;
     left: 0;
     top: 0;
   } */
}
.book-appointment .bookappointment:hover {
  transform: translateY(-20px);
  background-color: #ff8500;
}
.book-appointment .bookappointment:hover .content {
  color: #fff;
}
.book-appointment .bookappointment:hover .icon {
  background-color: #fff;
}
.book-appointment .bookappointment:hover .emergency-content small {
  color: #FFF;
}
.book-appointment .bookappointment:hover .emergency-content h5 {
  color: #FFF !important;
}
.book-appointment .bookappointment:hover .emergency-content a {
  color: #FFF;
}
.book-appointment .bookappointment .icon {
  width: 75px;
  padding: 13px;
  border-radius: 100%;
  border: solid 2px #d9d9d9;
  margin: 0 auto 20px auto;
}
.book-appointment .bookappointment i {
  font-size: 1.5rem;
  line-height: 0;
  color: white;
}
.book-appointment .bookappointment .content {
  position: relative;
  color: #ff8500;
}
.book-appointment .bookappointment .content h5 {
  font-size: 1.1rem;
}
.book-appointment .bookappointment .emergency-content small {
  color: #333;
}
.book-appointment .bookappointment .emergency-content h5 {
  color: #000;
}
.book-appointment .bookappointment .emergency-content a {
  color: #000;
  text-decoration: none;
}
.book-appointment .form-control, .book-appointment .form-select {
  padding: 0.7rem 0.75rem;
}
.book-appointment .btn {
  padding: 0.7rem 1.5rem;
}

.sectionTitle h5 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1rem;
  color: #ff8500;
  position: relative;
}
.sectionTitle h5::after {
  position: absolute;
  content: "";
  background: #beb9b9;
  height: 2px;
  width: 50px;
  top: 10px;
  margin-left: 5px;
}
.sectionTitle h2 {
  font-weight: 700;
  font-size: 2.5rem;
}

.about-us .about-left {
  position: relative;
  display: block;
  padding: 25px;
}
.about-us .about-left .about-img {
  position: relative;
  border: solid 1px #fff;
}
.about-us .about-left .about-img::before {
  content: "";
  position: absolute;
  background: #ffc905;
  left: -25px;
  top: -25px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about-us .about-left .about-left-content {
  position: absolute;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px 10px 10px;
  left: 25px;
  top: 120px;
  box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
}
.about-us .about-left .about-left-content h5 {
  font-size: 1rem;
}
.about-us .about-left .about-left-content .about-left-info p a {
  color: #4F78AB;
  font-size: 20px;
  font-weight: 600;
}
.about-us .about-left .about-left-icon {
  width: 67px;
  height: 67px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(86, 145, 217, 0.5);
}
.about-us .about-left .about-left-icon i {
  font-size: 28px;
  color: #fff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50px;
  background: #4F78AB;
}
.about-us .history {
  margin-top: 0px;
  padding: 0px;
  position: relative;
}
.about-us .history .content-box {
  padding: 20px 10px;
  border-radius: 5px;
  font-weight: 400;
  background-color: #fff;
}
.about-us .history .content-box .img-box {
  margin: 0 auto;
  padding: 10px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: solid 1px #d2d2d2;
}

/* swiper-slide CSS */
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #ff8500;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #d5e1ed;
  padding: 80px 20px 40px 20px;
  background-color: #ffffff;
  transition: all ease-in-out 0.3s;
}
.services .icon-box .knowmore {
  width: 130px;
  margin: 40px auto 0 auto;
  border: solid 1px #f1f1f1;
  padding: 5px 10px;
  font-size: 0.75rem;
}
.services .icon-box .knowmore a {
  color: #999;
}
.services .icon-box .knowmore i {
  color: #999;
  font-size: 1rem;
}
.services .icon-box:hover .icon {
  transform: rotateY(360deg);
}
.services .icon-box:hover .knowmore {
  background-color: rgba(255, 255, 255, 0.9);
  border: #fff;
  color: #ff8500;
}
.services .icon-box:hover .knowmore i, .services .icon-box:hover .knowmore a {
  color: #ff8500;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 70px;
  height: 70px;
  padding: 10px;
  background: #ff8500;
  border-radius: 5px;
  transition: all 0.5s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #e6e6e6;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #000;
  text-decoration: none;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #ff8500;
  border-color: #ff8500;
}

.services .icon-box:hover .icon {
  background: #ffc905;
}

.services .icon-box:hover .icon i {
  color: #ff8500;
}

.services .icon-box:hover .icon::before {
  background: #e6e6e6;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #c1c1c1;
  font-size: 12px;
  background: #0c0c0c;
}

#footer .footer-top {
  padding: 40px 0 30px 0;
  color: #FFFFFF;
  background: #000000;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}
#footer .footer-top .footer-logo {
  width: 150px;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #c1c1c1;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top p {
  color: #c1c1c1;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff8500;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #c1c1c1;
  font-size: 0.92rem;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ff8500;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ff8500;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #ffc905;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 20px;
  display: inline-block;
  background: #3a3a3a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #ff8500;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff8500;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 10px;
  transition: all ease-in-out 0.3s;
}
.testimonials .testimonial-item:hover {
  background-color: #ffc905;
}
.testimonials .testimonial-item:hover h3 {
  color: white;
}
.testimonials .testimonial-item img {
  border: solid 1px #fffdf5;
}

/* .testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
} */
.testimonials .testimonial-item h3 {
  font-size: 1rem;
  margin: 10px 0 5px 0;
  color: #ff8500;
  margin-bottom: 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #009d8b;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff8500;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
.image-bar {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/hospital-gb6a84dc96_1920.jpg);
}
.image-bar::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.image-bar .content-div {
  position: relative;
  z-index: 100;
}
.image-bar .content-div i {
  font-size: 1.5rem;
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
/* .doctors {
  background: #fff;
} */
.doctors .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
  padding: 30px;
  border-radius: 10px;
  background: #fff;
}

.doctors .member .pic {
  overflow: hidden;
  min-width: 180px;
}

.doctors .member .pic img {
  transition: ease-in-out 0.3s;
}

.doctors .member:hover img {
  transform: scale(1.1);
}

.doctors .member .member-info {
  padding-top: 30px;
  text-align: center;
}

.doctors .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #000000;
}

.doctors .member span {
  display: block;
  font-size: 14px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
  color: #757575;
}

/* .doctors .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: $secondary;
  bottom: 0;
  left: 0;
} */
.doctors .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.doctors .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.doctors .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 28px;
  height: 28px;
  background: #d6d6d6;
}

.doctors .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.doctors .member .social a:hover {
  background: #ff8500;
}

.doctors .member .social a + a {
  margin-left: 8px;
}

/* Appointment Button  */
.appointment-btn {
  margin-left: 25px;
  background: #f7bb07;
  color: #FFF;
  border-radius: 50px;
  padding: 10px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border: solid 1px #fff;
}
.appointment-btn.test {
  margin-top: 25px;
  background-color: #ebebeb;
  border: solid 1px #bcbcbc;
  color: #000;
}

.appointment-btn:hover {
  background: #ff8500;
  border-color: #ffc905;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}
.subpage-hero {
  margin-top: 130px;
  padding: 70px 0;
  position: relative;
  background-image: url(../img/innerpage.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  background: rgba(190, 100, 2, 0.9);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage-hero h2 {
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 100;
}
.subpage-hero .bradcrumb-section {
  color: #fff;
  position: relative;
  z-index: 100;
}
.subpage-hero a {
  color: #fff;
}
.subpage-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7) !important;
}
.subpage-hero .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.doctor-profile .dr-image {
  position: relative;
  border: solid 1px #fff;
}
.doctor-profile .dr-image::before {
  content: "";
  position: absolute;
  background: #ffeca9;
  left: -20px;
  top: -20px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.doctor-profile h1 {
  font-size: 3rem;
}

.appointment-area {
  position: relative;
  z-index: 1;
  /* background: rgb(32, 64, 102); */
}
.appointment-area .appointment-img {
  background-image: url(../img/slideOne1.jpg);
  background-size: cover;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.appointment-area .appointment-content {
  padding: 60px;
  background: rgb(32, 64, 102);
}
@media (max-width: 768px) {
  .appointment-area .appointment-content {
    padding: 30px 15px;
  }
}
.appointment-area .appointment-content h1, .appointment-area .appointment-content p {
  color: #fff;
}
.appointment-area .appointment-form .btn {
  border-radius: 0;
}
.appointment-area .appointment-form .form-group {
  margin-bottom: 20px;
}
.appointment-area .appointment-form .form-group .form-control {
  border-radius: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.modal .close-circle {
  border-radius: 50%;
  background: #fff;
  width: 30px;
  height: 30px;
  padding-top: 3px;
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 99;
  text-align: center;
  border: solid 2px #ccc;
}

.contact-content {
  margin-bottom: 120px;
}

.contact-form .theme-btn i {
  margin-right: 5px;
}

.contact-info {
  height: 100%;
  padding: 20px;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
  background-color: #fff;
}

.contact-info::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  background: #ffc905;
}

.contact-info-icon {
  margin: 20px auto;
  width: 55px;
  height: 55px;
  background: #ff8500;
}

.contact-info-icon i {
  font-size: 25px;
  color: #fff;
  line-height: 55px;
  text-align: center;
}

.btn-outline-primary {
  border-color: #ff8500;
  color: #ff8500;
}
.btn-outline-primary:hover {
  background-color: #ff8500;
  border-color: #ff8500;
}

.contact-form {
  padding: 25px 30px;
  background: #fff;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
}

.contact-form-header {
  margin-bottom: 30px;
  color: #333;
}

.contact-form-header h2 {
  color: #000;
  font-size: 30px;
  margin-bottom: 10px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 12px 20px;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.contact-form .form-group .form-control:focus {
  border-color: #4f78ab;
}

.health-packages .card {
  overflow: hidden;
}
.health-packages .card h6 {
  font-size: 0.959rem;
}
.health-packages .more-details {
  color: #ffc905;
  text-decoration: underline;
}
.health-packages .more-details:hover {
  text-decoration: none;
}

/* Media Styling */
@media (min-width: 1024px) {
  .white-bg {
    background-color: #fff;
  }
}
@media (max-width: 950px) {
  .fixed-top {
    position: inherit;
  }
  .subpage-hero {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .fixed-top {
    position: inherit;
  }
  .carousel-item .carousel-content h1 {
    font-size: 2rem;
  }
  .carousel-item .carousel-content {
    top: 30%;
  }
  .book-appointment {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    margin-top: 0;
  }
  .book-appointment .bookappointment {
    padding: 10px 10px;
    margin-bottom: 10px;
  }
  .about-us .about-left .about-left-content .about-left-info p a {
    font-size: 0.9rem;
  }
  .about-us .history .content-box {
    margin-bottom: 10px;
  }
  .m-none {
    display: none;
  }
  .subpage-hero {
    margin-top: 0;
  }
  .subpage-hero {
    padding: 30px 0;
  }
  #footer {
    padding-left: 10px;
    padding-right: 10px;
  }
  section {
    padding: 40px 0;
  }
}
@media (max-width: 600px) {
  .carousel-item .carousel-content h1 {
    font-size: 1rem;
  }
  .site-logo {
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .doctors .member .pic {
    min-width: auto;
  }
  .about-us .about-left .about-left-content .about-left-info p a {
    font-size: 0.9rem;
  }
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fcf6e0;
}

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tz-gallery .lightbox:hover img {
  opacity: 0.5;
}

.tz-gallery {
  padding: 40px;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
  padding: 2px;
}

.tz-gallery .lightbox {
  position: relative;
}

.tz-gallery .lightbox img {
  width: 100%;
  border-radius: 0;
  position: relative;
}

.tz-gallery .lightbox:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  opacity: 0;
  color: #fff;
  font-size: 26px;
  font-family: FontAwesome;
  content: "\f002";
  pointer-events: none;
  z-index: 9000;
  transition: 0.4s;
}

/* .tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: '';
    transition: 0.4s;
}  */
.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
  opacity: 1;
}

.baguetteBox-button {
  background-color: transparent !important;
}/*# sourceMappingURL=sunlife-styles.css.map */