/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --font-default:  Montserrat, sans-serif;
  --font-primary: Inter, sans-serif;
  --font-secondary: Montserrat, sans-serif;
}


/* Colors */
:root {
  --color-default: #0063a8;
  --color-primary: #0d42ff;
  --color-secondary: #0e1d34;
  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;
  --color-theme: #0063a8;
  --color-theme-rgb: 0, 160, 168;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# fonts
--------------------------------------------------------------*/

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.eot');
    src: url('../fonts/Montserrat-Regular.eot') format('embedded-opentype'), url('../fonts/Montserrat-Regular.svg') format('svg'), url('../fonts/Montserrat-Regular.ttf') format('truetype'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../fonts/Montserrat-Bold.eot');
    src: url('../fonts/Montserrat-Bold.eot') format('embedded-opentype'), url('../fonts/Montserrat-Bold.svg') format('svg'), url('../fonts/Montserrat-Bold.ttf') format('truetype'), url('../fonts/Montserrat-Bold.woff') format('woff'), url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url('../fonts/Montserrat-Light.eot');
    src: url('../fonts/Montserrat-Light.eot') format('embedded-opentype'), url('../fonts/Montserrat-Light.svg') format('svg'), url('../fonts/Montserrat-Light.ttf') format('truetype'), url('../fonts/Montserrat-Light.woff') format('woff'), url('../fonts/Montserrat-Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #444444;
}

a {
  color: #0067a8;
  text-decoration: none;
}

a:hover {
  color: #005083;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat-Bold', sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #00a0a8;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #00a0a8;
  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: #008a91;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
/*  background: rgb(53,132,91);
background: linear-gradient(90deg, rgba(53,132,91,1) 0%, rgba(3,83,115,1) 100%);*/
background: #ffffff;
  /*height: 40px;*/
  font-size: 14px;
  transition: all 0.5s;
  z-index: 940;
  color: #444444;
}
#topbar.topbar-scrolled {
  /*top: -40px;*/
  top: -80px;
}
#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}
#topbar .contact-info a:hover {
  color: #000;
}
#topbar .contact-info i {
  color: #00a0a8;
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}
#topbar .contact-info i:first-child {
  margin-left: 0;
}
#topbar .social-links a {
  color: #444444;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}
#topbar .social-links a:hover {
  color: #000;
}
#topbar .social-links a:first-child {
  border-left: 0;
}

#topbar .bi-chevron-down {color: #fff !important; margin-left: 5px !important;}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /*background: #fff;*/
  background: rgb(31 140 204);
  transition: all 0.5s;
  z-index: 900;
/*  padding: 5px 0;*/
  top: 72px;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}
#header.header-scrolled {
  top: 0;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}
#header .logo a {
  color: #2c4964;
}
#header .logo img {
  max-height: 80px;
}

/**
* Appointment Button *
*/
.appointment-btn {
  /*margin-left: 10px;*/
  border: #00a0a8 1px solid;
  color: #fff;
  border-radius: 50px;
  padding: 5px 10px !important;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  background: #00a0a8;
}
.appointment-btn:hover {
  background: #00959d;
  color: #fff;
}
 @keyframes glowing {
        0% {
          background-color: #00aab3;

        }
        50% {
          background-color: #00c3cd;

        }
        100% {
          background-color: #008288;

        }
      }
      .appointment-btn {
        animation: glowing 1300ms infinite;
      }


@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}


.cart-btn {
  margin-left: 10px;
  border: #00a0a8 1px solid;
  color: #fff;
  border-radius: 50px;
  padding: 5px 10px !important;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  background: #008288;
}
.cart-btn:hover {
  background: #00959d;
  color: #fff;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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 5px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
  padding: 5px 10px;
  border-radius: 4px;
}
.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: #fff;
  background: #246fb4;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 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;
}
.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: #00a0a8;
}
.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%;
  }
  .BookAppointment-box{top: 55px !important}
}

@media (max-width: 1350px) {

.navbar a, .navbar a:focus {
  padding: 5px 5px;
}
  }

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  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;
  }

  .navfill .nav-item, .navfill > .nav-link {
  flex: 1 1 auto;
  text-align: center;
}

.dashbord2 .nav-link {
  padding: 1rem 1rem !important;
}

.dashbord2 .nav-pills .nav-link {

  margin: 6px !important;}

  .navbar ul {
    display: none;
  }
  .xs-sm-bg{background: rgb(0, 134, 140); padding-bottom: 20px; padding-top: 59px;}
}
.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: auto;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  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: #2c4964;
  border: none;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fff;
}
.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: #00a0a8;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

@media (min-width: 768px){
.dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
}

}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 600px;
  /*background-color: rgba(4, 12, 21, 0.8);*/
  background: rgb(53,132,91);
background: linear-gradient(90deg, rgba(53,132,91,1) 0%, rgba(3,83,115,1) 100%);
  overflow: hidden;
  position: relative;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
  /*background-color: rgba(4, 12, 21, 0.5);*/
}
#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}
#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 30px;
  font-weight: 700;
}
#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
  font-size: 20px;
}
@media (min-width: 1200px) {
  #hero p {
    /*width: 50%;*/
  }

}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 20px;
  height: 4px;
  border-radius: 0px; 
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: #00a0a8;
}
#hero .btn-get-started {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #00a0a8;
  margin-top: 15px;
}
#hero .btn-get-started:hover {
  background: #00848b;
}
@media (max-width: 992px) {
  #hero {
    height: 85vh;
  }
  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
  .BookAppointment-box {  top: 60px;}
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}


/*--------------------------------------------------------------
# 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: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}
.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: #1f8ccc;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #edf8f2;
  min-height: 40px;
  margin-top: 121px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 114px;
  }
}
.breadcrumbs h2 {
  font-size: 14px;
  margin: 0 !important;
  font-family: 'Montserrat';
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 30px;
  background: #00a0a8;
  border-radius: 4px;
  color: #fff;
}
.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}
.why-us .content p {
  margin-bottom: 30px;
}
.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}
.why-us .content .more-btn i {
  font-size: 14px;
}
.why-us .content .more-btn:hover {
  color: #00a0a8;
  background: #fff;
}
.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}
.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #00a0a8;
  margin-bottom: 30px;
}
.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h4 {
  font-size: 18px;
  color: #4b7dab;
  margin-bottom: 15px;
}
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 15px;
}
.about .icon-box {
  margin-top: 40px;
}
.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #8dc2f1;
  border-radius: 50px;
  transition: 0.5s;
}
.about .icon-box .icon i {
  color: #00a0a8;
  font-size: 32px;
}
.about .icon-box:hover .icon {
  background: #00a0a8;
  border-color: #00a0a8;
}
.about .icon-box:hover .icon i {
  color: #fff;
}
.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.about .icon-box .title a:hover {
  color: #00a0a8;
}
.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}
.about .video-box {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#00a0a8 50%, rgba(25, 119, 204, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(25, 119, 204, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid #00a0a8;
  transform: scale(20);
}
.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  /*background: #f1f7fd;*/
  padding: 70px 0 60px;

    position: relative;
    background-image: url(../img/cmmi-development.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.counts:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 56, 81, 0.6) url(../img/pattern-line.png);
}
.counts .count-box {
  padding: 20px 20px;
  width: 100%;
  position: relative;
  /*text-align: center;*/
 border-radius: 4px;
background: rgba(3,44,62,0.7);
  margin-bottom: 30px;
}
.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #00a0a8;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.counts .count-box img {
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/*.counts .count-box img {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #00a0a8;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}*/
.counts .count-box span {
  font-size: 24px;
  display: block;
  font-family: 'Montserrat-Bold', sans-serif;
  color: #fff;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #fff;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #d5e1ed;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #00a0a8;
  border-radius: 5px;
  transition: all 0.3s 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: #badaf7;
  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: #2c4964;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  background: #00a0a8;
  border-color: #00a0a8;
}
.services .icon-box:hover .icon {
  background: #fff;
}
.services .icon-box:hover .icon i {
  color: #00a0a8;
}
.services .icon-box:hover .icon::before {
  background: #3291e6;
}
.services .icon-box:hover h4 a, .services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}
.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}
.appointment .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.appointment .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.appointment .php-email-form .error-message br + br {
  margin-top: 25px;
}
.appointment .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.appointment .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.appointment .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.appointment .php-email-form input, .appointment .php-email-form textarea, .appointment .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}
.appointment .php-email-form input:focus, .appointment .php-email-form textarea:focus, .appointment .php-email-form select:focus {
  border-color: #00a0a8;
}
.appointment .php-email-form input, .appointment .php-email-form select {
  height: 44px;
}
.appointment .php-email-form textarea {
  padding: 10px 12px;
}
.appointment .php-email-form button[type=submit] {
  background: #00a0a8;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.appointment .php-email-form button[type=submit]:hover {
  background: #1c84e3;
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments {
  overflow: hidden;
}
.departments .nav-tabs {
  border: 0;
}
.departments .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #2c4964;
  border-radius: 0;
  border-right: 2px solid #ebf1f6;
  font-weight: 600;
  font-size: 15px;
}
.departments .nav-link:hover {
  color: #00a0a8;
}
.departments .nav-link.active {
  color: #00a0a8;
  border-color: #00a0a8;
}
.departments .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.departments .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c4964;
}
.departments .details p {
  color: #777777;
}
.departments .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .departments .nav-link {
    border: 0;
    padding: 15px;
  }
  .departments .nav-link.active {
    color: #fff;
    background: #00a0a8;
  }
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.about-us {
  overflow: hidden;
}
.about-us .nav-tabs {
  border: 0;
}
.about-us .nav-link {
  border: 0;
  padding: 30px 20px;
  transition: 0.3s;
  color: #2c4964;
  border-radius: 0;
  border-bottom: 2px solid #ebf1f6;
  font-weight: 600;
  font-size: 15px;
}
.about-us .nav-link:hover {
  color: #00a0a8;
}
.about-us .nav-link.active {
  color: #00a0a8;
  border-color: #00a0a8;
  transition: .5s;
  background-color: #01984b12;
}
.about-us .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.about-us .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c4964;
}
.about-us .details p {
  color: #777777;
}
.about-us .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .about-us .nav-link {
    border: 0;
    padding: 15px;
  }
  .about-us .nav-link.active {
    color: #fff;
    background: #00a0a8;
  }
}


