/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
}

body {
    font-family: Poppins!important;
  color: var(--primary-base-color);
  overflow-x: hidden;
}

a {
  color: var(--primary-base-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-base-color);
  text-decoration: none;
}
p {
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
}
img{
    object-fit: cover;
}
.invalid-feedback{
    position: absolute;
    font-weight: 300;
    font-size: 13px;
    margin-top: 0;
}
.alert{
    margin: 0 20%!important;
}
.logout-btn{
    color: #CC2B52!important;
}
/*Loader Start*/

.loader-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader-content .polyline {
    stroke: var(--primary-color);
    stroke-width: 3;
    fill: none;
}
.loader-content .heart-rate {
    width: 150px;
    height: 73px;
    position: relative;
    margin: 20px auto;
}

.loader-content .fade-in {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    top: 0;
    right: 0;
    animation: heartRateIn 1.5s linear infinite;
}

.loader-content .fade-out {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    animation: heartRateOut 1.5s linear infinite;
    background: rgba(255, 255, 255, 1);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 80%,
        rgba(255, 255, 255, 0) 100%
    );
}

@keyframes heartRateIn {
    0% {
        width: 100%;
    }
    50% {
        width: 0;
    }
    100% {
        width: 0;
    }
}
@keyframes heartRateOut {
    0% {
        left: -100%;
    }
    30% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}

/*Loader END*/
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--plain-color);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--border-color);
  border-top-color: var(--border-hover-color);
  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);
  }
}

/*.primary-btn{*/
/*    padding: 8px 12px;*/
/*    font-weight: 400;*/
/*    background: var(--primary-color);*/
/*    color: var(--plain-color);*/
/*    transition: 500ms;*/
/*    border-radius: 4px;*/
/*    border: 0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 4px;*/
/*}*/
/*.primary-btn:hover{*/
/*    background: var(--secondary-color);*/
/*    color: var(--plain-color);*/
/*    border-radius: 0;*/
/*}*/

.btn-primary {
    background: var(--primary-color);
    padding: .5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--plain-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 14px;
    border-radius: 4px;
    border: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    white-space: nowrap;
}
.btn-primary:focus{
    outline: 0!important;
    box-shadow: none!important;
    border: 0!important;
    background: var(--secondary-color)!important;
}
.btn-primary:hover{
    background: var(--secondary-color);
    border-radius: 0!important;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: var(--plain-color);
  line-height: 0;
}
.back-to-top:hover {
  background: var(--primary-color);
  color: var(--plain-color);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--plain-color);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}
#topbar.topbar-scrolled {
  top: -40px;
}
#topbar .contact-info a {
  line-height: 1;
  color: var(--tartiary-text-color);
  transition: 0.3s;
}
#topbar .contact-info a:hover {
  color: var(--secondary-color);
}
#topbar .contact-info i {
  color: var(--secondary-color);
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}
#topbar .contact-info i:first-child {
  margin-left: 0;
}
#topbar .social-links a {
  color: var(--primary-color);
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}
#topbar .social-links a:hover {
  color: var(--secondary-color);
}
#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--plain-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  /*top: 40px;*/
  box-shadow: 0px 2px 15px var(--box-shadow-secondary-color);
}
#header.header-scrolled {
  top: 0;
}
.header-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 0;
}
.logo {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.5px;
    color: var(--primary-color);
}
.logo-wrap .logo img{
    height: 30px;
}
.nav-bar-wrap {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    transition: 500ms;
}
.nav-bar-wrap.is-sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    padding: 0;
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    transition: 500ms;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.top-bg-header{
    width: 100%;
    height: 70px;
}
.logo:hover{
  color: var(--primary-color);
    text-decoration: none;
}
#header .logo img {
    height: 52px;
}
.logo-wrap{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 18px;
}
.main-menu-wrap{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.right-side-menu{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.right-side-menu .btn-primary{
    padding: 8px 12px;
    color: var(--plain-color);
    border: 0;
}
.right-side-menu .btn-primary:hover{
    border: 0;
    color: var(--plain-color);
}
.right-side-menu .btn-primary:focus{
    padding: 8px 12px;
}
.head-book-lab {
    background: var(--tartiary-color) !important;
}
.right-side-menu .navbar > ul > li {
    padding: 0;
}
/**
* Appointment Button *
*/
.book-app{
    margin-right: 3rem;
}
.appointment-btn {
  margin-left: 25px;
  background: var(--primary-color);
  color: var(--plain-color);
  border-radius: 50px;
  padding: 5px 12px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  margin-top: -35px;
  margin-right: 10px;
}
.appointment-btn:hover {
  background: var(--primary-color);
  color: var(--plain-color);
}
@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbarr ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  font-size: 20px;
  color: var(--primary-base-color);
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid var(--plain-color);
  padding: 5px 2px;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.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: var(--plain-color);
  box-shadow: 0px 0px 30px var(--box-shadow-secondary-color);
  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: var(--primary-color);
  border: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
    margin-top: 3px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--primary-color);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: var(--primary-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: var(--plain-color);
}


.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #f2f2f2;
  transition: 0.3s;
  z-index: 999;
    height: 100vh;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--plain-color);
  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: var(--primary-color);
  border: none;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--secondary-color);
}
.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: var(--plain-color);
  box-shadow: 0px 0px 30px var(--box-shadow-secondary-color);
}
.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: var(--primary-color);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
#banner {
  width: 100%;
    position: relative;
    /*margin-bottom: 2rem;*/
  /*height: 90vh;*/
  /*background: url("../images/hero-bg.jpg") top center;*/
  /*background-size: cover;*/
  /*margin-bottom: -200px;*/
  /*  margin-top: 136px;*/
}
#banner .container {
  position: relative;
}
#banner h1 {
  margin: 0;
  font-size: 33px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: var(--primary-base-color);
}
#banner h2 {
  color: var(--primary-base-color);
  margin: 10px 0 0 0;
  font-size: 24px;
}
.btn-get-started {
  /*font-family: "Raleway", sans-serif;*/
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--plain-color);
  background: var(--primary-color);
}
#banner .btn-get-started:hover {
  background: var(--primary-color);
}
@media (min-width: 1024px) {
  #banner {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #banner {
    margin-bottom: 0;
    /*height: 100vh;*/
  }
  #banner .container {
    padding-bottom: 63px;
  }
  #banner h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #banner h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media (max-height: 600px) {
  #banner {
    /*height: 110vh;*/
  }
}
.bg-white {
    background: var(--plain-color);
}
.slider-overlay-wrap{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0,0,0,.4);
    display: flex;
    align-items: center;
}
.slider-overlay-inner{
    max-width: 465px;
    width: 100%;
    margin-left: 15%;
    background: white;
    padding: 2rem;
    border-radius: 25px 0 25px 0;
    box-shadow: rgba(var(--primary-color-rgb), 0.4) 5px 5px, rgba(var(--primary-color-rgb), 0.3) 10px 10px, rgba(var(--primary-color-rgb), 0.2) 15px 15px, rgba(var(--primary-color-rgb), 0.1) 20px 20px, rgba(var(--primary-color-rgb), 0.05) 25px 25px;
}
.slider-overlay-inner .tag-title{
    font-size: 1.21875rem;
    font-weight: 500;
    color: var(--primary-color);
}
.slider-overlay-inner .large-title{
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.2rem;
    text-align: start;
}
.slider-overlay-inner .large-title span{
    color: var(--primary-color);
}
.slider-overlay-inner .btn{

}
.slider-overlay-inner .btn i{
    margin-right: 4px;
}
.slider-overlay-inner .btn:focus{
    outline: none;
    box-shadow: none;
}
.slider-overlay-inner .btn:hover{
    background: var(--secondary-color);
}

