

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --theme-primary: #055EC3;
  --theme-primary-light: #E7F2FF;
  --theme-secondary: #E3FCF3;
  --theme-light-orange: #FFECE9;
  --theme-gray: #F5F9FE;
  --theme-text: #8E8E8E;
  --theme-gray-color: #525252;
  --theme-dark-text: #252525;
  --theme-black-dark:#1E1E1E;
  --theme-poppins: 'Poppins', sans-serif;
  --theme-archivo: "Archivo", sans-serif;
  --theme-secondary-light1: #ECFDFF;
  --theme-blue-light-bg: #F2F8FF;
  --theme-light-text: #487090;
  --theme-blue-dark-gray: #C6C6C6;
  --theme-dark-gray: #CED1D8;
  
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--theme-text);
  background:#fff;
  transition: 0.35s;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 14px;
  width: 100vw;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.7;
}
a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  transition: 0.5s all ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--theme-archivo);
	line-height: normal;
}
p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-text);
  line-height: 1.7;
}
img {
  max-width: 100%;
}
a,
button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  background: none;
  transition: 0.5s all ease-in-out;
}
.blue-color {
  color: var(--theme-primary);
}
.text-color {
  color: var(--theme-text);
}
.text-gray {
  color: var(--theme-gray-color);
}
 .text-dark-color {
  color: var(--theme-dark-text);
}
.light-blue-bg {
	background:var(--theme-blue-light-bg);
}
.black-dark-color {
	color: var(--theme-black-dark);
}
.font-archivo {
  font-family: var(--theme-archivo);
}
.font-poppins {
  font-family: var(--theme-poppins);
}
.fw-100 {
  font-weight: 100;
}
.fw-200 {
  font-weight: 200;
}
.fw-250 {
  font-weight: 250;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}
.fs-64 {
	font-size: 26px;
}
.fs-42 {
	font-size:24px;
}
.fs-28 {
	font-size: 22px;
}
.fs-24 {
	font-size: 20px;
}
.fs-22 {
  font-size: 18px;
}
.fs-20, .fs-18 {
  font-size: 16px;
} 
.fs-16 {
  font-size: 16px;
}
.fs-15 {
  font-size: 15px;
} 
.fs-14 {
  font-size: 14px;
} 
.fs-12 {
  font-size: 12px;
}
.l_spacing0_16 {
  letter-spacing: -0.16px;
}  
.light-bg {
  background: var(--bs-light-background);
}
.column-title {
  margin-bottom: 14px;
}
.z_index1 {
  z-index: 1;
}
.main-wrapper {
    overflow: hidden;
}
.wow-common-animate {
  visibility: hidden
}
 
body::-webkit-scrollbar {
  width: 4px;
}
 
body::-webkit-scrollbar-track {
  background: #fff;
   border-radius: 10px;
}
 
body::-webkit-scrollbar-thumb {
  background-color:var(--theme-primary);
  border-radius: 10px;
}
 
body::-webkit-scrollbar-thumb:hover {
  background:var(--theme-primary);
}
/*---------  Outer Button ------*/
.common-btn {
	padding: 15px 20px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	transition: 0.5s all ease-in-out;
	overflow: hidden;
	position: relative;
	border: none;
	display: flex;
	background: var(--theme-primary);
	color: #fff;
	align-items: center;
	gap: 10px;
	width: fit-content;
}
.common-btn:hover {
  background: var(--theme-secondary);
  color: var(--theme-primary);
}
.btn-arrow {
	color: #fff;
	font-size: 18px;
	transition: 0.5s all ease-in-out;
	z-index: 1;
}
.common-btn:hover .btn-arrow { 
  color: var(--theme-primary); 
}  

/*------ section heading ------*/
.section-padding {
  padding: 45px 0;
}
.common-heading { 
	color: #1E1E1E;
} 
/***** Header Section *****/
/*------- Header Section ------*/

.header-section {
	z-index: 999;
	position: absolute;
	width: 100%;
	top: 0;
	padding: 10px 0;
	background: linear-gradient(180deg, #fff 72.57%, rgba(255, 255, 255, 0.09) 99%);
}
.header-logo-name {
	font-size: 20px;
	padding-left: 10px;
}
.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}
.navbar .menu-item {
	padding: 8px 20px;
	font-size: 14px;
	position: relative;
	z-index: 2;
	color: var(--theme-text);
	border-radius: 100px;
	border: 1px solid transparent;
    position: relative;
}
.menu-item::before {
	background: var(--theme-primary);
	width: 0;
	height: 2px;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	border-radius: 0 0 10px 10px;
	transition: 0.5s all ease-in-out;
}
.menu-item:hover{
    color: var(--theme-primary);
}
.navbar-items.active .menu-item,
.navbar-items .menu-item:hover { 
  color: var(--theme-primary);
}
.navbar-items.active .menu-item,
.navbar-items .menu-item:hover { 
  color: var(--theme-primary);
}
.navbar-items.active .menu-item::before,
.navbar-items .menu-item:hover::before { 
  color: var(--theme-primary);
  width: 62%;
}
.header-contact {
	display: flex;
	align-items: center;
	gap: 10px;
}
.header-btns a img {
  width: 110px;
}
.header-mobile {
	position: absolute;
	left: 9px;
}
.header-contact-details a {
    font-size: 13px;
}
.mobile-version-logo {
	margin-left: 40px;
}
.header-section .container {
	position: relative;
	z-index: 2;
}
.header-section.navbar::after {
	background: linear-gradient(180deg, #fff 72%, rgba(255, 255, 255, 0.91) 76%, rgba(255, 255, 255, 0) 100%);
	width: 100%;
	height: 115px;
	position: absolute;
	top: 0;
	content: "";
}
/* dropdown menu */
.navbar .navbar-dropdown {
  position: relative;
}
.expand-nav-btn::after {
  margin-left: 5px;
  content: "\f0d7";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  transition: 0.5s all ease-in-out;
  display: inline-block !important;
}
.expand-nav-btn.open::after,
.expand-nav-btn:hover::after {
  transform: rotate(-180deg);
}
.navbar .dropdown-menu {
  position: absolute;
  background: #ffdca8;
  width: 180px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  padding: 20px 15px;
  border-radius: 10px;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  border: none;
}
.dropdown-menu-item {
  color: #1e1e1e;
  padding: 5px;
  display: block;
  font-size: 13px;
}
.dropdown-menu-item:hover {
  color: var(--bs-orange);
}
.navbar .navbar-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-items {
  display: block !important;
}

/* Header Toggle Button */
.header-toggle-btn {
	display: none;
	justify-content: center;
	align-items: center;
	width: 27px;
	height: 27px;
	cursor: pointer;
	z-index: 9;
	position: absolute;
	top: -11px;
	left: 0;
}
.navbar .toggle_lines::before,
.navbar .toggle_lines::after {
  content: "";
  position: absolute;
}
.navbar .toggle_lines,
.navbar .toggle_lines::before,
.navbar .toggle_lines::after {
  width: 1.5rem;
  height: 3px;
  background: var(--theme-primary);
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
}
.navbar .toggle_lines::before {
  transform: translateY(-0.5rem);
}
.navbar .toggle_lines::after {
  transform: translateY(0.5rem);
}
.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

/* animation menu hamburger */
.header-toggle-btn.open .toggle_lines {
  transform: translateX(1rem);
  background: transparent;
}
.header-toggle-btn.open .toggle_lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: var(--theme-primary);
}
.header-toggle-btn.open .toggle_lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: var(--theme-primary);
}

 
@keyframes blink {
  from,
  to {
    color: transparent
  }
  50% {
    color: var(--theme-secondary)
  }
} 
.blinker {
  display: inline-block;
  margin-left: 5px;
  font-size: inherit;
  animation: blink-blinker 0.75s step-end infinite;
}
@keyframes blink-blinker {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
} 
 
