/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #161616;
}

a {
  color: #6b66e8;
}

.imp-clr {
  color: red;
}

a:hover {
  color: #6b66e8;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", 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 #6b66e8;
  border-top-color: #e2eefd;
  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;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #6b66e8;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #3284f1;
  color: #fff;
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/
#topbar {
  background: #f3f3f3;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #171717;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #000;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #6b66e8;
  color: #fff;
  line-height: 1;
  padding: 4px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 24px;
  height: 24px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: .5s;
}



/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  background: #6b66e8;
  transition: all 0.5s;
  /* z-index: 997; */
  padding: 1px 0;
  /* top: 40px; */
}

#header.header-scrolled {
  top: 0;
  padding: 15px;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    padding: 15px;
    top: 0;
  }

  #header .logo {
    font-size: 28px;
  }
}

/* slidehow */
.slideshow {
  /* margin-top: 130px; */
}

.btn-app-topbar {
  background-color: #ef7f1a;
  color: #fff;
}

.btn-app-topbar:hover {
  color: rgb(255, 0, 0);
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.nav-menu>ul {
  display: flex;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 18px;
}

.nav-menu a {
  transition: 0.3s;
  position: relative;
  display: block;
  color: #ffffff;
  font-family: Titillium Web;
  font-size: 18px;
  font-weight: 600;
  padding: 0 8px;
  text-decoration: none;
}

.nav-menu ul li a:hover {
  text-decoration: none;
  color: #fff;
}

.nav-menu>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
  visibility: visible;
  width: 100%;
}

/* .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #106eea;
    text-decoration: none;
  } */

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 15px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  /* padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #062b5b; */
  color: #0c141d;
  font-family: Titillium Web;
  font-size: 16px;
  font-weight: 600;
  line-height: 42px;
  padding: 10px 20px;
  line-height: 18px;
  /* text-decoration: none; */
}

.nav-menu .drop-down ul li a:hover {
  text-decoration: none;
  color: #ef7f1a;
}

/* .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #106eea;
  } */

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  background-color: #6b66e8;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #106eea;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  margin-top: 70px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  color: #0c141d;
  font-family: Titillium Web;
  font-size: 36px;
  font-weight: 900;
  line-height: 37px;
  text-align: center;
  margin: 40px 0 10px 0;
  margin-top: 20px;
}

.section-title h3 span {
  color: #106eea;
}