.slider-overlay-inner .btn {
    position: relative;
    display: inline-block;
    padding: 12px;
    letter-spacing: 2px;
    border-radius: 5px;
    outline: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-sizing: border-box;

    background: var(--primary-color);
    color: white;
    transition: 500ms;
    font-size: 14px;
    font-weight: 400;
}

.btn--liquidBtn {
    overflow: hidden;
}
.btn--liquidBtn span {
    position: relative;
    z-index: 1;
}
.btn--liquidBtn:hover div {
    top: -120px;
}
.btn--liquidBtn div {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--primary-color);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    transition: 0.5s;
}
.btn--liquidBtn div::before,
.btn--liquidBtn div::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -75%);
}
.btn--liquidBtn div::before {
    border-radius: 45%;
    background: #141414;
    animation: liquidAnimation 10s linear infinite;
}
.btn--liquidBtn div::after {
    border-radius: 40%;
    background: rgba(20, 20, 20, 0.5);
    animation: liquidAnimation 10s linear infinite;
}
@keyframes liquidAnimation {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--plain-color);
}

.section-title {
  text-align: center;
  padding-bottom: 20px;
}
.section-title h2 {
  font-size: 38px;
  font-weight: 500;
    margin-bottom: 0;
  padding-bottom:45px;
  position: relative;
  color: var(--primary-base-color);
}
.section-title .section-title {
  font-size: 16px;
    color: var(--primary-color);
    opacity: 0.7;
}
/*.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: var(--border-color);
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: calc(50% - 20px);
}*/

/*.section-title h2:before {
    position: absolute;
    bottom: 20px;
    width: 40%;
    left: 60%;
    margin-left:-30%;
    height: 5px;
    content: "";
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    z-index: 4;
}
.section-title h2:after {
    position:absolute;
    width:40px;
    height:40px;
    left:50%;
    margin-left:-20px;
    bottom:0px;
    content: '\00a7';
    font-size:30px;
    line-height:30px;
    color: var(--border-color);
    font-weight:400;
    z-index: 5;
    display:block;
    background-color: white;
    font-family: "Playfair Display", serif;
}*/

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: var(--plain-color);
  min-height: 40px;
  margin-top: 120px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 100px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@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: var(--tartiary-color);
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# Package CARD DESIGN
--------------------------------------------------------------*/
.pack-card.hero {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow:hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
    padding: 0;
}
.pack-card .hero-content-wrap{
    padding: 2rem;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.pack-card .hero-profile-img {
    height: 70%;
    width: 100%;
}

.pack-card .hero-description-bk {
    background-image: linear-gradient(0deg , #3f5efb, #fc466b);
    border-radius: 30px;
    position: absolute;
    top: 55%;
    left: -5px;
    height: 65%;
    width: 108%;
    transform: skew(19deg, -9deg);
}
.pack-card .hero-description-bk {
    background-image: linear-gradient(-20deg , var(--secondary-color), var(--primary-color));
}
.pack-card .hero-description {
    color: #fff;
    margin-bottom: 2rem;
}
.pack-card .hero-description p{
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: unset;
}
.pack-card .hero-title p{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
}

.pack-card .hero-title-btn {
    display: flex;
    justify-content: center;
}
.pack-card .hero-btn {
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #fff;
    transition: 500ms;
}
.pack-card .hero-btn:hover {
    background: var(--secondary-color);
}

.pack-card .hero-btn a {
    color: #fff;
}

.pack-card .hero-date {
    color: #fff;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 30px;
  background: var(--primary-color);
  border-radius: 4px;
  color: var(--plain-color);
}
.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: var(--tartiary-color);
  padding: 6px 30px 8px 30px;
  color: var(--plain-color);
  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: var(--primary-color);
  background: var(--plain-color);
}
.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: var(--plain-color);
  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: var(--primary-color);
  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: var(--tartiary-text-color);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h4 {
  font-size: 18px;
  color: var(--primary-base-color);
  margin-bottom: 15px;
}
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-base-color);
  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 var(--border-color);
  border-radius: 50px;
  transition: 0.5s;
}
.about .icon-box .icon i {
  color: var(--primary-color);
  font-size: 32px;
}
.about .icon-box:hover .icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.about .icon-box:hover .icon i {
  color: var(--plain-color);
}
.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.about .icon-box .title a {
  color: var(--tartiary-text-color);
  transition: 0.3s;
}
.about .icon-box .title a:hover {
  color: var(--secondary-color);
}
.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(var(--primary-color) 50%, var(--secondary-color));
  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 var(--border-color);
  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 var(--border-color);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid var(--border-hover-color);
  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 var(--plain-color);
  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: var(--plain-color);
  padding: 70px 0 60px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: var(--plain-color);
}
.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: var(--primary-color);
  color: var(--plain-color);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--primary-color);
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  /*font-family: "Raleway", sans-serif;*/
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid var(--border-color);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  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: var(--plain-color);
  font-size: 28px;
}
.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: var(--secondary-color);
  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: var(--primary-base-color);;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}