/*--------------------------------------------------------------
# We Offer
--------------------------------------------------------------*/
.we-offer {
  overflow: hidden;

}

.we-offer .nav-tabs {
  border: 0;
}
.we-offer .nav-link {
  border: 0;
  padding: 15px 20px;
  transition: 0.3s;
  color: #2c4964;
  border-radius: 0;
  border-bottom: 2px solid #ebf1f6;
  font-weight: 600;
  font-size: 15px;
}
.we-offer .nav-link:hover {
  color: #00a0a8;
}
.we-offer .nav-link.active {
  color: #00a0a8;
  border-color: #00a0a8;
  transition: .5s;
  background-color: #01984b12;
}
.we-offer .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.we-offer .details h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c4964;
}
.we-offer .details p {
  color: #777777;
}
.we-offer .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .we-offer .nav-link {
    border: 0;
    padding: 15px;
  }
  .we-offer .nav-link.active {
    color: #fff;
    background: #00a0a8;
  }
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors {
  background: #fff;
}
.doctors .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
  padding: 15px;
  border-radius: 10px;
}
.doctors .member .pic {
  overflow: hidden;
/*  width: 180px;*/
/*  border-radius: 50%;*/
padding: 10px;
}
.doctors .member .pic img {
  transition: ease-in-out 0.3s;
}
.doctors .member:hover img {
  transform: scale(1.1);
}
.doctors .member .member-info {
  padding-left: 30px;
}
.doctors .member .member-info h5{font-size: 16px;}
.doctors .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #2c4964;
}
.doctors .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}
.doctors .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b2c8dd;
  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: 32px;
  height: 32px;
  background: #a0bcd5;
}
.doctors .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}
.doctors .member .social a:hover {
  background: #1977cc;
}
.doctors .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Whyus
--------------------------------------------------------------*/
.whyus {
  background: #fff;
}
.whyus .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
  padding: 15px;
  border-radius: 10px;
  background: #fff;
}
.whyus .member .pic {
  overflow: hidden;
  width: 180px;

}
.whyus .member .pic img {
  transition: ease-in-out 0.3s;
}
.whyus .member:hover img {
  transform: scale(1.1);
}
.whyus .member .member-info {
  padding-left: 30px;
}
.whyus .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  color: #2c4964;
  position: relative;
  padding-bottom: 15px;
}

.whyus .member .member-info h4::after {
   content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b2c8dd;
  bottom: 0;
  left: 0;
  }
.whyus .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}
.whyus .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b2c8dd;
  bottom: 0;
  left: 0;
}
.whyus .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}
.whyus .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.whyus .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #a0bcd5;
}
.whyus .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}
.whyus .member .social a:hover {
  background: #00a0a8;
}
.whyus .member .social a + a {
  margin-left: 8px;
}



/*--------------------------------------------------------------
# Achievement Section
--------------------------------------------------------------*/
.achievement {
  background: #fff;
}
.achievement .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
  padding: 15px;
  border-radius: 10px;
}

.achievement .member .member-info {
  padding-left: 30px;
}
.achievement .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  color: #2c4964;
  position: relative;
  padding-bottom: 10px;
}

.achievement .member .member-info h4::after {
   content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b2c8dd;
  bottom: 0;
  left: 0;
  }

.achievement .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(14, 29, 52, 0.2), rgba(14, 29, 52, 0.4)), url("../img/bg_2.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-default);
  border: 2px solid var(--color-default);
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
/*.faq .faq-list {
  padding: 0 100px;
}*/
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #ffffff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  /*padding: 0 30px;*/
  outline: none;
  cursor: pointer;
  color: #333;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #76b5ee;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #0073b7;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
  .navbar a, .navbar a:focus {
    font-size: 13px;
    padding: 5px 5px;}
  }

@media (max-width: 1024px) {

.navbar > ul > li {
  padding: 8px 0 8px 0px;
}
  }

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(44, 73, 100, 0.08);
  position: relative;
  background: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #badaf7;
  font-size: 26px;
}
.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;
}
.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: #fff;
  opacity: 1;
  border: 1px solid #00a0a8;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00a0a8;
}
@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonials-carousel, .testimonials .testimonials-slider {
    overflow: hidden;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #00a0a8;
  float: left;
  width: 44px;
  height: 44px;
  background: #d6e9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c4964;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #4b7dab;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #00a0a8;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #00a0a8;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #1c84e3;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #222924;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #303934;
/*  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);*/
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 20px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: #cccccc;
  font-family: 'Montserrat-Bold', sans-serif;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
  color: #9f9f9f;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links h3 {
  font-size: 20px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: 'Montserrat-Bold', sans-serif;
  color: #cccccc;
}
#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: #00a0a8;
  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: #9f9f9f;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #30a5e9;
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  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: #00a0a8;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #1c84e3;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #00a0a8;
  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: #007e85;
  color: #fff;
  text-decoration: none;
}
#footer  .copyright{color: #b3b3b3;}

.PhoneEmail{
  background: #222924; 
  padding: 10px; 
  color: #9f9f9f; 
  text-align: center;}

#header .search-form {
    min-width: 350px;
}
.search-form input {
    border: 0;
    font-size: 14px;
    color: #023b6d;
    border: 1px solid rgba(2,59,109,.2);
    padding: 7px 38px 7px 8px;
    transition: .3s;
    width: 350px;


}

input{    outline:0px !important;
    /*-webkit-appearance:none;*/
    box-shadow: none !important;}
.search-form button {
    border: 0;
    padding: 0;
    margin-left: -30px;
    background: 0 0;
}
.search-form button .icon {
    color: rgba(2,59,109,.6);
    width: 20px;
    height: 20px;
}
.text-bold{font-weight:bold; }

.package .package_box {
    -webkit-box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 37%);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.37);
    box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 37%);
    padding: 20px;
    border-radius: 4px;
}


.package_box {
    transition: all 0.55s ease-in-out;
    -webkit-transition: all 0.55s ease-in-out;
    -moz-transition: all 0.55s ease-in-out;
}

.package_box {
    border-bottom: 4px solid #00a0a8;
    padding-bottom: 24px;

}


.icon-boxes {
/*  padding: 20px 20px;*/
  position: relative;
  z-index: 100;
  margin-bottom:30px;
}

.icon-boxes .icon-box {
  padding:  15px;
   position: relative;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.18);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.18);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.18);
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  /*height:330px;*/
  margin-bottom: 30px;
   /*width: 267px;
      margin-right: 9px;*/

      
}
.icon-boxes .icon-box:hover {background: #ffffff;}
.icon-boxes .icon {
  margin: 0 auto 20px auto;
  display: inline-block;
  text-align: center;
}

.icon-boxes .icon i {
  font-size: 36px;
  line-height: 1;
  color: #ac70ff;
}

.icon-boxes .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
}

.icon-boxes .title a {
  color: #00a0a8;
}
.icon-boxes .title a:hover{
  color: #00a0a8;
}

.icon-boxes .description {
   font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  color: #777777;
}

.icon-boxes .icon-box h6{font-size:15px;}