/**** Footer section ***/
.footer-section {
	background: var(--theme-primary);
	padding: 67px 0 0;
}
.footer-column {
	border-top: 1px solid rgba(255, 255, 255, 35%);
	padding: 20px 0 10px;
	height: 100%;
}
.footer-about {
  margin-bottom: 30px;
}
.footer-about img {
	width: 115px;
	margin-bottom: 6px;
}
.footer-widget {
	font-size: 16px;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	margin-bottom: 15px;
	letter-spacing: 4%;
}
.footer-link a {
	color: #fff;
	font-size: 14px;
	margin-bottom: 4px;
	display: block;
	width: fit-content;
	position: relative;
}
.footer-link a::before {
	width: 0;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 3px;
	content: "";
	background: var(--theme-secondary);
	transition: 0.5s all ease-in-out;
	opacity: 0;
}
.footer-link a:hover::before {
	width: 100%;
	opacity: 1;
}
.footer-link a:hover {
	color: var(--theme-secondary);
}

.footer-social {
	margin-top: 10px;
}
.footer-social li {
  display: inline-block;
  margin: 10px 15px 0 0;
}
.footer-social li i {
	font-size: 16px;
	color: var(--theme-primary);
	transition: 0.5s all ease-in-out;
	background: #fff;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.footer-social li i:hover {
  color: var(--theme-primary);
  transform: rotate(360deg);
}
.footer-contact-info, .footer-address {
	color: #fff;
	font-size: 14px;
	margin-bottom: 10px;
	display: block; 
}
.footer-contact-info:hover {
	text-decoration: underline;
	padding-left: 2px;
	color: var(--theme-secondary);
}
/*-- footer copyright --*/
.copyright-wrapper {
	padding: 20px 0 20px;
	border-top: 1px solid rgba(255, 255, 255, 35%);
	margin-top: 20px;
}
.footer-copyright p {
	font-size: 10px;
	opacity: 35%;
}


 


/*---- HOme Ent Taps with slider  Panel ---*/
.home-banner-section {
	padding-top: 100px;
	display: block;
}
.home-banner-section .banner-contnet-wrapper {
	padding:15px 0 0;
}
.ent-slider-details .banner-text {
	color: #8E8E8E;
	margin-top: 15px;
	width: 100% !important;
}
.tab-slider-image {
	margin-top: 36px;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
}
.banner-ent-pills {
	gap: 5px;
	background: #fff;
	padding: 5px;
	border-radius: 0 5px 5px 0;
}
.home-ent-links {
	color: #252525;
	font-size: 14px;
	font-weight: 400;
	padding: 6px 15px 6px 37px;
	background: #F5F9FE;
	border-radius: 100px !important;
}
.ent-tab-title::before {
	background: #C0DDFF;
	width: 12px;
	height: 12px;
	position: absolute;
	left: -20px;
	top: 4px;
	content: "";
	border-radius: 50%;
}
.home-ent-links.active .ent-tab-title::before {
	background: #FFF;
}
.home-ent-links.active {
	background: #055EC3 !important;
	color: #fff !important;
}
.home-slider-title {
	font-size: 30px;
	color: #1E1E1E;
}
.ent-slider-details .banner-contnet-wrapper .banner-text {
	width: 100%;
}
.ent-slider-items .banner-btn {
	margin: 24px 0 20px;
}
.tab-slider-image img {
	object-fit: cover;
	border-radius: 30px;
	object-position: center;
}
  .dots_groups.swiper-pagination-bullets.swiper-pagination-horizontal  {
    position: absolute;
    bottom: auto;
    left: auto;
    right: 30px;
    bottom: 60px;
    z-index: 100;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

   .dots_groups .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: transparent;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
  }

   .dots_groups .swiper-pagination-bullet-active {
    opacity: 1;
  }

   .dots_groups .swiper-pagination-bullet::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #FFFFFF69;
    border-radius: 50%;
  }

 .dots_groups .swiper-pagination-bullet-active:hover::before,
 .dots_groups .swiper-pagination-bullet-active::before {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 1;
  }

   .dots_groups .swiper-pagination-bullet::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    box-sizing: border-box;
    opacity: 0;
    transition: 0.3s all;
  }

   .dots_groups .swiper-pagination-bullet:hover:after {
    opacity: 0.5;
  }

 .dots_groups .swiper-pagination-bullet-active:hover:after,
 .dots_groups .swiper-pagination-bullet-active:after {
    opacity: 1;
  }

  .counter_slider {
    position: absolute;
    z-index: 100;
    font-size: 32px;
    color: #fff;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    right: 74px;
    bottom: 47px;
    font-family: 'Poppins', sans-serif;
  }

  .counter__total {
    position: relative;
    font-size: 12px;
    margin: 21px 0 0 6px;
    padding-left: 5px;
  }

  .counter__total::before {
    background: #fff;
    width: 2px;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 2px;
    content: "";
    transform: rotate(18deg);
  }
  /*-- Home Banner Clip Mask Image --*/