.services .icon-box:hover .icon {
  background: #fff;
}
.services .icon-box:hover .icon i {
  color: var(--primary-color);
}
.services .icon-box:hover .icon::before {
  background: var(--primary-color);
}
.services .icon-box:hover h4 a, .services .icon-box:hover p {
  color: var(--plain-color);
}

/*--------------------------------------------------------------
# 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: var(--plain-color);
  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: var(--border-color);
}
.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: var(--primary-color);
  border: 0;
  padding: 10px 35px;
  color: var(--plain-color);
  transition: 0.4s;
  border-radius: 50px;
}
.appointment .php-email-form button[type=submit]:hover {
  background: var(--secondary-color);
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments {
  overflow: hidden;
}
.departments .nav-tabs {
  border: 0;
}
.departments .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--primary-base-color);;
  border-radius: 0;
  border-right: 2px solid var(--border-color);
  font-weight: 600;
  font-size: 15px;
}
.departments .nav-link:hover {
  color: var(--secondary-color);
}
.departments .nav-link.active {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.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: var(--primary-base-color);;
}
.departments .details p {
  color: var(--tartiary-text-color);
}
.departments .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .departments .nav-link {
    border: 0;
    padding: 15px;
  }
  .departments .nav-link.active {
    color: var(--plain-color);
    background: var(--primary-color);
  }
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors {
  background: var(--plain-color);
}
.doctors .member {
  position: relative;
  box-shadow: 0px 2px 15px var(--box-shadow-secondary-color);
  padding: 30px;
  border-radius: 10px;
}
.doctors .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}
.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 h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--primary-base-color);
}
.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: var(--tartiary-color);
  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: var(--tartiary-color);
}
.doctors .member .social a i {
  color: var(--plain-color);
  font-size: 16px;
  margin: 0 2px;
}
.doctors .member .social a:hover {
  background: var(--secondary-color);
}
.doctors .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# 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: var(--plain-color);
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  /*font-family: "Poppins", sans-serif;*/
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--tartiary-color);
}
.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: var(--secondary-color);
}
.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;
  }
}

/*--------------------------------------------------------------
# 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: var(--plain-color);
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--border-color);
  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: var(--tartiary-text-color);
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: var(--secondary-text-color);
  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: var(--plain-color);
  opacity: 1;
  border: 1px solid var(--border-color);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
@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 var(--border-color);
  border-bottom: 3px solid var(--border-color);
}
.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: var(--plain-color);
}
.contact .info i {
  font-size: 20px;
  color: var(--primary-color);
  float: left;
  width: 44px;
  height: 44px;
  background: var(--tartiary-color);
  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: var(--primary-base-color);;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--primary-base-color);;
}
.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: var(--primary-color);
  color: var(--plain-color);
}
.contact .php-email-form {
  width: 100%;
  background: var(--plain-color);
}
.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: var(--primary-color);
  border: 0;
  padding: 10px 35px;
  color: var(--plain-color);
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: var(--secondary-color);
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-wrapper{
    min-height: 60vh;
}

.contact-inner{
    padding: 0 1rem;
}
.contact-wrap{
    max-width: 1000px;
    min-height: 600px;
    border-radius: 4px;
    margin: 3rem auto;
    background-color: rgb(0,0,0, .03);
    display: flex;
    overflow: hidden;
    box-shadow: rgba(var(--primary-color-rgb), 0.4) 5px 5px, rgba(var(--primary-color-rgb), 0.3) 10px 10px, rgba(var(--primary-color-rgb), 0.2) 15px 15px, rgba(var(--primary-color-rgb), 0.1) 20px 20px, rgba(var(--primary-color-rgb), 0.05) 25px 25px;
}
.contact-wrap .map-side,
.contact-wrap .content-side{
    width: 100%;
}
.contact-wrap .content-side{
    padding: 2rem;
}
.content-side .title{
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
}
.content-side .item-wrap{
    text-align: center;
    margin-bottom: 1.5rem;
}
.content-side .item-wrap span{
    display: flex;
    justify-content: center;
    margin-bottom: .5rem
}
.content-side .item-wrap span i{
    font-size: 1rem;
    background-color: var(--primary-color);
    color: var(--plain-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-side .item-wrap p{
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0;
    text-align: center;
}
/*--------------------------------------------------------------
# Page Banner
--------------------------------------------------------------*/
.page-banner-wrap{
    max-height: 400px;
    height: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 3rem;
}
.page-banner-wrap .overlay-wrap{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-banner-wrap .page-banner-img{
    width: 100%;
    object-fit: cover;
}

.overlay-wrap .banner-text {
    position: relative;
    font-size: 4rem;
    color: rgb(255,255,255, .4);
    text-transform: uppercase;
    line-height: 4rem;
    font-weight: 400;
}
.overlay-wrap .banner-text-single {
    position: relative;
    font-size: 4rem;
    color: white;
    text-transform: uppercase;
    line-height: 4rem;
    font-weight: 400;
}
.overlay-wrap .banner-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: white;
    border-right: 2px solid white;
    overflow: hidden;
    white-space: nowrap;
    animation: textAnimate 6s linear infinite;
}