.parameter_min li a{color: #777777;}

.parameter_min li a:hover{color: #565656;}

.parameter_min{padding-left:18px; font-size:14px;}
.parameter_min li{padding-top:5px; padding-bottom:5px; font-size:14px;}

/*.icon-boxes .title a {  color: #05579e;}*/

.know-more { font-size:12px;   color: #007379;}
.know-more:hover {color: #007379;}

.pricing span {
font-size: 18px;
font-weight: 600;
color: #00a0a8; }




.btn-booknow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 10px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #00a0a8;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 1px solid #00a0a8;
    text-align: center;
}
.btn-booknow:hover {
    background: #00a0a8;
    color: #fff;
    text-decoration: none;
}

.btn-learnmore {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #ac70ff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #00a0a8;
  cursor:pointer;
}

.btn-learnmore:hover {
    background: #00a0a8;
    color: #fff;
    text-decoration: none;
}
.all-health-packages  {
    padding-top: 0px;
    margin-bottom: 25px;
    color: #054a85;
    text-align: center;

  font-weight: 600;
    text-transform: uppercase;
  font-size:26px;
}

.icon-boxes .icon i {
    font-size: 36px;
    line-height: 1;
    color: #000;
}

.pricing span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.about-title {
  text-align: left;
  padding-bottom: 30px;
}
.about-title h2 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
  font-family: 'Montserrat-Bold';
}
.about-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;

}
.about-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1f8ccc;
  bottom: 0;
 
}

/*.package {
    background: #eef8f3;
}*/

.lw {
    background: #eef3f8;
}

.offer-flg{
    position: absolute;
    background: url(../img/offer-flag.svg);
    background-size: cover;
    width: 95px;
    height: 32px;
    top: 20px;
    left: 0;
    background-repeat: no-repeat;
    color: #fff;
    font-weight: 600;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 0 9px 6px;
    text-align: left;

}

.truhelath-packges-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    left: 0;
    background: linear-gradient(180deg,rgba(255,255,255,0) 80.21%,#fff 100%);
}

.aboutus .liststyle {
    width: 100%;
    font-size: 18px;
    text-align: left;
    border-left: 5px solid #00a0a8;
    padding: 10px 0px 10px 10px;
    background: #eef8f3;
}


/*--------------------------------------------------------------
# Sticky Bar
--------------------------------------------------------------*/

.sticky-container{
  /*background-color: #333;*/
  padding: 0px;
  margin: 0px;
  position: fixed;
  right: -90px;
  top:112px;
  width: 180px;
  z-index:100;
  word-wrap: break-word;

}

.sticky li{
  list-style-type: none;
  color: #0984e3;
  height: 60px;
  padding: 0px;
  margin: 0px 0px 5px 0px;
  -webkit-transition:all 0.25s ease-in-out;
  -moz-transition:all 0.25s ease-in-out;
  -o-transition:all 0.25s ease-in-out;
  transition:all 0.25s ease-in-out;
  cursor: pointer;
  
  font-weight:bold;
  /* border:1px solid #ddd; */
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.22);
-moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.22);
box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.22);

background:#fff; 
}

.sticky li:hover{
  margin-left: -120px;
/*  -webkit-transform: translateX(-115px);
  -moz-transform: translateX(-115px);
  -o-transform: translateX(-115px);
  -ms-transform: translateX(-115px);
  transform:translateX(-115px);*/
  word-wrap: break-word;
  background:#fff; 
}

.sticky li img{
  float: left;
  margin: 5px 5px;
  margin-right: 10px;

}

.sticky li p{
  padding: 0px;
  margin: 0px;
  line-height: 20px;   
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  font-size: 14px;
}



/*.carousel-indicators {
    position: absolute;
    right: 60px;
    bottom: 60px;
    left: auto;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: auto;
    margin-bottom: 1rem;
    margin-left: auto;
    list-style: none;
}*/

.b-bottom {
    border-bottom: 1px solid #dee2e6!important;
    border: 0px;
    border-radius: 0 ;
    margin-bottom: 15px;
}
.b-bottom:focus {
    color: #212529;
    background-color: #fff;
    outline:0px !important;
    -webkit-appearance:none;
    box-shadow: none !important;
}

/* form starting stylings ------------------------------- */
.book-appointment-input .group        { 
  position:relative; 
  margin-bottom:20px; 
}
.book-appointment-input input         {
  font-size:14px;
  padding:10px 10px 10px 5px;
  display:block;
  width:100%;
  border:none;
  border-bottom:1px solid #dee2e6;
}
.book-appointment-input input:focus { outline:none; border-bottom:1px solid #ffffff; }

/* LABEL ======================================= */
.book-appointment-input label          {
  color:#444444; 
  font-size:14px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

/* active state */
.book-appointment-input input:focus ~ label, .book-appointment-input input:valid ~ label    {
  top:-15px;
  font-size:14px;
  color:#00a0a8;
}

/* BOTTOM BARS ================================= */
.book-appointment-input .bar  { position:relative; display:block; width:100%; }
.book-appointment-input .bar:before, .bar:after   {
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#00a0a8; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;

}
.book-appointment-input .bar:before {
  left:50%;
}
.book-appointment-input .bar:after {
  right:50%; 
}

/* active state */
.book-appointment-input input:focus ~ .bar:before, .book-appointment-input input:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.book-appointment-input .highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.book-appointment-input input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
  from { background:#5264AE; }
  to  { width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
  from { background:#5264AE; }
  to  { width:0; background:transparent; }
}
@keyframes inputHighlighter {
  from { background:#5264AE; }
  to  { width:0; background:transparent; }
}

.agree-check label{color: #444444 !important; font-size: 13px;}

.btn-primary-custom {
    color: #fff;
    background: #00a0a8;
    border-radius: 5px;
    margin-bottom: 10px;
}

.btn-primary-custom:hover {
    color: #fff;
    background: #008a91 !important;
}

.text-theme{color: #00a0a8;}
.theme-bg{background: #eef8f3;}

/*textarea:hover, 
input:hover, 
textarea:active, 
input:active, 
textarea:focus, 
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active
{
    outline:0px !important;
    -webkit-appearance:none;
    box-shadow: none !important;
}*/

.pricing del{font-size: 20px; padding-right: 10px; padding-top: 2px;}
.btn:focus {
  outline: none;
  box-shadow: none;
}

.btn-outline-city {
    color: #ffffff !important;
    border-color: #1f8ccc !important;
    background: #1f8ccc !important;
}

.btn-outline-city:hover {
    color: #fff;
    background-color: transparent;
    border-color: #1f8ccc ;
}

.btn-city{border: 2px solid rgb(31 140 204) !important;  border-radius: 0px; margin-right: 0px; padding-right:5px; padding-left:5px;}


.booktest-online {
    background: #ffffff14;
    box-shadow: 1px 5px 5px rgb(0 0 0 / 10%);
    border-radius: 12px;
    padding: 30px 20px;
    /*z-index: 970;*/
}

.booktest-online h4 {
    padding-top: 22.5px;
    text-align: center;
    padding-bottom: 20px;
}

.booktest-online h4 {
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
}

.book-online-frist-row {
    border-bottom: 1px solid #ffffff47;
    padding-bottom: 20px;
}


.book-online-second-row {
    margin-top: 20px;
    /*margin-bottom: 46px;*/
}

.book-online-frist-row p {
    margin-bottom: 11px;
}

.booktest-online p {
    font-weight: 400;
    font-size: 14px !important;
    line-height: 16px;
    color: #212121;
}

.booktest-online .book-input {
    width: 100%;
    position: relative;
}

.book-online-second-row {
    margin-top: 20px;
    /*margin-bottom: 46px;*/
}

.book-online-frist-row, .book-online-second-row div {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
}


.book-input input {
    background: #f5f5f526;
    border-radius: 6px;
    border: none;
    width: 100%;
    padding: 15px 15px 15px 52px;
    font-weight: 300;
    font-size: 14px;
    color: #ffffff;

}
.book-input input::placeholder {
    color: #fff;
}
.book-input input::-moz-placeholder {
    color: #fff;
}
.book-input input::-webkit-input-placeholder {
    color: #fff;
}

.book-input .form-control:focus {
    color: #ffffff;
    background-color: #f5f5f546;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

.detect {
    position: absolute;
    top: 35%;
    right: 7%;
}

.search-widget-input-wrapper {
    position: relative;
}

.w-400{width: 430px;}

.input-img{width: 50; height: 40px;position: absolute;top: 13px;left: 6px;}

.carousel-indicators {
    bottom: -30px;
    right: 0px;
    left: 0px;
    margin: 0px}
.get-a-call-back .form-select{font-size: 14px;}

.top100{margin-top: 100px;}

.banner{background-image: url(../img/bslide-1.jpg); width: 100%; background-size: 100% 100%; margin-top: 114px; padding-top: 30px; padding-bottom: 40px; }

@media only screen and (max-width: 980px) {
.booktest-online {
  right: auto;
  left: auto;

}

.booktest-online{position: relative;}
.BookAppointment-box{position: relative; width: 100% !important;}
.BookAppointment {
  padding: 60px 20px !important;;
}

.navbar a, .navbar a:focus {
    font-size: 15px;
    padding: 5px 5px;}
  }



}

.Up84sc {
    color: #ea4335;
    margin-right: 4px;
}

.ADM h5{font-size: 16px;}
.ADM h3{font-size: 1.3rem}
.ADM .member .pic {border-radius: 0%;}

.tab-pane .liststyle {
    width: 100%;
    font-size: 18px;
    text-align: left;
    border-left: 5px solid #00a0a8;
    padding: 10px 0px 10px 10px;
    background: #eef8f3;
}

.about-tab blockquote {
    background: rgb(53,132,91);
    background: linear-gradient(90deg, rgba(53,132,91,1) 0%, rgba(3,83,115,1) 100%);
    border-radius: 50px;
    color: #fff;
    padding: 20px;
    display: inline-block;
    font-weight: 500;
    font-size: 1em;
}

.we-offer blockquote {
    background: rgb(53,132,91);
    background: linear-gradient(90deg, rgba(53,132,91,1) 0%, rgba(3,83,115,1) 100%);
    border-radius: 50px;
    color: #fff;
    padding: 20px;
    display: inline-block;
    font-weight: 500;
    font-size: 1em;
}

.about-tab h3 {
    display: block;
    color: #0cb167;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 20px;
}

.about-tab .establishing {
    display: block;
    color: #1494c9;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 24px;
}


/*--------------------------------------------------------------
# covid19
--------------------------------------------------------------*/
.covid19 {
  padding: 0;
  margin-bottom: 60px;
}
.covid19 .container {
  padding: 80px;
  background: #eef8f3;
  border-radius: 15px;
}
@media (max-width: 992px) {
  .covid19 .container {
    padding: 60px;
  }
}
.covid19 .content h3 {
  color: var(--color-secondary);
  font-size: 30px;
  font-weight: 700;
}
.covid19 .content h3 em {
  font-style: normal;
  position: relative;
}
.covid19 .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: rgba(var(--color-primary-rgb), 0.5);
  z-index: -1;
}
.covid19 .content p {
  color: var(--color-secondary);
}
.covid19 .content .covid19-btn {
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: var(--color-theme);
}
.covid19 .content .covid19-btn:hover {
  background: rgba(var(--color-theme-rgb), 0.8);
}
.covid19 .img {
  position: relative;
}
.covid19 .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-theme-rgb), 0.5);
  border-radius: 15px;
  transform: rotate(12deg);
}
.covid19 .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-theme-rgb), 0.9);
  border-radius: 15px;
  transform: rotate(6deg);
}
.covid19 .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
}