.section-title p {
  /* color: #4b4b4b;
    font-family: Titillium Web;
    font-size: 15px!important;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    margin: auto;
    margin-bottom: 50px; */
  margin: 15px auto 0 auto;
  color: #4b4b4b;
  font-family: Titillium Web;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*Button Two*/
.button-two {
  border-radius: 4px;
  background-image: linear-gradient(45deg,
      #f76b1c 25%,
      #fad961 100%) !important;
  border: none;
  padding: 15px;
  width: 150px;
  transition: all 0.5s;
  color: #fff;
  font-size: 16px;
}

.sub-main {
  float: right;
  margin: 15px;
}

.button-two span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button-two span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button-two:hover span {
  padding-right: 25px;
}

.button-two:hover span:after {
  opacity: 1;
  right: 0;
}

.button-two a {
  color: #fff;
}

.button-two a:hover {
  text-decoration: none;
  color: #fff;
}

/* End  */

.welcomes {
  margin: 20px 0 20px;
  /* padding: 30px; */
}

.welcome-box {
  padding: 0 4%;
  margin-bottom: 10px;
}

.welcome-box p {
  text-align: justify;
  line-height: 1.8;
  padding: 10px;
  color: #4b4b4b;
  font-family: Titillium Web;
  /* font-weight: 600; */
}

.welcome-box ul li {
  text-align: justify;
  color: #4b4b4b;
  font-family: Titillium Web;
  /* font-weight: 600; */
}

.welcome-box h2 {
  font-weight: bolder;
  color: #0c141d;
  font-family: Titillium Web;
  font-size: 26px;
  font-weight: 600;
  margin-top: 20px;
}

.welcome-box h1 {
  font-weight: bolder;
  color: #ef7f1a;
  font-family: Titillium Web;
  font-size: 40px;
  font-weight: 600;
}

.margin-content {
  padding: 0;
}

.margin-content .row {
  padding: 0;
}

.department-icon h6 {
  font-size: 16px;
  margin-top: 20px;
}

.department-icon {
  width: 220px;
  border: 1px #ccc solid;
  padding: 7% 0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  /* text-transform: uppercase; */
  height: auto;
}

.department-icon img {
  width: 80px;
  height: 80px;
}

.department-icon:hover {
  background-color: #ef7f1a;
}

.department-icon:hover h6 {
  color: #fff;
}

.department-icon h6 {
  color: #fff;
}

.cta-icons {
  text-align: center;
  line-height: 30px;
  width: 50%;
}

.home-box {
  background-image: linear-gradient(45deg, #707070 5%, #707070 100%) !important;
  border-radius: 4.8px;
  min-height: 200px;
  text-align: center;
  padding: 30px;
  float: left;
  /* box-shadow: 0 0 4px 4px rgba(0,0,0,.07); */
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  position: relative;
  border: 3px solid #fff;
}

.home-box:hover {
  background-image: linear-gradient(45deg,
      #f76b1c 25%,
      #fad961 100%) !important;
  border-radius: 4.8px;
  min-height: 200px;
  text-align: center;
  padding: 30px;
  float: left;
  /* box-shadow: 0 0 4px 4px rgba(0,0,0,.07); */
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  position: relative;
}

.home-box a:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
# service
--------------------------------------------------------------*/

.services-box {
  padding: 30px;
}

.service-boxs {
  display: flex;
  border: 1px solid #e3e4e6;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
}

.service-boxs-img {
  width: 76px;
  height: 76px;
  float: left;
  padding: 10px;
}

.service-boxs h2 {
  color: #0c141d;
  font-family: Titillium Web;
  font-size: 17px;
  font-weight: 600;
  padding-top: 20px;
  padding-left: 10px;
  padding-left: 7px;
}

.service-boxs:hover {
  /* background-image: linear-gradient(45deg,#f76b1c 25%,#fad961 100%)!important; */
  /* border: 1px solid #f76b1c; */
  background-color: #f5f0fc;
}

/*--------------------------------------------------------------
  # Find Doc
  --------------------------------------------------------------*/

.lists {
  margin: 20px 0;
}

.lists .doctor_img {
  width: 100px;
  height: 100px;
  position: absolute;
}

.lists .doctor_name {
  margin-left: 120px !important;
}

.doctor_name_listingpage p {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  padding-top: 25px;
  margin-bottom: 0;
  text-align: left;
  font-family: Titillium Web;
}

.designation_doc_listing {
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  font-family: Titillium Web;
}

.margin-top-37 {
  margin-top: 37px;
}

.area_of_expert_heading {
  color: #919eab;
  font-size: 15px;
  font-family: Titillium Web;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0;
}

.area_of_expert {
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  font-family: Titillium Web;
  text-align: left;
  margin-top: 0;
}

.lists .doctor_name {
  margin-left: 120px !important;
}

.doct_separation_line {
  margin: 30px;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #eee;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .lists .row {
    margin: 10px;
  }
}

@media only screen and (min-width: 1224px) {
  .lists .row {
    margin: 20px;
  }
}

@media only screen and (min-width: 1824px) {
  .lists .row {
    margin: 20px;
  }
}

/*--------------------------------------------------------------
  # Find Doc
  --------------------------------------------------------------*/
.awards_box {
  padding: 30px;
  border: 1px solid #ededed;
  margin: 10px;
}

.awards_box:hover {
  box-shadow: #e1f0fa;
}

.awards_box .awards_img {
  width: 200px;
  height: 200px;
  position: absolute;
}

.awards_box .awards_info {
  margin-left: 220px !important;
  font-family: Titillium Web;
}

.awards_box .awards_info h5 {
  font-weight: 900;
  font-family: Titillium Web;
}

.awards_box .awards_info p {
  color: #4a4a4a;
  font-family: Titillium Web;
}

.awards_box a {
  background: none;
  font-size: 16px;
  padding: 5px 25px;
  background: #6b66e8;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  font-family: Titillium Web;
}

.awards_box a:hover {
  text-decoration: none;
  background-color: #ef7f1a;
  color: #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #ef7f1a;
  color: #fff;
  font-family: Titillium Web;
}

.nav-pills .nav-link.active {
  background-color: #ef7f1a;
  color: #fff;
  font-family: Titillium Web;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
  background-color: #6b66e8;
  color: #fff;
  margin: 5px;
}

@media (min-width: 320px) and (max-width: 480px) {

  .awards_box {
    text-align: center;
    margin: 0 auto;
  }

  .awards_box .awards_info {
    margin-left: 0px !important;
    font-family: Titillium Web;
    margin-top: 150px;

    text-align: center;
  }
}

/*--------------------------------------------------------------
  # Appointments
  --------------------------------------------------------------*/

.Appointments .btn-submit {
  background: none;
  font-size: 16px;
  padding: 5px 25px;
  background: #6b66e8;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  font-family: Titillium Web;
}

.Appointments .btn-submit:hover {
  background-color: #ef7f1a;
  color: #fff;
}

/*--------------------------------------------------------------
  # Time Line
  --------------------------------------------------------------*/
.timeLine_page {
  margin-top: 20px;
}

.main-timeline {
  font-family: verdana;
  position: relative;
}

.main-timeline:after {
  content: "";
  display: block;
  clear: both;
}

.main-timeline .timeline:hover {
  background-color: #f5f0fc;
  border-radius: 15px;
}

.main-timeline .timeline {
  width: 50%;
  margin: 0 0 20px 20px;
  float: right;
}

.main-timeline .timeline-content {
  color: #000;
  background: radial-gradient(rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.5),
      transparent);
  text-align: center;
  min-height: 125px;
  padding: 30px 20px 30px 45px;
  border-radius: 15px;
  border: 2px solid #000;
  display: block;
  position: relative;
}

.main-timeline .timeline-content:hover {
  text-decoration: none;
}

.main-timeline .timeline-icon {
  color: #fff;
  background-color: #ff4f00;
  font-size: 37px;
  line-height: 65px;
  height: 75px;
  width: 75px;
  border: 6px solid #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: -38px;
  top: 50%;
}

.main-timeline .timeline-icon:before,
.main-timeline .timeline-icon:after {
  content: "";
  background-color: #000;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: -12px;
}

.main-timeline .timeline-icon:after {
  top: calc(100% + 6px);
}

.main-timeline .title {
  color: #ff4f00;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 5px;
  font-family: Titillium Web;
  font-weight: 700;
}

.main-timeline .description {
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0;
  color: #4b4b4b;
  font-family: Titillium Web;
}

.main-timeline .timeline:nth-child(even) {
  float: left;
  margin: 0 20px 20px 0;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
  padding: 30px 45px 30px 20px;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
  right: -39px;
  left: auto;
}

.main-timeline .timeline:nth-child(4n + 2) .timeline-icon {
  background-color: #953fbe;
}

.main-timeline .timeline:nth-child(4n + 2) .title {
  color: #953fbe;
}

.main-timeline .timeline:nth-child(4n + 3) .timeline-icon {
  background-color: #00b29c;
}

.main-timeline .timeline:nth-child(4n + 3) .title {
  color: #00b29c;
}

.main-timeline .timeline:nth-child(4n + 4) .timeline-icon {
  background-color: #02affe;
}

.main-timeline .timeline:nth-child(4n + 4) .title {
  color: #02affe;
}

@media screen and (max-width: 767px) {
  .main-timeline .timeline {
    width: 100%;
    padding-top: 40px;
  }

  .main-timeline .timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 45px 20px 20px;
  }

  .main-timeline .timeline .timeline-icon,
  .main-timeline .timeline:nth-child(even) .timeline-icon {
    font-size: 28px;
    left: 50%;
    top: -39px;
    right: auto;
    transform: translateY(0) translateX(-50%);
  }

  .main-timeline .timeline .timeline-icon:before,
  .main-timeline .timeline .timeline-icon:after {
    top: 50%;
    left: -12px;
    transform: translateY(-50%) translateX(0);
  }

  .main-timeline .timeline .timeline-icon:after {
    left: calc(100% + 6px);
  }
}

@media screen and (max-width: 576px) {
  .main-timeline .title {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
  # vision_mission
  --------------------------------------------------------------*/

.vision_mission .vision-box h2 {
  font-family: Titillium Web;
  font-weight: 700;
}

.vision_mission .vision-box p {
  font-size: 16px;
  margin: 0;
  color: #4b4b4b;
  font-family: Titillium Web;
}

/*--------------------------------------------------------------
  # Media
  --------------------------------------------------------------*/
.media-box {
  /* background-color: #fff;
border: 1px solid #e0ebf9;
border-radius: 3px;
width: 100%;
height: auto;
margin-top: 30px; */
  background: #fff;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 5px;
  border-radius: 8px;
  border: 1px solid #f5f0fc;
}

.media-box .media-box-img {
  width: 100%;
  height: auto;
}


.media-box .media-box-description {
  font-family: Titillium Web;
  padding: 8px 16px;
  text-align: justify;
}

.media-box .media-box-description h6 {
  font-size: 16px;
  /* font-weight: 600; */
  color: #000;
  text-align: left;
}

.media-box:hover {
  background: #fff;
  display: block;
  height: 100%;
  box-shadow: 0px 10px 20px rgba(10, 33, 65, 0.05),
    0px 0px 2px rgba(0, 0, 0, 0.13);
  overflow: hidden;
  position: relative;
  padding-bottom: 5px;
  border-radius: 8px;
}

.media-box .media-box-link {
  padding: 15px;
  display: inline-flex;
}

.media-box .media-box-link a {
  background: none;
  font-size: 16px;
  padding: 10px 15px;
  background: #6b66e8;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  font-family: Titillium Web;
}

.media-box .media-box-link a:hover {
  text-decoration: none;
  background-color: #ef7f1a;
  color: #fff;
}

.media-box .media-box-link .media-box-share a {
  margin-left: 107px;
}

.media-box .media-box-link .media-box-share i {
  background: none;
  font-size: 16px;
  padding: 10px 15px;
  background: #6b66e8;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  font-family: Titillium Web;
}

@media (min-width: 320px) and (max-width: 480px) {
  .media-box .media-box-link .media-box-readmore a {
    padding: 6px 10px;
    font-size: 14px;
  }

  .media-box .media-box-link .media-box-share a {
    margin-left: 127px;
    padding: 6px 10px;
  }

  .media-box .media-box-link .media-box-share i {
    padding: 6px 10px;
    font-size: 14px;
  }

  @media (min-width: 481px) and (max-width: 767px) {
    .media-box .media-box-link .media-box-share a {
      margin-left: 147px;
      padding: 6px 10px;
    }
  }
}

/*--------------------------------------------------------------
  # our story
  --------------------------------------------------------------*/


.our_story .container {
  margin-top: 20px;
}

.our_story .our_story_page p {
  /* margin: 15px auto 0 auto; */
  /* color: #4b4b4b; */
  text-align: justify;
  line-height: 1.7;
  font-family: Titillium Web;
}

.our_story .our_story_page {
  margin: 20px 0 20px 0;
}

.our_story_page p {
  /* margin: 15px auto 0 auto; */
  /* color: #4b4b4b; */
  text-align: justify;
  line-height: 1.7;
  font-family: Titillium Web;
}

.our_story .our_story_page {
  margin: 20px 0 20px 0;
}

.our_story_page ul {
  /* color: #4b4b4b; */
  text-align: justify;
  line-height: 1.7;
  font-family: Titillium Web;
}

.healthcare-img #healthcareDots {
  position: absolute;
  left: -25px;
  top: -35px;
  z-index: -5;
}

.healthcare h1 {
  color: #0f0f29;
  font-family: Titillium Web;
  font-size: 34px;
  line-height: 41px;
  padding: 8px 16px;
  font-weight: 600;
}

.healthcare p {
  /* color: #4b4b4b; */
  font-family: Titillium Web;
  font-weight: 600;
  padding: 8px 16px;
  text-align: justify;
}

/*--------------------------------------------------------------
  # Our Experts
  --------------------------------------------------------------*/
.our-team {
  background: #f5f5f5;
  text-align: center;
  /* border-radius: 20px; */
}

.team-list {
  padding: 30px;
}

.our-team .pic {
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transition: all 0.3s ease 0s;
}

.our-team:hover .pic {
  transform: scale(1.01);
}

.our-team .pic:after {
  content: "";
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 900px rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: -100px;
  right: -100px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 1);
  transform-origin: 50% 50% 0;
  transition: all 0.35s ease 0s;
}

.our-team:hover .pic:after {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.our-team .pic img {
  width: 100%;
  height: auto;
}

.our-team .pic a:hover {
  text-decoration: none;
}

.our-team .read-more {
  width: 100px;
  padding: 0 15px 15px 0;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.35px;
  text-align: right;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  z-index: 1;
  transform: translate3d(20px, 20px, 0px);
  transition: all 0.35s ease 0s;
}

.our-team:hover .read-more {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.our-team:hover .read-more a:hover {
  text-decoration: none;
}

.our-team .team-content {
  padding: 20px 0;
  background-color: #f5f5f5;
  border-radius: 20px;
}

.our-team .title {
  font-size: 22px;
  font-weight: 700;
  color: #0c141d;
  text-transform: capitalize;
  margin: 0 0 8px 0;
  font-family: Titillium Web;
}

.our-team .post {
  font-size: 13px;
  font-weight: 500;
  color: #575757;
  text-transform: capitalize;
  font-family: Titillium Web;
}

.our-team .sub_head {
  font-size: 16px;
  font-weight: 500;
  color: #575757;
  font-family: Titillium Web;
}

@media only screen and (max-width: 990px) {
  .our-team {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# profile page 
--------------------------------------------------------------*/
.header-title-box {
  background-color: #f5f5f5;
  /* padding: 30px; */
  margin-top: 6%;
}

.header-title-box .header-title {
  padding: 80px 0 15px 0;
  text-align: center;
}

.header-title-box .header-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0c141d;
  margin: 0 0 8px 0;
  font-family: Titillium Web;
}

.doc_profile {
  padding: 35px 0 35px 0;
}

.doc_image_doctorlist {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}

.doc_image_doctorlist h1 {
  color: #212b36;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  margin: 20px 0 0 0;
  font-family: "Titillium Web", sans-serif;
}

.doctor_degree {
  /* color: #747c86; */
  font-size: 14px;
  font-weight: 500;
  margin: 5px 0;
  border: none;
  padding-bottom: 5px;
}

.doc_image_doctorlist {
  margin-top: 15%;
}

.doc_image_doctorlist h2 {
  color: #454f5b;
  font-size: 14px;
  margin: 2px 0 5px 0;
  border-bottom: 1px solid #f2f2f2;
  font-weight: 500;
  line-height: 19px;
  padding-bottom: 15px;
  text-align: left;
  font-weight: 700;
}

.doc_profile {
  margin: 40px 0 40px 0;
}

.overview {
  margin-top: 7px;
  padding-top: 0 !important;
  padding-left: 10px;
}

.overview h3 {
  color: #212b36;
  font-size: 29px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 10px;
  font-family: "Titillium Web";
}

.overview p {
  /* color: #747c86; */
  text-align: justify;
  line-height: 1.7;
  font-family: Titillium Web;
}

.overview h4 {
  color: #212b36;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin: 35px 0 15px 0;
  font-family: "Titillium Web";
}

.overview ul li {
  list-style: disc;
  /* color: #747c86; */
  line-height: 28px;
  font-size: 16px;
  text-align: left;
  font-weight: 500;
  font-family: "Titillium Web";
}

/* End */

#sub-menu {
  position: fixed;
  /* right: 0;
  top: 50%;
  width: 8em;
  margin-top: -2.5em; */
  z-index: 1000;
}

#sub-menu ul li {
  /* background-image: linear-gradient(45deg,#f76b1c 25%,#fad961 100%)!important; */
  background-color: #09abfc;
  /* border: 1px solid #f76b1c; */
  padding: 10px 20px;
  margin: 1;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  /* box-shadow: 0 0 30px rgba(214, 215, 216, 0.3); */
  padding: 10px 0 20px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.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:focus,
.contact .php-email-form textarea:focus {
  border-color: #106eea;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background-image: linear-gradient(45deg,
      #f76b1c 25%,
      #fad961 100%) !important;
  border: 1px solid #f76b1c;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #3b8af2;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
#news-box
--------------------------------------------------------------*/
.news-box {
  background-color: #fff;
  /* box-shadow: 10px 10px 20px #eee;
   
    padding: 20px 20px 0 20px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px; */
  border-radius: 10px;
}

.news-box-list-items {
  display: block;
  position: relative;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 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: #e1f0fa;
  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 .owl-nav,
.testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #3498db !important;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}






/* End */
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  background: #494949;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #494949;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#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: #6b66e8;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #6b66e8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #494949;
  color: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  font-family: Titillium Web;
}

#footer .footer-top .footer-contact h3 span {
  color: #6b66e8;
  font-family: Titillium Web;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: Titillium Web;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 18px;
  /* font-weight: bold; */
  font-weight: 400;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  font-family: Titillium Web;
}

#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: #ef821f;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 6px 0;
  display: flex;
  font-size: 16px;
  letter-spacing: 1px;
  align-items: center;
}

/* #footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
} */

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  /* line-height: 1; */
  font-family: Titillium Web;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #6b66e8;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #6b66e8;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  font-family: Titillium Web;
}

#footer .footer-top .social-links a:hover {
  background: #6b66e8;
  color: #fff;
  text-decoration: none;
  font-family: Titillium Web;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  /* float: left; */
}