@keyframes textAnimate {
    0% ,10%,100%{
        width: 0;
    }
    70%,90%{
        width: 100%;
    }
}
/*--------------------------------------------------------------
# Send An Inquiry
--------------------------------------------------------------*/
.inquire-wrapper {
    position: relative;
    width: 100%;
    padding: 6rem 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquire-wrapper .form {
    width: 100%;
    max-width: 820px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 3;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.inquire-wrapper .contact-form {
    background-color: rgb(0,0,0, .7);
    position: relative;
}

.inquire-wrapper .circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, var(--primary-color));
    position: absolute;
    opacity: .7;
}

.inquire-wrapper .circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.inquire-wrapper .circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.inquire-wrapper form {
    padding: 2.3rem 2.2rem;
    z-index: 2;
    overflow: hidden;
    position: relative;
}

.inquire-wrapper .title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.inquire-wrapper .input-container {
    position: relative;
    margin: 1rem 0;
}

.inquire-wrapper .input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
}

.inquire-wrapper textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
}

.inquire-wrapper .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.inquire-wrapper .input-container.textarea label {
    top: 1rem;
    transform: translateY(0);

}

.inquire-wrapper .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.inquire-wrapper .input-container span:before,
.inquire-wrapper .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 12px;
    background-color: black;
    top: 50%;
    transform: translateY(-50%);
}

.inquire-wrapper .input-container span:before {
    left: 50%;
}

.inquire-wrapper .input-container span:after {
    right: 50%;
}

.inquire-wrapper .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.inquire-wrapper .input-container.focus span:before,
.inquire-wrapper .input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.inquire-wrapper .contact-info {
    padding: .2rem;
    position: relative;
}

.inquire-wrapper .btn-primary {
    width: 100%;
}

.inquire-wrapper .contact-info img{
    width: 100%;
    height: 100%;
    border-radius: 6px 0 0 6px;
}

.inquire-wrapper .contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid var(--primary-color);
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}


.inquire-wrapper .big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, var(--primary-color), white);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
    opacity: .5;
}

.inquire-wrapper .big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.inquire-wrapper .square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

@media (max-width: 850px) {
    .inquire-wrapper .form {
        grid-template-columns: 1fr;
    }

    .inquire-wrapper .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .inquire-wrapper .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .inquire-wrapper .square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .inquire-wrapper .big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%;
    }

    .inquire-wrapper .text {
        margin: 1rem 0 1.5rem 0;
    }

    .inquire-wrapper .social-media {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .inquire-wrapper .container {
        padding: 1.5rem;
    }

    .inquire-wrapper .contact-info:before {
        display: none;
    }

    .inquire-wrapper .square,
    .inquire-wrapper .big-circle {
        display: none;
    }

    .inquire-wrapper form{
        padding: 1.5rem 1rem;
    }

    .inquire-wrapper .text,
    .inquire-wrapper .information,
    .inquire-wrapper .social-media p {
        font-size: 0.8rem;
    }

    .inquire-wrapper .title {
        font-size: 1.15rem;
    }

    .inquire-wrapper .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .inquire-wrapper .icon {
        width: 23px;
    }

    .inquire-wrapper .input {
        padding: 0.45rem 1.2rem;
    }

    .inquire-wrapper .btn {
        padding: 0.45rem 1.2rem;
    }
}

/*--------------------------------------------------------------
# Patient Info
--------------------------------------------------------------*/
.patient-info{
    padding: 4rem 0;
}
.patient-info .ghc_bottom_hr{
    font-size: 16px;
    font-weight: 600!important;
}
.patient-info .ghc_bottom_hr i{
    background: var(--primary-color);
    color: var(--plain-color);
    padding: 8px 14px;
    border-radius: 47px;
    font-size: 15px;
    margin-right: 5px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: var(--tartiary-text-color);
  font-size: 14px;
  background: var(--plain-color);
  /*margin-top: 185px;*/
    box-shadow: 0px 0px 5px 0px var(--box-shadow-secondary-color);
}
#footer .footer-top {
  padding: 2rem 0 30px 0;
  background: #f2f2f2;
  /*box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);*/
}
#footer .footer-top .logo{
    margin-bottom: 1rem;
    display: block;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  /*font-family: "Raleway", sans-serif;*/
  color: var(--tartiary-text-color);
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--tartiary-text-color);
  position: relative;
  padding-bottom: 12px;
}
#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: var(--primary-color);
  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: var(--tartiary-text-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--tartiary-text-color);
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter form {
  background: var(--plain-color);
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid var(--border-color);
}
.footer-contact .footer_address {
    padding-bottom: 12px;
}
#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: var(--primary-color);
  color: var(--plain-color);
  transition: 0.3s;
  border-radius: 50px;
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--secondary-color);
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: var(--tartiary-text-color);
}
#footer .social-links a {
  font-size: 18px;
  background: var(--primary-color);
  color: var(--plain-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;

}
#footer .social-links a:hover {
  background: var(--secondary-color);
  color: var(--plain-color);
  text-decoration: none;
}