/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 15px 10px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  margin-bottom: 20px;
}

.featured-services .icon-box:hover::before {
  background: #3fbbc0;
  top: 0;
  border-radius: 0px;
}
.featured-services .icon {
  margin-bottom: 15px;
}
.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #3fbbc0;
  transition: all 0.3s ease-in-out;
}
.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.featured-services .title a {
  color: #111;
}
.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;

}


/*--------------------------------------------------------------
# Our Stakeholders
--------------------------------------------------------------*/
.stakeholder .icon-box {
  padding: 15px 10px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  margin-bottom: 20px;
}

.stakeholder .icon-box:hover::before {
  background: #3fbbc0;
  top: 0;
  border-radius: 0px;
}
.stakeholder .icon {
  margin-bottom: 15px;
}
.stakeholder .icon i {
  font-size: 48px;
  line-height: 1;
  color: #3fbbc0;
  transition: all 0.3s ease-in-out;
}
.stakeholder .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.stakeholder .title a {
  color: #111;
}
.stakeholder .description {
  line-height: 20px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-weight: 700;
    font-size: 16px;
    color: #2c4964;
}


/*--------------------------------------------------------------
# Our Presence
--------------------------------------------------------------*/
.our-presence .box {
  padding: 20px;
  background: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.our-presence h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}
.our-presence h4 {
  font-size: 15px;
  color: #4f4f4f;
  margin-bottom: 20px;
}
.our-presence h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.labbox p {
    font-size: 14px;
}
.our-presence ul {
  padding: 0;
  list-style: none;
  color: #444444;
  line-height: 20px;
  font-size: 14px;
}
.our-presence ul li {
  padding-bottom: 16px;
}
.our-presence ul i {
  color: #3fbbc0;
  font-size: 18px;
  padding-right: 4px;
}
.our-presence ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.our-presence .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
      font-size: 13px;

}
.our-presence .btn-buy {
  background: #3fbbc0;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-weight: 600;
  transition: 0.3s;
}
.our-presence .btn-buy:hover {
  background: #65c9cd;
}
.our-presence .featured h3 {
  color: #fff;
  background: #3fbbc0;
  font-size: 20px;
  font-weight: 700;
  align-items: center;
  padding: 10px 20px;
}
.our-presence .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #3fbbc0;
  color: #fff;
}

.our-presence i{
  font-size: 12px;
    display: inline-block;
    background: #00a0a8;
    color: #fff !important;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 26px;
    height: 26px;}

    .btn-wrap div{margin-bottom: 8px;}

/*--------------------------------------------------------------
#  Book an Appointment
--------------------------------------------------------------*/

.BookAppointment {
    padding: 60px 0;
}
.BookAppointment-box{
    width: 400px;
    position: absolute;
    z-index: 940;
    right: 0px;
    top: 80px;
        -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 18%);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.18);
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 18%);
    transition: all 0.3s;
    background: #fff; 
    padding: 20px;
    border-radius: 10px;}

 .BookAppointment-box .form-select{color: #5a5a5a;}

 .BookAppointment .i-agree{font-size: 13px;}
 .ba-label{color: #1f8ccc; font-size: 20px; font-weight: 600;}

#BookAppointment {
  width: 100%;
  height: 600px;
  /*background-color: rgba(4, 12, 21, 0.8);*/
  background: rgb(53,132,91);
background: linear-gradient(90deg, rgba(53,132,91,1) 0%, rgba(3,83,115,1) 100%);
  /*overflow: hidden;*/
  position: relative;
}
#BookAppointment .carousel, #BookAppointment .carousel-inner, #BookAppointment .carousel-item, #BookAppointment .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#BookAppointment .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
#BookAppointment .carousel-item::before {
  content: "";
  /*background-color: rgba(4, 12, 21, 0.5);*/
}
#BookAppointment .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}
#BookAppointment h2 {
  color: #fff;
  margin: 0;
  font-size: 30px;
  font-weight: 700;
}
#BookAppointment p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
  font-size: 20px;
}
@media (min-width: 1200px) {
  #BookAppointment p {
    /*width: 50%;*/
  }
}
#BookAppointment .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#BookAppointment .carousel-inner .carousel-item,
#BookAppointment .carousel-inner .active.carousel-item-start,
#BookAppointment .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#BookAppointment .carousel-inner .active,
#BookAppointment .carousel-inner .carousel-item-next.carousel-item-start,
#BookAppointment .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#BookAppointment .carousel-inner .carousel-item-next,
#BookAppointment .carousel-inner .carousel-item-prev,
#BookAppointment .carousel-inner .active.carousel-item-start,
#BookAppointment .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#BookAppointment .carousel-control-next-icon, #BookAppointment .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#BookAppointment .carousel-control-next-icon:hover, #BookAppointment .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#BookAppointment .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 0px;
  height: 4px;
  border-radius: 0px; 
  opacity: 0.6;
  transition: 0.3s;
}
#BookAppointment .carousel-indicators li.active {
  opacity: 1;
  background: #00a0a8;
}
#BookAppointment .btn-get-started {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #00a0a8;
  margin-top: 15px;
}
#BookAppointment .btn-get-started:hover {
  background: #00848b;
}

.BookApp .faq .faq-list li {

  background: #eef8f3b5 !important;

}

@media (max-width: 992px) {
  .remove-img{display: none;}
  #BookAppointment {
    height: auto;
  }
  #BookAppointment .carousel-container {
    text-align: center;
    top: 74px;
  }
  .BookAppointment-box{position: relative; right: auto; top: auto !important; 
  }
}
@media (max-width: 768px) {
  #BookAppointment h2 {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #BookAppointment .carousel-control-next {
    width: 5%;
  }
}
@media (max-height: 500px) {
/*  #BookAppointment {
    height: 120vh;
  }*/
}


/*--------------------------------------------------------------
#  Feedback
--------------------------------------------------------------*/