.clip-mask-shape {
	position: absolute;
	top: 0;
	left: 0;
}
 .clip-wrapper {
	height: 100%;
}
.clipped-image {
	width: 100%;
	height: 100%;
	object-fit: cover;

}
/*---- HOme specialist Taps PAnel ---*/
.ent-specialist {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ent-nav-pills {
	justify-content: center;
	gap: 16px;
}
.ent-nav-btn {
	border: 1px solid #D1EAF7;
	width: 74px;
	height: 74px;
	padding: 13px;
	position: relative;
	overflow: hidden;
}
.ent-nav-btn:hover {
	border: 1px solid transparent; 
}
.ent-nav-btn::before {
	background: #D1EAF7;
	width: 0;
	height: 0;
	position: absolute;
	top: 50%;
	left: 0;
	content: "";
	border-radius: 50%;
	z-index: -1;
	transition: 0.5s all ease-in-out;
	right: 0;
	margin: 0 auto;
}
/* .ent-nav-btn:hover::before, .ent-nav-btn.active::before {
	width: 100%;
	height: 100%;
	top: 0; 
} */
.ent-nav-btn:hover::before {
	width: 100%;
	height: 100%;
	top: 0; 
}
.ent-nav-btn.active {
	background: transparent !important;
	border: 1px solid transparent; 
}
.specialist-content {
	margin-top: auto;
}
.specialist-image {
	margin-top: 13px;
}
.specialist-image img {
    border-radius: 30px;
}

/************ Vision section *****************/

.vision-heading {
	margin-bottom: 20px;
}
.caring-heading {
	font-size: 26px;
	color: #1E1E1E;
	margin: 11px 0 20px;
	padding-bottom: 30px;
}

.caring-heading::before {
	width: 93%;
	border-top: 1px solid #C2C2C2;
	height: 2px;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
}
.info-text {
	background: #F2F8FF;
	padding: 10px 20px;
	border-radius: 12px;
	display: flex;
	align-items: center;
}
.vision-image img {
	height: 100%;
	object-fit: cover;
	border-radius: 33px;
}
.year-title {
	color: var(--theme-gray-color);
}

.year-count {
	font-size: 42px;
	margin-right: 15px;
	min-width: 85px;
}
.inner-service-image img {
    border-radius: 15px;
}

/********* Home Service Section ******/
.service-main-title{
    margin-bottom: 20px;
  font-size: 26px;
}
.success-surgery-box {
	background: var(--theme-primary);
	padding: 20px 15px;
	border-radius: 12px;
}

.single-service-column {
	margin: 18px 0 0;
}
.successful-count {
	font-size: 42px;
	margin-right: 28px;
}
.successful-title {
	width: 170px;
}
.single-service-column p {
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0;
}
/********* Branch Section ******/
.branch-section .branch-main-text { 
	color: var(--theme-gray-color);
}
.common-top-space {
	padding-top: 25px;
}
.branch-nav-btn {
	cursor: text !important;
}

.branch-nav-btn {
	margin-bottom: 25px;
}
.branch-nav-btn.active {
	background: transparent !important;
}
.branch-tab-title {
	margin-bottom: 10px;
	color: #252525;
	cursor: pointer;
}
.branch-nav-btn.active .branch-tab-title { 
    color: var(--theme-primary);
}
.branch-image-panel .tab-content {
	border-radius: 18px;
	overflow: hidden;
}

/********* About Section ******/
.about-text { 
	margin-top: 20px;
}
.about-image {
	display: grid; 
	gap: 32px;
}
.about-tabs-image {
	margin: 0 0 36px 0;
}
.about-tab-link {
	color: #8E8E8E;
	margin: 0;
	font-size: 17px;
	border-top: 1px solid #C2C2C2;
	border-radius: 0 !important;
	padding: 15px 0;
	width: 100%;
	text-align: left;
}
.about-tab-link:last-child { 
	border-bottom: 1px solid #C2C2C2; 
}
.about-tab-link.active {
	color: #252525 !important; 
    background: transparent !important;
}
.about-image img {
    border-radius: 20px;
}

/********* Experts Section ******/
.common-swipper-btn{
  position: absolute;
	top: 0; 
	text-align: right;
	display: block; 
  margin: 0 auto;
}


.testimonials-btn-prev, .swiper-button-prev, .experts-btn-prev{
	left: 65px;
	right: auto;
}
.testimonials-btn-next, .swiper-button-next, .experts-btn-next {
	right: auto;
}
.testimonial-items {
	height: auto !important;
}

.common-swipper-btn i {
	border: 1px solid var(--theme-primary);
	width: 40px;
	height: 40px;
	font-size: 15px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--theme-primary);
	opacity: 0.5;
	transition: 0.5s all ease-in-out;
}
.common-swipper-btn::after {
	display: none;
}
.common-swipper-btn i:hover {
	opacity: 1;
}
.common-swipper-btn-prev::after, .common-swipper-btn-next::after {
	display: none;
}
.slid-expart-column::after {
	background: linear-gradient(0deg, #fff 17px, #ffffffcf 31%, #fff0 85%);
	height: 49%;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
}
.slide-expert-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}


/*******  help-need-section   *********/
.inner-need-wrap {
	background: var(--theme-primary);
	border-radius: 16px; 
	overflow: hidden;
	align-items: center;
}

.need-left {
	padding: 32px 15px;
	text-align: center;
}
.need-left p {
	opacity: 60%;
}

.need-right::after {
	background: #3F7EC7;
	width: 100%;
	height: 100px;
	position: absolute;
	right: 0;
	top: 0px;
	content: "";
	border-radius: 20px;
}
.need-right {
	padding: 20px 35px;
}
.need-help-btn {
	text-align: center;
	display: block;
}
.need-help-btn i {
	top: 2px;
}

/*******  Happy Customer section   *********/
.testimonials-detail {
	padding: 40px 30px;
	height: 100%;
}
.start-group i {
	color: #FFB800;
	margin: 0 3px;
	font-size: 16px;
}


/**** Faqs section ***/  
.faq-text {
	margin: 50px 0 0; 
}
.faq-text {
	margin: 20px 0 0;
	max-width: 573px;
}
.accordion-item.faqs-items {
	border: none;
	margin: 0 0 20px;
	padding: 24px 60px 24px 12px;
	background: #F2F8FF;
	border-radius: 14px;
}
.accordion-item.faqs-items:last-child::before {
  display: none;
}
.accordion-button.collapsed:focus {
  box-shadow: none;
}
.faqs-header .accordion-button:not(.collapsed) {
  background: none;
  border: none !important;
  box-shadow: none;
  padding: 0;
} 
.faqs-header button {
  background: transparent;
  border: none !important;
  padding: 0;
}  
.faqs-title {
	color: #1E1E1E; 
}
.faqs-items .accordion-body {
  padding: 0 
}
.faqs-items .accordion-body p {
	margin: 18px 0 0;
}
.faqs-header .accordion-button::after {
	content: "\f285";
	background-image: none;
	background: #fff;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 23px;
	color: #2E8EFF;
	position: absolute;
	right: -48px;
	box-shadow: 0px 5px 10px -2px #080F340F;
	font-family: bootstrap-icons !important;
	top: -6px;
}
.faqs-header .accordion-button:not(.collapsed)::after {
	background-image: none; 
	color: #FFF;
	background: #2E8EFF;
	transform: rotate(90deg);
}