#footer .social-links {
    display: flex;
    align-items: center;
}
.copyright-brand{
    color: var(--primary-color);
}

/*Css for modal*/
.modal-create-account {
    max-width: 685px !important;
}
.btn-close {
    width: 2px !important;
    height: 2px !important;
    padding-top: 22px;
    padding-right: 50px;
}
.new-account-logo {
    width: 145px;
}
.new-account-bg {
    width: 100%;
    object-fit: cover;
    object-position: 100% 50%;
    margin-top: -140px;
    display: block;
    margin-left: auto;
    height: 478px;
    position: relative;
}
.mt-n1 {
    margin-top: -133px !important;
}
.text-primary {
    color: var(--primary-color) !important;
}
label {
    font-size: 14px;
}


.create-account-or {
    margin-top: -30px;
    text-align: center;
    background: var(--plain-color);
    /*position: absolute;*/
}
.alr_login {
    font-size: 14px;
}
.create-account-social {
    font-size: 18px;
    display: inline-block;
    background: var(--primary-color);
    color: var(--plain-color);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
.sent-otp-sec {
    background: url("../images/otp_bg.jpg");
    background-color: var(--plain-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 86vh;
}
.log-wrap-inner{
    background: rgb(0,0,0, 0.6);
    display: flex;
    padding: 5rem 20%;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.log-wrap-inner .log-wrap{
    max-width: 450px;
    width: 100%;
    border-radius: 8px;
    background: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.log-wrap-header{
    padding: 1rem 2rem;
    border-top: 1rem solid white;
    border-radius: 8px 8px 0 0;
}
.log-wrap .btn-primary{
    width: 100%;
    margin-bottom: 1rem;
}
.log-wrap-body .sub-btn{
    background: var(--primary-color);
    color: white;
    transition: 500ms;
    width: 100%;
    margin-bottom: 1rem;
}
.log-wrap-body .sub-btn:hover{
    background: var(--secondary-color);
}
.other-login-wrap .not-in{
    text-align: center;
    font-weight: 500;
}
.other-login-wrap .other-login{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.other-login-wrap .other-login .create-new{
    color: var(--primary-color);
    transition: 500ms;
    font-size: 14px;
}
.other-login-wrap .other-login .create-new:hover{
    color: var(--secondary-color);
    text-decoration: underline;
}
.other-login-wrap .other-login p{
    margin-bottom: 0;
}
.other-login-wrap .other-login .or-text{
    font-weight: 500;
    opacity: .6;
}
.other-login-wrap .other-login .social-links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .2rem;
}
.other-login-wrap .other-login .social-links a{
    background: var(--primary-color);
    transition: 500ms;
    font-size: 16px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.other-login-wrap .other-login .social-links a:hover{
    background: var(--secondary-color);
    color: white;
}
.log-wrap-body .f_pass{
    color: var(--primary-color);
}

/*sidebar-menu start*/
.sidebar-card {
    margin-top: -60px;
    width: 97px;
    border-radius: 0 32px 32px 0;
}
#sidebar-menu {
    z-index: 9;
    margin-top: 7%;
}
.sticky_txt {
    font-size: 12px;
}
.sticky_txt .sticky-txt-wrap{
    display: flex;
    gap: .5rem;
    flex-direction: column;
    align-items: center;
    padding: .5rem;
}
.sticky_txt .sticky-txt-wrap span{
    font-size: 12px;
    line-height: 14px;
}
.list-group-item {
    font-size: 14px;
    background: none;
    padding: 0 0px 0px 0px;
}
.list-group-item a {
    color: var(--primary-base-color);
}
.sidebar-icon {
    background: transparent linear-gradient(180deg,var(--primary-color) 0,var(--secondary-color) 100%) 0 0 no-repeat padding-box;
    color: var(--plain-color);
    padding: 5px;
    font-size: 20px;
    border-radius: 38px;
}
.sid-consult {
    background: transparent linear-gradient(180deg,#ff8b77 0,#ff6950 100%) 0 0 no-repeat padding-box;
    color: #fff;
}
.sid-booklab {
    background: transparent linear-gradient(180deg,#D65FA4 0,#B83882 100%) 0 0 no-repeat padding-box;
    color: #fff;
}
.sid-selfchecks {
    background: #8806d9;
    color: #fff;
}
.sidebar-list {
    /*border-bottom: 1px solid rgba(0,0,0,.125) !important;*/
    border-bottom: 0 !important;
}
/*sidebar-menu end*/

/*covid_care start*/
.covid-sec {
    background: url("../images/covid_care.jpg") top center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.form-control:focus {
    border-color: var(--border-color) !important;
    box-shadow: 0 0 0 0rem var(--box-shadow-secondary-color);
}
/*covid_care end*/
/*login modal start*/
.log-p img {
    width: 6em;
    height: auto;
}
.patient-icon {
    text-align: center;
    background: var(--primary-color);
    border-radius: 50px;
    padding: 10px;
    font-size: 22px;
    margin-top: -25px;
    color: var(--plain-color);
}
.log-p-txt {
    color: var(--primary-base-color);
    font-weight: 500;
    font-size: 13px;
}
/*login modal end*/
.search {
    position: relative;
    box-shadow: 0 0 40px rgba(51, 51, 51, .1)
}
.search input {
    height: 35px;
    text-indent: 25px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
}
.search input:focus {
    box-shadow: none;
    border: 1px solid var(--border-color);
}
.search .fa-search {
    position: absolute;
    top: 12px;
    left: 11px;
    font-size: 14px;
}
.search button {
    position: absolute;
    top: 0px;
    right: 0;
    height: 35px;
    width: 110px;
    background: var(--primary-color);
    border: 0;
    border-radius: 50px;
    font-size: 14px;
}
.form-control {
    font-size: 14px;
}
.btn-primary:hover {
    border-radius: 54px;
}
.search:hover {
    border-radius: 50px;
}
.modal-header {
    border-bottom: 0;
}
.des-issu-brder {
    border: 1px solid var(--border-color);
}
.w-y-con {
    font-size: 15px;
}
/*.disease-card {*/
/*    background: #d4eef9;*/
/*    display: flex;*/
/*}*/
.book-lab-img img {
    width: 5em;
    height: 5em;
    background: var(--plain-color);
    border-radius: 4px;
    min-width: 5em;
    min-height: 5em;
    margin-right: 0.5em;
    padding: 0.2em;
    float: right;
}
.disease-card {
    /*background: #d4eef9;*/
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /*border: 1px solid #d4eef9;*/
    padding: 0.4em;
    transition: all .2s ease-in-out;
    height: 2.5em;
}
.card-text {
    text-align: center;
    padding: 0.2em;
}
.disease-img img {
    width: 2em;
    height: 2em;
}
.consolt-p-txt {
    font-size: 13px;
    color: var(--primary-base-color);
    margin-top: -1px;
    margin-left: 5px;
}

/*Patient Registration Start*/

.patient-reg-wrap .appointment-btn{
    margin-left:0
}
.patient-reg-wrap .nav-tabs .nav-item.show .nav-link,
.patient-reg-wrap .nav-tabs .nav-link.active{
    color: var(--plain-color);
    background-color: var(--primary-color);
    border-color:var(--primary-color);
    border-radius:0;
    padding:5px 6px
}
.patient-reg-wrap .foregin_doctor{
    background: var(--primary-color)!important;
    border-left:2px solid var(--border-color)!important;
    color: var(--plain-color)!important;
    border-radius:0!important;
    padding:5px 6px
}
.patient-reg-wrap .f-choose{
    background: var(--primary-color);
    color: var(--plain-color);
    padding:6px 14px;
    border-radius:47px;
    font-size:15px
}
.patient-reg-wrap .p_reg{
    color: var(--primary-base-color);
    font-weight:700
}
.patient-reg-wrap .form-group{
    position:relative;
    margin-bottom:2rem
}
.patient-reg-wrap .form-control,
.patient-reg-wrap .form-select{
    border:none;
    border-radius:0;
    outline:0;
    border-bottom:1.5px solid var(--border-color);
}
.patient-reg-wrap .select2-container--default .select2-selection--single{
    border-bottom:1px solid var(--border-color)!important;
    border-radius:4px;
    background-color: var(--plain-color);
}
.patient-reg-wrap input.select2-search__field{
    outline:0
}
.patient-reg-wrap .select2-container--default .select2-selection--single .select2-selection__rendered{
    color: var(--tartiary-text-color);
    line-height:28px;
    font-weight:300;
    font-size:14px
}
.patient-reg-wrap .select2-results__option{
    padding:6px;
    user-select:none;
    -webkit-user-select:none;
    font-weight:300
}
.patient-reg-wrap .column,.row2{
    padding:0 4px
}
.patient-reg-wrap .form-control:focus,
.patient-reg-wrap .form-select:focus{
    box-shadow:none;
    border-radius:0;
    border-bottom:2px solid var(--border-color);
}
.patient-reg-wrap .form-control-placeholder{
    position:absolute;
    top:0;
    left:0;
    transition:.2s;
    font-size:14px;
    color: var(--tartiary-text-color);
}
.patient-reg-wrap .form-control:focus+.form-control-placeholder,
.patient-reg-wrap .form-control:valid+.form-control-placeholder{
    font-size:80%;
    transform:translate3d(0,-90%,0);
    opacity:1;
    top:10px;
    color: var(--tartiary-text-color);
}
.patient-reg-wrap label.col-form-label{
    font-size:14px;
    font-weight:400
}
.patient-reg-wrap label.form-check-label{
    color: var(--primary-color);
    font-weight:400;
    cursor:pointer
}
.patient-reg-wrap .patient_hed{
    color: var(--primary-color)!important;
    font-weight:400;
    border-bottom:1px solid var(--border-color);
}
.patient-reg-wrap .row2{
    display:flex;
    flex-wrap:wrap
}
.patient-reg-wrap .column{
    flex:25%;
    max-width:35%
}
.patient-reg-wrap{
    padding: 2rem 1.5rem;
    margin: 2rem 10%;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}
.registering-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2%;
}
.registering-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4%;
    margin-bottom: 2rem;
}
.registering-for{

    width: 100%;
}
.ref-number .input-group {
    width: 173px;
}
.reg-item-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.reg-item-wrap .reg-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}
.reg-item-wrap .reg-item .col-form-label {
    white-space: nowrap;
}
.patient-reg-wrap .reg-item-wrap .reg-item .form-group {
    margin-bottom: 0;
}
.caregiver-wrap{
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: rgba(0, 0, 0, .03);
    padding: 1rem;
}
.caregiver-wrap .car-item{
    display: flex;
    align-items: center;
    gap: 2rem;
}
.patient-reg-photo-wrap{
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    margin: 2rem 0;
}
@media screen and (max-width:800px){
    .patient-reg-wrap .column{
        flex:100%;
        max-width:100%
    }
}
@media screen and (max-width:600px){
    .patient-reg-wrap .column{
        flex:100%;max-width:100%
    }
}

/*Patient Registration End*/


section#why-us {
    margin-top: -75px;
    position: absolute;
}

.ghc_info_btn {
    color: #50CD89;
    border-color: #E8FFF3 !important;
    background-color: #E8FFF3 !important;
}
.ghc_info_btn:hover {
    color: #000;
    font-weight: 500;
}
.ghc_primary_btn {
    color: #009EF7;
    border-color: #F1FAFF !important;
    background-color: #F1FAFF !important;
}
.ghc_danger_btn {
    color: #F1416C;
    border-color: #FFF5F8 !important;
    background-color: #FFF5F8 !important;
}
.tc {
    color: #368e7d;
}
.tcb {
    color: #010843;
}

/*Login page css*/
.login_img {
    background-image: url("/assets/frontend//images/otp_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    position: relative;
}
label.login_label {
    font-size: 13px;
}
.lo_s_head {
    font-size: 13px;
}
.f_pass {
    font-size: 13px;
}
.c_new_a {
    font-size: 13px;
}
.log_card {
    margin-top: -42px !important;
    margin-right: 5px !important;
}
.ghc_tc {
    color: var(--primary-color);
}
.ghc_bg_green {
    background: var(--primary-color);
}
.ghc_tcb {
    color: #010843;
}
/*select2 custom css*/
.select2-container--default .select2-selection--single {
    background-color: var(--plain-color);
    border-bottom: 1px solid var(--border-color) !important;
    border-radius: 4px;
}
.select2-container--default .select2-selection--single {
    background-color: var(--plain-color);
    border: none;
    border-radius: 4px;
}
input.select2-search__field {
    outline: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--tartiary-color);
    line-height: 28px;
    font-size: 14px;
    font-weight: 300;
    font-size: 14px;
}
.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
    font-weight: 300;
}

.sticky_icon .btn{
    background: var(--primary-color);
    display: flex;
    border-radius: 0 4px 4px 0;
    transition: 500ms;
    box-shadow: var(--box-shadow-secondary-color) 0px 25px 20px -20px;
}
.sticky_icon .btn:hover{
    background: var(--secondary-color);
}
.package .ghc_pac_card{
    box-shadow: var(--box-shadow-secondary-color) 0px 25px 20px -20px;
    transition: 500ms;
}

#profilebutn{
  display: none;
  float: right;
}

.data-security-wrap ul li{
    padding: 0!important;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label{
    margin-bottom: .5rem;
    font-weight: 500;
}
.symptome-checker .organ-txt{
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 16px;
}
.btn-primary-sqr{
    padding: 5px 12px;
    font-weight: 300;
    background: var(--primary-color) !important;
    color: var(--plain-color);
    transition: 500ms;
    border: none;
    border-radius: 4px;
}
.btn-primary-sqr:hover{
    background: var(--secondary-color)!important;
    color: var(--plain-color);
}

/*Find Doctor*/
.find-doctor-wrap{
    padding: 4rem 0;
    min-height: 53vh;
}
.find-doctor-wrap .tab-content section{
    padding: 0;
}
.find-doctor-wrap .tab-content{
    padding: 3rem 1.5rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border-radius: 8px;
}
.find-doctor-wrap .tab-content .form-group label {
    font-size: 16px;
}
.find-doctor-wrap .title-text,
.find-doctor-wrap .title-sub-text{
    text-align: center;
    opacity: .6;
}
.find-doctor-wrap .title-sub-text{
    font-size: 16px;
}
.find-doctor-wrap .title-con{
    margin-bottom: 3rem;
}

.doctor{
    border: 1px solid var(--border-color);
    background: var(--plain-color);
    margin-bottom: 1.5rem;
    border-radius: 4px;
}
.doctor .doctor-img-wrap{
    margin-top: 1rem;
}
.doctor img{
    width: 128px;
    height: 128px;
    object-fit: cover;
    object-position: top;
}
.doctor__image {
    display: block;
    margin: 0 auto;
    border-radius: 50%!important;
}
.doctor__name {
    border-bottom: 1px solid var(--border-color);
    font-size: 1.25rem;
    padding: 1rem;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: .5rem;
}
.doc_spe_name{
    margin-bottom: .5rem;
}
.doctor__specialties__title {
    color: var(--primary-base-color);
    margin-bottom: 0;
    text-align: center;
}
.doctor__btnProfile {
    background: var(--primary-color);
    color: var(--plain-color);
    display: block;
    margin-bottom: 1rem;
    padding: .5rem 1rem;
    text-align: center;
    text-decoration: none!important;
    text-transform: uppercase;
    transition: 500ms;
}
.doctor__btnProfile:hover{
    color: var(--plain-color);
    background: var(--secondary-color);
}

.doctor .schedule{
    background: #646569;
    border-bottom: 1px solid var(--border-color);
    color: #fff;
    display: block;
    padding: .5rem 1rem;
    position: relative;
    -webkit-transform: all .4s;
    transform: all .4s;
    text-transform: uppercase;
    text-decoration: none!important;
    font-size: 14px;
}
.doctor .doctor-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: 1rem;
}
.small-doctor-box .small-doctor-header{
    display: flex;
    gap: 1rem;
    align-items: start;
    margin: .5rem 1rem;
}
.small-doctor-box .small-doctor-header .small-doctor-info{
    width: 75%;
}
.small-doctor-header .small-doctor-img .doctor-img-wrap img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: top;
}
.small-doctor-box .small-doctor-header .doctor__name {
    border-bottom: 0;
    font-size: 1.25rem;
    padding: 0;
    text-align: start;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: .5rem;
}
.small-doctor-box .small-doctor-header .special-wrap{
    padding: 0!important;
    margin-bottom: 0!important;
    min-height: 100px !important;
    opacity: .6;
}
.small-doctor-box .small-doctor-header .special-wrap::-webkit-scrollbar{
    display: none;
}
.small-doctor-box .small-doctor-header .doctor__specialties__title{
    text-align: left;
    margin-bottom: 0;
    font-weight: 600;
}
.small-doctor-box .small-doctor-header .doctor_specialties_txt{
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

}
.small-doctor-box .small-doctor-btn-wrap{
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    margin: 0rem 1rem 1rem 1rem;
}
.small-doctor-box .small-doctor-btn-wrap .doctor__btnProfile{
    width: 100%;
    font-size: 14px;
    margin-bottom: 0;
    padding: .3rem 1rem;
}