.nabh_logo {
  width: 130px;
  height: 130px;
  text-align: center;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

.about-bg-img {
  background-image: url(../Images/about-bg.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 250px;
  /* margin-top: 10%; */
}

.about-bg-img .header-title {
  margin: 10% 0% 0% 0%;
}

.about-bg-img .header-title h1 {
  font-weight: 600;
  font-size: 30px;
  color: #fff;
}

.about-bg-img .header-title h6 {
  font-weight: 600;
  font-size: 20px;
  color: #ababab;
}




/* Time line  */

.schedule-section {
  position: relative;
  padding: 120px 0 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #fff;
  overflow: hidden;
}

.schedule-section .icon-circle-4 {
  right: -200px;
  bottom: 160px;
}

.schedule-section .icon-circle-3 {
  left: -375px;
  top: 340px;
  opacity: .30;
}

.tabs-box {
  position: relative;
}

.tabs-box .tab {
  display: none;
}

.tabs-box .tab.active-tab {
  display: block;
}

.schedule-tabs {
  position: relative;
}

.schedule-tabs .btns-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.schedule-tabs .tab-buttons {
  position: relative;
  text-align: center;
}

.schedule-tabs .tab-buttons li {
  position: relative;
  display: inline-block;
  height: 135px;
  width: 160px;
  border-radius: 20px;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  color: #222222;
  font-weight: 600;
  text-align: left;
  padding: 15px 15px;
  padding-top: 70px;
  padding-left: 90px;
  cursor: pointer;
  margin: 0 15px 20px;
  border: 1px solid #dddddd;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.schedule-tabs .tab-buttons li .day {
  position: absolute;
  left: 0px;
  top: 30px;
  padding: 5px 20px;
  background-color: #222222;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 0 15px 15px 0;
}

.schedule-tabs .tab-buttons li .date {
  position: absolute;
  left: -0;
  top: 80px;
  width: 100px;
  text-align: center;
  font-size: 38px;
  line-height: 20px;
  font-weight: 600;
  color: #222222;
}

.schedule-tabs .tab-buttons li .month {
  display: block;
  font-size: 20px;
  line-height: 1em;
  font-weight: 600;
  color: #222222;
  text-transform: uppercase;
}

.schedule-tabs .tab-buttons li .year {
  font-size: 30px;
}

.schedule-tabs .tab-buttons li.active-btn {
  box-shadow: 0 20px 30px rgba(0, 0, 0, .10);
}

.schedule-tabs .tab-buttons li:nth-child(4n + 1) .day {
  background-color: #ffc20b;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 2) .day {
  background-color: #40cbb4;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 3) .day {
  background-color: #4c35a9;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 4) .day {
  background-color: #e6275a;
}


.schedule-tabs .tab-buttons li:nth-child(4n + 1) .month,
.schedule-tabs .tab-buttons li:nth-child(4n + 1) .date {
  color: #ffc20b;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 2) .month,
.schedule-tabs .tab-buttons li:nth-child(4n + 2) .date {
  color: #40cbb4;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 3) .month,
.schedule-tabs .tab-buttons li:nth-child(4n + 3) .date {
  color: #4c35a9;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 4) .month,
.schedule-tabs .tab-buttons li:nth-child(4n + 4) .date {
  color: #e6275a;
}


.schedule-tabs .tab-buttons li:nth-child(4n + 1).active-btn {
  box-shadow: 0 0px 30px rgba(255, 194, 11, .30);
  border: 1px solid #ffc20b;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 2).active-btn {
  box-shadow: 0 0px 30px rgba(64, 203, 180, .30);
  border: 1px solid #40cbb4;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 3).active-btn {
  box-shadow: 0 0px 30px rgba(76, 53, 169, .30);
  border: 1px solid #4c35a9;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 4).active-btn {
  box-shadow: 0 0px 30px rgba(230, 39, 90, .30);
  border: 1px solid #e6275a;
}

.schedule-timeline {
  position: relative;
}

/*=== Schedule Block ===*/

.schedule-block {
  position: relative;
  margin-bottom: 10px;
}

.schedule-block:after {
  display: table;
  clear: both;
  content: "";
}

.schedule-block .inner-box {
  position: relative;
  float: right;
  width: 50%;
  text-align: left;
}

.schedule-block .inner-box .inner {
  position: relative;
  padding: 10px 20px 10px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  margin-left: 80px;
  border-radius: 20px;
}

.schedule-block .inner:before {
  position: absolute;
  top: 0;
  bottom: -30px;
  right: 100%;
  border-left: 2px dashed #dddddd;
  content: "";
  margin-right: 80px;
}

.schedule-block .inner:after {
  position: absolute;
  right: 100%;
  top: 35px;
  border-top: 15px solid transparent;
  border-right: 20px solid #ffffff;
  border-bottom: 15px solid transparent;
  content: "";
}

.schedule-block .date {
  position: absolute;
  left: -132px;
  width: 100px;
  top: 0px;
  height: 100px;
  background-color: #ffffff;
  text-align: center;
  font-size: 14px;
  /* line-height: 18px; */
  color: #212639;
  font-weight: 500;
  padding: 16px 5px 0;
  border-radius: 50%;
  border: 2px dashed #dddddd;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.schedule-block .speaker-info {
  position: relative;
  padding-left: 80px;
  padding-top: 1px;
  min-height: 60px;
}

.schedule-block .speaker-info .thumb {
  position: absolute;
  left: 0;
  top: 0;
  /* width: 60px; */
  border-radius: 50%;
  overflow: hidden;
}

.schedule-block .speaker-info .name {
  font-size: 20px;
  color: #212639;
  font-weight: 600;
  line-height: 1.2em;
}

.schedule-block .speaker-info .designation {
  font-size: 18px;
}

.schedule-block h4 {
  position: relative;
  font-size: 18px;
  line-height: 1.2em;
  color: #0f1925;
  font-weight: 600;
  /* margin-bottom: 15px; */
  padding-top: 15px;
}

/* .schedule-block h4 a{
	color: #212639;
	display: inline-block;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
} */
/* 
.schedule-block h4 a:hover{
	color: #f14b59;
} */

.schedule-block .text {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #888888;
  /* margin-bottom: 15px; */
}

.schedule-block .btn-box {
  position: relative;
  padding: 6px 0;
}

.schedule-block .btn-box a {
  padding: 10px 20px;
  line-height: 20px;
  font-size: 14px;
  background-color: #444444;
  color: #ffffff;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: 5px;
}

.schedule-block .btn-box a:hover {
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
}

.schedule-block.even .inner-box {
  float: left;
  text-align: right;
}

.schedule-block.even .inner-box .inner {
  margin-left: 0;
  margin-right: 80px;
}

.schedule-block.even .inner:before {
  right: auto;
  left: 100%;
  margin-left: 80px;
  margin-right: 0;
}

.schedule-block.even .inner:after {
  right: auto;
  left: 100%;
  border-right: 0;
  border-left: 20px solid #ffffff;
}

.schedule-block:last-child .inner:before {
  display: none;
}

.schedule-block ul {
  list-style: none;
}

.schedule-block.even .date {
  left: auto;
  right: -132px;
}

.schedule-block.even .speaker-info {
  padding-left: 0;
  padding-right: 80px;
}

.schedule-block.even .speaker-info .thumb {
  left: auto;
  right: 0;
}

.schedule-block:nth-child(4n + 1) .date,
.schedule-block:nth-child(4n + 1) .inner:before {
  border-color: #ffc20b;
}

.schedule-block:nth-child(4n + 2) .date,
.schedule-block:nth-child(4n + 2) .inner:before {
  border-color: #40cbb4;
}

.schedule-block:nth-child(4n + 3) .date,
.schedule-block:nth-child(4n + 3) .inner:before {
  border-color: #4c35a9;
}

.schedule-block:nth-child(4n + 4) .date,
.schedule-block:nth-child(4n + 4) .inner:before {
  border-color: #e6275a;
}

/* Backgroud */

.schedule-block:nth-child(4n + 1) .btn-box a {
  background-color: #ffc20b;
}

.schedule-block:nth-child(4n + 1) .btn-box a:hover {
  color: #ffc20b;
  border-radius: 0px;
  background: none;
  border-color: #ffc20b;
}

.schedule-block:nth-child(4n + 2) .btn-box a {
  background-color: #40cbb4;
}

.schedule-block:nth-child(4n + 2) .btn-box a:hover {
  border-radius: 0px;
  color: #40cbb4;
  background: none;
  border-color: #40cbb4;
}





.schedule-block:nth-child(4n + 3) .btn-box a {
  background-color: #4c35a9;
}

.schedule-block:nth-child(4n + 3) .btn-box a:hover {
  border-radius: 0px;
  color: #4c35a9;
  background: none;
  border-color: #4c35a9;
}



.schedule-block:nth-child(4n + 4) .btn-box a {
  background-color: #e6275a;
}

.schedule-block:nth-child(4n + 4) .btn-box a:hover {
  border-radius: 0px;
  color: #e6275a;
  background: none;
  border-color: #e6275a;
}

/* color */

.schedule-section.style-three .schedule-block:nth-child(4n + 1) .date,
.schedule-section.style-two .schedule-block:nth-child(4n + 1) .date,
.schedule-block:nth-child(4n + 1) h4 a:hover {
  color: #ffc20b;
}

.schedule-section.style-three .schedule-block:nth-child(4n + 2) .date,
.schedule-section.style-two .schedule-block:nth-child(4n + 2) .date,
.schedule-block:nth-child(4n + 2) h4 a:hover {
  color: #40cbb4;
}

.schedule-section.style-three .schedule-block:nth-child(4n + 3) .date,
.schedule-section.style-two .schedule-block:nth-child(4n + 3) .date,
.schedule-block:nth-child(4n + 3) h4 a:hover {
  color: #4c35a9;
}

.schedule-section.style-three .schedule-block:nth-child(4n + 4) .date,
.schedule-section.style-two .schedule-block:nth-child(4n + 4) .date,
.schedule-block:nth-child(4n + 4) h4 a:hover {
  color: #e6275a;
}





@media only screen and (max-width: 767px) {
  .schedule-section {
    padding: 70px 0 40px;
  }

}

@media only screen and (max-width: 599px) {

  /* .schedule-section.style-two .schedule-block .inner-box .inner{
		text-align: center;
		padding: 30px 20px;
	}

	.schedule-section.style-two .schedule-block .speaker-info .thumb{
		position: relative;
		display: inline-block;
		left: 0;
		top: 0;
		margin-bottom: 5px;
	}

	.schedule-section.style-two .schedule-block .speaker-info{
		padding-left: 0;
		text-align: center;
  }
  .schedule-section.style-three .schedule-block .inner-box .inner{
		padding: 30px 20px;
  } */

  .schedule-block.even .inner-box .inner,
  .schedule-block .inner-box .inner {
    margin: 0;
  }

  .schedule-block .date {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    left: 0;
    top: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    height: auto;
    width: auto;
  }

  .schedule-block.even .date {
    right: 0;
  }




}


@media only screen and (max-width: 1023px) {

  .header-span,
  .schedule-block .inner:before,
  .about-section .icon-dots {
    display: none;
  }

  .about-section .image-column .image-box {
    padding-left: 0;
    text-align: center;
  }

  .clients-section {
    text-align: center;
  }

  .about-section .image-column .image {
    max-width: 500px;
    display: inline-block;
  }

  .register-form button,
  .schedule-block .inner-box {
    width: 100%;
  }

  .schedule-block.even .inner-box .inner {
    /* margin-right: 140px; */
  }

  .schedule-block .inner-box .inner {
    /* margin-left: 140px; */
  }
}

/* End Time line */

.header-title {
  /* background: url('/assets/Images/bg-1.jpg'); */
  background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url('../Images/bg-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-title h1 {
  color: #fff;
  padding: 35px 45px;
  text-align: center;
  line-height: 1.7;
  font-family: Titillium Web;
  font-size: 46px;
}

/* mediscan_appointment */

.medi-app {
  /* background: url(/assets/Images/bg-1.jpg); */
  background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url(../Images/bg-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
}

/* .medi-app {
  background-color: #fff;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: auto;
} */

.medi-app-top {
  padding: 30px;
  /* background-color: #fff; */
  background: linear-gradient(rgb(255 255 255 / 80%) 100%, rgb(255 255 255 / 80%)100%);
  border-radius: 20px;
}

.medi-app-top h4 {
  border-bottom: 2px solid #6b66e8;
  margin-bottom: 40px;
  width: 260px;
  font-family: Titillium Web;
  font-weight: 700;
}

.btn.submitbtn {
  background-color: #ef7f1a;
  box-shadow: 0px 15px 50px rgb(0 0 0 / 20%);
  color: #fff;
  padding: 10px 12px;
}

.btn.submitbtn:hover {
  background-color: #6b66e8;
  box-shadow: 0px 15px 50px rgb(0 0 0 / 20%);
  color: #fff;
  padding: 10px 12px;
}

.medi-app-top .form-group label {
  color: #000;
  font-family: Titillium Web;
  font-size: 18px;
  font-weight: 600;
}

.medi-app-top .form-group label span {
  color: red;
}

.btn.submitbtn:hover a {
  color: #fff;
}

.ultrasound_scan_bg {
  background-color: #fafaff;
}

.ultrasound_scan_right {
  padding: 50px 0px;
  text-align: left;
}

.ultrasound_scan_right h2 {
  font-family: Titillium Web;
  font-size: 40px;
  font-weight: 700;
  color: #ef7f1a;
}

.ultrasound_scan_right p {
  max-width: 450px;
  margin: 30px 0;
  color: #000;
  line-height: 2;
}

.ultrasound_scan_right a {
  background-color: #6b66e8;
  box-shadow: 0px 15px 50px rgb(0 0 0 / 20%);
  color: #fff;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 30px;
}

.ultrasound_scan_right a:hover {
  text-decoration: none;
  color: #fff;
}



/* left-box */


.left-box .nav-pills .nav-link {
  border-radius: 6px;
  background-color: #f3f3f3;
  color: #000;
  margin: 5px;
  padding: 20px 10px;
}

.left-box .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #ef7f1a;
  box-shadow: 0px 15px 50px rgb(0 0 0 / 20%);
}

.left-box p {
  /* color: #747c86; */
  text-align: justify;
  line-height: 1.7;
  font-family: Titillium Web;
}

.left-box ul li {
  /* color: #747c86; */
  text-align: justify;
  line-height: 1.7;
  font-family: Titillium Web;
}






/*  Faq */

.faq-box .card {
  margin: 30px 0px;
}

.faq-box .card-header {
  padding: 2px;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, .03);
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.faq-box .btn {
  background-color: #f7f7f7;
  --color-shadow: 0;
  --color-shadow: 1px;
  box-shadow: 0 hsl(240deg 8% 12% / 15%);
  box-shadow: 0 hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.15);
  color: #474747;
  cursor: pointer;
}

.faq-box .btn:hover {
  text-decoration: none;
}

.faq-box .btn:active {
  text-decoration: none;
}

/* Faq */



/*--------------------------------------------------------------
  # sticky-container
  --------------------------------------------------------------*/


.sticky-container {
  padding: 0px;
  margin: 0px;
  position: fixed;
  /* right:-130px; */
  left: -170px;
  top: 230px;
  width: 210px;
  z-index: 1100;

}

.sticky li {
  list-style-type: none;
  background-color: #6b66e8;
  color: #efefef;
  height: 43px;
  padding: 0px;
  margin: 0px 0px 1px 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;

}

.sticky li:hover {
  margin-right: -115px;
}

.sticky li img {
  float: right;
  margin: 5px 4px;
  margin-right: 5px;
}

.sticky li p {
  padding: 10px;
  margin: 0px;
  /* line-height:16px; */
  font-size: 14px;
  float: right;
}

.sticky-list {
  background-color: #6b66e8;
  color: #fff;
  padding: 5px;
}

.sticky li p a {
  text-decoration: none;
  color: #fff;
}

.sticky li p a:hover {
  text-decoration: none;
}

/* social share */





/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 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: #e1f0fa;
  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 .owl-nav,
.testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #3498db !important;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}


.faq-box p {
  text-align: justify;
  line-height: 1.8;
  padding: 10px;
  color: #000;
  font-family: Titillium Web;
}



/* home-media-box */
.event-footer-btn {
  text-align: center;
  margin: 50px 0;
}

.home-media-box {
  background: #fff;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  /* padding-bottom: 5px; */
  border-radius: 8px;
  border: 1px solid #f5f0fc;
  margin: 10px;
}

.home-media-box .media-box-description {
  /* padding: 22px 30px 23px; */
  padding: 10px 20px;
}

.home-media-box .media-box-description h6 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-align: left;
}

.media-footer {
  /* margin-top: 20px; */
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.home-media-box:hover {
  background: #fff;
  display: block;
  height: 100%;
  box-shadow: 0px 10px 20px rgba(10, 33, 65, 0.05),
    0px 0px 2px rgba(0, 0, 0, 0.13);
  overflow: hidden;
  position: relative;
  padding-bottom: 5px;
  border-radius: 8px;
}

.home-media-box .media-box-readmore a {
  color: #6b66e8;
  /* padding: 10px 0px; */
}

.home-media-box .media-box-readmore i {
  font-size: 20px;
  padding: 10px;
}

.event-footer-btn .media-box-readmore a {
  background-color: #ef7f1a;
  color: #fff;
  padding: 10px 20px;
}

.media-box-description h6 {
  line-height: 30px;
  padding: 10px 0px;
}


/* services-box1 */

.services-box1-box {
  background-color: #f7f7f7;

}

.services-box1-box h2 {
  text-align: center;
}

.services-box1 {
  text-align: center;
  padding: 40px 35px 45px;
  margin: 15px 15px 25px;
  position: relative;
  background-color: #fff;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.services-box1:before {
  content: '';
  background-color: #ef7f1a;
  position: absolute;
  width: 3px;
  height: 40%;
  top: 30%;
  left: -3px;
  transition: all 0.3s linear;
}

.services-box1:hover:before {
  top: 0;
  height: 100%;
  transition: all 0.3s linear;
}

.services-box1:hover h1 a {
  color: #ef7f1a;
  cursor: pointer;
  text-decoration: none;
}

.services-box1 h1 a {
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 12px;
  font-family: Titillium Web;
  font-weight: 600;
  color: #0c141d;
  text-decoration: none;
}

.services-box1 img {
  width: 80px;
  height: 80px;
  padding: 10px;
  margin: 10px;
}

.services-box1 .services-bottom {
  position: absolute;
  bottom: -21px;
  left: 0;
  right: 0;
  border-radius: 50%;
  margin: 0 auto;
}

.services-box1 .services-bottom a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  border: 0px solid transparent;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.services-box1 .services-bottom a i {
  font-size: 20px;
  line-height: 20px;
  background-color: #ef7f1a;
  border-radius: 50px;
  padding: 5px;
  color: #fff;
  text-decoration: none;
}

/*  */
.event-one {
  margin: 10px 0px;
}

.color2 {
  color: #ef7f1a;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.color1 {
  color: #ef7f1a;
}

.service-bg-img {
  background: url('./assets/Images/home-serv-banner.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-1-box {
  background-color: #fff;
  margin-bottom: 60px;
  border-radius: 10px;
}

.service-2-box {
  background-color: #fff;
  margin-bottom: 60px;
}

.service-3-box {
  background-color: #fff;
  margin-bottom: 60px;
}

.service-4-box {
  background-color: #fff;
  margin-bottom: 60px;
}

.service-1-box-des {
  padding: 10px;
}

.service-1-box ul {
  padding: 10px;
}

.service-1-box ul li {
  padding: 2px;
  font-family: Titillium Web;
  font-size: 18px;
}


.slide-banner1 {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url(./assets/Images/banner1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 20px;
}

.slide-banner1 h1 {
  color: #fff;

}

.slide-banner1 p {
  max-width: 600px;
  text-align: center;
  margin: auto;
  padding: 10px;
  color: #fff;
}

.slide-banner1-box {
  /* border: 2px solid #6b66e8; */
  border-radius: 10px;
  /* text-align: center; */
  padding: 10px;
  margin: 5px;
}

.slide-banner1-box:hover {
  background-color: #ef7f1a;
  /* border: 2px solid #ef7f1a; */
}

.slide-banner1-box h2 {
  font-family: Titillium Web;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}


a:hover {
  text-decoration: none;
}

.home-service-2 {
  margin: 5px;
}

.home-service-1-bg {
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url(./assets/images/ultrasound-scan.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

.home-service-2-bg {
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url(./assets/images/maternal-fetal.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

.home-service-3-bg {
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url(./assets/images/Pathology_.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

.home-service-4-bg {
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url(./assets/images/dna.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

.home-service-2-box {
  padding: 50px 0px;
}

.home-service-2-box h4 {
  color: #fff;
  margin: 10px;
}


/* video  */
.o-video {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
}

.o-video>iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}