/*==============================
        About us Page
================================*/
/*** About us  Banner****/
.common-banner-section {
	overflow: hidden;
}
.banner-contnet-wrapper {
	padding: 20px 15px 0;
}
.banner-heading {
	color: #1E1E1E;
	font-size: 30px;
}

.banner-text { 
	color: #8E8E8E;
	margin-top: 24px;
}

.banner-btn {
	margin: 30px 0 20px;
}
.banner-happy-client p {
	line-height: normal;
}
.inner-banner-image {
	width: fit-content;
	padding-top: 75px;
}

/*** Counter Section ****/
.conter-section {
	background: var(--theme-primary);
	padding: 31px 0;
}
.counter-icon {
	min-width: 30px;
}

/*** We Offer Section ****/
.section-sub-heading {
	width: fit-content;
	box-shadow: 2px 4px 10px 0px #3E3E3E1A;
	padding: 5px;
	border-radius: 5px;
	margin-bottom: 10px;
}
.offer-main-text {
	margin-top: 15px;
}
.offer-row {
	padding-top: 22px;
}
.offer-column {
	display: flex;
	background: #fff;
	border-radius: 14px;
	padding: 10px;
	align-items: center;
	gap: 16px;
	transition: 0.5s all ease-in-out;
}
.offer-column:hover {
  background: var(--theme-primary);
}
.offer-icon {
	min-width: 75px;
	height: 75px;
	background: #fff;
	width: fit-content;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 32px;
	border: 1px solid var(--theme-primary);
}
.offer-heading {
	color: #252525;
	transition: 0.5s all ease-in-out;
}
.offer-inner-content p {
  margin: 0;
  transition: 0.5s all ease-in-out;
}
.offer-column:hover .offer-heading,
.offer-column:hover p {
  color: #fff;
}

/*** Our Experts Section ****/
.section-column-text{
	margin: top 20px;
}
.section-column-text {
	max-width: 600px;
	margin: 0 auto;
}
.row.experts-row {
	max-width: 945px; 
}
.our-experts {
	background: #F2F8FF;
	border-radius: 19px;
	width: fit-content;
	padding: 15px;
	overflow: hidden;
	margin: 0 auto;
}
.experts-image {
	border-radius: 19px 19px 12px 12px;
}
.experts-details {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	padding: 15px 19px;
	border-radius: 12px 12px 0 0;
}
.experts-details { 
	padding: 11px 14px;
	border-radius: 12px 12px 0 0;
}

/*==============================
        Ent Service Page
================================*/
/*** Health Priority Section ****/
.priority-details p{
	margin: 10px 0 24px;
	transition: 0.5s all ease-in-out;
}
.priority-details:hover p {
	margin: 10px 0 10px;
}
.single-priority {
	border-radius: 20px;
}