.doctor .schedule_icon{
    text-align: center;
}
.doctor .schedule_icon i{
    border-radius: 50%;
    color: var(--plain-color);
    background: var(--primary-color);
    padding: 10px;
    display: inline-block;
    transition: 500ms;
}
.doctor .schedule_icon i:hover{
    background: var(--secondary-color);
}
.doctor .schedule_list{
    text-align: center;
    font-size: 12px;
    margin-bottom: 0;
}
.page-doctor-profile{
    padding: 1rem;
}
.patient-list-header h6{
    border-bottom: 1px solid var(--border-color);
    padding-bottom: .5rem;
    margin-bottom: 1rem;
    font-weight: 500!important;
}
.patient-list-header h6 .badge a{
    background: var(--primary-color);
    padding: 5px .5rem;
    color: white;
    transition: 500ms;
    border-radius: 4px;
}
.patient-list-header h6 .badge a:hover{
    background: var(--secondary-color);
}
#style-3::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

#style-3::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

#style-3::-webkit-scrollbar-thumb
{
    background-color: var(--primary-color);
}
#style-4::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

#style-4::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

#style-4::-webkit-scrollbar-thumb
{
    background-color: var(--primary-color);
}

/*Find Doctor End*/
.appointment-wrap{
    padding: 4rem 0;
}
.appointment-wrap section{
    padding: 0;
}
.appointment-wrap .title-text{
    opacity: 0.6;
    margin-bottom: 3rem;
}
.book-an-appointment .doctor-1{
    box-shadow: none!important;
    margin-top: 0;
    background: transparent;
    padding-top: 0;
}
.book-an-appointment .appointment-inner{
    background: rgb(0,0,0, .03);
    padding: 1.5rem;
    border-radius: 4px;
}
.book-an-appointment .doctor-profile-side{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 1rem;
    border-radius: 4px;
    background: white;
}
.book-an-appointment .doctor-profile-side .doctor__image{
    margin-bottom: 1rem;
}
.book-an-appointment .doctor-profile-side .page-doctor-profile{
    margin-bottom: 0;
    margin-top: 0;
}