.feedback-box {
    padding: 60px 0;
}
.feedback-box {
    width: 100%;
    position: relative;
    z-index: 970;
        -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 18%);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.18);
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 18%);
    transition: all 0.3s;
    background: #fff; 
    padding: 20px;
    border-radius: 10px;}

 .feedback-box .form-select{color: #5a5a5a;}

.feedback-box .form-group input[type=email], .feedback-box .form-group input[type=tel], .feedback-box .form-group input[type=text], .feedback-box .form-group textarea {
    display: block;
    background: 0 0;
    border-width: 0;
    border-color: transparent;
    line-height: 1.9;
    width: 100%;
    -webkit-transition: all .28s ease;
    transition: all .28s ease;
    box-shadow: none; 
}
.feedback-box .form-group textarea {
    resize: none;
}

/* BOTTOM BARS ================================= */
.feedback-box .bar  { position:relative; display:block; width:100%; }
.feedback-box .bar:before, .bar:after   {
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#00a0a8; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;

}
.feedback-box .bar:before {
  left:50%;
}
.feedback-box .bar:after {
  right:50%; 
}

/* active state */
.feedback-box input:focus ~ .bar:before, .book-appointment-input input:focus ~ .bar:after {
  width:50%;
}


.feedback-box  .bar {
    position: relative;
    border-bottom: 0.0625rem solid #ebebeb;
    display: block;
}

/*--------------------------------------------------------------
#  OTP
--------------------------------------------------------------*/
 .otp {
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 25px;
}

.otp h3.title {
  font-size: 18px;
  font-weight: 600;
  color: #093030;
  margin-bottom: 10px;
}
.verify-otp{color: #00a0a8;
    font-size: 20px;
    font-weight: 600;
padding-left: 20px;}

.otp p.sub-title {
  color: #B5BAB8;
  font-size: 14px;
  margin-bottom: 25px;
}

.otp p span.phone-number {
  color: #093030;
  font-weight: 600;
}

.otp .wrapper {
    display: flex;
    justify-content: space-between!important;
}

.otp .wrapper input.field {
  width: 60px;
  line-height: 50px;
  font-size: 32px;
  border: none;
  background-color: #EAF5F6;
  border-radius: 5px;
  text-align: center;
  text-transform: uppercase;
  color: #093030;
  margin-bottom: 30px;
  margin-top: 10px;
}

.otp .wrapper input.field:focus {
  outline: none;
}

.otp button.resend {
  background-color: transparent;
  border: none;
  font-weight: 600;
  color: #3DAFE1;
  cursor: pointer;
  padding: 0;
}

.otp button.resend i {
  margin-left: 5px;
}


/*-- Start 29/12/2022 --*/

.otp-form .otp-field {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  line-height: 4rem;
  text-align: center;
  border: none;
  border-radius: 4px;
/*  border-bottom: 2px solid #000;*/
  background-color: #d6edef;
  outline: none;
}

.otp-form .otp-field:focus {
/*  border-bottom-color: #999;*/
  background-color: #bde2e5;
}

/*-- End 29/12/2022 --*/


.text-yellow{color: #FF0 !important;}

.input-newsletter {
    margin-bottom: 16px!important;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin-bottom: 0;
}

.presModal .input-newsletter input {
    width: 100%;
}

.right-side-blog-page input {
    border: none;
    padding: 10px 0 5px;
    margin-bottom: 2px;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin: 0;
    opacity: 0;
}

.presModal .custom-file-label {
    width: 100% !important;
    height: 45px;
    border: none;
    font-weight: 400;
    font-size: 14px;
    color: #212121;
    width: max-content;
    padding: 14px 20px 10px 10px;
    background: #f5f5f5;
    box-shadow: 0 3px 3px rgb(0 0 0 / 10%);
    border-radius: 5px;
    cursor: pointer;
}

.presModal .custom-file-label img {
    margin: 0 5px;
}

small.form-text {
    color: #989898;
    font-size: 12px;
    font-weight: 300;
    margin-top: 8px;
}



 @media (min-width: 1400px){
  .booktest-online {
      padding: 55px 55px;}

}
.visible-xs{display: none;}

 @media (max-width: 1200px){

.booktest-online h4 {
    padding-top: 0px;
    padding-bottom: 10px;}
 .booktest-online{padding: 15px 20px;}
 .book-online-frist-row{padding-bottom: 10px;}
 .book-online-second-row{
    margin-top: 10px;
}


}

 
 @media (max-width: 992px){
.navbar > ul > li{padding: 1px 10px;}
.ml-sm-2{margin-left: 40px !important;}
.text-yellow{color: #00a0a8 !important;}
.visible-xs{display: block;}

}

@media (max-width: 767px){

  .me-xs-auto { margin-right: auto!important;  }

  .banner{ margin-top: 110px; padding-bottom: 30px;}

  #header{padding: 5px 0px;}

  .py-xs-5{
    padding-top: 3rem!important;
    padding-bottom: 3rem!important;
}

  .booktest-online{position: relative; margin-top: 40px;}

  .about-us .nav-link{font-size: 11px;}
  .mb-xs-5{margin-bottom: 3rem !important;}

}


@media (max-width: 575px){
.ms-xs-auto{margin-left: auto !important;}
}

.become-partner .faq .faq .faq-list li{ background: #FFFFFF !important;}
.bap{padding: 20px; margin-bottom: 20px; background: #eef8f3;}
.text-justify{text-align: justify;}

.contact-box{
    position: relative;
    box-shadow: 0px 2px 15px rgb(44 73 100 / 8%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.martop100{margin-top: 80px;}
#signup .i-agree{font-size: 13px;}
#signup  .group small{font-size: 12px;}

.login {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 14px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #008288 !important;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: #fff 1px solid;
  background: #fff;
  text-transform: uppercase;
}
.login:hover {
  background: #fff;
  color: #008288 !important;
}

.carousel-indicators [data-bs-target] { 
    width: 10px;
    height: 10px;    
}

.about-banner .carousel-caption {
    position: absolute;
    right: 15%;
    top: 38%;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
}
.about-banner .carousel-caption h5{font-size: 30px; font-weight: 600;}

.form-check-input:checked {
    background-color: #00a0a8;
    border-color: #00a0a8;
}

.book-appointment-input .form-check-input1 {
   float: left;
    margin-left: -1.5em;
    padding-left: 0em;
}

.carousel-item img{border-radius: 10px;}

/*--------------------------------------------------------------
#  floating-Lable style start 
--------------------------------------------------------------*/


.floating-label small{ font-size: 12px;}

.floating-label { 
  position:relative; 
  margin-bottom:20px; 
}
.floating-input , .floating-select {
  font-size:14px;
  padding:4px 4px;
  display:block;
  width:100%;
  height:34px;
  background-color: #fff !important;
  border:none;
  border-bottom:1px solid #dee2e6;
  margin-bottom: 5px;
}

.floating-input:focus , .floating-select:focus {
     outline:none;
     border-bottom:2px solid #00a0a8; 
      background-color: #fff !important;
}

.floating-label label {
  color:#444444; 
  font-size:14px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:5px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

.floating-input:focus ~ label, .floating-input:not(:placeholder-shown) ~ label {
  top:-12px;
  font-size:12px;
  color:#00a0a8;
}

.floating-select:focus ~ label , .floating-select:not([value=""]):valid ~ label {
  top:-18px;
  font-size:14px;
  color:#00a0a8;
}

/* active state */
.floating-input:focus ~ .bar:before, .floating-input:focus ~ .bar:after, .floating-select:focus ~ .bar:before, .floating-select:focus ~ .bar:after {
  width:50%;
}


.floating-textarea {
   min-height: 30px;
   max-height: 260px; 
   overflow:hidden;
  overflow-x: hidden; 
}

/* highlighter */
.highlight {
  position:absolute;
  height:50%; 
  width:100%; 
  top:15%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.floating-input:focus ~ .highlight , .floating-select:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* animation */
@-webkit-keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}
@keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}

/**  floating-Lable style end **/

.form-select{font-size: 14px;}


.testName {
font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #212121;
    display: block;
        margin-top: 15px;
}


/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #0076c9; 
  border-radius:5px
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #00628b; 
}

.BookAppointment-box .alert {
display:block;padding: 0.3rem; font-size:14px;}

.BookAppointment-box .alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 10px;
    font-size: 12px;
}


/*new added for City*/


.choose-your-city{color: #333333; font-family: 'Montserrat-bold';}
.cities a{ color: #333333;   }
.cities a:hover{ color: #00a0a8;  }




.health-report-description-info.col-md-8 .TruHealth-Youth-heading h1 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0;
    letter-spacing: .3px;
}
.TruHealth-Youth-heading {
    display: flex;
}



.truhealth-youth-reating-reviews.package-reviews {
    margin-left: 10px;
    font-family: 'Montserrat';
    font-weight: normal;
}

.truhealth-youth-reating-reviews img {
    margin-bottom: 4px;
}
.truhealth-youth-reating-reviews span {
    font-style: underline;
}

.helath-report-price.package-price {
    margin-left: 10px;
}

.helath-report-price {
    display: flex;
    margin-left: 30px;
    flex-grow: 1;
    justify-content: flex-end;
}

.helath-report-price span.discount {
    text-decoration-line: line-through;
    font-size: 16px;
    color: #6a6a6a;
    margin-right: 14px;
}

.h3-css {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0;
    letter-spacing: .3px;
    max-width: 270px;
}

.helath-report-price span.rupee {
    color: #212121;
}

.helath-report-price.package-price {
    margin-left: 10px;
}

.helath-report-price {
    display: flex;
    margin-left: 30px;
    flex-grow: 1;
    justify-content: flex-end;
}

.TruHealth-Youth-heading h3 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0;
    letter-spacing: .3px;
    max-width: 270px;
}

.helath-report-price span.rupee {
    color: #212121;
}

.rupee {
    font-family: Arial,sans-serif;
    margin: 0!important;
    text-decoration: none!important;
    opacity: 1!important;
}

.helath-report-price span.discount {
    text-decoration-line: line-through;
    font-size: 16px;
    color: #6a6a6a;
    margin-right: 14px;
}

.discount {
    font-weight: 500;
    color: #27ae60;
}

.helath-report-price .discount .rupee {
    color: #6a6a6a;
}

.helath-report-price span.rupee {
    color: #212121;
}

.health-report-description-info p {
    font-size: 14px;
    color: #5d5d5d;
    margin-top: 12px;
}

.test-included img {
    margin-right: 15px;
        width: 30px;
    height: 30px;
}

.test-included h6 {
    font-size: 12px;
    color: #5d5d5d;
    margin-bottom: 5px;
}

.test-included h4 {
    color: #212121;
    font-size: 14px;
    font-weight: 500;
}

.report-button {
    margin-top: 20px;
}

.btn-checkout {
    color: #fff;
    background: #1f8ccc;
    border-radius: 5px;
    padding: 0.7rem 0.75rem;
    font-weight: 600;
}

.btn-checkout:hover {
    color: #fff;
    background: #0069a6;
}



.btn-theme {
    color: #fff !important;
    background: #00a0a8;
    border-radius: 5px;

}

.btn-theme:hover {
    color: #fff !important;
    background: #008a91 !important;
}

.disabled {
    background: #cbcbcb !important;
    border: 1px solid #cbcbcb !important;
}

.btn-theme-outline {
        font-weight: 400;
    line-height: 1.5;
    /*font-size: 1rem;*/
    display: inline-block;
        /*padding: 0.375rem 0.75rem;*/
    border-radius: 5px;
    transition: 0.5s;
    border: 1px solid #00a0a8;
    color: #00a0a8;
}

.btn-theme-outline:hover {
    background: var(--color-default);
    border: 1px solid var(--color-default);
    color: #fff;
}


.fetuter-report {
    font-size: 12px;
    margin-top: 20px;
    margin-left: 0;
     font-family: 'Montserrat';
}

.fetuter-report img {
    margin-right: 8px;
}

.health-report-description-img img {
    border-radius: 10px;
    position: relative;
    width: 100%;
}

.health-packeges-devider {
    height: 1px;
    background: #ebebeb;
    width: 100%;
    margin-top: 40px;
}

.mt-26 {
    margin-top: 26px;
}
.free-blood-collection-from-your-home {
    display: flex;
    margin-top: 30px;
    align-items: flex-start;
}
.free-blood-collection-from-your-home img {
    margin-right: 25px;
}
.free-blood-collection-info-second {
    margin-bottom: 30px;
}
.free-blood-collection-from-your-home .free-blood-collection-info h4 {
    font-weight: 500;
    font-size: 16px;
    color: #212121;
    margin-bottom: 18px;
}
.free-blood-collection-info-second h4 {
    margin-bottom: 0!important;
}
.free-blood-collection-info span:nth-child(1) {
    padding-right: 48px;
}
.free-blood-collection-info-second span {
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 0;
    border-bottom: none;
}

.health-packeges-devider-second {
    height: 1px;
    background: #ebebeb;
    width: 96%;
}







/*------------------New-------------------------- */
.health-packeges-test-included {
    margin-top: 25px;
}

.health-packeges-test-included h4 {
    font-weight: 500;
    font-size: 16px;
    color: #212121;
}

.health-packeges-test-included .profile {
    color: #ebebeb;
    padding-left: 30px;
    float: right;
    margin-right: 30px;
}

.health-packeges-test-included h4.profile-parameters-header {
    color: #5d5d5d;
    font-size: 14px;
    font-family: 'Montserrat';
}


/*--------------------------------------------------------------
# Test Parameters
--------------------------------------------------------------*/
/*.faq .faq-list {
  padding: 0 100px;
}*/
.test-parameters .test-list ul {
  padding: 0;
  list-style: none;
}
.test-parameters .test-list li + li {
  margin-top: 10px;
}
.test-parameters .test-list li {
  padding: 20px 15px;
  background: #ffffff;
  border-radius: 4px;
  position: relative;
  border-bottom: 0.5px solid #ebebeb;
}

.test-parameters .test-list li .leftSpace{
  padding: 0 30px;
}
.test-parameters .card-body p{ font-size: 14px; }
.test-parameters .card-body p a{ font-size: 14px; }

.test-parameters .test-list a {
  display: block;
  position: relative;
  font-size: 16px;
  outline: none;
  cursor: pointer;
  color: #333;
  font-family: 'Montserrat-Bold';

}
.test-parameters .test-list a small{
  font-family: 'Montserrat';
    font-size: 14px !important;
  }
.test-parameters .test-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #76b5ee;
}
.test-parameters .test-list .icon-show, .test-parameters .test-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.test-parameters .test-list p {
  margin-bottom: 0;
  padding: 5px 0 0 0;
}
.test-parameters .test-list .icon-show {
  display: none;
}
.test-parameters .test-list a.collapsed {
  color: #343a40;
}
.test-parameters .test-list a.collapsed:hover {
  color: #00a0a8;
}
.test-parameters .test-list a.collapsed .icon-show {
  display: inline-block;
}
.test-parameters .test-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .test-parameters .test-list {
    padding: 0;
  }
  #topbar .social-links a{padding-left: 2px;}
}

.inner-test a{display: inline-block !important; color: #00a0a8  !important;}
.inner-test a:hover{display: inline-block !important; color: #007c82;}

.img20{width: 20px; height: 20px;}

.health-report-offer {
    background: url(../img/offer-flag.svg);
    position: absolute;
    top: 14px;
    left: 12px;
    width: 20%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 70%;
}

.health-report-description-img .health-report-offer {
    width: 27%;
}
.health-report-description-img .health-report-offer span {
    font-size: 10px;
    padding: 0 7px 0 5px;
    margin-bottom: 6px;
}

.cartBox {
    border-radius: 4px;
    padding: 30px 15px;
    width: 300px;
/*    overflow: hidden;*/
    
}

.cartList{max-height: 180px;
    overflow-y: auto;}

.cartBox h5 {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0;
    margin-left: 10px;
}

.basket-side-bar {
    border-radius: 4px;
    padding: 20px 15px;
}

.basket-side-bar h5 {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0;
    margin-left: 10px;
}

.health-report-offer span {
    font-size: 9px;
    color: #fff;
    padding: 0 7px 4px 3px;
    font-weight: 700;
    line-height: 13px;
    display: inline-block;
}

.packageBox{
  border-radius: 4px;
    padding: 20px 15px;
    /*margin-top: 30px;*/
    border: 0.5px solid #ebebeb;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}

.cart-badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 20px;
    background: #22bfc7;
    margin-top: 3px;
    position: absolute;
    margin-left: 4px;
}

.text-green{color: #00ab54;}
.display-3{    font-size: 2rem;}

.ul-list {list-style-type: circle;}

.textarea h4 {
  font-size: 36px;
  color: #3fbbc0;
  font-weight: 600;
  margin-bottom: 20px;
}


.textarea h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.textarea h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.textarea ul {

  color: #444444;
  line-height: 20px;
  font-size: 14px;
}
.textarea ul li {
  padding-bottom: 16px;
}

.textarea h3{font-size: 24px; color: rgb(0 160 168);}

.textarea a{color: #52bfff;}

.textarea a:hover{color: #007d83;}

.labbg{    color: #fff;
    background: #3fbbc0;
  margin: -20px -20px 20px -20px;
  width: 100%;}


.purecounter::after {
  content: '+';
  color: #00a0a8;
}

.cartitemdesc img{
    max-width: 40px;
    max-height: 40px;
}

.basketitemList {
    padding-bottom: 0px;
    width: 100%;
}

.cartitemdesc {
    display: flex;
    align-items: center;
}


.cartitemdesc p {
    margin: 10px 0px;
    line-height: 18px;
      font-family: 'Montserrat';
      font-size: 14px;
}


.amt-dlt {
    display: flex;
    align-items: center;
}

.amt-dlt:last-child {
    padding-right: 0px !important;}

    .trash-button {
    background: 0 0;
    border: none;
    padding: 0px !important;
    margin-left: 4px;
    box-shadow: none;
}

.main{background: #f8f8f8;}

.main .cardBox{
    background: #fff;
    box-shadow: 0px 6px 12px rgb(32 33 39 / 8%);
    padding: 20px !IMPORTANT;
    border-radius: 10px;
}

.price_total {
    text-decoration: line-through;
    color: #5d5d5d;
    opacity: 0.8;
}

.btn-user {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
}

.btn-user:hover {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
}
.dropdown-item{font-size: 14px; padding: 0.45rem 1rem;}

.dropdown-item .bi{color: #00959d; padding-right: 4px;}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #00868d;
}

.dropdown-item.active, .dropdown-item:active .bi{color: #fff;}


/* -------------Dashbord 2----------------- */

.dashbord2 .nav-pills .nav-link {
  background: rgb(255, 238, 164);
  border: 0;
  margin: 0 10px;
  flex-direction: column;
  background: #fff;
  text-align: center;
  width: inherit;
  position: relative;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
margin-bottom:14px;

}

.dashbord2 .nav-link.active::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  /* border-top: 10px solid #00a0a8; */
  position: absolute;
  bottom: -10px;
  left: calc(50% - 5PX);
}



.dashbord2 img {
  height: 40px !important;
  object-fit: contain !important;
  width: 40px !important;
}

.dashbord2 .nav-link {
  display: block;
padding: 1.5rem 2rem;
}

.dashbord2 .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background: rgb(0,168,135);
  background: linear-gradient(45deg, rgba(0,168,135,1) 0%, rgba(0,138,194,1) 100%);
}
.dashbord2 .nav-pills .nav-link:hover {
  background: rgb(0,168,135);
  background: linear-gradient(45deg, rgba(0,168,135,1) 0%, rgba(0,138,194,1) 100%);
  color: white;
}
.dashbord2 .nav-pills .nav-link.active img{
    filter: brightness(20);
    }
.dashbord2 .nav-pills .nav-link:hover img{
    filter: brightness(20);
    }
.dashbord2 .nav-link {
  color: #999b9b;
}

.dashbord2 img {
  opacity: o;
}

.dashbord2 img:hover {
  filter: brightness(20);
}

.dashbord2 .about-title h2 {
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.dashbord2 input:focus,
.dashbord2 textarea:focus,
.dashbord2 select:focus {
  border-color: #1977cc;
}

.dashbord2 .appointment .dashbord2 textarea,
.dashbord2 select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.b-bottom {
  border-bottom: 1px solid #dee2e6 !important;
  border: 0px;
  border-radius: 0;
  margin-bottom: 15px;
}

.profile-img {
  width: 100px !important;
  flex: 0 0 100px;
  max-width: 100%;
  height: 100px;
}

.profile-img {
  display: flex;
  align-items: center;
  background-color: #00a0a8;
  justify-content: center;
  border-radius: 100px;
  height: 98px;
}

.profile-img {
  display: block !important;
}

.profile-img h3 {
  color: #fff;
  margin-bottom: 0px;
}

.profile-img h3 {
  text-align: center;
  line-height: 100px;
}

.profile-img img#blog_img {
  border-radius: 5px;
}

.profile-img .custom-profile-pic {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: white;
  z-index: 9;
}

.edit-profile {
  /* position: absolute; */
  width: 14px;
  height: 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-edit {
  margin-top: -22px;
}

.btntop {
  display: inline-block;
  border: 1px solid transparent;
  padding: .39rem;
  border-radius: 100px;
  background: #007e85;
  margin-top: -40px;
}

.btntop :hover {
  background: #26b7bf;
  border-radius: 100px;}
.custom-select {
display: inline-block;
width: 100%;
height: calc(1.5em + .75rem + 2px);
padding: .375rem 1.75rem .375rem .75rem;
padding-top: 0.375rem;
padding-bottom: 0.375rem;
padding-left: 0.75rem;
font-size: 1rem;
font-weight: 100;
line-height: 1.5;
color: #495057;
vertical-align: middle;
background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;
border: 1px solid #ced4da;
border-radius: .25rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.MyReports label {
display: inline-block;
margin-bottom: .5rem;
}
.MyReports.custom-select-sm {
height: calc(1.5em + .5rem + 2px);
padding-top: .25rem;
padding-bottom: .25rem;
padding-left: .5rem;
font-size: .875rem;
}
.dataTables_length select {
width: auto;
display: inline-block;
}


  /* Prasad CSS */
                    
.dropbtn {
  color: white;
  padding: 10px;
  font-size: 14px;
  border: none;
  background: none;
  ;
}
/* The container <div> - needed to position the dropdown content */

.dropdown {
  position: relative;
  display: inline-block;
}
/* Dropdown Content (Hidden by Default) */

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius:  0px;
  background: white;
  right: 0;

}
/* Links inside the dropdown */

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
        border-bottom: 1px solid #eeeeee;
        font-size: 14px;
    }
    
    .dropdown-content a img {
        margin-right: 4px;
    }
    /* Change color of dropdown links on hover */
    
    .dropdown-content a:hover {
        background-color: #fbfbfb;
    }
    /* Show the dropdown menu on hover */
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    /* Change the background color of the dropdown button when the dropdown content is shown */
    
    .dropdown:hover .dropbtn {
        background-color: #007e85;
    }
    
    .translate-middle {
        transform: translate(-67%, 0%) !important;
    }
    
    .badge {
        padding: .35em;
        font-size: .72em;
    }
    /* Profilepage */
    
    .bigger-col,
    .smaller-col {
        margin-bottom: 30px;
    }
    
    .inner-big {
        padding: 25px;
        display: flex;
        flex-wrap: wrap;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
        height: 100%;
        background-color: #edf8f2;
        border-radius: 5px;
    }
    .inner-big:hover,
    .inner-small:hover {
        background-color: #e0ede6;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    }
    
    .profile-img {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .profile-img .subinner-big {
        display: flex;
        align-items: center;
        background-color: #00984a;
        justify-content: center;
        border-radius: 5px;
        min-height: 100px;
        width: 100px;
    }
    
    .profile-img .subinner-big {
        display: block !important;
        height: 100px;
    }
    
    .profile-img h3 {
        color: #fff;
        margin-bottom: 0px;
    }
    
    .profile-img h3 {
        text-align: center;
        line-height: 100px;
    }
    
    .profile-img .subinner-big img#blog_img {
        object-fit: cover;
    }
    
    .inner-big .col-md-8 {
        display: flex;
        align-items: center;
    }
    
    h3.username-title {
        font-size: 17px;
        margin-bottom: 0px;
        padding-top: 10px;
    }
    
    p.info-user {
        font-size: 14px;
        color: #000;
        margin: 0px;
    }
    
    p.info-user {
        font-size: 14px;
        color: #000;
        margin: 0px;
    }
    
    .inner-col-7 a {
        padding: 10px 30px;
        color: #fff;
        background-color: #0cb6e1;
        border-radius: 5px;
        margin-top: 5px;
        display: inline-block;
    }
    
    .inner-small {
        padding: 10px 25px;
        box-shadow: 0px 6px 12px rgba(32, 33, 39, 0.08);
        height: 100%;
        text-align: center;
        position: relative;
        border-radius: 5px;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    a.a-link-dashboard {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0px;
        left: 0px;
    }
    
    .row.dashborad-main-row img {
        width: 80px;
        height: 80px;
    }
    
    .smaller-col h3.username-title {
        font-weight: 400;
    }
    
    h3.username-title {
        font-size: 17px;
        margin-bottom: 0px;
        padding-top: 10px;
        font-family: 'Montserrat-Bold';
    }
    
    


    /*--------------------------------------------------------------
# Dashboard Counts
--------------------------------------------------------------*/
.dashboard-counts {
  background: #ffffff;
  padding: 70px 0 60px;
    position: relative;
}

.dashboard-counts .count-box {
  padding: 20px 20px;
  width: 100%;
  position: relative;
  /*text-align: center;*/
  border-radius: 4px;
  background: rgb(0,168,135);
  background: linear-gradient(45deg, rgba(0,168,135,1) 0%, rgba(0,138,194,1) 100%);
  margin-bottom: 30px;
  box-shadow: 0px 6px 12px rgb(32 33 39 / 8%);
}
.dashboard-counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #00a0a8;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.dashboard-counts .count-box img {
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/*.counts .count-box img {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #00a0a8;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}*/
.dashboard-counts .count-box span {
  font-size: 24px;
  display: block;
  font-family: 'Montserrat-Bold', sans-serif;
  color: #fff;
}
.dashboard-counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #fff;
}


.top125{margin-top: 125px;}

.hh-grayBox {
  background-color: #F8F8F8;
  margin-bottom: 20px;
  padding: 35px;
  margin-top: 20px;
}
.pt45{padding-top:45px;}
.pb45{padding-bottom:45px;}
.order-tracking{
  text-align: center;
  width: 33.33%;
  position: relative;
  display: block;
}
.order-tracking .is-complete{
  display: block;
  position: relative;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  border: 0px solid #AFAFAF;
  background-color: #f7be16;
  margin: 0 auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
  z-index: 2;
}
.order-tracking .is-complete:after {
  display: block;
  position: absolute;
  content: '';
  height: 14px;
  width: 7px;
  top: -2px;
  bottom: 0;
  left: 5px;
  margin: auto 0;
  border: 0px solid #AFAFAF;
  border-width: 0px 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}
.order-tracking.completed .is-complete{
  border-color: #27aa80;
  border-width: 0px;
  background-color: #27aa80;
}
.order-tracking.completed .is-complete:after {
  border-color: #fff;
  border-width: 0px 3px 3px 0;
  width: 7px;
  left: 11px;
  opacity: 1;
}
.order-tracking p {
  color: #A4A4A4;
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 20px;
}
.order-tracking p span{font-size: 14px;}
.order-tracking.completed p{color: #000;}
.order-tracking::before {
  content: '';
  display: block;
  height: 3px;
  width: calc(100% - 40px);
  background-color: #f7be16;
  top: 13px;
  position: absolute;
  left: calc(-50% + 20px);
  z-index: 0;
}
.order-tracking:first-child:before{display: none;}
.order-tracking.completed:before{background-color: #27aa80;}

.nav-justified .nav-item, .nav-justified > .nav-link {

display: flex;
align-items: center;
}



/* -------------Profile Pills 2----------------- */

.profile-pills .nav-pills .nav-link {
  background: rgb(255, 238, 164);
  border: 0;
  margin: 0 10px;
  flex-direction: column;
  background: #fff;
  text-align: center;
  width: inherit;
  position: relative;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  margin-bottom:14px;
  color: #fff;
  background: rgb(0,168,135);
  background: linear-gradient(45deg, rgba(0,168,135,0.6) 0%, rgba(0,138,194,0.6) 100%);

}

.profile-pills .nav-link.active::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  /* border-top: 10px solid #00a0a8; */
  position: absolute;
  bottom: -10px;
  left: calc(50% - 5PX);
}



.profile-pills img {
  height: 40px !important;
  object-fit: contain !important;
  width: 40px !important;
}

.profile-pills .nav-link {
  display: block;
padding: 1.5rem 2rem;
}

.profile-pills .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background: rgb(0,168,135);
  background: linear-gradient(45deg, rgba(0,168,135,1) 0%, rgba(0,138,194,1) 100%);
}
.profile-pills .nav-pills .nav-link:hover {
  background: rgb(0,168,135);
  background: linear-gradient(45deg, rgba(0,168,135,1) 0%, rgba(0,138,194,1) 100%);
  color: white;
}
.profile-pills .nav-pills .nav-link.active img{
    filter: brightness(20);
    }
.profile-pills .nav-pills .nav-link:hover img{
    filter: brightness(20);
    }
.profile-pills .nav-link {
  color: #999b9b;
}

.profile-pills img {
  opacity: o;
}

.profile-pills img:hover {
  filter: brightness(20);
}

.profile-pills .about-title h2 {
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.profile-pills input:focus,
.profile-pills textarea:focus,
.profile-pills select:focus {
  border-color: #1977cc;
}

.profile-pills .appointment .profile-pills textarea,
.profile-pills select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.htbat .member-info h3 i{
  width: 50px; 
  height: 50px; 
  border-radius: 50%;
  background: #eef8f3; 
  display: inline-block; 
  text-align: center; 
  line-height: 50px;
  font-style: normal;
}

.htbat .member h3 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #2c4964;
}

.symotoms .member {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background: #eef8f3;
}

.symotoms .doctors .member .member-info {
    padding-left: 30px;
}

.symotoms .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #2c4964;
}

.package-test .form-check .form-check-input {
    float: left;
    margin-left: -1.1em;
}

.divChecked {
    width:100%;
    height:auto;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 16px 24px 12px;
    cursor:pointer;
    padding:15px 15px;                                   
}

.listChecked {
    background-color: #def9ee;  
}

.our-presence .divChecked {
    width:100%;
    height:auto;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    padding: 0px !important;
    cursor:pointer;
    padding:15px 15px;                                   
}

.our-presence .listChecked {
    background-color: transparent;  
}


.checkout .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #00a0a8;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.checkout   .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #eaf6f1;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}


.checkout .accordion-button:not(.collapsed)::after {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230fffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    transform: rotate(-180deg);
}

.checkout .accordion-item {
    background-color: #fff;
    border: none;
}

.visit-nearest-lab.active {
    border: 2px solid #00a0a8 !important
}

.visit-nearest-lab {
    width: 100% !important;
    border: 2px solid #DBDBDB !important;
    padding: 10px;
    cursor: pointer;
}

.checkout .visit-nearest-lab img {
    margin-right: 15px;
}


@media (max-width: 768px) {
  .checkout .accordion-body {
    padding: 1rem 0rem;}
}

.visit-nearest-lab h5 {
    font-size: 14px;
    line-height: 19px;
    color: #212121;
    margin-bottom: 5px;
}

.visit-nearest-lab.active p {
    color: #00984A;
}

.visit-nearest-lab p {
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    color: #989898;
    margin: 0;
}

.duration-of-the-day {
    display: flex;
    flex-wrap: wrap;
}
.duration-of-the-day .tabs {
    margin-right: 40px;
    display: flex;
    cursor: pointer;
}
.duration-of-the-day .tabs {
    margin-right: 40px;
    display: flex;
    cursor: pointer;
}
.display-none {
    display: none!important;
}

.duration-of-the-day .tabs img {
    margin: auto;
}
.duration-of-the-day .tabs.active p {
    color: #212121;
    border-bottom: 2px solid #212121;
}

.duration-of-the-day .tabs p {
    font-size: 13px;
    line-height: 19px;
    color: #989898;
    margin: auto 0 auto 10px;
}

.tabs.active p {
    color: #212121;
    border-bottom: 2px solid #212121;
}

.accordion-button:focus {
    box-shadow: none;
}

.bg-theme{background: #00a0a8;}

.socialIcon .socialLinks a {
  font-size: 18px;
  display: inline-block;
  background: #00bbc5;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.socialIcon .socialLinks a:hover {
  background: #007e85;
  color: #fff;
  text-decoration: none;
}

.socialLinks a {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00bbc5;
  color: #fff;
  line-height: 20px;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  margin-bottom: 20px;
  margin-top: 20px;
}

.socialLinks a:hover {
  background: #007e85;
  color: #fff;
  text-decoration: none;
}





#whats-chat {
    position: fixed;
    right: 15px;
    bottom: 10%;
    height: auto;
    width: auto;
    background: #25d366;
    padding: 6px;
    border-radius: 6px;
    z-index: 1000;
    transition: 0.2s all ease-in-out;
}

#whats-chat:hover {
    cursor: pointer;
    bottom: 11%;
    transition: 0.2s all ease-in-out;
}

.whatsChat {
    z-index: 1000;
}
/*===============================*/
#chat-box {
    position: fixed;
    right: -500px;
    bottom: 15%;
    width: 250px;
    height: 200px;
    transition: all 0.5s;
    z-index: 999;
}
#chat-top {
  width: 100%;
  line-height: 2;
  background: rgb(18, 140, 126);
  color: white;
  text-align: center;
  border-radius: 5px 5px 0 0;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#chat-msg {
  background: #ece5dd;
  padding: 10px;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 0 25px -10px #999;
}
#chat-msg p {
  font-size: 13px;
  padding: 5px;
  background: white;
  border-radius: 0 50px 50px 50px;
  margin-bottom: 10px;
}
#chat-form {
  display: flex;
}
.chat-in {
  width: 80%;
}
#chat-form input {
  border-radius: 5px 0 5px 5px;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 5px;
  line-height: 2;
}
#send-btn {
  width: 20%;
  padding: 0 5px;
}
#chat-top-right {
  float: right;
  padding: 5px 0;
}
#chat-box:after {
  content: "";
  position: absolute;
  top: 58%;
  left: 90%;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;

  border-right: 25px solid #ece5dd;
}
.right {
  float: right;
}
.clear {
  clear: both;
}


.iconfixed{position:fixed; top:200px; left: 15px; z-index:9999}

.dropdownNearrestLab {
    background: rgba(245, 245, 245, 0.15);
    border-radius: 6px;
    border: none;
    width: 100%;
    padding: 15px 15px 15px 52px;
    font-weight: 300;
    font-size: 14px;
}



/*.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
     z-index: 1030; 
}*/

.searchBoxBody {
    box-shadow: 0 4px 4px rgb(0 0 0 / 15%);
    border-radius: 0 0 12px 12px;
    position: absolute;
    z-index: 99999;
    left: auto;
    background: rgb(255, 255, 255);
    height: 331px;
    top: 33px;
    overflow: auto;
    display: none;
    width: 100%;
}
 