.priority-details {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 48px 15px 24px;
	z-index: 1;
}
.single-priority::before {
	background: linear-gradient(180deg, rgba(40, 40, 40, 0) 0%, #282828 100%);
	width: 100%;
	height: 300px;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	transition: 0.5s all ease-in-out;
}
.single-priority:hover::before {
	opacity: 0;
}
.single-priority::after {
	background: linear-gradient( 180deg, rgba(40, 40, 40, 0) 0%, var(--theme-primary) 100% );
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	z-index: 0;
	transition: 0.5s all ease-in-out;
	transform: translateY(100%);
	top: auto;
}
.single-priority:hover::after {
	transform: translateY(0);
}
.priority-links {
	color: #fff;
}
.single-priority:hover .priority-links {
	letter-spacing: 0.2px;
}
.priority-links i {
	color: #fff;
	padding-left: 10px;
}
.single-priority:hover .priority-links i {
	padding-left: 20px;
}
.load-more {
	margin-top: 36px;
}



/*** World Class Section ****/

.world-class-wrapper {
	background: #73ECBE;
	padding: 40px 15px 30px;
	border-radius: 20px;
	overflow: hidden;
}
.world-column-left {
	display: flex;
	flex-direction: column;
}
 
.world-column-left .white-btn { 
	margin-top: 50px;
} 
.white-btn {
	background: #fff;
	color: var(--theme-primary); 
}
.white-btn .btn-arrow { 
	color: var(--theme-primary);
}
.white-btn:hover {
	background: var(--theme-primary);
	color: #fff;
	margin-top: 50px;
}
.white-btn:hover .btn-arrow { 
	color: #fff;
} 
.class-doctor-info img {
	margin-bottom: -24px;
	width: 370px;
}
.wellness-title {
	max-width: 253px;
	text-align: center;
	position: relative;
	margin: 0 auto 35px;
}
.half-round-shape {
	position: absolute;
	left: 0;
	bottom: 0;
}
.card-shape-shape {
	position: absolute;
	right: 0;
	bottom: 0;
	opacity: 0;
}
.world-card {
	background: #fff;
	padding: 42px 15px;
	border-radius: 10px;
	margin-bottom: 20px;
	transition: 0.5s all ease-in-out;
}
.card-icon { 
	padding: 12px;
	width: fit-content;
	margin: 0 auto;
	border-radius: 10px;
	transition: 0.5s all ease-in-out;
}
@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.world-card:hover .card-icon {
	animation: wobble-vertical 1s ease-in-out 1;
}
.bg-icon1 {
	box-shadow: 0px 5px 10px 0px #FFF1DF;
	background: #F2F5FF; 
}
.bg-icon2 {
	box-shadow: 0px 5px 10px 0px #EFECDC;
	background: #FFF7E5
}
.bg-icon3 {
	box-shadow: 0px 4px 4px 0px #EFD69540;
	background: #FFFBF8
}
.bg-icon4 {
	box-shadow: 0px 5px 10px 0px #E1E1E1;
	background: #FFE7E9
}
.card-title {
	color: #1E1E1E;
	margin: 16px 0 10px;
}
.card-details p {
	color: #1E1E1E;
}


 /*==============================
        Ambulance Service Page
================================*/
/* How It Works Section */
.understanding-section{
	padding: 52px 0;
}
.single-card-column {
	transition: all 0.3s ease;
	border-radius: 20px;
	padding: 32px 20px 26px;
}
.blue-card {
	background: #E4F6FF;
}
.green-card {
	background: #E3FCF3;
}
.light-red-card {
	background: #FFECE9;
}
.single-card-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.icon-circle {
	width: 110px;
	height: 110px;
	background: #fff;
	transition: all 0.3s ease;
	padding: 10px;
}

.single-card-column:hover .icon-circle {
    transform: scale(1.1);
}
.common-card-title {
	margin: 16px 0 10px;
}
.common-card-text {
	color: #3C4664;
	max-width: 274px;
	margin: 0 auto 24px;
}
.outer-btn {
	background: transparent;
	border: 1px solid var(--theme-primary);
	color: var(--theme-primary);
}
.outer-btn  i{ 
	color: var(--theme-primary);
}
.outer-btn:hover {
	background: var(--theme-primary);
	color: #fff;
}
.outer-btn:hover i { 
	color: #fff !important;
}
.ambulance-service-image, .emergency-doctor-info .updownAnimation
  {
	border-radius: 15px;
}
 /**** Emergency Medical Services ***/
.row.emergency-medical-row {
	display: grid;
	gap: 30px;
}
.emergency-left-column {
	display: grid;
	gap: 13px;
	grid-template-columns: 48% 49%;
}
.year-experience {
	background: var(--theme-primary);
	padding: 21px 16px;
	border-radius: 10px;
	gap: 16px;
	margin-top: 20px;
	display: grid;
}
.emergency-doctor-info {
	padding-top: 35px;
}
.emergency-ambulance-info { 
	top: -10px;
}
.year-count-experience {
	background: #E4F6FF;
	border-radius: 10px;
	padding: 14px 12px;
	height: 58px;
	min-width: 58px;
	width: 58px;
	display: flex;
	flex-direction: column;
	line-height: 19px;
}
.emergency-lists li img {
	margin-right: 14px;
	float: left;
	position: relative;
	top: 6px;
}
.emergency-lists li span {
	overflow: hidden;
	display: block;
}
 /**** 24/7 support section ***/
.emergency-support {
	background: linear-gradient(180deg, #E4F6FF 53.41%, rgba(228, 246, 255, 0) 64.65%);
	border-radius: 20px;
	display: grid;
	overflow: hidden;
}
.support-text {
	margin: 24px 0 29px;
}
.Emergency-support-list i { 
	color: #27BE43;
	font-size: 18px;
	margin-right: 10px;
}

.support-content {
	padding: 30px;
	height: 100%;
}

.Emergency-support-list ul {
	display: grid;
	gap: 9px;
	grid-template-columns: 100%;
	margin-bottom: 40px;
}
.support-full-image {
	z-index: -1;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: left;
}
 /*==============================
        Treatment Page
================================*/
/****  Better Live Section ****/
.better-live-section {
	background: #F2F8FF;
	padding: 50px 0;
}
.row.better-live-row { 
	margin-top: 50px;
} 
.single-info {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 24px;
}

.icon-area {
	min-width: 52px;
} 
.single-info:hover .icon-area img {
	animation: wobble-vertical 1s ease-in-out 1;
}
.better-content p {
	color: #3C4664;
}

/***** Ent Treatement section *****/
.ent-column {
	background: linear-gradient(81.42deg, #F3FBFF 0%, #DEFFF3 99.13%);
	padding: 35px 40px 28px;
	border-radius: 20px;
	transition: all 0.3s ease;
	height: 100%;
}
.ent-column:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 21px -18px rgba(0, 0, 0, 0.15);
}
.treatment-title{
	margin: 10px 0;
}
.ent-icon-area {
	width: 82px;
	height: 82px;
	background: rgb(255, 255, 255);
	padding: 10px;
	transition: 0.5s all ease-in-out;
}
.ent-column:hover .ent-icon-area {
	transform: scale(1.1);
}
.ent-treatment-content p {
	color: #3C4664;
}
.ent-column .common-btn {
	margin-top: 24px;
}


 /*==============================
        Microtia Surgery Page
================================*/
/***** Banner section *****/
.surgeon-banner {
	background: #E3FCF3;
	padding: 100px 0 90px;
}
.surgeon-group { 
	gap: 11px;
	margin-top: 30px; 
}
.banner-contnet-wrapper.surgery-banner-wrapper{
	max-width: 100%;
}
.surgeon-banner-image {
	display: grid;
	gap: 8px;
	grid-template-columns: 60% 36%;
	margin-left: auto;
}
.banner-bottom-image {
	margin-top: 8px;
} 
.banner-left-img img {
    border-radius: 30px;
}
/***** surgeries section *****/
.surgeries-row {
	grid-row-gap: 36px;
}
.surgeries-image img {
	border-radius: 20px 20px 0 0;
}

.surgeries-title {
	margin: 15px 0 12px;
}

/***** REal Result section *****/
.real-result-detail {
	background: #E3FCF3;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
}
.result-items {
	height: auto;
}
.result-image img {
	width: 100%;
}
.slider-text {
	padding: 16px 20px;
}
.result-arrow {
	position: absolute;
	bottom: -42px;
	top: auto;
	width: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #fff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	font-size: 19px;
	transition: 0.5s all ease-in-out;
	z-index: 1;
}
.result-btn-prev {
	left: -35px;
}
.result-btn-next {
	right: -35px;
}
.result-arrow:hover {
	background: var(--theme-primary);
	color: #fff;
}
.result-arrow::after {
	display: none;
}
/**** Understanding Section ****/
.understanding-content {
	max-width: 650px;
}
.video-poster-area {
	border-radius: 20px;
}
.video-poster-area::before {
	background: #0A0A0A4D;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.video-top-shape {
	position: absolute;
	right: 30px;
	top: -25px;
}
.video-bottom-shape {
	position: absolute;
	left: 30px;
	bottom: -25px;
}

.popup-play-btn {
	width: 52px;
	height: 52px;
	font-size: 30px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	background: var(--theme-primary);
	border-radius: 50%;
	text-align: center;
	margin: 0 auto;
	animation: video_ripple 1.5s linear infinite;
	color: #fff;
}
.video-iframe {
	width: 90%;
	height: 400px;
}

.vedio-modal-container {
  display: none;
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.vedio-modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 100%;
  height: 100%;
}

.close-button {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 30px;
	font-weight: bold;
	color: white;
	background-color: transparent;
	border: none;
	cursor: pointer;
}
.thumbnail {
  cursor: pointer;
}
@keyframes video_ripple {
   0% {
    -webkit-box-shadow:
  0 0 0 0 hsla(0, 0%, 100%, 0.22), 0 0 0 10px hsla(0, 0%, 100%, 0.22), 0 0 0 20px hsla(0, 0%, 100%, 0.22);
    box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.22), 0 0 0 10px hsla(0, 0%, 100%, 0.22), 0 0 0 20px hsla(0, 0%, 100%, 0.22);
   }  
   100% {
    -webkit-box-shadow:
  0 0 0 10px hsla(0, 0%, 0%, 0.22), 0 0 0 20px hsla(0, 0%, 0%, 0.22), 0 0 30px hsla(0, 0%, 100%, 0);
    box-shadow: 0 0 0 10px hsla(0, 0%, 100%, 0.22), 0 0 0 20px hsla(0, 0%, 100%, 0.22), 0 0 0 30px hsla(0, 0%, 100%, 0);
  }
  } 
 




/**** Patient Stories Section ****/
.patient-videos-section {
	background: #E3FCF3;
	padding: 50px 0;
}
.video-col1 .stories-column, .video-col3 .stories-column {
	height: 210px;
}
.video-col2 {
	margin: 30px 0;
}
.stories-poster-area {
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
}
.video-col1 .stories-column:first-child, .video-col3 .stories-column:first-child {
	margin-bottom: 30px;
}
.stories-poster-area img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.video-col2 .stories-column {
	height: 450px;
}
.stories-poster-area::before {
	background: linear-gradient(180deg, rgba(227, 252, 243, 0) 0%, #000000 100%);
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
}
 
.patient-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.patient-description {
	margin-bottom: 12px;
}

/***** Single Doctor Section ****/
.single-doctor {
	background: #F3F4F6;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
}
.doctor-image {
	padding: 20px 20px 24px;
	border-radius: 10px;
	overflow: hidden;
}
.doctor-header {
    margin-bottom: 15px;
}
 
.doctor-sub-heading {
	background: #fff;
	border-radius: 5px;
	padding: 5px 16px;
	width: fit-content;
}
.doctor-name {
	margin: 16px 0 10px;
}
.doctor-details {
	padding: 0 20px 33px;
}
.doctor-booking {
	display: flex;
	justify-content: space-around;
	border-top: 1px solid #E6E6E6;
	position: relative;
	margin-top: auto;
}
.doctor-booking::before {
	background: #E6E6E6;
	width: 1px;
	height: 100%;
	position: absolute;
	left: 0;
	content: "";
	right: 0;
	margin: 0 auto;
}
.doctor-footer-links {
	padding: 16px;
}
.doctor-footer-links img {
	width: 24px;
	margin-right: 10px;
}
.doctor-footer-links a {
	color: #1E1E1E;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.doctor-footer-links a:hover {
	color: var(--theme-primary);
}
.today-appoinment span {
	white-space: nowrap;
}
.expert-form .btn-primary.common-btn {
	margin-bottom: 0 !important;
}
.animation-float { 
  animation: float 2000ms linear 500ms infinite alternate both; 
} 
@keyframes float {
  0% { transform: translateY(0px); }
  25% { transform: translateY(5px); }
  50% { transform: translateY(10px); }
  75% { transform: translateY(15px); }
  100% { transform: translateY(20px); }
}
.leftRight_anim { 
	animation: leftRight 4s ease-in-out infinite;
}
@keyframes leftRight {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0px);
  }
}
.jumpAnim {
  animation: jumpAnim 5s infinite linear;
  animation-duration: 5s !important;
}
@keyframes jumpAnim{
0% {
    transform: translateZ(0);
}
40% {
    transform: translate3d(0, -10px, 0);
}
100% {
    transform: translateZ(0);
}
}
.float-x {
  animation-name: float-x;
  animation-duration: 10s !important;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-x { 
    0% {
      -webkit-transform: translateX(-30px);
      transform: translateX(-30px);
    }
  
    50% {
      -webkit-transform: translateX(-10px);
      transform: translateX(-10px);
    }
  
    100% {
      -webkit-transform: translateX(-30px);
      transform: translateX(-30px);
    }
  }
  .rounded { 
    animation: rounded 15s linear infinite;
    animation-duration: 15s !important;
}
@keyframes rounded {
  50%{
      transform: rotate(20deg);
  }
}
.rotate-me {
  animation-name: rotate-me;
  animation-duration: 24s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes rotate-me {
  from {
      transform: rotate(0deg);
  }
  to { 
      transform: rotate(360deg);
  }
}
.blinker { 
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
 /*==============================
       Terms & Condition Css
============================== ***/
.tc-banner-section {
    background: url(../image/banner/tc_banner.webp) no-repeat top center;
    background-size: cover;
    padding: 165px 0 20px;
    text-align: center;
}
 
.main-banner-heading {
    font-size: 26px;
}
 
.main-banner-desc {
    max-width: 550px;
    color: #fff;
    margin: 20px auto 30px;
}
 
.static-block ul {
    font-size: 16px;
    font-weight: 400;
    color: #1e1e1e;
    line-height: 26px;
    padding-left: 20px;
}
 
.static-block ul li {
    list-style: disc;
}
 
.static-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e1e1e;
    font-family: var(--theme-poppins);
    margin-top: 32px;
}
 
.static-block p {
    font-size: 16px;
    font-weight: 400;
    color: #1e1e1e;
}
 
.static-block p.contactinfo {
    color: #1e1e1e;
    margin-bottom: 0;
    padding-bottom: 0;
}
 
.contactinfo a {
    color: var(--theme-primary);
    text-decoration: none;
}
 
.contactinfo a:hover {
    color: #000;
    text-decoration: underline;
}
 /*==============================
       privacy Page Css
============================== ***/

 .privacy-banner-section {
	background: url(../image/banner/privacypolicy_banner.webp) no-repeat top center;
	background-size: cover;
	padding: 100px 0 30px;
	text-align: center;
}
 /*** ==============================
      Contact Page Css
============================== ***/
/* Contact Page Css */
.contact-banner-section {
	background: url(../image/banner/contact-banner.webp) no-repeat top center;
	background-size: cover;
	padding: 100px 0 0;
}
.contact-details .contact-item {
	background-color: #e4f6ff;
	padding: 25px 10px;
	border-radius: 10px;
	margin-bottom: 25px;
}
  
.contact-item p {
    color: #1e1e1e;
}
 
.contact-details .contact-item:nth-child(2) {
    background-color: #ffece9;
}
 
.contact-details .contact-item:nth-child(3) {
    background-color: #e3fcf3;
}
 
.contact-details .contact-item .icon-box {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    background: #fff;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 20px;
    transition: all 0.4s ease;
}
 .contact-item .icon-box i {
	color: #1E1E1E;
}
.contact-banner-content p {
    max-width: inherit;
    color: var(--theme-black-dark);
}
.accordion-item.contact-accordion {
	background: transparent; 
}
.contact-info-links {
	background: #fff0ee;
	border: 1px solid #f4ccc4;
	margin-top: 15px;
	border-radius: 15px;
	padding: 10px 0 0;
}
.single-contact {
	display: flex;
	padding-bottom: 10px;
	border-bottom: 1px solid #fff;
	margin-bottom: 10px;
	gap: 12px;
	padding: 0 13px 10px;
	align-items: center;
}
.single-contact:last-child {
	border: none;
	margin: 0;
}
.contact-title {
	display: flex;
	font-weight: 600;
	color: #000;
}
.contact-right {
	display: inline-block;
	overflow: hidden;
	margin-left: auto;
	min-width: 131px;
	text-align: right;
}	
.contact-number {
	display: block;
	color: #000;
	white-space: nowrap;
	font-weight: 500;
}
.contact-number:hover {
	color: var(--theme-primary);
}
.contact-accordion-btn {
	padding: 10px;
	background: #fff;
	border-radius: 0 1px 13px 13px;
	opacity: 1;
	border: 1px solid #f4ccc4;
	position: relative;
	top: 1px;
}
.contact-accordion-btn.accordion-button:not(.collapsed) {
	color: #000;
	background-color: #F4CCC4; 
	box-shadow: none;
}
.contact-form-wrapper {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 15px 35px;
    position: relative;
    overflow: hidden;
    border: 1px solid #cacaca;
}
 
.contact-form-wrapper label {
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 8px;
    font-size: 16px;
    display: block;
}
 
.contact-form-wrapper .form-control {
    height: auto;
    border-radius: 8px;
    padding: 17px 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: #8e8e8e;
    background-color: #F3F4F6;
    font-size: 14px;
    font-family: var(--theme-poppins);
    min-height: 57px;
}
 
.contact-form-wrapper .form-control::placeholder {
    color: #8E8E8E;
    opacity: 1; 
}
 
.contact-form-wrapper .form-control::-ms-input-placeholder { 
    color: #8E8E8E;
}
 
.contact-form-wrapper .custom-select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: none;
    border-radius: 10px;
    background-color: #f5f6f8;
    font-size: 14px;
    color: #8E8E8E;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../image/icons/arrow-down.png);
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
    min-height: 57px;
    font-family: var(--theme-poppins);
}
 
.contact-form-wrapper .custom-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}
 