.book-an-appointment #regForm{
    padding: 0;
    background: none;
}

.book-an-appointment .reg-item-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}
.book-an-appointment .reg-item-wrap.note-wrap{
    align-items: start;
}
.book-an-appointment .reg-item-wrap .reg-item{
    display: block;
    width: 100%;
}
.book-an-appointment .reg-item-wrap .reg-item.phone-num-wrap{
    display: flex;
    gap: 0;
}
.book-an-appointment .reg-item-wrap .reg-item .col-form-label {
    white-space: nowrap;
    font-weight: 500;
    font-family: Poppins!important;
}
.book-an-appointment .form-check-label {
    font-weight: 300;
    font-family: Poppins!important;
}
.book-an-appointment .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.book-an-appointment .form-check {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.book-an-appointment .reg-item-wrap .reg-item .label-box {
    width: 30%;
}
.book-an-appointment .reg-item-wrap .reg-item .form-group {
    margin-bottom: 0;
}

.book-an-appointment .form-control,
.book-an-appointment .form-select {
    border-radius: 4px!important;
    outline: 0;
    border: 1px solid var(--border-color);
    font-size: 16px;
    height: 42px;
    font-weight: 300;
    font-family: Poppins!important;
    box-shadow: none;
}
.book-an-appointment .select2-container--default .select2-selection--single{
    height: 42px;
    font-family: Poppins!important;
    width: 80px;
    border-radius: 4px!important;
    border: 1px solid var(--border-color);
}
.book-an-appointment #nextBtn{
    font-family: Poppins!important;
}

#appointment_time_container{
    padding: 1rem;
    background: white;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
}
#appointment_time_container button{
    font-family: Poppins!important;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 400!important;
    border-radius: 4px!important;
    box-shadow: none;
    border-color: #5CB338;
    max-width: 126px;
}
#appointment_time_container button:hover{
    background: var(--primary-color);
}
#appointment_time_container button.btn-primary{
     background: #5CB338;
}
#appointment_time_container button.btn-success{
     background: var(--primary-color);
    border-color: var(--border-color);
}

#doctorSearch .form-control{
    border: 1px solid var(--border-color);
}
.number-counter{
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat!important;
    background: gray;
}
.about-us-wrap .number-counter{
    margin-top: 100px;
}