.map-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
 
.map-section iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

 /*==============================
      Doctor Page
============================== ***/
/* Doctor Page */
.drbox {
    background: #e4f6ff;
    padding: 24px 32px;
    border-radius: 20px;
}
 .single-doctor-name{
	font-size: 26px;
 }
 .single-doctor-description {
	margin-bottom: 22px;
}
.about-box,
.qualification-box {
    flex: 1;
    padding: 24px;
    border-radius: 20px;
    background-color: #fbeaea;
    height: 100%; 
}
 
.about-box p,
.qualification-box p {
    color: #3C4664;
}
 
.qualification-box {
    background-color: #e7f8f1; 
}
 
.qualification-title {
	color: #252525;
	font-family: var(--theme-poppins);
}
.contact-form-wrapper.expert-form {
	padding: 30px 15px 27px;
}
.quick-search label {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    color: #1e1e1e;
}
 
.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 10px;
}
 
.tag {
    padding: 0px 16px;
    border: 1px solid #d1eaf7;
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
    color: #8e8e8e;
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    height: 35px;
}
 
.tag:hover {
    background: #e6f7ff;
}
 

.image-column {
    flex: 1;
    background: #e6f2ff;
    display: flex;
    justify-content: center;
    border-radius: 20px;
	overflow: hidden;
    height: 100%;
}
 
.info-column {
    flex: 2;
    padding: 20px;
    text-align: left;
}
 
.info-column h3 {
    margin: 0;
    color: #007bff;
}
 
.designation {
    margin: 5px 0 15px;
    color: #444;
    font-weight: bold;
}
 
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    color: #1E1E1E;
}
 
.contact-info li {
	margin-bottom: 16px;
}
 
.contact-info li .icon-box {
    min-width: 24px;
    height: 24px;
    border-radius: 100%;
    background: #fff;
    justify-content: center;
    align-items: center;
    display: flex;
    transition: all 0.4s ease;
    font-size: 12px;
    margin-right: 16px;
}
 
.btn-consult {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 20px;
}
.extra-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.socialbox {
    height: 51px;
    background: #055EC3;
    border-radius: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center; 
}
.socialbox i {
    font-size: 12px;
    color: var(--theme-secondary);
    transition: 0.5s all ease-in-out;
    background: #0061CF;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
 
.socialbox i:hover { 
    color: var(--theme-primary);
    transform: rotate(360deg);
    background: #fff;
} 
/*==== Booking Popup Modal ======*/
.booking-popup {
	max-width: 95%;
	box-shadow: 0px 4px 40px 0px #0000000F;
}
.popup-body {
	padding: 15px 20px 30px 20px;
}
.modal-field input {
	padding: 14px 16px 14px 16px;
	background: #F3F4F6;
	border: none;
	height: 50px;
	border: 1px solid transparent;
}
.modal-field select {
	width: 100%;
	padding: 14px 40px 14px 16px;
	border: none;
	border-radius: 10px;
	background-color: #f5f6f8;
	font-size: 14px;
	color: #8E8E8E; 
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url(../image/icons/arrow-down.png);
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 16px;
	cursor: pointer;
	min-height: 45px;
	font-family: var(--theme-poppins);
	border: 1px solid transparent
}
.modal-field textarea {
	border-radius: 10px;
	background-color: #f5f6f8;
	color: #8E8E8E;
	resize: none;
	height: 100px;
	border: 1px solid transparent;
	padding: 14px 16px 14px 16px;
}
.modal-field input:focus, .modal-field select:focus, .modal-field textarea:focus {
	box-shadow: none;
	border: 1px solid var(--theme-primary);
	color: #000;
}
@media (min-width:768px) {
	.close-button {
	top: 20px;
	right: 20px;
}
.booking-popup {
	max-width: 650px; 
}
}
/* availability Popup*/
.availability-table {
	margin: 0;
}
.availability-table th, .availability-table td {
	font-family: var(--theme-archivo);
}
.availability-table .table-heading {
	font-size: 17px;
	color: var(--theme-primary);
}
.day-title {
	vertical-align: middle;
	font-weight: 600;
	font-size: 16px;
}
.time-info {
    background: #F2F8FF;
    padding: 7px 20px;
    border: 1px solid #d9e6f4;
    color: var(--theme-primary);
    margin: 2px 4px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    display: inline-block; 
}

 /****** Animation css  *******/
.call-ring img {
  animation: phoneRinging 1.5s infinite linear;
}
@keyframes phoneRinging {
  from {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%,  71% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
/* up down animation */
.updownAnimation {
  animation: up_down 4s linear infinite alternate;
}
@keyframes up_down {
  0% {
    transform: translate(0%, 0);
  }
  50% {
    transform: translate(0%, 12px);
  }
  100% {
    transform: translate(0%, 0);
  }
}

/*==== Gallery Page ====*/
.gallery-banner-section{
	background: url(../image/banner/contact-banner.webp) no-repeat top center;
    background-size: auto;
  background-size: cover;
  padding: 100px 0 20px;
}
.gallery-nav-slider .filter-nav {
    width: 100%;
    overflow-x: auto;
    overflow-y: clip;
    padding-bottom: 20px;
    gap: 10px;
    margin-bottom: 40px;
}
.gallery-nav-slider .filter-control {
	width: max-content;
	background: #F2F8FF;
	border-radius: 8px;
	padding: 10px 25px;
	color: var(--bs-gray-700);
	transition: 0.5s all ease-in-out;
	position: relative;
	overflow: hidden;
}
.gallery-nav-slider .mixitup-control-active, .gallery-nav-slider .filter-control:hover {
	background: var(--theme-primary);
	color: #fff;
}
.nav-link.filter-control::before {
	background: var(--theme-primary);
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	transition: 0.5s all ease-in-out;
}
.gallery-nav-slider .filter-control:hover::before {
	width: 100%;
}
.gallery-nav-slider .filter-nav::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background:#F2F8FF; 
}
.gallery-nav-slider .filter-nav::-webkit-scrollbar { 
	height:5px
}
.gallery-nav-slider .filter-nav::-webkit-scrollbar-thumb,
.slide-package-card:hover .gallery-nav-slider .filter-nav::-webkit-scrollbar-thumb {
  background-color: var(--theme-primary);
  border-radius: 10px;
}
.filter-details {
  position: relative;
  overflow: hidden;
}
.gallery-image-area {
  padding: 10px;
}
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.inner-gallery-box {
	width: 100%;
	background: #fff;
	box-shadow: -3px 6px 20px -3px #00000029;
	border-radius: 15px;
	height: 100%;
	overflow: hidden;
}
.image-zoom-trigger {
	overflow: hidden;
}
img.gallery-image {
	width: 100%;
	height: 320px;
	object-fit: cover;
	transition: 0.5s all ease-in-out;
	object-position: top;
}
.gallery-image-area:hover .gallery-image {
  transform: scale(1.05);
} 
.fancybox-inner .fancybox-slide--image { 
	padding: 44px 30px !important;
}

 /*-- new add css ---*/
.quick-search-group input[name="quick_service"] {
  display: none;
}
.quick-search-group input[type="radio"]:checked + span, .quick-search-group input[type="radio"]:checked ~ span {
    background: #e6f7ff;
}
/**** Ent Service update New section ****/
.taps-wrapper {
	display: flex;
	justify-content: center;
}
.nav-item.service-tab-item {
	width: 100%;
}
.service-tab-link {
	width: max-content;
	background: #F2F8FF;
	border-radius: 8px;
	padding: 10px 15px;
	color: var(--bs-gray-700);
	transition: 0.5s all ease-in-out;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 15px;
	width: 100%;
	text-align: center;
	justify-content: center;
}
.service-tab-link::before {
	background: var(--theme-primary);
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	transition: 0.5s all ease-in-out;
}
.service-tab-link:hover::before {
	width: 100%;
}
.tabs-link1{
	background:#E3FCF3
}
.tabs-link2{
	background:#E4F6FF
}
.tabs-link3{
	background:#FFECE9
}
.tabs-link4 {
	background: #E3FCF3;
}
.service-tab-link .icon-circle {
	width: 50px;
	height: 50px;
	z-index: 1;
}
.service-tab-link span {
	color: var(--bs-gray-700);
	transition: 0.5s all ease-in-out;
}
.service-tab-link.active span, .service-tab-link:hover span {
	color: #fff;
} 
.service-card {
	transition: all 0.3s ease;
	padding: 32px 20px 26px;
	border-radius: 20px;
	height: 100%;
	background: #E4F6FF;
	border: 1px solid #daedf7;
}
.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0px 11px 28px -3px rgba(0, 0, 0, 0.07);
}
.service-card-text {
	color: #3C4664;
}

/*====================================
                Our Facility Page
=====================================*/
/********** accommodation *********/
.accommodation-column {
    background: #F2F8FF;
    border-radius: 20px;
}
.pricing-title {
    background: #055EC3;
    width: fit-content;
    padding: 4px 10px;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
}
.accommodation-content {
    padding: 17px 24px;
}
.accommodation-title {
    color: #1E1E1E;
}
.check-lists i {
    color: #27BE43;
    font-size: 18px;
    margin-right: 10px;
}
.check-listing span {
    color: #1E1E1E;
}
 
/********** other facilities *********/
.our-facility-section {
    background: #E3FCF3;
}
.other-facilities-box {
    background: #F7FFFC;
    padding: 20px 32px;
    border-radius: 10px;
}
.facility-text {
    color: #3C4664;
}
.facility-row-service {
    gap: 10px 0;
}
.servicelist {
    min-height: 100%;
}
  .servicelist ul {
    padding-left: 15px;
}
.servicelist li {
    font-size: 14px;
    color: #3C4664;
    list-style-type: disc;
}
.facility-dot-left-shape {
    left: -15px;
    top: -27px;
}
.facility-dot-right-shape {
    right: -15px;
    bottom: -27px;
}
.accommodation-image img {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.expert-image img {
    border-radius: 15px;
}
.doctor-image img {
    border-radius: 10px;
}

.wpcf7-math_captcha {
    color: #555555 !important;
}
button.regenrate-captcha {
    background-color: #555 !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 35px;
    height: 35px;
}
.wpcf7 form.invalid .wpcf7-response-output{
    display: none;
}