@import url('https://fonts.googleapis.com/css2?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&family=Questrial&display=swap');



html{
    scroll-behavior: smooth;
}
:root{
	--body-background				: #FFF7F4;
	--primary-color					: #07332F;
	--text-color					: #000000;
	--accent-color					: #F7A582;
	--secondry-color				: #FFFFFF;
	--transparent-color				: #FFFFFF80;
	--transparent-secondry-color	: #00000080;
	--light-Background				: #1F3F37;
	--light-accent-color			: #FEEFE9;
	--default-font					: "Poppins", sans-serif;;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: "Poppins", sans-serif !important;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
}

p{
	margin: 0;
	font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.1em;
	margin :0;
}
.desc__txt{
	font-size: 16px;
	color: rgb(77, 77, 77);
	margin-bottom: 30px;
}
figure{
	display: block;
    margin: 0;
    width: 100%;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: rgb(230, 87, 87);
	font-weight: 500;
	font-size: 14px;
}

.btn-default{
    display: inline-flex;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    border-radius: 100px;
	text-transform: capitalize;
    position: relative;
    overflow: hidden;
    z-index: 0;
    border: none;
    outline: 0;
    box-shadow: none;
    transition: 0.2s transform;
    background: transparent;
    border: 2px solid var(--accent-color);
    align-items: center;
    justify-content: center;
    padding: 10px 45px 10px 25px;
}

.btn-default::before{
    content: '\f35a';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    font-family: 'FontAwesome';
    font-size: 18px;
    font-weight: 900;
    transition: 0.3s ease-in-out;
    background: transparent;
    color: var(--accent-color);
    transform: translate(-20px, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-default::after{
    content: '';
    position: absolute;
    width: 0;
    height: 104%;
    top: 50%;
    left: 50%;
    background: var(--primary-color);
    opacity: 0;
    z-index: -1;
    transform: translateX(-51%) translateY(-51%);
    transition: all 0.4s ease-out;
    border-radius: 5px;
}

.btn-default:hover::after{
    width: 106%;
    opacity: 1;
}

.btn-video{
    font-size: 18px;
    font-weight: 500;
    color: var(--secondry-color);
	transition: all 0.3s ease-in-out;
}

.btn-video i{
	margin-right: 8px;
}

.btn-video:hover{
    color: #b6202e;
}

#magic-cursor{
	position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 10px !important;
	height: 10px !important;
	background: #b6202f54;
	border-radius: 50%;
	pointer-events: none;
	opacity:1 !important;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1111111;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto
}

.loading{
	border: 1px solid transparent;
	border-color: transparent #b6202e transparent #b6202e;
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}
.loading-container img{
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
}
.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 60px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-btn{
	text-align: end;
}

.section-title{
	text-align: left;
	margin-bottom: 40px;
}

.section-title h3{
	font-size: 18px;
	line-height: 26px;
    font-weight: 500;
	text-transform: uppercase;
	font-family: "Questrial", sans-serif;
    letter-spacing: 0.2em;
    color: black;
    margin-bottom: 15px;
}
.name__txt{
	font-family: 'Questrial', sans-serif;
	font-weight: 600;
	width: 100%;
	margin-top: 25px !important;
	text-transform: uppercase;
	color: white !important;
	margin-bottom: 8px !important;
	font-size: 18px !important;
}
.designation__txt{
	margin-bottom: 0px !important;
	width: 100%;
	color: white !important;
	margin-top: 0px !important	;
	font-family: 'Questrial', sans-serif;
	font-weight: 500;
	font-size: 16px !important;
}
.dep__name__doctor{
    background-color: #164d92;
    font-family: 'Questrial', sans-serif;
    color: white;
    width: 60%;
    text-align: center;
    min-height: 53px;
    position: absolute;
    z-index: 11;
    bottom: 0px;
    left: 20%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    font-size: 16px;
}



.sort__section{
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	align-items: center;
}
.sort__section .first__section{
	display: flex;
	gap: 10px;
	align-items: center;
}
.sort__section .first__section .sort_txt{
	font-family: 'Questrial', sans-serif;
	font-size: 16px;
	color: black;
}
.sort__section .first__section .sort_box{
	font-family: 'Questrial', sans-serif;
	font-size: 16px;
	border-radius: 5px;
	padding: 6px 12px;
	color: #164e92;
	cursor: pointer;
	background-color: white;
	border: 1px solid #164e92;
}
.sort__section .first__section .sort_box.active{
	background-color: #164d92;
	color: white;
}
.sort__section .second__section span{
	font-size: 16px;
	font-family: 'Questrial', sans-serif;
}
.sort__section .second__section img{
	width: 20px;
}
.sort__section .second__section{
	display: flex;
	align-items: center;
	gap: 10px;
}


.section-title h1,
.section-title h2{
	font-size: 48px;
	font-family: "Questrial", sans-serif;
    font-weight: 600;
    line-height: 1.1em;
    color: #164d92;
	font-family: "Questrial", sans-serif;
    letter-spacing: -0.02em;
    margin: 0;
}
.vedio_container{
	display: flex;
    justify-content: center;
    align-items: center;
}
.vedio_container iframe{
	width: 65%;
	border-radius: 15px;
    height: 447px;
}
.sp__heading{
	font-size: 25px;
	font-weight: 600;
	font-family: 'Questrial', sans-serif;
	margin-bottom: 25px;
	text-align: center;
	color: #164d92;
}
.health_checkup_section{
	padding: 80px 0px;
}
.health_checkup_section .checkup_plan_box{
	margin-bottom: 25px;
	width: 100%;
}
.health_checkup_section .checkup_plan_box .img_box{
	width: 100%;
	height: 240px;
}
.health_checkup_section .checkup_plan_box .img_box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.health_checkup_section .checkup_plan_box .plan_details{
	margin-top: -20px;
	padding: 15px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.health_checkup_section .checkup_plan_box .plan_details h5{
	font-size: 20px;
	font-family: 'Questrial', sans-serif;
	font-weight: 600;
	margin-top: 18px;
	margin-bottom: 15px;
}
.health_checkup_section .checkup_plan_box .plan_details p.description {
	font-size: 14px;
	font-weight: 400;
	margin-top: 0px;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 4; /* Number of lines to show */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.health_checkup_modal input{
	width: 100%;
	padding: 10px 15px;
	font-size: 15px;
	font-family: 'Questrial', sans-serif;
	margin-bottom: 15px;
	outline: none;
}
.health_checkup_modal input:focus {
    outline: 0;
    box-shadow: none !important;
}
.health_checkup_modal textarea{
	width: 100%;
	padding: 10px 15px;
	font-size: 15px;
	font-family: 'Questrial', sans-serif;
	margin-bottom: 15px;
	outline: none;
	height: 120px;
}
.health_checkup_modal textarea:focus {
    outline: 0;
    box-shadow: none !important;
}
.health_checkup_modal button{
	width: 100%;
	font-size: 14px;
	background-color: #b6202e;
	color: white;
	padding: 10px;
	border: none;
	outline: none;
}
.health_checkup_modal button:hover{
	background-color: #b6202e !important;
}

.health_checkup_section .checkup_plan_box .plan_details p.span{
	font-size: 15px;
	font-weight: 500;
	margin-top: 0px;
	margin-bottom: 0px;
}
.health_checkup_section .checkup_plan_box .plan_details button{
	margin-top: 15px;
	width: 100%;
	padding: 10px;
	font-family: 'Questrial', sans-serif;
	font-size: 15px;
	color: white;
	border: none;
	outline: none;
	border-radius: 5px;
	background-color: #b6202e;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	background-color: var(--primary-color);
	border-bottom: 1px solid var(--light-Background);
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--light-Background);
	backdrop-filter: blur(30px);
}

.navbar{
	padding: 20px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: end;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 10px;
	position: relative;
}

.main-menu ul li a{
	font-size: 18px;
	font-weight: 400;
	padding: 15px 10px !important;
	color: var(--secondry-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 210px;
	border-radius: 15px;
	position: absolute;
	left: 0;
	top: 100%;
	overflow: hidden;
	background-color: var(--accent-color);
	transition: all .3s ease-in-out;
	text-align: left;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--secondry-color);
	padding: 8px 20px !important;
}

.main-menu ul li.highlighted-menu a{
	font-size: 18px;
    font-weight: 500;
    border-radius: 100px;
    color: var(--accent-color);
	text-transform: capitalize;
    border: 2px solid var(--accent-color);
    padding: 12px 30px !important;
    transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
}

.main-menu ul li.highlighted-menu a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 104%;
    top: 50%;
    left: 50%;
    background: var(--secondry-color);
    opacity: 0;
    z-index: -1;
    transform: translateX(-51%) translateY(-51%);
    transition: all 0.4s;
    border-radius: 5px;
}

.main-menu ul li.highlighted-menu a:hover::after{
    width: 106%;
    opacity: 1;
}

.main-menu ul li.highlighted-menu a i{
	margin-left: 10px;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover{
	color: var(--text-color);
	background-color: transparent;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0px;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 6px 0 0;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--primary-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--secondry-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
}

.slicknav_nav li.highlighted-menu a i{
	margin-left: 10px;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--text-color);
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	color: var(--secondry-color);
	position: absolute;
	right: 15px;
    top: 12px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
}

/************************************/
/**** 	    04. Hero css		 ****/
/************************************/

.hero{
	padding: 120px 0;
	background: url('../images/half-circle-img.png') no-repeat bottom right 30px, var(--primary-color);
	position: relative;
}

.hero::before{
	position: absolute;
	content: '';
	background: url('../images/half-shape.png') no-repeat bottom left;
	height: 100%;
	width: 100%;
	bottom: 0;
	left: 30px;
	background-size: 20% auto;
}

.hero-content{
	padding-right: 150px;
	position: relative;
	z-index: 1;
}

.hero-content .section-title h3{
	color: var(--secondry-color);
}

.hero-content .section-title h1{
	color: var(--accent-color);
}

.hero-body{
	margin-bottom: 35px;
}

.hero-body p{
    font-size: 18px;
	font-weight: 400;
    color: var(--transparent-color);
}

.hero-footer{
	display: flex;
	align-items: center;
}

.hero-footer .btn-default{
	margin-right: 40px;
}

.hero-footer .btn-default::after{
    background: var(--secondry-color);
}

.hero-footer .btn-default:hover::after{
    width: 106%;
    opacity: 1;
}

.hero-images{
	position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-end;
	background: url('../images/white-dots-img.png') no-repeat center center;
	background-size: 65% auto;
}

.hero-images .hero-image-2{
	margin-bottom: 110px;
}

.hero-images .hero-image-1 figure,
.hero-images .hero-image-2 figure,
.hero-images .hero-image-1 img,
.hero-images .hero-image-2 img{
	border-radius: 999px;
	aspect-ratio: 1/1.7;
	object-fit: cover;
}

/************************************/
/**** 	05. Home Contact css	 ****/
/************************************/

.home-contact-us{
	padding: 100px 0 50px;
}

.home-contact-us .row .col-lg-4{
	padding: 0;
}

.home-contact-item.highlighted-box{
	padding: 0;
	background: var(--accent-color);
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.home-contact-item.highlighted-box .highlighted-box-title{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.home-contact-item.highlighted-box .highlighted-box-title h2{
	font-size: 32px;
	color: var(--secondry-color);
}

.home-contact-item.highlighted-box .appointment-wrap a{
	background-color: var(--text-color);
    padding: 20px;
    display: block;
    text-align: center;
    color: var(--secondry-color);
    font-size: 18px;
    font-weight: 500;
	text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.home-contact-item.highlighted-box .appointment-wrap a:hover{
	background-color: var(--light-Background);
}

.home-contact-item.highlighted-box .appointment-wrap a i{
	margin-left: 5px;
}

.home-contact-item{
	background: var(--primary-color);
    padding: 40px;
    height: 100%;
}

.home-contact-item.box-border{
	position: relative;
}

.home-contact-item.box-border::before{
	content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 50%;
    width: 1px;
    height: 90%;
    background: var(--transparent-color);
    transform: translateY(-50%);
}

.home-contact-item .contact-icon{
	margin-bottom: 30px;
}

.home-contact-item .contact-content h3{
	font-size: 22px;
	color: var(--secondry-color);
	text-transform: capitalize;
	margin-bottom: 10px;
}

.home-contact-item .contact-content p{
	font-size: 18px;
	color: var(--transparent-color);
}

/************************************/
/****	06. About Us Css		 ****/
/************************************/

.about-us{
	padding: 50px 0;
}

.about-us-image{
	position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-image: url(../images/about-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
}

.about-us-image .about-us-image-2 img,
.about-us-image .about-us-image-1 img{
	border-radius: 999px;
	aspect-ratio: 1/1.7;
	object-fit: cover;
}

.about-us-image .about-us-image-1{
	margin-top: 180px;
}

.about-us-image .about-us-image-2{
	position: relative;
}

.about-img{
	position: relative;
}

.about-img .about-video{
	position: absolute;
	bottom: 0;
	right: 0;
}

.about-video img{
	filter: brightness(50%);
	border-radius: 999px;
}

.about-video a{
	position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
	z-index: 2;
}

.about-video:hover .btn-video{
    color: var(--accent-color);
}

.about-content{
	padding-left: 100px;
}

.about-content .about-content-body{
	margin-bottom: 30px;
}

.about-content .about-content-body p{
	color: var(--transparent-secondry-color);
	max-width: 400px;
}

.about-content .about-content-footer ul{
	margin: 0 0 30px 0;
	padding: 0;
	list-style: none;
}

.about-content .about-content-footer ul li{
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	padding-left: 30px;
	margin-bottom: 18px;
}

.about-content .about-content-footer ul li:last-child{
	margin-bottom: 0px;
}

.about-content .about-content-footer ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

/************************************/
/****		07. Services Css	 ****/
/************************************/

.medical-services{
	padding: 50px 0 70px;
	background: url('../images/half-circle-3.png');
	background-repeat: no-repeat;
	background-position: left top 60px;
	position: relative;
}

.medical-services:before{
	position: absolute;
	content: '';
	background: url('../images/service-bg-img.png') no-repeat bottom right;
	height: 430px;
	width: 480px;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.medical-services .row .col-lg-4:first-child{
	align-items: center;
	display: flex;
}

.medical-services .section-title{
	margin-bottom: 0;
}

.medical-service-item{
	position: relative;
	border: 1px solid var(--primary-color);
	margin-bottom: 30px;
	height: calc(100% - 30px);
	z-index: 1;
}

.medical-service-item:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 100%;
	border-radius: 0px;
	background: var(--accent-color);
	transition: all 0.5s ease-in-out;
	z-index: -1;
}

.medical-service-item:hover::before{
	top: 0;
}

.medical-service-content{
	padding: 40px 40px 90px 40px;
}

.medical-service-content .icon-box{
	margin-bottom: 15px;
}

.medical-service-content .icon-box img{
	width: 60px;
}

.medical-content h3{
	font-size: 22px;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 10px;
}

.medical-content p{
	color: var(--transparent-secondry-color);
	font-weight: 500;
}

.medical-service-btn{
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
}

.medical-service-btn .btn-services{
	font-weight: 500;
    font-size: 18px;
    color: var(--secondry-color);
    padding: 15px 20px;
    background: var(--accent-color);
	text-transform: capitalize;
    display: block;
    text-align: center;
	border: none;
    transition: all 0.3s ease-in-out;
}

.medical-service-item:hover .medical-service-btn .btn-services{
	color: var(--primary-color);
}

/************************************/
/****    08. Appointment Css	 ****/
/************************************/

.cta__box_new{
	background: #d3eeff !important;
}
.cta__box_new a.appointment-btn{
    color: black !important;
    border: 2px solid black !important;
}
.cta__box_new  .second__card{
	margin-top: 50px;
	padding: 35px ;
	position: relative;
	border-radius: 20px;
	background-color: #164d92;
}

.cta__box_new .cta-btn{
	text-align: start !important;
	margin-top: 20px !important;
}
.cta__box_new .second__card h5{
	font-family: "Questrial", sans-serif;
	color: white;
	font-size: 40px;
	width: 80%;
	font-weight: 600;
}
.cta__box_new .second__card p{
	font-family: "Questrial", sans-serif;
	color: white;
	font-size: 17px;
	width: 100%;
	font-weight: 500;
	margin-top: 20px;
}
.cta__box_new .second__card img.ap-img{
	position: absolute;
    width: 350px;
    bottom: 0px;
    right: 72px;
}
.cta__box_new .second__card img.mobile-img{
	margin-bottom: -25px;
}

@media screen and (max-width: 500px) {
	
	.cta__box_new  .second__card{
		padding: 25px 20px !important;
	}
	.cta__box_new .second__card h5{
		font-size: 25px !important;
		width: 100% !important;
		text-align: left !important;
	}
	.cta__box_new .second__card p{
		font-size: 17px !important;
		text-align: left !important;
	}
	.cta__box_new .cta-content h3{
		color: black !important;
		text-align: left !important;
	}
	
	.cta__box_new .cta-content p{
		color: black !important;
		text-align: left !important;
	}
	.cta__box_new .cta-item {
		margin-bottom: 0px !important;
	}
}



.cta__box_new .cta-content h3{
	color: black !important;
}

.cta__box_new .cta-content p{
	color: black !important;
}
.cta__box_new .cta-btn a i{
	color: black !important;
}

.cta-box{
	padding: 65px 0;
	background: #164e92;
}

.cta-item{
	display: flex;
	align-items: center;
}

.cta-item .icon-box{
	width: 65px;
	margin-right: 40px;
}

.cta-content{
	width: calc(100% - 105px);
}

.cta-content h3{
	font-size: 43px;
	color: var(--secondry-color);
	font-family: "Questrial", sans-serif;
	margin-bottom: 20px;
}

.cta-content p{
	color: var(--secondry-color);
}

.cta-btn{
	position: relative;
	z-index: 1;
	text-align: right;
}

.cta-btn a.appointment-btn{
	font-size: 18px;
    font-weight: 500;
    border-radius: 100px;
    color: white;
	text-transform: capitalize;
    border: 2px solid white;
    padding: 12px 30px;
    transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	display: inline-flex;
    text-decoration: double;
}

.cta-btn a.appointment-btn::after{
    content: '';
    position: absolute;
    width: 0;
    height: 104%;
    top: 50%;
    left: 50%;
    background: var(--secondry-color);
    opacity: 0;
    z-index: -1;
    transform: translateX(-51%) translateY(-51%);
    transition: all 0.4s ease-out;
    border-radius: 5px;
}

.cta-btn a.appointment-btn:hover::after{
    width: 106%;
    opacity: 1;
}
.cta-btn a.appointment-btn:hover{
	color: #164e92;
}

.cta-btn a i{
	margin-left: 10px;
}

/************************************/
/****	 09. How We Work Css	 ****/
/************************************/

.how-we-work{
	padding: 100px 0 70px;
	background: var(--light-accent-color);
}

.how-we-work .section-title{
	margin-bottom: 0;
	padding-right: 100px;
}

.how-we-work .section-title-content p{
	color: var(--transparent-secondry-color);
}

.work-step-item{
	text-align: center;
	margin-bottom: 30px;
	height: calc(100% - 30px);
}

.work-step-item .icon-box{
	margin-bottom: 15px;
}

.work-step-item .step-item-content h3{
	font-size: 22px;
	color: var(--text-color);
	text-transform: capitalize;
}

/************************************/
/****	  10. Our Faq Css		 ****/
/************************************/

.our-faqs{
	padding: 100px 0;
}

.faq-counter-image{
	position: relative;
}

.counter-item{
    position: absolute;
	display: flex;
    bottom: -50px;
    right: 0;
}

.counter-box-1{
    background: var(--primary-color);
	width: 170px;
	height: 140px;
	display: flex;
    align-items: center;
	justify-content: center;
	text-align: center;
}

.counter-box-2{
    background: var(--accent-color);
    width: 170px;
	height: 140px;
	display: flex;
    align-items: center;
	justify-content: center;
	text-align: center;
}

.counter-item .counter-content h3{
	color: var(--secondry-color);
	font-size: 48px;
	margin-bottom: 5px;
}

.counter-item .counter-content p{
	color: var(--secondry-color);
	font-size: 22px;
	text-transform: capitalize;
}

.faqs-content{
	padding-left: 70px;
}

.faq-accordion .accordion-item{
	background: none;
	border: none;
	margin-bottom: 20px;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-item .accordion-button{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	border: none;
	box-shadow: none;
	padding: 10px 20px 10px 40px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f068';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	left: 20px;
	top: 50%;
	bottom: auto;
	transform: translate(-20px, -10px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 20px;
	width: 20px;
	height: 20px;
	padding: 5px;
	color: var(--text-color);
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f067';
	color: var(--text-color);
}

.faq-accordion .accordion-item .accordion-collapse .accordion-body{
	padding: 0px 20px 0px;
}

.faq-accordion .accordion-item .accordion-collapse .accordion-body p{
	color: var(--transparent-secondry-color);
	font-size: 18px;
	max-width: 490px;
}

/************************************/
/***     11. Testimonials Css     ***/
/************************************/

.clients-testimonials{
	background: linear-gradient(var(--primary-color) 65%, var(--body-background) 35%);
	background-color: var(--primary-color);
	padding: 100px 0 50px;
}

.clients-testimonials .section-title h2{
	color: var(--secondry-color);
}

.testimonial-item{
	background-color: var(--secondry-color);
	border: 1px solid var(--accent-color);
	padding: 40px;
	height: 100%;
}

.testimonial-header{
	display: flex;
	margin-bottom: 20px;
}

.testimonial-image{
	margin-right: 20px;
}

.testimonial-image img{
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 100px;
}

.author-content{
	width: calc(100% - 80px);
}

.author-content .author-title h3{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--text-color);
	margin-bottom: 5px;
}

.testimonial-rating-list{
	margin-bottom: 15px;
}

.testimonial-rating-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

.testimonial-rating-list ul li{
	margin-right: 3px;
	line-height: 0.9;
}

.testimonial-rating-list ul li:last-child{
	margin-right: 0;
}

.testimonial-rating-list ul li i{
	color: #f0ad4e;
	font-size: 14px;
}

.testimonial-content p,
.author-content .testimonial-title p{
	font-size: 18px;
	color: var(--transparent-secondry-color);
}

.testimonial-slider .swiper-pagination{
	position: relative;
	text-align: center;
	bottom: 0px;
	margin-top: 30px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet{
	height: 12px;
	width: 12px;
	background-color: var(--primary-color);
	opacity: 1;
	margin: 0px 6px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active{
	background-color: var(--accent-color);
	opacity: 1;
}

/*************************************/
/****    12. Latest Posts css     ****/
/*************************************/

.recent-post{
	padding: 0px 0 70px;
}

.post-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-item .post-featured-image{
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 20px;
}

.post-item .post-featured-image img{
	border-radius: 10px;
	aspect-ratio: 1/0.70;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}

.post-item-body{
	margin-bottom: 10px;
}

.post-item-body h2{
	font-size: 22px;
	font-family: "Questrial", sans-serif;
	margin-bottom: 10px;
}

.post-item-body h2 a{
	color: inherit;
}

.post-item-body p{
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	color: var(--transparent-secondry-color);
}

.post-item .btn-readmore a{
	font-size: 15px;
	font-weight: 400;
	text-transform: capitalize;
	color: #b6202e;
	transition: all 0.3s ease-out;
}

.post-item .btn-readmore a:hover{
	color: #164d92;
}

.post-item .btn-readmore a i{
	font-size: 16px;
	padding-left: 5px;
}

/*************************************/
/****  13. Home Contact Form css  ****/
/*************************************/

.home-contact-form{
	padding: 100px 0 0;
	background: url('../images/home-contact-form-bg.jpg') no-repeat center center;
    background-size: cover;
	position: relative;
	z-index: 1;
}

.home-contact-form::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--transparent-secondry-color);
	z-index: -1;
}

.home-contact-form .section-title{
	text-align: center;
}

.home-contact-form .section-title h3,
.home-contact-form .section-title h2{
	color: var(--secondry-color);
}

.contact-appointment{
	padding: 80px 30px;
	background: var(--accent-color);
	height: 100%;
}

.contact-appointment .appointment-img{
	margin-bottom: 30px;
	text-align: center;
}

.contact-appointment .appointment-content h3{
	color: var(--secondry-color);
	font-size: 32px;
	text-align: center;
}

.contact-form{
    background-color: var(--primary-color);
    padding: 80px 100px;
    height: 100%;
}

.contact-form input,
.contact-form textarea,
.contact-form .form-control{
	padding: 12px 10px;
	font-size: 14px;
	background-color: transparent;
	border-color: var(--transparent-color);
	border-radius: 6px;
	color: var(--secondry-color);
}

.contact-form textarea,
.contact-form .form-control:focus{
	outline: none;
	box-shadow: none;
}

.contact-form textarea::placeholder,
.contact-form .form-control::placeholder{
	color: var(--secondry-color);
	font-weight: 500;
}


::-webkit-calendar-picker-indicator{
    filter: invert(1);
	color: var(--secondry-color);
}

.contact-form .form-group{
	position: relative;
	z-index: 1;
}

.contact-form .form-group .btn-default::after{
    background: var(--secondry-color);
}

/*************************************/
/**** 		14. Footer css		  ****/
/*************************************/

.main-footer{
	padding: 80px 0 40px;
	background: var(--primary-color);
}

.about-footer{
	margin-right: 50px;
}

.footer-logo{
	margin-bottom: 30px;
}

.footer-content{
	margin-bottom: 30px;
}

.footer-content p{
	color: var(--secondry-color);
	font-size: 16px;
}

.footer-social-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-social-links ul li{
    display: inline-block;
    margin-right: 25px;
}

.footer-social-links ul li:last-child{
    margin-right: 0px;
}

.footer-social-links ul li a{
    color: var(--accent-color);
	font-size: 22px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover{
	color: var(--secondry-color);
}

.footer-quick-links h2,
.footer-contact-details h2,
.footer-newsletter h2{
	font-size: 22px;
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 40px;
}

.footer-quick-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-quick-links ul li{
	 margin-bottom: 15px;
}

.footer-quick-links ul li:last-child{
	margin-bottom: 0px;
}

.footer-quick-links ul li a{
    display: block;
    font-size: 16px;
    color: var(--secondry-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-quick-links ul li a:hover{
	color: var(--accent-color);
}

.footer-contact-box .footer-info-box{
	position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
}

.footer-contact-box{
	padding-right: 25px;
}

.footer-contact-box .footer-info-box:last-child{
	margin-bottom: 0;
}

.footer-info-box .icon-box{
	position: absolute;
    top: 2px;
    left: 0;
}

.footer-info-box .icon-box i{
	color: var(--accent-color);
	font-size: 20px;
}

.footer-info-box p{
	font-size: 16px;
	color: var(--secondry-color);
}

.subscribe-content{
	margin-bottom: 15px;
}

.subscribe-content h3{
	color: var(--secondry-color);
	font-size: 18px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.subscribe-content p{
	color: var(--secondry-color);
	font-size: 16px;
}

.footer-newsletter-form{
    padding: 4px;
    border: 2px solid var(--transparent-color);
    border-radius: 10px;
}

.footer-newsletter-form .form-group{
	width: 100%;
	display: flex;
	position: relative;
	z-index: 1;
}

.footer-newsletter-form .form-group .form-control{
	width: 60%;
	padding: 12px 10px;
	font-size: 14px;
	background: transparent;
	border: none;
	color: var(--secondry-color);
}

.footer-newsletter-form .form-group .form-control:focus{
	outline: none;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--transparent-color);
	font-weight: 500;
}

.footer-newsletter-form .form-group button{
	width: 40%;
}

.footer-newsletter-form .btn-default{
    border-radius: 6px;
} 

.footer-newsletter-form .btn-default::after{
    background: var(--secondry-color);
}

.footer-copyright{
	text-align: center;
	margin-top: 50px;
}

.footer-copyright-text p{
	color: var(--secondry-color);
	text-transform: capitalize;
}

.footer-copyright-text p span{
	color: var(--accent-color);
	font-weight: 600;
}





/*************************************/
/****   15. About us Page css     ****/
/*************************************/

.subpage-header{
	padding: 150px 0 100px;
	background: #164e92d0 ;
	position: relative;
}


.subpage-header-box{
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.subpage-header-box h1{
	font-family: "Questrial", sans-serif;
	font-size: 42px;
	color: white;
	margin-bottom: 10px;
}
.subpage-header-box h4{
	font-family: "Questrial", sans-serif;
	font-size: 42px;
	color: white;
	margin-bottom: 10px;
}

.subpage-header-box ol{
	list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
	justify-content: center;
}

.subpage-header-box ol li{
	font-size: 18px;
	font-family: "Questrial", sans-serif;
	font-weight: 400;
	margin-right: 10px;
	color: var(--secondry-color);
	text-transform: capitalize;
}

.subpage-header-box ol li:last-child{
	margin-right: 0;
}

.subpage-header-box ol li::after{
	content: '\f101';
	font-family: 'Font Awesome 6 Free';
	font-size: 15px;
	font-weight: 900;
	color: white;
	margin-left: 10px;
}

.subpage-header-box ol li:last-child:after{
	display: none;
}

.subpage-header-box ol li a{
	color: inherit;
}

.page-about{
	padding: 100px 0;
}

.page-services-item-content{
	margin-right: 50px;
}

.page-about-body p{
	font-size: 16px;
	color: color;
	font-family: "Poppins", sans-serif;
	margin-bottom: 20px;
}

.page-about-footer{
	display: flex;
}

.about-footer-content{
	margin: 0 0 0 30px;
}

.footer-content-title{
	border-bottom: 1px solid var(--accent-color);
}

.footer-content-title h3{
	margin: 8px 0 0;
	font-size: 22px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.footer-content-title p{
	font-weight: 400;
	font-size: 14px;
	text-transform: capitalize;
	color: var(--accent-color);
	margin-bottom: 20px;
}

.signature-image{
	margin-top: 15px;
}

.page-about-image{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	background-image: url(../images/about-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
}

.page-about-image-2 img,
.page-about-image-1 img{
	border-radius: 999px;
	aspect-ratio: 1/1.7;
	object-fit: cover;
}

.page-about-image-1{
	margin-top: 150px;
}

.page-about-image-2{
	margin-bottom: 150px;
}

.we-improving{
	padding: 40px 0;
	background: #164e92;
}

.improving-content{
	margin-left: 40px;
}

.improving-content .section-title{
	margin-bottom: 20px;
}

.improving-content .section-title h3{
	color: var(--secondry-color);
}

.improving-content .section-title h2{
	color: white;
}

.improving-body p{
	font-size: 16px;
	color: var(--transparent-color);
	margin-bottom: 40px;
}

.improving-btn .video-btn{
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: var(--secondry-color);
	transition: var(--transition);
}

.improving-btn .video-btn:hover{
	color: #b6202e;
}

.improving-btn .video-btn i{
	margin-right: 8px;
}

.top-services{
	padding: 50px 0 50px;
}

.services-item{
	position: relative;
	padding: 30px;
	background-color: var(--secondry-color);
	box-shadow: 0px 13px 34px 0px rgba(0, 0, 0, 0.058823529411764705);
	height: calc(100% - 30px);
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.services-item:hover{
	background-color: transparent;
}

.services-item::before{
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    background: #164d92;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.services-item:hover::before{	
	top: 0;
}

.services-item .services-img{
	margin-bottom: 16px;
	transition: all 0.6s ease-in-out;
}

.services-item:hover .services-img img{
	display: none;
}

.services-item .services-img img.services-icon-white{
	display: none;
	transition: all 0.6s ease-in-out;
}

.services-item:hover .services-img img.services-icon-white{
	display: inline-block;
	transition: all 0.5s ease-in-out;
}

.services-item .services-content h3{
	font-size: 22px;
	text-transform: capitalize;
	color: black;
	font-family: "Questrial", sans-serif;
	margin-bottom: 10px;
	transition: all 0.3s ease-out;
}

.services-item:hover .services-content h3{
	color: var(--secondry-color);
}

.services-item .services-content{
	margin-bottom: 25px;
}

.services-item .services-content p{
	color: var(--transparent-secondry-color);
	transition: all 0.3s ease-out;
	font-size: 14px;
	font-family: "Poppins", sans-serif;
}

.services-item:hover .services-content p{
	color: var(--secondry-color);
}

.services-btn a{
	color: #b6202e;
	font-size: 16px;
	font-weight: 500;
	transition: var(--transition);
	transition: all 0.3s ease-out;
}

.services-item:hover .services-btn a{
	color: var(--secondry-color);
}

.services-btn a i{
	margin-left: 7px;
}

.counter__section{
	background-color: rgba(231, 231, 231, 0.63);
	padding: 28px 40px;
	display: flex;
	justify-content: space-between;
	border-radius: 5px;
	align-items: center;
}
.counter__section .bx_counter{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 33%;
	gap: 8px;
	align-items: center;
}
.counter__section .bx_counter:not(:last-child) {
    border-right: 1px solid rgb(197, 197, 197);
}
.arrow__svg{
	width: 90px;
	margin-bottom: 30px;
}

.counter__section .bx_counter .ct_counter{
	font-size: 30px;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 8px;
	font-weight: 500;
}
.counter__section .bx_counter .ct_counter .counter{
	font-weight: 600;
	font-size: 30px;
}
.counter__section .bx_counter i{
	font-size: 45px;
	color: #164d92;
	margin-bottom: 20px;
}
.counter__section .bx_counter p{
	font-size: 16px;
	margin-bottom: 0px;
	font-weight: 500;
}
.health-services{
	padding: 65px 0 0px;
}
.map__btn{
	display: flex;
	gap: 15px;
	justify-content: center;
	padding: 10px 45px;
	border-radius: 25px;
	align-items: center;
	border: 1px solid #164d92;
	background-color: white;
}
.map__btn i{
	font-size: 17px;
	color: #164e92;
}
.map__btn span{
	font-size: 18px;
	font-family: 'Questrial', sans-serif;
	font-weight: 600;
}

.health-services-content{
	margin-right: 80px;
}

.health-services-content h2{
	font-family: var(--secondry-font);
	font-size: 22px;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 30px;
}

.health-services-content p{
	font-size: 16px;
	color: var(--transparent-secondry-color);
	margin-bottom: 30px;
}

.health-services-content ul{
	list-style: none;
	padding: 0 0 20px;
	margin: 0;
}

.health-services-content ul li{
	position: relative;
	padding-left: 30px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
}

.health-services-content ul li:before{
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 900;
    position: absolute;
    top: 1px;
    left: 0;
}

.health-service-item{
	display: flex;
	padding: 30px;
	background: var(--secondry-color);
	margin-bottom: 20px;
	box-shadow: 0px 13px 34px 0px rgba(0, 0, 0, 0.058823529411764705);
}

.health-service-item:last-child{
	margin-bottom: 0;
}

.health-service-item .icon-box{
	margin-right: 20px;
}

.health-service-item .icon-box img{
	width: 50px;
}

.health-info-content{
	width: calc(100% - 60px);
}

.health-info-content h3{
	font-size: 22px;
	color: var(--text-color);
	text-transform: capitalize;
	margin-bottom: 10px;
}

.health-info-content p{
	color: var(--transparent-secondry-color);
}

.meet-our-team{
	padding: 100px 0 70px;
}

.team-member-item{
	height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-member-item .team-image{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-member-item .team-image img{
   aspect-ratio: 1/1;
   object-fit: cover;
    border-radius: 10px;
	object-position: top;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-image .team-social-list{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    opacity: 0;
    transition: all 0.3s ease-out;
    z-index: 2;
}

.team-member-item:hover .team-image .team-social-list{
    bottom: 0;
    opacity: 1;
}

.team-social-list ul{
    list-style-type: none;
    padding: 0 20px 20px;
    margin: 0;
    text-align: center;
}

.team-social-list ul li{
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.team-social-list ul li a{
    display: block;
}

.team-social-list ul li a i{
    background: var(--primary-color);
    border-radius: 8px;
    color: var(--secondry-color);
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
}

.team-social-list ul li a i:hover{
    background: var(--secondry-color);
    color: var(--primary-color);
}

.team-content h3{
	font-size: 16px;
	color: #b6202e;
	font-family: 'Questrial', sans-serif;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content h2{
	font-size: 22px;	
	color: #164d92;
	text-transform: capitalize;
	font-family: 'Questrial', sans-serif;
	font-family: 'Questrial', sans-serif;
	margin-bottom: 10px;
}

.team-member-item .team-social-list{
	padding: 20px;
    background: #416fa621;
    display: flex;
    justify-content: center;
    align-items: center;
}
.team-member-item .team-social-list a{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.team-member-item .team-social-list button{
	padding: 9px 15px;
	border-radius: 5px;
	width: 75%;
	border: none !important;
	outline: none;
	background-color: #b6202e;
	color: white;
	font-family: 'Questrial', sans-serif;

}
.team-content h2 a{
	color: inherit;
}

.team-content p{
	color: var(--transparent-secondry-color);
	font-size: 15px;
	font-family: 'Questrial', sans-serif;

}

/*************************************/
/****    16. Services Page css    ****/
/*************************************/

.our-services{
	padding: 100px 0 20px;
}

.our-services .section-title{
	max-width: 850px;
	margin: 0 auto;
	text-align: center;
}

.our-services-item{
	background: var(--primary-color);
	padding: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-item-image{
	margin-bottom: 20px;
}

.service-item-image img{
	width: 65px;
}

.services-item-content{
	margin-bottom: 30px;
}

.services-item-content h3{
	font-size: 22px;
	color: var(--secondry-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.services-item-content p{
	font-size: 16px;
	margin-bottom: 20px;
	color: var(--transparent-color);
}

.services-item-content ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.services-item-content ul li{
	position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--secondry-color);
}

.services-item-content ul li:before{
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 900;
    position: absolute;
    top: 1px;
    left: 0;
}

.services-item-content ul li:last-child{
	margin-bottom: 0;
}

.services-item-btn .btn-default::after{
    background: var(--secondry-color);
}

.service-specialist{
	padding: 50px 0 20px;
}

.section-title-content p{
	color: var(--transparent-secondry-color);
}

.specialist-item{
	padding: 30px 20px 20px;
	background-color: var(--body-background);
	border: 1px solid var(--primary-color);
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.specialist-item .icon-box{
	margin-bottom: 10px;
}

.specialist-item .icon-box img{
	width: 65px;
}

.specialist-content h3{
	font-size: 22px;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.specialist-content i{
	font-size: 28px;
	color: var(--primary-color);
	transition: all 0.3s ease-out;
}

.specialist-item:hover .specialist-content i{
	color: var(--accent-color);
}

.meet-our-team.service-team{
	padding: 0px 0 50px;
}

.our-culture{
	padding: 50px 0;
}

.our-culture .container-fluid{
	padding: 0;
}

.culture-image-gallery{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.culture-image-gallery .caulture-img{
	width: 20%;
	padding: 0;
}

.download-apps{
	padding: 50px 0 100px;
}

.download-apps .section-title{
	margin-bottom: 30px;
}

.download-apps-body{
	margin-bottom: 50px;
}

.download-apps-body p{
	color: var(--transparent-secondry-color);
}

.download-apps-footer{
	display: flex;
}

.download-apps-footer .download-apps-image{
	margin-right: 50px;
}

.download-apps-footer .download-apps-image:last-child{
	margin-right: 0px;
}

.download-apps-img{
	text-align: end;
}

/*************************************/
/****    17. Service Single css   ****/
/*************************************/

.services-single{
	padding: 100px 0 50px;
}

.services-single-content{
	margin-right: 20px;
}

.service-video{
	position: relative;
	margin-bottom: 30px;
}

.services-single-image img{
	width: 100%;
}

.services-video-icon a{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 2;
}

.services-video-icon a i{
    font-size: 20px;
    background-color: var(--secondry-color);
    color: var(--accent-color);
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.services-single-image img{
	filter: brightness(60%);
} 

.services-video-content p{
	color: var(--transparent-secondry-color);
	margin-bottom: 20px;
}

.services-video-content p:last-child{
	margin-bottom: 0;
}

.service-featured-image,
.health-care-plans{
	margin-bottom: 50px;
}

.health-care-plan-content ul{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.health-care-plan-content ul li{
	width: 48%;
	margin-right: 2%;
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	padding-left: 30px;
	margin-bottom: 20px;
	text-transform: capitalize;
}

.health-care-plan-content ul li:last-child{
	margin-bottom: 0;
}

.health-care-plan-content ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.health-caring-btn{
	margin-top: 30px;
}

.services-sidebar{
	position: sticky;
    top: 120px;
}

.medical-service{
	background: var(--primary-color);
	padding: 40px 30px;
}

.medical-service-title{
	margin-bottom: 30px;
}

.medical-service-title h2{
	font-size: 32px;
	text-align: center;
	color: var(--secondry-color);
}

.medical-service-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.medical-service-list ul li{
	margin-bottom: 20px;
}

.medical-service-list .service-item{
	display: flex;
	align-items: center;
	padding: 15px 20px;
	background: var(--accent-color);
}

.service-item .service-icon{
	margin-right: 15px;
}

.service-item .service-icon img{
	width: 45px;
}

.service-item .service-title h3{
	font-size: 26px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--secondry-color);
}

.service-item .service-title h3 a{
	color: inherit;
}

.medical-service .service-btn{
	margin-top: 40px;
}

.medical-service .service-btn a{
	display: block;
}

.medical-service .service-btn a::after{
    background: var(--secondry-color);
}

.working-step{
	padding: 50px 0 100px;
}

.working-process-item{
	background: var(--accent-color);
	padding: 60px;
	position: relative;
	height: 100%;
}

.working-process-item.bg-color{
	background-color: var(--primary-color);
}

.working-process-item .icon-box{
	margin-bottom: 25px;
}

.working-process-item .icon-box img{
	width: 40px;
}

.working-process-content h3{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--secondry-color);
	margin-bottom: 20px;
}

.working-process-content p{
	color: var(--secondry-color);
}

.working-process-step{
	position: absolute;
	right: 30px;
	bottom: 30px;
	z-index: 1;
}

.working-process-step h2{
	font-size: 32px;
	color: var(--secondry-color);
}

/*************************************/
/****   18. Blog Archive css      ****/
/*************************************/

.recent-post.our-blog{
	padding: 100px 0;
}

.post-pagination{
    margin-top: 30px;
    text-align: center;
}

.post-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    margin: 0 4px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease-out;
}

.post-pagination ul li a:hover{
    background: var(--primary-color);
    color: var(--accent-color);
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover{
    background: var(--primary-color);
    color: var(--accent-color);
}

/*************************************/
/****     19. Blog Single css     ****/
/*************************************/

.post-single-meta ul{
	list-style: none;
    margin: 0;
    padding: 0;
}

.post-single-meta ul li{
    position: relative;
    display: inline-block;
    color: var(--secondry-color);
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 0 20px 0 5px;
}

.post-single-meta ul li:first-child{
	padding-left: 0;
}

.post-single-meta ul li:last-child{
	padding-right: 0;
}

.post-single-meta ul li::after{
    content: '/';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.post-single-meta ul li:last-child:after{
	display: none;
}

.page-post-single{
	padding: 100px 0 50px;
}

.post-image{
	margin-bottom: 30px;
}

.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-entry{
    border-bottom: 1px solid var(--accent-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 58px;
}

.post-entry h2{
	font-size: 48px;
}

.post-entry h3{
	font-size: 26px;
}

.post-entry h4{
	font-size: 22px;
}

.post-entry h5{
	font-size: 18px;
}

.post-entry h6{
	font-size: 16px;
}

.post-entry p{
	margin-bottom: 15px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 700;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.post-entry ul{
	list-style: none;
	padding: 0;
	margin: 20px 0 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
}

.post-entry ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}
.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: var(--accent-color);
	padding: 40px;
	margin-bottom: 30px;
}

.post-entry blockquote p{
	background: url(../images/icon-blockquote.svg) no-repeat 0px 6px;
	font-size: 26px;
	color: var(--primary-color);
	font-weight: 700;
	line-height: 1.3em;
	padding-left: 70px;
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	display: inline-block;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--secondry-color);
    border-radius: 5px;
    padding: 12px 20px;
    margin-right: 15px;
    margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background-color: var(--primary-color);
}

.post-tags .tag-links a:last-child{
    margin-right: 0;
}

.post-tags .tag-links a::before{
    display: none;
}
.post-tags .tag-links a::after{
    background-color: var(--accent-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 5px;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    text-align: center;
	background-color: var(--accent-color);
    color: var(--secondry-color);
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
    border-color: var(--primary-color);
	background-color: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i{
    color: var(--secondry-color);
}

/*************************************/
/****     20. Team Page css       ****/
/*************************************/

.meet-our-team.our-team{
	padding: 20px 0 70px;
}

/*************************************/
/****  21. Team Single  Page css  ****/
/*************************************/

.search_container{
	padding: 25px 0px;
	margin-top: 40px;
}
.search_container .input_group select, .search_container .input_group input{
	width: 100%;
	padding: 10px;
	font-family: 'Questrial', sans-serif;
	font-size: 15px;
	border: 0.5px solid rgb(218, 218, 218);
	outline: none;
	height: 48px;
	border-radius: 5px;
}
.search_container .button button{
	width: 100%;
	height: 48px;
	padding: 10px;
	background-color: #b6202e;
	color: white;
	border-radius: 5px;
	font-family: 'Questrial', sans-serif;
	outline: none;
	border: none !important;
}

.member-details{
	padding: 100px 0 50px;
}

.member-details .col-md-8 .member-info{
	display: flex;
	flex-wrap: wrap;
	align-content: center
}

.team-member-img{
	text-align: right;
}

.team-member-img img{
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.member-info{
	background: var(--primary-color);
	height: 100%;
	padding: 60px 40px;
}

.member-info .section-title{
	margin-bottom: 25px;
}

.member-info .section-title h3{
	color: var(--secondry-color);
}

.member-info .section-title h2{
	color: white;
}

.member-info .member-about-data{
	margin-bottom: 45px;
}

.member-info .member-about-data p{
	color: var(--secondry-color);
}

.member-info .member-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

.member-info .member-social-icon ul li{
	margin-right: 30px;
}

.member-info .member-social-icon ul li:last-child{
	margin-right: 0px;
}

.member-info .member-social-icon ul li a i{
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.member-info .member-social-icon ul li a i:hover{
	color: var(--secondry-color);
}

.member-about-details{
	padding: 50px 0 100px;
}

.about-member{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 2px solid var(--accent-color);
}

.about-member .about-member-content{
	margin-bottom: 20px;
}

.about-member .about-member-content p{
	color: var(--text-color);
	margin-bottom: 15px;
}

.about-member .about-member-content p:last-child{
	margin-bottom: 0px;
}

.about-member .member-social-icon ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

.about-member .member-social-icon ul li{
	margin-right: 30px;
}

.about-member .member-social-icon ul li:last-child{
	margin-right: 0px;
}

.about-member .member-social-icon ul li a i{
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.about-member .member-social-icon ul li a i:hover{
	color: var(--text-color);
}

.member-service{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 2px solid var(--accent-color);
}

.member-service .about-service-content ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.member-service .about-service-content ul li{
    width: calc(50% - 10px);
    font-size: 18px;
    color: var(--text-color);
    position: relative;
    padding-left: 30px;
    margin: 0 20px 20px 0;
    text-transform: capitalize;
}

.member-service .about-service-content ul li:before{
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.member-service .about-service-content ul li:nth-of-type(2n + 2){
	margin-right: 0;
}

.member-service .about-service-content ul li:last-child{
	margin-bottom: 0;
}

.member-education{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 2px solid var(--accent-color);
}

.member-education-list .education-item{
	display: flex;
	margin-bottom: 25px;
}

.member-education-list .education-item:last-child{
	margin-bottom: 0;
}

.education-item .education-icon{
	width: 65px;
    margin-right: 10px;
}

.education-item .education-icon i{
	font-size: 50px;
	color: var(--primary-color);
}

.education-item .education-content h3{
	color: var(--primary-color);
	font-size: 22px;
	margin-bottom: 5px;
}

.education-item .education-content p{
	color: var(--transparent-secondry-color);
}

.winning-awards{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 2px solid var(--accent-color);
}

.award-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.award-list .awards-item{
	width: 30%;
	text-align: center;
}

.awards-item .awards-img{
	 margin-bottom: 15px;
}

.awards-item .awards-content h3{
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--text-color);
	margin-bottom: 10px;
}

.awards-item .awards-content p{
	font-size: 16px;
	color: var(--transparent-secondry-color);
}

.skillbar{
	margin-bottom: 25px;
}

.skillbar:last-child{
	margin-bottom: 0;
}

.skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	margin-bottom: 2px;
}

.skillbar .skill-data .title{
	color: var(--primary-color);
	font-size: 18px;
	text-transform: capitalize;
	font-weight: 600;
}

.skillbar .skill-progress{
	width: 100%;
	height: 22px;
	background: var(--accent-color);
	position: relative;
}

.skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	color: var(--secondry-color);
	background: var(--primary-color);
	border-radius: 2px;
	text-align: end;
	padding-right: 10px;
	font-size: 18px;
}

.team-sidebar{
	position: sticky;
	top: 120px;
	margin-left: 50px;
}

.opening-hour-box{
	background: var(--accent-color);
	padding: 60px 50px;
}

.opening-hour-box .icon-box{
	margin-bottom: 50px;
}

.opening-hour-title{
	margin-bottom: 40px;
}

.opening-hour-title h3{
	font-size: 32px;
	color: var(--secondry-color);
	text-transform: capitalize;
}

.opening-hour-content ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.opening-hour-content ul li{
	font-size: 18px;
	color: var(--secondry-color);
	display: flex;
	margin-bottom: 30px;
}

.opening-hour-content ul li:last-child{
	margin-bottom: 0;
}

.opening-hour-content ul span{
	width: 50%;
}

/************************************/
/***    22. Contact us Page css   ***/
/************************************/

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe{
	width: 100%;
	height: 500px;
}

.google-map-iframe iframe{
	width: 100%;
	height: 500px;
}

.contact-information{
	background-color: var(--primary-color);
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
	margin-top: -70px;
	position: relative;
	z-index: 1;
	margin-bottom: 50px;
}

.contact-item{
	display: flex;
	padding: 40px 0;
}

.contact-item .icon-box{
	margin-right: 10px;
}

.contact-item .icon-box i{
	font-size: 30px;
	color: var(--accent-color);
}

.contact-info-content h3{
	font-size: 22px;
	color: var(--secondry-color);
	margin-bottom: 5px;
}

.contact-info-content p{
	font-size: 16px;
	color: var(--transparent-color);
}

.page-contact-form{
	padding: 50px 0 100px;
}

.page-contact-form .section-title{
	text-align: center;
}

.contact-us-form{
	background-color: var(--primary-color);
	padding: 60px 0;
	width: 100%;
}

.contact-us-form form{
	max-width: 770px;
	margin: 0 auto;
}

.contact-us-form .form-group .form-control{
	padding: 12px 10px;
	font-size: 14px;
	background-color: transparent;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 1px solid var(--transparent-color);
	border-radius: 0;
	color: var(--secondry-color);
	outline: none;
	box-shadow: none;
}

.contact-us-form .form-group .form-control::placeholder{
	color: var(--transparent-color);
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
}

.contact-us-form .contact-form-btn{
	text-align: center;
}

.contact-us-form .contact-form-btn .btn-default::after{
    background: var(--secondry-color);
}

/****************************************/
/****    23. Appointment Page css    ****/
/****************************************/

.appointment-booking{
	padding: 100px 0 50px;
}

.appointment-booking .contact-form{
	background-color: var(--primary-color);
	padding: 60px;
	height: 100%;
}

.quick-contacts{
	background-color: var(--accent-color);
	height: 100%;
	padding: 60px 40px;
}

.quick-contacts-content{
	margin-bottom: 20px;
}

.quick-contacts-content h3{
	font-size: 32px;
	color: var(--secondry-color);
	margin-bottom: 20px;
}

.quick-contacts-content p{
	font-size: 16px;
	color: var(--secondry-color);
}

.quick-contact-box{
	position: relative;
	padding-left: 30px;
    margin-bottom: 15px;
}

.quick-contact-box:last-child{
	margin-bottom: 0;
}

.quick-contact-box .icon-box{
    position: absolute;
    top: 2px;
    left: 0;
}

.quick-contact-box .icon-box i{
	font-size: 18px;
	color: var(--primary-color);
}

.quick-contact-box p{
    font-size: 16px;
    color: var(--secondry-color);
	margin: 0;
}

.meet-our-team.appointment-our-team{
	padding: 50px 0 70px;
}

/*******************************************/
/****        24. FAQs Page css          ****/
/*******************************************/

.faqs-page{
	padding: 100px 0 50px;
}

.faqs-page .section-title{
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.faqs-page .section-title p{
	font-size: 16px;
	margin-top: 10px;
}

/****************************************/
/****     25. 404 Error Page css     ****/
/****************************************/

.error-page{
	padding: 100px 0;
	text-align: center;
}

.error-page-image{
	margin-bottom: 20px;
}

.error-page-heading{
	margin-bottom: 30px;
}

.error-page-heading h2{
	font-size: 48px;
}





/* service page css start  */


.service__section{
    margin-top: 80px;
    margin-bottom: 0px;
}
.service__section .heading{
    font-size: 40px;
    font-weight: 600;
	font-family: 'Questrial', sans-serif;
    text-align: center;
}
.service__section .description{
    font-size: 15px;
    text-align: center;
    margin: auto;
	margin-top: 10px;
    width: 50%;
}
.service__section .row{
    margin-top: 40px;
}
.service__section .box{
    border: 1px solid rgb(238, 238, 238);
    padding: 15px 15px 35px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}
.service__section .box::after{
    content: '';
    background: rgba(198, 227, 246, 0.178);
    width: 80px;
    border-bottom-right-radius: 8px;
    height: 80px;
    position: absolute;
    transition: 0.5s;
    bottom: 0px;
    z-index: 1;
    border-top-left-radius: 100%;
    right: -30%;
    bottom: -30%;
}
.service__section .box::before{
    content: '';
    background: rgba(172, 206, 233, 0.159);
    width: 120px;
    border-bottom-right-radius: 8px;
    transition: 0.5s;
    height: 120px;
    position: absolute;
    bottom: -30%;
    right: -30%;
    border-top-left-radius: 100%;
    right: 0px;
}
.service__section .box:hover::after{
    right: 0px;
    bottom: 0px;
}
.service__section .box:hover::before{
    bottom: 0px;
    right: 0px;
}
.service__section .box .img_box{
    height: 210px;
	width: 100%;
}
.service__section .box .img_box img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.service__section .box h5{
    font-size: 22px;
	font-family: 'Questrial', sans-serif;
    margin-top: 20px;
    font-weight: 600;
}
.service__section .box p{
    font-size: 15px;
	margin-top: 15px;
	margin-bottom: 20px;
    font-weight: 400;
}
.service__section .box a{
    text-decoration: none;
    color: black;
    position: relative;
    font-size: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgb(178, 178, 178);
}
.service__section .box a::after{
    content: '';
    width: 18px;
    height: 18px;
    margin-top: 7px;
    background: url('../../images/icons/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.4s;
    right: -35px;
}
.service__section .row .box a:hover::after{
    right: -50px;
}



/* service page media query  */
@media screen and (max-width: 900px) {
    .service__section .heading{
        font-size: 35px;
    }
    .service__section .description{
        width: 100%;
    }
	.search_container .input_group select, .search_container .input_group input{
		margin-bottom: 15px;
	}
}
/* service page css end  */









/* --------------------------------- contact section css start ---------------------------------- */
.contact-section{
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
}
.contact-section .left-box{
    padding: 10px 50px;
    position: relative;
}

.contact-section .left-box span{
    font-size: 16px;
	font-family: 'Questrial', sans-serif;
    margin-bottom: 10px;
}
.contact-section .left-box h1{
    font-size: 80px;
    margin-bottom: 50px;
    font-weight: bold;
	color: #164d92;
	font-family: 'Questrial', sans-serif;
}
.contact-section .left-box input{
    border: none;
    outline: none;
    width: 100%;
    border-bottom: 1px solid rgb(143, 143, 143);
    margin-bottom: 28px;
    padding: 8px 8px 8px 0px;
    padding-top: 5px;
}
.contact-section .left-box button{
    padding: 10px 55px;
	background-color: #164e92;
	color: white;
	font-family: 'Questrial', sans-serif;
	border-radius: 5px;
	outline: none;
	border: none;
}
.contact-section .left-box label{
	font-family: 'Questrial', sans-serif;
	font-size: 14px;
	color: gray;
}
.contact-section .right-box{
    background: rgba(223, 223, 223, 0.623);
    padding: 35px 60px;
    box-shadow: var(--sm-shadow);
    position: relative;
	border-radius: 15px;
}
.contact-section .left-box .key{
    position: absolute;
    right: 15px;
    opacity: 0.6;
    top: 35px;
}
.contact-section .right-box h5{
    font-synthesis: 25px;
	font-family: 'Questrial', sans-serif;
    margin-bottom: 20px;
    font-weight: bold;
}
.contact-section .right-box p{
    margin-bottom: 0px;
	font-size: 15px;
    margin-top: 8px;
}
.contact-section .right-box a{
    display: block;
    color: black;
    text-decoration: none;
    position: relative;
	font-size: 15px;
    width: fit-content;
    margin-bottom: 8px;
}

.contact-section .right-box .map{
    font-weight: 600;
}

.img_reveal_box{
	width: 100%;
	margin-top: 80px;
	margin-bottom: 80px;
}

.img_reveal_box .img_box{
	width: 100%;
	height: 100%;
	height: 520px;
}
.img_reveal_box .img_box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.img_reveal_box .txt_area h2{
	font-size: 40px;
	font-family: 'Questrial', sans-serif;
	color: #164e92;
	margin-top: 25px;
	margin-bottom: 20px;
	font-weight: 600;
}
.img_reveal_box .txt_area h6{
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	padding-left: 35px;
	margin-bottom: 18px;
	position: relative;
}
.img_reveal_box .txt_area h6::after{
	content: '';
	background: url('../../images/check.png');
	width: 18px;
	height: 18px;
	background-size: contain;
	position: absolute;
	left: 0px;
}
.img_reveal_box .txt_area p{
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 15px;
	font-weight: 500;
}
.dep_desc {
    overflow: hidden;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Adjust this number to control the number of lines before truncating */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.single_service{
	padding: 80px 0px;
}
.single_service .img_box{
	width: 100%;
	height: 450px;
}
.single_service .img_box img{
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.single_service .contact_box h6{
	font-size: 20px;
	font-weight: 600;
	margin-top: 18px;
	margin-bottom: 8px;
	font-family: 'Questrial', sans-serif;
}

.single_service .contact_box p{
	font-size: 15px;
	color: rgb(53, 53, 53);
	font-weight: 400;
}
.single_service .txt_box h4{
	font-size: 25px;
	font-weight: 600;
	font-family: 'Questrial', sans-serif;
	margin-bottom: 12px;
}
.single_service .txt_box p.description{
	font-size: 16px;
	margin-bottom: 15px;
	color: rgb(33, 33, 33);
	font-weight: 400;
}
.single_service .txt_box p.icon{
    position: relative;
    padding-left: 40px;
    font-size: 16px;
}
.single_service .txt_box p.icon::before{
    content: '';
    background: url('../../images/icons/check-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0px;
    top: 0px;
}
.doctor_section{
	padding: 80px 0px;
}
.doctor_section .img_box{
	width: 100%;
	height: 510px;
}
.doctor_section .details h5{
	font-size: 28px;
	font-weight: 600;
	font-family: 'Questrial', sans-serif;
	margin-top: 15px;
	margin-bottom: 15px;
}
.doctor_section .details h6{
	font-size: 18px;
	font-weight: 600;
	font-family: 'Questrial', sans-serif;
	margin-top: 5px;
}
.doctor_section .details p{
	font-size: 15px;
	font-size: 400;
}
.doctor_section .details p span{
	font-weight: 600;
}
.doctor_section .description{
	font-size: 16px;
	margin-top: 35px;
	font-weight: 400;
	color: rgb(35, 35, 35);
}
.doctor_section .img_box img{
	border-radius: 10px;
	width: 100%;
	height: 100%;
	object-position: top;
	object-fit: cover;
}

.content_view .ti_tle{
	font-size: 28px;
	font-weight: 600;
	font-family: 'Questrial', sans-serif;
	margin-bottom: 20px;
}
.content_view h1, .content_view h2, .content_view h3, .content_view h4, .content_view h5, .content_view h6{
	font-weight: 500 !important;
	font-family: 'Questrial' !important;
	margin-top: 20px !important;
	margin-bottom: 10px !important;
    font-size: 24px !important;
}
.empty_view{
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	font-family: 'Questrial', sans-serif;
	margin-top: 15px;
	margin-bottom: 20px;
}
.content_view{
	margin-top: 30px;
	padding-bottom: 25px;
}
.content_view p strong{
    font-weight: 700 !important;
    font-family: 'Questrial' !important;
    font-size: 17px;
}
.content_view ul li strong{
	font-weight: 500 !important;
	font-family: 'Questrial' !important;
	font-size: 16px;
}
.content_view p{
	font-size: 16px;
	font-weight: 400;
	color: rgb(43, 43, 43);
	margin-top: 20px;
	margin-bottom: 20px;
}
.content_view ul{
	padding-left: 10px;
	margin-bottom: 25px;
}
.content_view ul li{
    position: relative;
    padding-left: 40px;
	margin-bottom: 10px;
    font-size: 16px;
	list-style: none;
}
.content_view ul li::before{
    content: '';
    background: url('../../images/icons/check-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0px;
    top: 0px;
}
.content_view tbody, td, tfoot, th, thead, tr{
    border-width: 1px !important;
    padding: 8px !important;
}

.urology_hero_banner_section{
    background: url('../landing/urology-banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 0px;
    position: relative;
}
.urology_hero_banner_section h1{
	font-family: 'Questrial', sans-serif;
    font-size: 35px;
    font-weight: 600;
}
.urology_hero_banner_section p{
    font-size: 16px;
}
.urology_hero_banner_section form{
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #939393;
    border-radius: 5px;
    background: #939393;
}
.urology_hero_banner_section form h5{
    margin-bottom: 10px;
}
.urology_hero_banner_section form input{
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
	font-family: 'Questrial', sans-serif;
    border: 1px solid rgba(218, 218, 218, 0.5);
    outline: none;
}
.urology_hero_banner_section form textarea{
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
	font-family: 'Questrial', sans-serif;
    border: 1px solid rgba(218, 218, 218, 0.5);
    outline: none;
}
.urology_about button{
    padding: 10px 45px;
    color: white;
    cursor: pointer;
    background-color: #0056b3;
    border: none;
    outline: none;
    border-radius: 5px;
}
.urology_hero_banner_section form button{
    width: 100%;
    padding: 10px;
    color: white;
    cursor: pointer;
    background-color: #0056b3;
    border: none;
    outline: none;
    border-radius: 5px;
}
.urology_hero_banner_section::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000052;
}
.urology_hero_banner_section .container{
    z-index: 11;
    position: relative;
    color: white;
}
.single_blog{
	padding: 80px 0px 20px 0px;
}
.single_blog h3{
	font-family: 'Questrial', sans-serif;
	font-size: 30px;
	font-weight: 600;
	text-align: center;
	width: 100%;
	margin-bottom: 35px;
}
.single_blog h1{
	font-family: 'Questrial', sans-serif;
	font-size: 30px;
	font-weight: 600;
	text-align: center;
	width: 100%;
	margin-bottom: 35px;
}
.single_blog .img_box{
	width: 100%;
	height: 430px;
}
.single_blog .img_box img{
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
}
.single_blog .blog_info_box h5{
	font-family: 'Questrial', sans-serif;
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 20px;
}
.single_blog .blog_info_box h6{
	font-family: 'Questrial', sans-serif;
	margin-bottom: 12px;
	font-weight: 600;
	font-size: 19px;
}
.single_blog .blog_info_box p{
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 400;
}
.single_blog .blog_info_box .posted{
	font-size: 16px;
	font-family: 'Questrial', sans-serif;
	font-weight: 600;
	margin-top: 25px;
}
.single_blog .blog_info_box{
	border: 1px solid #164d92;
	padding: 15px;
	border-radius: 5px;
}
.single_blog .blog_info_box .blog_tags{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
	margin-top: 10px;
	gap: 10px;
}
.single_blog .blog_info_box .blog_tags div{
	min-width: 25%;
	padding: 5px 10px;
	border-radius: 5px;
	background-color: #164e92;
	border-radius: 2px;
	color: white;
}
.single_blog .blog_info_box .blog_tags p{
	font-size: 14px;
	font-family: 'Questrial', sans-serif;
	text-align: center;
	margin-bottom: 0px;
}


.doctor_section .form .selected_doctor, .doctor_section .form .date__time, .doctor_section .form .patient_detail{
	display: flex;
	gap: 15px;
	width: 100%;
	margin-bottom: 15px;
    padding: 8px;
    border: 1px solid #164d92;
    border-radius: 5px;
}
.doctor_section .form .selected_doctor .txt, .doctor_section .form .patient_detail .txt, .doctor_section .form .date__time .txt{
	display: flex;
    justify-content: center;
    flex-direction: column;
}
.doctor_section .form .selected_doctor .txt h3{
	font-size: 20px;
    font-family: 'Questrial', sans-serif;
    font-weight: 600;
    margin-top: unset;
    margin-bottom: 7px;
}
.doctor_section .form .date__time .txt h4{
	font-size: 18px;
    font-family: 'Questrial', sans-serif;
    font-weight: 600;
    margin-top: unset;
    margin-bottom: 7px;
}
.doctor_section .form .date__time .txt h6{
	font-size: 16px;
    font-family: 'Questrial', sans-serif;
    font-weight: 600;
    margin-top: unset;
}
.doctor_section .form .patient_detail .txt h5{
	font-size: 18px;
	margin-bottom: 5px;
    font-family: 'Questrial', sans-serif;
    font-weight: 600;
    margin-top: unset;
}
.doctor_section .form .patient_detail .txt p{
	font-size: 15px;
    font-family: 'Questrial', sans-serif;
    font-weight: 500;
	margin-bottom: 0px;
}
.doctor_section .form .selected_doctor .txt h6{
	font-size: 16px;
    font-family: 'Questrial', sans-serif;
    font-weight: 600;
    margin-top: unset;
    margin-bottom: unset;
}
.doctor_section .form .selected_doctor img{
	width: 85px;
    height: 79px;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
}
.doctor_section .form .patient_detail i, .doctor_section .form .date__time i{
	font-size: 28px;
	color: #164e92;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}




/* Global stylings */

.doctor_section .form label {
    position: absolute;
    font-size: 12px;
    top: -10px;
    left: 20px;
    background: white;
    padding: 0px 11px;
}

.doctor_section .form input, .doctor_section .form select, .doctor_section .form textarea {
    display: block;
    width: 100%;
    padding: 15px 18px 10px 18px;
    border: 0.5px solid #d1d1d1;
	font-size: 15px;
	font-family: 'Questrial', sans-serif;
	outline: none;
    border-radius: 6px;
}
.doctor_section .form textarea {
	height: 150px;
}

.ml-auto {
    margin-left: auto;
}


/* Form */

.doctor_section .form {
    background-color: white;
    width: 100%;
    border: 1px solid #164d92;
    border-radius: 0.35rem;
	position: relative;
    z-index: 1;
	padding: 20px 20px 20px 20px;
}
.doctor_section .form h3{
	font-size: 25px;
	font-family: 'Questrial', sans-serif;
	font-weight: 600;
	margin-bottom: 25px;
	margin-top: 15px;
}

.doctor_section .form .input-group {
    position: relative;
	margin-bottom: 25px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    transform-origin: top;
    animation: animate .5s;
}


/* Button */
.btn-group {
    display: flex;
    justify-content: space-between;
	margin-top: 25px;
    width: 100%;
}

.btn_prev {
    background-color: #b6202e;
	padding: 12px 20px;
	width: 49% !important;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	margin-top: 20px;
	font-family: 'Questrial', sans-serif;
	font-size: 18px;
	text-transform: capitalize;
	margin-left: auto;
    color: white;
}
.btn_prev:hover{
	color: white;
}

.btn_next {
    background-color: #164d92;
	padding: 12px 20px;
	width: 49% !important;
	border: none;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	margin-top: 20px;
	font-family: 'Questrial', sans-serif;
	font-size: 17px !important;
	text-transform: capitalize;
	margin-left: auto;
    color: white;
}

.doctor_section .form .checkbox_view .inp__ut{
	display: flex;
	gap: 10px;
	align-items: center;
}
.doctor_section .form .checkbox_view .inp__ut input{
	width: 20px;
	height: 20px;
}
.doctor_section .form .checkbox_view .inp__ut h6{
	font-family: 'Questrial', sans-serif;
	font-weight: 600;
	font-size: 17px;
}
.doctor_section .form .checkbox_view p{
	font-family: 'Questrial', sans-serif;
	font-size: 15px;
	font-weight: 400;
	margin-top: 12px;
}
.doctor_section .form .checkbox_view p span{
	font-weight: 600;
	font-size: 16px;
}
.doctor_section .form 
.doctor_section .form .btn-next {
    background-color: #164d92;
	padding: 12px 20px;
	width: 30%;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	margin-top: 20px;
	font-family: 'Questrial', sans-serif;
	font-size: 18px;
	text-transform: capitalize;
	margin-left: auto;
    color: white;
}

.btn___next{
	background-color: #164d92;
	padding: 12px 20px;
	width: 30%;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	margin-top: 20px;
	font-family: 'Questrial', sans-serif;
	font-size: 18px;
	text-transform: capitalize;
	margin-left: auto;
    color: white;
}
.btn-next:hover{
	color: white;
}

textarea {
    resize: vertical;
}

/* Prefixes */

.input-box {
    display: flex;
    align-items: center;
    /* max-width: 300px; */
    background: #fff;
    border: 1px solid #a0a0a0;
    border-radius: 4px;
    padding-left: 0.5rem;
    overflow: hidden;
    font-family: sans-serif;
}

.input-box .prefix {
    font-weight: 300;
    font-size: 14px;
    color: rgb(117, 114, 114);
}

.input-box input {
    border: none;
    outline: none;
}

.input-box:focus-within {
    border-color: #777;
}

/* End Prefixes */


/* Progress bar */

.progress-bar {
    position: relative;
    display: flex;
	flex-direction: row !important;
    justify-content: space-between;
    counter-reset: step;
    margin-bottom: 30px;
}

.progress-bar::before,
.progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #dcdcdc;
    z-index: 1;
}

.progress {
    background-color: #164d92;
    width: 0;
    transition: .5s;
}

.progress-step {
    width: 35px;
	z-index: 2;
    height: 35px;
	font-family: 'Questrial', sans-serif;
    background-color: #dcdcdc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-step::before {
    counter-increment: step;
    content: counter(step);
}

.progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.20rem);
    font-size: 0.85rem;
    color: black !important;
}

.progress-step.active {
    background-color: #164d92;
    color: white;
}


.privacy_policy{
	padding: 80px 0px;
}
.privacy_policy ul li{
    position: relative;
    padding-left: 40px;
	list-style: none;
    font-size: 15px;
	margin-bottom: 7px;
}

.privacy_policy ul li::before{
    content: '';
    background: url('../../images/icons/check-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0px;
    top: 0px;
}
.privacy_policy h4{
	font-size: 30px;
	text-align: center;
	font-family: 'Questrial', sans-serif;
	margin-bottom: 40px;
	font-weight: 600;
}
.privacy_policy h6{
	margin-bottom: 10px;
	margin-top: 30px;
	font-size: 22px;
	font-family: 'Questrial', sans-serif;
	font-weight: 600;
}
.privacy_policy p{
	font-size: 15px;
	margin-bottom: 10px;
	font-weight: 400;
}
.privacy_policy p span{
	font-size: 15px;
	font-weight: 600;
}

.international_patient{
	padding: 80px 0px;
}
.international_patient .overview .img_box{
	width: 100%;
	height: 300px;
}
.international_patient .overview .img_box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}
.international_patient  h4{
	margin-bottom: 55px;
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	font-family: 'Questrial', sans-serif;
}
.international_patient .overview h6{
	font-size: 24px;
	margin-bottom: 18px;
	font-weight: 600;
	font-family: 'Questrial', sans-serif;
}
.international_patient .services{
	margin-top: 50px;
}
.international_patient .services h4{
	font-size: 27px;
	margin-bottom: 30px;
	margin-top: 40px;
}
.international_patient .overview .txt p{
	font-size: 15px;
	font-weight: 400;
}
.international_patient .overview .txt button{
	padding: 10px 35px;
	background-color: #b6202e;
	color: white;
	border: none;
	outline: none;
	font-family: 'Questrial', sans-serif;
	border-radius: 5px;
	margin-top: 25px;
}
.international_patient .plan h4{
	text-align: left;
	font-size: 25px;
	font-weight: 600;
	font-family: 'Questrial', sans-serif;
	margin-bottom: 20px;
}
.international_patient .plan .img_box{
	width: 100%;
	height: 450px;
}
.international_patient .plan .img_box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}
.international_patient .plan p{
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 15px;
}
.international_patient .plan button{
	padding: 10px 35px;
	background-color: #b6202e;
	color: white;
	border: none;
	outline: none;
	font-family: 'Questrial', sans-serif;
	border-radius: 5px;
	margin-top: 15px;
}
.international_patient .plan{
	margin-top: 60px;
}
.international_patient .services .box{
	width: 100%;
	cursor: pointer;
	border: 1px solid #b6202e;
	margin-bottom: 20px;
	padding: 15px;
	display: flex;
	min-height: 122px;
	justify-content: center;
	align-items: center;
	gap: 15px;
	border-radius: 5px;
}
.international_patient .services .box img{
	width: 45px;
	height: 45px;
	object-fit: contain;
}
.international_patient .services .box .txt span{
	font-size: 19px;
	font-family: 'Questrial', sans-serif;
	font-weight: 60;
	color: black;
	width: fit-content;

}

@keyframes animate {
    from {
        transform: scale(1, 0);
        opacity: 0;
    }

    to {
        transform: scale(1, 1);
        opacity: 1;
    }
}

.comment_form{
	padding: 25px 0px;
}
.comment_form h3{
	font-family: 'Questrial', sans-serif;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 15px;
}
.comment_form p{
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 20px;
}
.comment_form .input_comment{
	width: 100%;
}
.comment_form .input_comment input{
	width: 100%;
	padding: 10px 20px;
	font-family: 'Questrial', sans-serif;
	font-size: 15px;
	border: 1px solid rgb(220, 220, 220);
	margin-top: 20px;
	outline: none;
}
.comment_form .input_comment textarea{
	width: 100%;
	padding: 10px 20px;
	font-family: 'Questrial', sans-serif;
	height: 180px;
	margin-top: 20px;
	font-size: 15px;
	border: 1px solid rgb(220, 220, 220);
	outline: none;
}
.view_comments{
	margin-top: 12px;
	font-family: 'Questrial', sans-serif;
	padding: 10px 40px;
	background-color: #b6202e;
	color: white;
	border: none;
	outline: none;
	border-radius: 5px;
}
.comment_form button{
	padding: 10px 40px;
	background-color: #b6202e;
	color: white;
	border: none;
	outline: none;
	border-radius: 5px;
	margin-top: 15px;
	margin-bottom: 30px;
}
.comments{
	padding: 30px 0px;
	margin-top: 25px;
	border-top: 1px solid rgb(201, 201, 201);
}
.comments h3{
	font-size: 24px;
	margin-top: 10px;
	margin-bottom: 45px;
	font-family: 'Questrial', sans-serif;
	font-weight: 600;
}
.comments .comment{
	display: flex;
	gap: 15px;
	align-items: center;
}
.comments .comment img{
	width: 45px;
	height: 45px;
}
.comments .comment .txt h5{
	font-family: 'Questrial', sans-serif;
	font-size: 18px;
	font-weight: 600;
}
.comments .comment .txt p{
	margin-bottom: 0px;
	font-weight: 400;
	font-size: 14px;
}
.comments p{
	font-size: 15px;
	font-weight: 400;
}
.comments .stars{
	display: flex;
	gap: 8px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.comments .stars .far{
	color: goldenrod;
	font-size: 16px;
}
.comments .stars .fas{
	color: goldenrod;
	font-size: 16px;
}

.heart__day__content{
	padding: 10px 0px 40px 0px;
}
.heart__day__content h4{
	font-family: 'Questrial', sans-serif;
	font-size: 28px;
	margin-top: 10px;
	margin-bottom: 15px;
}
.heart__day__content h6{
	font-family: 'Questrial', sans-serif;
	font-size: 20px;

	margin-top: 25px;
	margin-bottom: 10px;
}
.heart__day__content ul li span{
	font-weight: 600;
}
.heart__day__content p{
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.career_section{
	padding: 80px 0px;
}
.career_section h4{
	font-family: 'Questrial', sans-serif;
	font-size: 28px;
	margin-top: 10px;
	margin-bottom: 50px;
	text-align: center;
}
.career_section .career_box{
	display: flex;
	justify-content: space-between;
	border: 1px solid #164e92;
	align-items: center;
	border-radius: 5px;
	margin-bottom: 20px;
	padding: 25px 20px;
}
.career_section .career_box .second button{
	border: none;
	outline: none;
	padding: 10px 25px;
	background-color: #164d92;
	color: white;
	font-size: 16px;
	border-radius: 5px;
	font-family: 'Questrial', sans-serif;
}
.career_section .career_box h6{
	font-family: 'Questrial', sans-serif;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 18px;
}
.career_section .career_box .career_flex{
	display: flex;
	gap: 25px;
}
.career_section .career_box .career_flex i{
	font-size: 15px;
	color: #164d92;
	margin-right: 7px;
}
.timings{
	display: flex;
	gap: 1%;
	flex-wrap: wrap;
}
.timing-option {
    padding: 10px 25px;
    border: 1px solid #ccc;
    margin: 5px;
    cursor: pointer;
	width: 31%;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.timing-option.active {
    background-color: #164d92; /* Green */
    color: white;
}

#selectedTime {
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.career_detail {
	padding: 65px 0px;
}
.career_detail h6{
	font-size: 22px;
	font-weight: 600;
	font-family: 'Questrial', sans-serif;
	margin-bottom: -10px;
}
.career_detail .details{
	padding: 35px 0px;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}
.career_detail .details span i{
	font-size: 15px;
	margin-right: 8px;
	color: #164d92;
}
.career_application{
	margin-bottom: 50px;
}
.career_application h5{
	font-family: 'Questrial', sans-serif;
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 25px;
}
.career_application input{
	width: 100%;
	padding: 10px 20px;
	margin-bottom: 20px;
	font-size: 15px;
	font-family: 'Questrial', sans-serif;
	border: 1px solid rgb(226, 226, 226);
	outline: none;
}
.career_application textarea{
	height: 200px;
	width: 100%;
	padding: 10px 20px;
	margin-bottom: 20px;
	font-size: 15px;
	font-family: 'Questrial', sans-serif;
	border: 1px solid rgb(226, 226, 226);
	outline: none;
}
.career_application span{
	margin-top: -10px;
	display: block;
	font-size: 14px;
	font-weight: 600;
	font-family: 'Questrial', sans-serif;
	margin-bottom: 5px;
	width: 100%;
}
.career_application button{
	padding: 10px 30px;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Questrial', sans-serif;
	background-color: #b6202e;
	color: white;
	border: none;
	outline: none;
	margin-top: 2px;
	border-radius: 5px;
}
.career_detail .content_view p strong{
	font-size: 18px !important;
}
@media screen and (max-width: 992px) {
    .contact-section .left-box{
        margin-top: 45px;
        padding: 20px;
    }
    .contact-section .left-box .star{
        top: 130px;
        right: 0px;
    }
    .contact-section .left-box .btn-div{
        display: flex;
        justify-content: flex-end;
    }
    .contact-section .right-box{
        margin-top: 50px;
    }
}
@media screen and (max-width: 550px) {
		
	.counter__section{
		flex-direction: column;
	}
	.counter__section .bx_counter{
		width: 100%;
		padding: 18px 0px;
	}
	.facilities__section .fac_box{
		flex-direction: column;
	}
	.facilities__section .fac_box .txt__view{
		width: 100% !important;
	}
	.facilities__section .fac_box img{
		width: 100% !important;
		margin-top: 15px;
	}
	.facilities__section .fac_box .txt__view h4{
		margin-top: 15px;
	}
	.counter__section .bx_counter:not(:last-child) {
		border-bottom: 1px solid rgb(197, 197, 197);
		border-right: unset;
	}
    .contact-section .left-box h1{
        font-size: 55px;
    }
	.description___txt{
		width: 100%;
	}
	.sort__section .first__section{
		overflow-x: scroll !important;
		flex-wrap: wrap;
	}
	.sort__section .first__section .sort_box{
		width: fit-content;
	}
	.sort__section .first__section .sort_txt{
		width: 100%;
	}
	.vedio_container iframe{
		width: 100%;
		height: 225px;
	}
    .contact-section .left-box{
        padding: 10px;
    }
    .contact-section .right-box{
        padding: 25px;
		margin-bottom: 20px;
    }
	.img_reveal_box .txt_area h2{
		font-size: 28px;
	}
	.international_patient .plan h4{
		margin-top: 15px;
	}
	.international_patient .overview h6{
		margin-top: 18px;
	}
	.form_appointment input{
		margin-bottom: 15px;
	}
	.doctor_section .form .checkbox_view .inp__ut input{
		width: 18px;
		height: 18px;
	}
	.doctor_section .form .checkbox_view .inp__ut h6{
		font-size: 15px;
	}
	.btn___next{
		width: 70%;
		margin-top: 25px !important;
	}
	.btn_prev{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.btn-next{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.timing-option {
		width: 46%;
        padding: 9px 7px;
        font-size: 12px;
	}

	.career_section{
		padding: 50px 0px;
	}
	.career_section h4{
		font-size: 25px;
	}
	.career_section .career_box{
		flex-direction: column;
		align-items: flex-start;
	}
	.career_section .career_box h6{
		font-size: 20px;
		margin-bottom: 10px;
	}
	.career_section .career_box .career_flex{
		flex-direction: column;
		gap: 5px;
		margin-top: 20px;
		margin-bottom: 20px;
	}

		
	.career_detail {
		padding: 45px 0px;
	}
	.career_detail .details{
		padding: 15px 0px 35px 0px;
		flex-direction: column;
		gap: 10px;
	}
	.career_application h5{
		font-size: 22px;
	}
	.career_application button{
		font-size: 14px;
	}

}








/****************************************/
/****      26. Responsive css        ****/
/****************************************/

@media only screen and (max-width: 1024px){
	.main-menu ul li a{
		padding: 12px 2px !important;
	}
}

@media only screen and (max-width: 991px){

    p{
        font-size: 16px;
    }

	#magic-cursor{
    	display: none !important;
    }
    
    .slicknav_nav li.highlighted-menu a i{
        display: none;
    }

    .responsive-menu,
    .navbar-toggle{
        display: block;
    }

    .section-row{
        margin-bottom: 40px;
    }

    .section-title{
        margin-bottom: 25px;
    }
    
    .section-title h3{
        margin-bottom: 10px;
        font-size: 16px;
    }

    .section-title h1,
    .section-title h2{
        font-size: 38px;
    }

    .hero{
        padding: 60px 0;
		background-size: 30% auto;
    }

    .hero-content{
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-footer .btn-default{
        margin-right: 20px;
    }

    .hero-footer a.video-btn{
        font-size: 18px;
    }

    .hero-images{
        max-width: 600px;
        margin: 0 auto;
    }

    .home-contact-us{
        padding: 50px 15px 25px;
    }

    .home-contact-item.highlighted-box .highlighted-box-title{
        padding: 0 20px;
    }

    .home-contact-item.highlighted-box .highlighted-box-title h2{
        font-size: 26px;
    }

    .home-contact-item.highlighted-box .appointment-wrap a{
        padding: 15px;
        font-size: 16px;
    }

    .home-contact-item{
        padding: 30px 20px;
    }

    .home-contact-item .contact-content h3{
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .home-contact-item .contact-content p{
        font-size: 16px;
    }

    .about-us{
        padding: 25px 0;
    }

    .about-img{
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-us-image{
        text-align: center;
        margin-bottom: 30px;
    }

    .about-content .about-content-body p{
        max-width: 100%;
    }

    .about-content{
        padding-left: 0px;
    }

    .medical-services{
        padding: 25px 0 20px;
    }

    .medical-service-content{
        padding: 30px 20px 80px 20px;
    }

    .medical-content h3{
        font-size: 20px;
    }

    .cta-box{
        padding: 50px 0;
        text-align: center;
    }

    .cta-item{
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .cta-item .icon-box{
        width: 100%;
        margin-right: 0px;
    }

    .cta-content h3{
        font-size: 38px;
    }

    .cta-content{
        width: calc(80%);
        margin: 0 auto;
    }

    .cta-box .cta-btn{
        text-align: center;
    }

    .how-we-work{
        padding: 50px 0 20px;
    }

    .how-we-work .section-title{
        padding-right: 0px;
    }

    .work-step-item .step-item-content h3{
        font-size: 20px;
    }

    .our-faqs{
        padding: 50px 0;
    }

    .faq-image{
        margin-bottom: 70px;
    }

    .counter-box-1{
        width: 150px;
        height: 130px;
    }
    
    .counter-box-2{
        width: 150px;
        height: 130px;
    }

    .counter-item .counter-content h3{
        font-size: 36px;
    }
    
    .counter-item .counter-content p{
        font-size: 20px;
    }
    
    .faqs-content{
        padding-left: 0px;
    }

    .faq-accordion .accordion-item .accordion-button{
        font-size: 20px;
    }

    .faq-accordion .accordion-item .accordion-collapse .accordion-body p{
        max-width: 100%;
    }

	.clients-testimonials{
		padding: 50px 0 25px;
	}

	.testimonial-item{
		padding: 30px;
	}

	.author-content .author-title h3{
		font-size: 20px;
	}

	.testimonial-slider .swiper-pagination{
		margin-top: 20px;
	}

	.recent-post{
		padding: 25px 0 20px;
	}

	.post-item-body h2{
		font-size: 20px;
		margin-bottom: 15px;
	}

	.post-item .btn-readmore a{
		font-size: 16px;
	}

    .home-contact-form{
        padding: 50px 15px 0;
    }

    .contact-appointment{
        padding: 40px 15px;
    }

    .contact-appointment .appointment-content h3{
        font-size: 26px;
    }

    .contact-form{
        padding: 40px 30px;
    }

    .main-footer{
        padding: 60px 0 20px;
    }
    
    .about-footer{
        margin-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-logo{
        margin-bottom: 20px;
    }

    .footer-content{
        margin-bottom: 20px;
    }

    .footer-social-links ul{
        text-align: center;
    }

    .footer-social-links ul li a{
        font-size: 20px;
    }

    .footer-quick-links h2,
    .footer-contact-details h2,
    .footer-newsletter h2{
        font-size: 20px;
        margin-bottom: 25px;
    }

    .footer-contact-box{
        padding-right: 0px;
    }

	.subpage-header{
		padding: 100px 0 50px;
		background-size: 20% auto;
	}

	.subpage-header::before{
		width: 220px;
	}

	.subpage-header-box h1{
		font-size: 38px;
		margin-bottom: 5px;
	}
	.description___txt{
		width: 100% !important;
		margin-top: 10px;
	}

	.subpage-header-box ol li{
		font-size: 16px;
	}

	.page-about{
		padding: 50px 0;
	}

	.page-about-content{
		margin-bottom: 30px;
	}

	.page-services-item-content{
		margin-right: 0;
		margin-bottom: 30px;
	}
	
	.about-page-img{
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}

	.we-improving{
		padding: 50px 0;
	}

	.improving-img{
		margin-bottom: 20px;
	}

	.improving-content{
		margin-left: 0;
	}

	.improving-body p{
		margin-bottom: 30px;
	}

	.top-services{
		padding: 50px 0 0px;
	}

	.services-item{
		padding: 20px;
	}

	.services-item .services-content h3{
		font-size: 20px;
	}

	.services-item .services-content{
		margin-bottom: 15px;
	}

	.health-services{
		padding: 25px 0 50px;
	}

	.health-services-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.health-services-content h2{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.health-services-content p{
		margin-bottom: 20px;
	}

	.health-services-content ul{
		padding: 0;
	}

	.health-services-content ul li:before{
		font-size: 18px;
	}

	.health-service-item{
		padding: 20px;
	}

	.health-info-content h3{
		font-size: 20px;
	}

	.meet-our-team{
		padding: 50px 0 20px;
	}

	.team-content h2{
		font-size: 20px;
	}

	.our-services{
		padding: 50px 0 0px;
	}

	.our-services-item{
		padding: 20px;
	}

	.services-item-content{
		margin-bottom: 20px;
	}

	.services-item-content h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.services-item-content ul li{
		font-size: 16px;
		margin-bottom: 15px;
	}

	.services-item-content ul li:before{
		font-size: 18px;
	}

	.service-specialist{
		padding: 25px 0 0px;
	}

	.specialist-item{
		padding: 15px;
	}

	.specialist-content h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.specialist-content i{
		font-size: 24px;
	}

	.meet-our-team.service-team{
		padding: 25px 0 0;
	}

	.our-culture{
		padding: 25px 0;
	}

	.download-apps{
		padding: 25px 0 50px;
	}

	.download-apps .section-title{
		margin-bottom: 20px;
	}

	.download-apps-body{
		margin-bottom: 30px;
	}

	.services-single{
		padding: 50px 0 25px;
	}

	.services-single-content{
		margin-right: 0px;
	}

	.services-video-icon a i{
		font-size: 16px;
		width: 44px;
		height: 44px;
	}

	.health-care-plan-content ul li{
		width: 100%;
		font-size: 18px;
		margin-bottom: 15px;
		margin-right: 0;
	}

	.service-featured-image,
	.health-care-plans{
		margin-bottom: 30px;
	}

	.medical-service{
		padding: 30px 20px;
	}

	.medical-service-title h2{
		font-size: 26px;
	}

	.medical-service-list .service-item{
		padding: 10px;
	}

	.service-item .service-icon img{
		width: 35px;
	}

	.service-item .service-title h3{
		font-size: 22px;
	}

	.working-step{
		padding: 25px 0 50px;
	}

	.working-process-item{
		padding: 30px;
	}

	.working-process-item .icon-box{
		margin-bottom: 20px;
	}

	.working-process-item .icon-box img{
		width: 35px;
	}
	
	.working-process-content h3{
		font-size: 20px;
	}

	.working-process-step{
		position: absolute;
		right: 10px;
		bottom: 5px;
	}
	
	.working-process-step h2{
		font-size: 26px;
	}

	.recent-post.our-blog{
		padding: 50px 0;
	}

	.post-pagination{
        margin-top: 8px;
    }

	.post-single-meta ul li{
        font-size: 18px;
    }

    .page-post-single{
        padding: 50px 0 25px;
    }

    .post-entry h2{
        font-size: 38px;
        margin-bottom: 20px;
    }

    .tag-links{
        margin-bottom: 10px;
    }

    .post-social-sharing{
        text-align: left;
    }

	.post-entry blockquote p{
        font-size: 22px;
    }

    .post-entry blockquote{
        padding: 30px;
    }

	.meet-our-team.our-team{
		padding: 50px 0 20px;
	}

	.member-details{
		padding: 50px 0 25px;
	}

	.member-info{
		padding: 30px;
	}

	.member-info .member-title{
		margin-bottom: 20px;
	}
	
	.member-info .member-title h3{
		font-size: 16px;
		margin-bottom: 15px;
	}
	
	.member-info .member-title h2{
		font-size: 36px;
	}
	
	.member-info .member-about-data{
		margin-bottom: 20px;
	}

	.member-info .member-social-icon ul li a i{
		font-size: 20px;
	}

	.member-about-details{
		padding: 25px 0 50px;
	}

	.about-member .member-social-icon ul li a i{
		font-size: 20px;
	}

	.education-item .education-content h3{
		font-size: 20px;
	}

	.awards-item .awards-content h3{
		font-size: 16px;
	}

	.skillbar .skill-data .title{
		font-size: 16px;
	}

	.skillbar .skill-progress{
		height: 20px;
	}

	.skillbar .skill-progress .count-bar{
		font-size: 16px;
	}
	
	.team-sidebar{
		margin: 60px 0 0 0;
	}

	.opening-hour-box{
		padding: 40px;
		max-width: 400px;
		margin: 0 auto;
		text-align: center;
	}

	.opening-hour-box .icon-box{
		margin-bottom: 20px;
	}

	.opening-hour-title{
		margin-bottom: 30px;
	}

	.opening-hour-title h3{
		font-size: 26px;
	}

	.opening-hour-content ul{
		text-align: left;
	}

	.contact-information{
        max-width: 700px;
        margin-bottom: 25px;
    }

    .contact-item{
        padding: 30px 0;
    }

    .contact-info-content h3{
        font-size: 20px;
    }

    .page-contact-form{
        padding: 25px 0 50px;
    }

    .contact-us-form{
        padding: 30px;
    }

	.appointment-booking{
        padding: 50px 0 25px;
    }

    .appointment-booking .contact-form{
        padding: 30px;
    }

    .quick-contacts{
        padding: 30px;
    }

    .quick-contacts-content h3{
        font-size: 28px;
        margin-bottom: 10px;
    }

    .meet-our-team.appointment-our-team{
        padding: 25px 0 20px;
    }

	.faqs-page{
        padding: 50px 0 25px;
    }

	.error-page{
        padding: 50px 0;
    }

    .error-page-heading h2{
        font-size: 38px;
    }
}

@media only screen and (max-width: 767px){

	.navbar-brand img{
        max-width: 140px;
    }
    
    .section-row{
        margin-bottom: 30px;
    }

    .section-title h3{
        font-size: 14px;
        margin-bottom: 10px;
    }

    .section-title h1,
    .section-title h2{
        font-size: 28px;
    }
   
    .section-title-content{
        margin-top: 10px;
    }

	.hero::before{
		background-size: 40% auto;
	}

    .hero-images{
        padding-bottom: 0;
        background-size: 70% auto;
        justify-content: space-between;
    }

    .hero-images .hero-image-1,
    .hero-images .hero-image-2{
        width: 47%;
    }

    .home-contact-item.highlighted-box .highlighted-box-title{
        padding: 30px;
    }

    .home-contact-item.highlighted-box .highlighted-box-title h2{
        font-size: 22px;
    }

    .home-contact-item{
        padding: 30px;
    }

    .home-contact-item.box-border::before{
        content: "";
        display: block;
        position: absolute;
        top: auto;
        left: 50%;
        bottom: 0;
        right: 50%;
        height: 1px;
        width: 90%;
        background: var(--transparent-color);
        transform: translateX(-50%);
    }

    .about-content-item .about-content-body{
        margin-bottom: 20px;
    }

    .about-content-item .about-content-footer ul{
        margin: 0 0 20px 0;
    }

    .about-content-item .about-content-footer ul li{
        font-size: 16px;
    }

    .about-us-image{
        justify-content: space-between;
    }

    .about-us-image .about-us-image-1,
    .about-us-image .about-us-image-2{
        width: 45%;
    }

    .about-us-image .about-us-image-1{
        margin-top: 100px;
    }

    .about-img .about-video{
        text-align: end;
        width: 52%;
    }

	.about-img .about-video .btn-video{
		font-size: 16px;
	}

    .about-img{
        margin-bottom: 30px;
    }

    .medical-services .row .col-lg-4:first-child{
        display: block;
    }

    .medical-services .medical-service-heading{
        margin-bottom: 40px;
    }

    .cta-content{
        width: calc(100%);
        margin: 0 auto;
    }

    .cta-content h3{
        font-size: 28px;
    }
    
    .counter-box-1{
        width: 120px;
        height: 110px;
    }
    
    .counter-box-2{
        height: 110px;
    }

    .counter-item .counter-content h3{
        font-size: 28px;
    }

	.author-content .author-title h3{
		font-size: 18px;
	}

	.post-item-body h2{
		font-size: 18px;
	}

    .contact-appointment{
        padding: 25px;
    }

    .contact-appointment .appointment-content h3{
        font-size: 22px;
    }

    .contact-form{
        padding: 25px;
    }

    .about-footer{
        text-align: left;
    }

    .footer-social-links ul{
        text-align: left;
    }
    
    .footer-contact-box .footer-info-box{
        padding-left: 28px;
    }

    .footer-info-box .icon-box i{
        font-size: 18px;
    }

    .footer-newsletter{
        margin-top: 30px;
    }

    .footer-copyright{
        margin-top: 30px;
    }

	.subpage-header{
		padding: 80px 0 50px;
		background-size: 35% auto;
	}

	.subpage-header::before{
		background: url(../images/half-circle-img.png) no-repeat 80% 100%;
		background-size: 60% auto;
	}

	.subpage-header-box h1{
		font-size: 28px;
	}

	.page-about-image{
		justify-content: space-between;
	}

	.page-about-image-1{
		margin-top: 100px;
		width: 48%;
	}

	.page-about-image-2{
		width: 48%;
		margin-bottom: 100px;
	}

	.services-item .services-content h3{
		font-size: 18px;
	}

	.health-services-content h2{
		font-size: 18px;
	}

	.health-services-content ul li{
		margin-bottom: 15px;
		font-size: 16px;
	}

	.health-service-item .icon-box{
		margin-right: 10px;
	}

	.health-info-content{
		width: calc(100% - 50px);
	}

	.health-info-content h3{
		font-size: 18px;
	}

	.team-content h2{
		font-size: 18px;
	}

	.services-item-content h3{
		font-size: 18px;
	}

	.section-title-content{
		margin-top: 10px;
	}

	.specialist-content h3{
		font-size: 18px;
	}

	.culture-image-gallery{
		justify-content: space-between;
		align-items: center;
		padding: 0 30px;
	}

	.culture-image-gallery .caulture-img{
		width: 48%;
		margin-bottom: 10px;
	}

	.culture-image-gallery .caulture-img:last-child{
		margin-bottom: 0;
	}

	.download-apps-img{
		margin-bottom: 30px;
	}

	.download-apps-footer .download-apps-image{
		margin-right: 30px;
	}

	.service-video{
		margin-bottom: 20px;
	}

	.health-care-plan-content ul li{
		font-size: 16px;
	}

	.services-sidebar{
		margin-top: 40px;
	}

	.medical-service-title h2{
		font-size: 22px;
	}

	.service-item .service-title h3{
		font-size: 20px;
	}

	.working-step{
		padding: 25px 0 30px;
	}
	
	.working-process-item{
		margin-bottom: 20px;
		height: calc(100% - 20px);
	}

	.working-process-step h2{
		font-size: 22px;
	}

	.post-single-meta ul li{
        font-size: 16px;
    }

	.post-image{
		margin-bottom: 20px;
	}

    .post-entry h2{
        font-size: 28px;
    }

    .post-entry{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .post-entry blockquote{
        padding: 20px;
    }

    .post-entry blockquote p{
        background: url(../images/icon-blockquote.svg) no-repeat 0px 0px;
        font-size: 20px;
        padding-left: 0px;
        padding-top: 50px;
    }

	.member-info{
		padding: 20px;
	}
	
	.member-info .member-title h2{
		font-size: 28px;
	}

	.member-service .about-service-content ul li{
		font-size: 16px;
		width: calc(100%);
		margin: 0 0 15px 0;
	}

	.member-education .education-item{
		display: flex;
		flex-direction: column;
		text-align: center;
		margin-bottom: 20px;
	}

	.education-item .education-icon{
		width: 100%;
		margin: 0 0 20px 0;
	}
	
	.award-list .awards-item{
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

	.award-list .awards-item:last-child{
		margin-bottom: 0;
	}

	.opening-hour-title h3{
		font-size: 22px;
	}

	.opening-hour-content ul li{
		font-size: 16px;
	}

	.google-map-iframe{
        height: 300px;
    }

    .google-map-iframe iframe{
        height: 300px;
    }

    .contact-information{
        max-width: 350px;
        margin-bottom: 25px;
    }

    .contact-item{
        padding: 20px 0;
    }

    .contact-item .icon-box i{
        font-size: 26px;
    }

    .contact-info-content h3{
        font-size: 18px;
    }

    .contact-us-form{
        padding: 20px;
    }

	.appointment-booking .contact-form{
        padding: 20px;
    }

    .quick-contacts{
        padding: 20px;
    }

    .quick-contacts-content h3{
        font-size: 24px;
    }

	.error-page-heading{
        margin-bottom: 20px;
    }

    .error-page-heading h2{
        font-size: 28px;
    }
}





@import url('https://fonts.googleapis.com/css2?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&family=Questrial:wght@400..800&display=swap');

body{
    font-family: "Poppins", sans-serif;
}
body, html{
    max-width: 100%;
    overflow-x: hidden;
}
.hero_carousel{
    width: 100%;
}

.autism_container{
    padding: 70px 0px;
}
.autism_container .tab__area .ta__b{
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d3eefb;
}
.autism_container .hr__line{
    margin: 20px 0px;
    border-top: 1px dashed rgb(139, 139, 139);
}
.autism_container .tab__area .ta__b span{
    color: black;
    font-family: 'Questrial', sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.autism_container .content__area h5{
    font-family: 'Questrial',sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}
.autism_container .content__area p{
    font-size: 16px;
    text-align: justify;
    margin-bottom: 27px;
}
.autism_container .img_box{
    height: 480px;
    margin-bottom: 35px;
}
.autism_container .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.autism_container .gray__shade{
    background-color: rgba(243, 243, 243, 0.815);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    margin-top: 25px;
}


.dropdown-menu-2{
    display: none;
    position: absolute;
    top: 165%;
    justify-content: space-between;
    min-width: 250px;
    left: 0;
    background-color: white;
    padding: 10px;
    box-shadow: rgb(180 180 180 / 1%) 0px 1px 2px 0px;
    z-index: 1;
    width: auto;
    padding: 12px 19px;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
}
.dropdown-menu-2 a{
    display: block;
    width: 100%;
    margin-bottom: 8px;
}
.box_____{
    padding: 50px 18px;
    cursor: pointer;
    transition: 0.5s ease;
    border: 1px solid #e6e6e6;
    position: relative;
    min-height: 250px;
    background-color: white;
    margin-bottom: 23px;
    border-radius: 9px;
}
.box_____:hover{
    background-color: #0066a1;
    color: white;
}
.box_____:hover .flex____box img {
    filter: brightness(0) invert(1);
}

.box_____:hover .flex____box h4{
    color: white;
}
.mt__minus{
    margin-top: -130px;
}
.box_____ .flex____box{
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
}
@media screen and (max-width: 375px){
    .home_banner{
        height: 105vh !important;
    }
    .home_banner .container h1{
        font-size: 26px !important;
        margin-top: 25px !important;

    }
}

.box_____ .flex____box img{
    width: 45px;
}
.box_____ .flex____box h4{
    font-family: 'Questrial', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 7px;
}
.box_____ .flex____box p{
    font-size: 15px;
}
.box_____ .arrow__box{
    width: fit-content;
    position: absolute;
    padding: 11px 25px;
    right: 0px;
    bottom: 0px;
    background: #d3eefb;
    border-top-left-radius: 10px;
}
.box_____ .arrow__box i{
    font-size: 18px;
}
.head__txt_dc{
    font-size: 32px;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 28px;
    margin-top: -60px;
    text-align: center;
    font-weight: 600;
}
.find____btn{
    margin-top: 25px;
    padding: 11px 28px;
    border: none;
    outline: none;
    border-radius: 4px;
    color: white;
    background: #b6202e;
}

.mobile__offcanvas{
    width: 93%;
}
.mobile__offcanvas .logo{
    width: 50%;
}
.mobile__offcanvas{
    padding: 13px;
}
.navbar__mobile_links .emergency{
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 93%;
    z-index: 11111;
    right: 0px;
    background: white;
    width: 93%;
    padding: 9px;
}
.navbar__mobile_links .emergency .lottie_icon{
    width: 45px;
    height: fit-content;
}
.navbar__mobile_links .emergency div{
    display: flex;
    flex-direction: column;
}
.navbar__mobile_links .emergency div span.bold{
    font-weight: 700;
}
.navbar__mobile_links .emergency div span{
    font-size: 14px;
}
.navbar__mobile_links .link_text{
    display: flex;
    align-items: center;
}
.navbar__mobile_links .link_text a{
    color: black;
    font-size: 17px;
    display: block;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 13px;
}
.navbar__mobile_links .link_text span{
    margin-left: 8px;
    margin-top: -10px;
}
.navbar__mobile_links ul li{
    list-style: none;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 4px;
}
.navbar__mobile_links ul li a{
    color: black;
    font-size: 16px;
    text-decoration: none;
}
.navbar__mobile_links .link{
    width: 100%;
    color: black;
    font-size: 17px;
    display: block;
    font-weight: 500;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 13px;
}
.navbar__mobile_links .link.active{
    color: #b6202e;
}
.navbar__mobile_links button{
    padding: 9px 15px;
    background-color: #b6202e;
    color: white;
    font-family: 'Questrial', sans-serif;
    margin-top: 5px;
    border: none;
    width:100%;
    outline: none;
    font-size: 15px;
    border-radius: 5px;
}
.navbar__mobile_links .buttons{
    display: flex;
    justify-content: space-between;
}
.navbar__mobile{
    padding: 15px 0px;
    border-bottom: 1px solid rgb(214, 214, 214);
    width: 100%;
}
.navbar_logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}
.navbar_logo .logo{
    width: 62%;
    cursor: pointer;
}
.navbar_logo .icon{
    width: 28px;
    cursor: pointer;
}

.top_header {
    background-color: white;
    padding: 4px 0px;
    font-family: "Questrial", sans-serif;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.top_header .logo .navbar_logo{
    width: 250px;
}
.top_header .links{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.top_header .links a{
    color: black;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}
.top_header .links a.active{
    color: #b6202e;
}
.top_header .links a:hover{
    color: #b6202e;
}
.top_header .emergency{
    display: flex;
    gap: 10px;
    margin-left: 35px;
}
.top_header .emergency .lottie_icon{
    width: 45px;
    height: fit-content;
}
.top_header .emergency div{
    display: flex;
    flex-direction: column;
}
.top_header .emergency div span.bold{
    font-weight: 700;
}
.top_header .emergency div span{
    font-size: 14px;
}
.bottom_navbar{
    font-family: "Questrial", sans-serif;
    padding: 17px 0px;
}
.bottom_navbar .nav_links{
    display: flex;
    gap: 33px;
}
.bottom_navbar .nav_links a{
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}
.bottom_navbar .nav_links a:hover{
    color: #b6202e;
}
.bottom_navbar .nav_links a.active{
    color: #b6202e;
}
.bottom_navbar .btns_navbar{
    display: flex;
    gap: 15px;
}
.btns_navbar .health_btn{
    border: 1px solid #b6202e;
    outline: none;
    border-radius: 3px;
    background-color: white;
    color: #b6202e;
    font-size: 14px;
    transition: 0.8s;
    padding: 3px 15px;
}
.btns_navbar .health_btn:hover{
    border: 1px solid #b6202e;
    background-color: #b6202e;
    color: white;
}
.btns_navbar .appointment_btn{
    border: 1px solid #b6202e;
    outline: none;
    border-radius: 3px;
    background-color: #b6202e;
    color: white;
    font-size: 14px;
    transition: 0.8s;
    padding: 3px 15px;
}
.btns_navbar .appointment_btn:hover{
    border: 1px solid #b6202e;
    background-color: white;
    color: #b6202e;
}




/* Dropdown menu styles */
.bottom_navbar .dropdown {
    position: relative;
    display: inline-block;
}

.bottom_navbar .dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    border-width: 5px;
    border-style: solid;
    border-color: #b6202e transparent transparent transparent;
    margin-top: 4px;
}

.bottom_navbar .dropdown-menu h6{
    font-size: 16px;
    font-weight: 700;
    color: #b6202e;
    margin-bottom: 10px;
    margin-top: 8px;
}





/* Style for the dropdown menu */
.nav_links .dropdown {
    position: relative;
    z-index: 111111;
}

.nav_links .dropdown-menu, .nav_links .dropdown-menu-2 {
    display: none;
    
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1;
    top: 100%;
    left: 0;
    border-radius: 4px;
}
.nav_links .dropdown-menu{
    display: none ;
    min-width: 400px;
}
.nav_links .dropdown-menu-2{
    display: none;
}

.nav_links .dropdown-menu a, .nav_links .dropdown-menu-2 a {
    display: block;
    padding: 5px 15px;
    text-decoration: none;
    color: #333;
}

.nav_links .dropdown-menu a:hover, .nav_links .dropdown-menu-2 a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.nav_links .dropdown:hover .dropdown-menu{
    display: flex;
}

.nav_links .dropdown:hover .dropdown-menu-2 {
    display: block;
}

/* Extra styling */
.nav_links .dropdown-column {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
}

.nav_links .dropdown-column h6 {
    font-weight: bold;
    margin-bottom: 10px;
}

.dropdown-column a {
    display: block;
    padding: 5px 0;
}

/* Adjusting the dropdown for better visual aesthetics */
.nav_links .dropdown {
    margin-right: 20px;
}

.dropdown .fa-caret-down {
    margin-left: 5px;
}



.home_banner .hero_description{
    color: rgb(58, 58, 58);
    font-size: 15px;
    width: 92%;
    text-align: justify;
}

.home_banner .hero_button{
    background: #2f609d;
    color: white;
    border: none;
    outline: none;
    padding: 10px 30px;
    border-radius: 4px;
}

.hover__effect:hover{
    opacity: 0.7;
}
.home_banner{
    width: 100%;
    background: url('../images/Banner.jpg');
    position: relative;
    height: 87vh;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}
.home_banner .container{
    height: 100%;
}
.home_banner .container .heading_view{
    height: 85%;
}
.home_banner .container h1{
    font-size: 55px;
    font-weight: 700;
    font-family: "Questrial", sans-serif;
    color: #164d92;
}

.hero_section_parent .slick-dots{
    bottom: -36px;
    width: 100%;
}
.home_banner form{
    width: 100%;
    display: flex;
    padding: 15px;
    justify-content: center;
    background: rgba(245, 245, 245, 0.986);
    align-items: center;
}

.home_banner #form_view{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15%;
    flex-direction: column;
    margin-top: -6%;
}
.home_banner #form_view .input-group{
    width: 100%;
    position: relative;
}
.home_banner #form_view .input-group input, .home_banner #form_view .input-group select{
    width: 100%;
    font-size: 12px;
    border-radius: 6px;
    transition: 0.5s;
    padding: 14px 14px;
}
.home_banner #form_view .input-group label{
    font-size: 12px;
    position: absolute;
}
.home_banner .form-control:focus{
    color: unset !important; 
    background-color: unset transparent !important;
    border-color: none !important;
    border: 0.4px solid #164d92;
    outline: 0;
    box-shadow: unset !important;
}
.home_banner form button{
    background: #164d92;
    border-radius: 3px;
    color: white;
    padding: 12px 10px;
    font-size: 14px;
    width: 100%;
    border: none;
    outline: none;
}


.ad_banner_carousel{
    margin-top: 2%;
}
.ad_banner_carousel .ad_box{
    position: relative;
    margin-top: 300px;
    margin-bottom: 20px;

}
.ad_banner_carousel .ad_box_button{
    background-color: #b6202e;
    color: white;
    padding: 10px 55px;
    border: none;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: unset;
    bottom: -36px;
    transform: translate(-50% ,-50%);
    z-index: 11;
}

.slick-dots{
    bottom: -30px;
}
.slick-dots li.slick-active{
    background: #164d92;
    width: 33px;
    height: 9px;
    border-radius: 20px;
}
.slick-dots li{
    background: #164d92;
    width: 9px;
    height: 9px;
    border-radius: 20px;
    transition: 0.4s;
}
.slick-dots li button{
    display: none;
}




.team-body{
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.team-body button{
    width: fit-content !important;
    padding: 9px 28px !important;
}

/* department section css start  */
.department__section{
    margin-top: 70px;
    margin-bottom: 0px;
    padding: 0px 0px 15px 0px;
}
.department__section .row{
    margin-top: 30px;
}
.department__section .span{
    font-size: 18px;
    text-align: center;
    display: block;
}
.department__section .heading{
    font-size: 35px;
    text-align: center;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    margin-top: 2px;
}
.department__section .description{
    width: 50%;
    margin: auto;
    font-size: 14px;
    text-align: center;
}
.department__section .dep_carousel{
    margin-top: 25px;
}
.department__section .box{
    border: 1px solid rgb(238, 238, 238);
    padding: 15px 15px 35px;
    border-radius: 8px;
    margin: 10px;
}
.department__section .box .img_box{
    height: 210px;
}
.department__section .box .img_box img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.department__section .box h5{
    font-size: 23px;
    margin-top: 20px;
    font-weight: 600;
    font-family: "Questrial", sans-serif;
}
.department__section .box p{
    font-size: 14px;
}
.department__section .box a{
    text-decoration: none;
    color: black;
    position: relative;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgb(178, 178, 178);
}
.department__section .box a::after{
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 4px;
    background: url('../images/icons/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.4s;
    right: -35px;
}
.department__section .row .box a:hover::after{
    right: -50px;
}



/* department section media query */
@media screen and (max-width: 900px) {
    .department__section .description{
        width: 95%;
    }
    .department__section .heading{
        font-size: 28px;
    }
}
/* department section css end */





.about_section{
    margin-top: 20px;
    background-color: #d3eeff;
    padding: 40px 0px 40px;
}
.about_section .about_img_box{
    padding: 0px 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_section .about_img_box img{
    height: 100%;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.about_section .txt_section{
    height: 100%;
    display: flex;
    padding-bottom: 35px;
    justify-content: center;
    flex-direction: column;
}
.about_section .txt_section h5{
    font-size: 22px;
    color: #b6202e;
    font-family: "Questrial", sans-serif;
    font-weight: 500;
}
.about_section .txt_section h3{
    margin-bottom: 20px;
    font-size: 45px;
    color: #164d92;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
}
.about_section .txt_section p{
    font-size: 16px;
    font-family: 'Poppins',Arial, Helvetica, sans-serif;
}






.facilities_section{
    margin-top: 60px;
    margin-bottom: 30px;
}
.facilities_section h4.heading{
    font-size: 35px;
    text-align: center;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    margin-top: 2px;
}
.facilities_section p.description{
    width: 50%;
    margin: auto;
    margin-bottom: 28px;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}
.facilities_section .facility_box{
    display: flex;
    justify-content: space-between;
}
.facilities_section .facility_box .img_box{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 20%;
}
.facilities_section .facility_box .img_box img.icon{
    width: 55px;
}
.facilities_section .facility_box .txt_area{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.facilities_section .facility_box .txt_area h6{
    font-family: "Questrial", sans-serif;
    color: #164d92;
    font-size: 22px;
    font-weight: 600;
}
.facilities_section .facility_box .txt_area p{
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
}

/* department section media query */
@media screen and (max-width: 900px) {
    .facilities_section p.description{
        width: 95%;
    }
    .facilities_section h4.heading{
        font-size: 28px;
    }
}
/* department section css end */





.tab_section {
    margin-bottom: 0px;
}
.tab_section .tabs {
    display: flex;
    justify-content: center;
    gap: 35px;
    align-items: center;
}
.tab_section .tabs .tab .box {
    display: flex;
    justify-content: space-between;
    background-color: rgba(226, 226, 226, 0.733);
    padding: 10px 25px;
    cursor: pointer;
    gap: 10px;
    border-radius: 7px;
    align-items: center;
}
.tab_section .tabs .tab.active .box {
    background-color: #164e9248;
}
.tab_section .tabs .tab .box img {
    width: 30px;
    filter: grayscale(1);
}
.tab_section .tabs .tab.active .box img {
    filter: unset;
}
.tab_section .tabs .tab .box p {
    font-size: 14px;
    font-family: "Questrial", sans-serif;
    margin-bottom: 0px;
}
.tab_section .tab_content {
    margin-top: 50px;
}
.tab_section .tab_content .tab_content_box .img_box {
    min-height: 340px;
    width: 100%;
}
.tab_section .tab_content .tab_content_box .img_box img {
    height: 355px;
    object-fit: cover;
    border-radius: 8px;
    width: 97%;
}
.tab_section .tab_content .tab_content_box{
    display: none;
}
.tab_section .tab_content .tab_content_box.active{
    display: block;
}
.tab_section .tab_content .tab_content_box .txt_area {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.tab_section .tab_content .tab_content_box .txt_area h5 {
    font-size: 24px;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    color: #164d92;
}
.tab_section .tab_content .tab_content_box .txt_area p {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.tab_section .tab_content .tab_content_box .txt_area button {
    font-size: 15px;
    font-family: "Questrial", sans-serif;
    padding: 9px 25px;
    border-radius: 3px;
    margin-top: 10px;
    background-color: #b6202e;
    border: 1px solid #b6202e;
    outline: none;
    color: white;
}


.qualified_doctors{
    background-color: #d3eeff;
    margin-top: 55px;
    height: fit-content;
    padding: 30px 0px;
}
.qualified_doctors .img_box img{
    height: 400px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.qualified_doctors .txt_box span{
    color: #b6202e;
    font-family: "Questrial", sans-serif;
    font-size: 23px;
    font-weight: 500;
}
.qualified_doctors .txt_box h5{
    font-family: "Questrial", sans-serif;
    font-size: 36px;
    margin-top: 10px;
    margin-bottom: 32px;
    font-weight: 600;
}

.qualified_doctors .txt_box p.icon{
    position: relative;
    padding-left: 40px;
    font-size: 15px;
}
.qualified_doctors .txt_box p.icon::before{
    content: '';
    background: url('../images/icons/check-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0px;
    top: 0px;
}



.img_gallery_box{
    width: 100%;
    height: 320px;
    margin-bottom: 30px;
}
.img_gallery_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.doctors_section{
    margin-top: 50px;
    margin-bottom: 50px;
}
.doctors_section h3.heading{
    font-size: 35px;
    font-weight: 600;
    margin: auto;
    text-align: center;
    font-family: "Questrial", sans-serif;
    margin-bottom: 10px;
}
.doctors_section p.description{
    width: 45%;
    margin: auto;
    font-size: 15px;
    text-align: center;

}
.doctors_section .box{
    background: #d2dee36e;
    border-radius: 10px;
    margin: 10px;
}
.doctors_section .box .img_box {
    height: 350px;
    display: flex;
    border: 1px solid #f2f5f6;
    justify-content: center;
    flex-direction: column;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    align-items: center;
}
.doctors_section .box .img_box img{
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 100%;
    width: 100%;
    object-position: top;
}
.doctors_section .box .inner_box{
    background: #ffffff4d;
    text-align: center;
    padding: 15px 0px;
}
.doctors_section .box .inner_box h5.name{
    margin-bottom: 0px;
    font-size: 22px;
    font-weight: 600;
    font-family: "Questrial", sans-serif;
    color: #14457b;
}
.doctors_section .box .inner_box p{
    margin-bottom: 13px !important;
    font-size: 14px;
}
.doctors_section .box .inner_box a{
    text-decoration: none;
    color: #14457b;
    font-weight: 500;
    font-size: 14px;
}
.doctors_section .doctors_btn{
    padding: 10px 35px;
    background-color: #164d92;
    color: white;
    border: none;
    outline: none;
    margin-top: 35px;
    border-radius: 5px;
}



/* doctors section media query  */
@media screen and (max-width: 900px) {
    .doctors_section p.description{
        width: 100%;
    }
    .doctors_section h3.heading{
        font-size: 28px;
    }
}
/* doctors section css end  */




.medical_treatment_section{
    min-height: 450px;
    background: url('../images/medical-treatment-banner.png');
    background-position: center;
    padding: 0px 0px;
    display: flex;
    margin-bottom: 0px;
    justify-content: center;
    align-items: center;
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
}
.medical_treatment_section h3{
    font-size: 42px;
    color: #14457b;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}
.medical_treatment_section p{
    font-size: 15px;
}
.medical_treatment_section button{
    padding: 10px 35px;
    border: 1px solid #14457b;
    background-color: #14457b;
    color: white;
    border-radius: 3px;
    transition: 0.6s ease;
    font-size: 15px;
    outline: none;
    margin-top: 15px;
}
.medical_treatment_section button:hover{
    color: #14457b;
    background-color: transparent;
}





/* testimonial section css  */
.testimonial_section{
    margin-top: 50px;
    padding-bottom: 50px;
    position: relative;
}
.testimonial_section::before{
    content: '';
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #c2cce74a;
    border-top-left-radius: 100%;
    z-index: 1;
}
.testimonial_section::after{
    content: '';
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #b1bceb47;
    border-top-left-radius: 100%;
}
.testimonial_section .testimonial_carousel .slick-prev{
    position: absolute;
    right: 110px;
    top: -65px;
    left: unset;
}
.testimonial_section .testimonial_carousel .slick-prev::before{
    content: "\f060";
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 10px;
    color: white;
    padding: 10px;
    font-weight: 900;
    opacity: 1;
    background: #14457b;
    font-family: 'Font Awesome 6 Free';
}
.testimonial_section .testimonial_carousel .slick-next{
    position: absolute;
    right: 50px;
    top: -65px;
    left: unset;
}
.testimonial_section .testimonial_carousel .slick-next::before{
    content: "\f061";
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    align-items: center;
    position: absolute;
    opacity: 1;
    color: white;
    padding: 10px;
    font-weight: 900;
    background: #14457b;
    font-family: 'Font Awesome 6 Free';
}
.testimonial_section .heading{
    font-size: 35px;
    font-weight: 600;
    font-family: "Questrial", sans-serif;
    text-align: center;
}
.testimonial_section .testimonial_carousel{
    margin-top: 35px;
}
.testimonial_section .description{
    width: 45%;
    text-align: center;
    margin: auto;
    margin-top: 10px;
    font-size: 15px;
}
.testimonial_section .box{
    position: relative;
    padding: 20px 15px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;  
    border-radius: 15px;
    margin: 12px;
}
.testimonial_section .box .quote{
    position: absolute;
    width: 70px;
    opacity: 0.2;
    right: 25px;
    top: 25px;
}
.testimonial_section .box .top_box{
    display: flex;
}
.testimonial_section .box .img_box img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.testimonial_section .box .top_box .txt_box{
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial_section .box .top_box .txt_box .name{
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 600;
    font-family: "Questrial", sans-serif;
    margin-bottom: 4px;
}
.testimonial_section .box .top_box .txt_box .designation{
    margin-bottom: 0px;
    font-size: 15px;
    color: #0a3e63;
}
.testimonial_section .box .rating{
    margin-top: 25px;
    margin-bottom: 15px;
}
.testimonial_section .box .rating i{
    margin-right: 5px;
    color: #ff8a00;
}
.testimonial_section .box .review{
    margin-bottom: 0px;
    font-size: 15px;
    max-height: 120px;
    text-align: justify;
    padding-right: 8px;
    overflow-y: scroll;
}


/* WebKit browsers (Chrome, Safari, newer Edge) */
.testimonial_section .box .review::-webkit-scrollbar {
    width: 4px; /* Width of the scrollbar */
}

.testimonial_section .box .review::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
}

.testimonial_section .box .review::-webkit-scrollbar-thumb {
    background-color: #0066a1; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
    border: 2px solid #0a3e63; /* Optional: a border around the thumb */

}

.testimonial_section .box .review::-webkit-scrollbar-thumb:hover {
    background: #0a3e63; /* Change color on hover */
}






/* about page media query  */
@media screen and (max-width: 900px) {
    
    /* testimonial section  */
    .testimonial_section{
        margin-top: 80px;
    }
    .testimonial_section::before{
        width: 75px;
        height: 75px;
    }
    .testimonial_section::after{
        width: 125px;
        height: 125px;
    }
    .testimonial_section .heading{
        font-size: 28px;
    }
    .testimonial_section .testimonial_carousel{
        margin-top: 100px;
    }
    .testimonial_section .description{
        width: 100%;
    }
    .testimonial_section .box .quote{
        width: 60px;
    }
}






.counter_section{
    display: flex;
    padding: 55px 0px;
    justify-content: center;
    align-items: center;
    background-color: #164d92;
    color: white;
}
.counter_section .parent_icon_counter{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.counter_section .parent_icon_counter .box_counter{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-width: 200px;
}
.counter_section .parent_icon_counter .box_counter img{
    width: 65px;
}
.counter_section .parent_icon_counter .box_counter h5{
    font-size: 32px;
    color: white;
    font-weight: 600;
}
.counter_section .parent_icon_counter .box_counter p{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
    font-family: "Questrial", sans-serif;
}








/* blog page css start  */
.blog__section{
    margin-top: 50px;
    margin-bottom: 50px;
}
.blog__section .heading{
    font-size: 35px;
    font-weight: 600;
    font-family: "Questrial", sans-serif;
    text-align: center;
}
.blog__section .description{
    width: 45%;
    text-align: center;
    margin: auto;
    font-size: 15px;
}
.blog__section .box{
    box-shadow: rgba(0, 68, 255, 0.108) 0px 10px 50px;
}

.blog__section img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.blog__section .txt_box{
    position: relative;
    padding: 13px;
}
.blog__section .txt_box span{
    display: block;
    margin-top: 20px;
    padding-left: 25px;
    color: black;
    font-size: 14px;
    position: relative;
}
.blog__section .txt_box span::before{
    content: "\f02b";
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    color: #0a3e63;
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 16px;
}
.blog__section .txt_box .blog_head{
    font-size: 20px;
    margin-top: 15px;
    font-weight: 600;
    font-family: "Questrial", sans-serif;
}
.blog__section .txt_box .date{
    font-size: 14px;
    margin-top: 25px;
}
.blog__section .txt_box a{
    position: absolute;
    right: 55px;
    bottom: 15px;
    text-decoration: none;
    color: black;
    font-size: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgb(178, 178, 178);
}
.blog__section .txt_box a::after{
    content: '';
    width: 14px;
    height: 14px;
    margin-top: 4px;
    background: url('../images/icons/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.4s;
    right: -30px;
}
.blog__section .txt_box  a:hover::after{
    right: -40px;
}
.blog__section .img__box{
    width: 100%;
    height: 240px;
}
/* blog page css end  */



/* about page media query  */
@media screen and (max-width: 900px) {
    .blog__section .heading{
        font-size: 28px;
    }
    .blog__section .description{
        width: 100%;
    }
    .package-heading {
    font-size: 28px !important;
    color: #002244;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}
}




footer{
    background: url('../images/footer.jpg');
    padding: 100px 0px 20px 0px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
footer::after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    background-color: #14467bef;
    width: 100%;
    height: 100%;
    z-index: 1;
}
footer .container{
    z-index: 2;
    position: relative;
}
footer .container iframe{
    width: 100%;
    height: 180px;
    border-radius: 8px;
}
footer .container .logo_section .logo img{
    width: 75%;
    margin-bottom: 20px;
}
footer .container .logo_section p{
    color: white;
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    margin-top: 15px;
}
footer .container .logo_section .icons{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
footer .container .logo_section .icons a{
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    color: white;
    text-decoration: none;
}
footer .container h5{
    color: white;
    font-size: 22px;
    margin-bottom: 30px;
    font-family: "Questrial", sans-serif;
}
footer .container .quick_links .quick_links_flex{
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
footer .container .quick_links .quick_links_flex a{
    display: block;
    text-decoration: none;
    font-family: "Questrial", sans-serif;
    color: white;
    margin-bottom: 8px;
}
footer .container .quick_links .quick_links_flex a i{
    margin-right: 10px;
}
footer .container .contact_section{
    display: flex;
    justify-content: center;
}
footer .container .contact_section p{
    margin-bottom: 8px;
    font-family: "Questrial", sans-serif;
    color: white;
    font-size: 17px;
}
footer .container .contact_section p i{
    margin-right: 10px;
}
footer .container .map_section{
    padding: 0px 15px;
}
footer .container .copy_right{
    margin-top: 60px;
    border-top: 1px solid white;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 20px 0px 0px ;
}
footer .container .copy_right span{
    color: white;
    font-family: 'Questrial',Arial, Helvetica, sans-serif;
    font-size: 17px;
}
footer .container .copy_right span a{
    color: white;
    text-decoration: none;
}
.lottie_whatsapp{
    width: 72px;
    position: fixed;
    bottom: 30px;
    height: 72px;
    right: 20px;
}





.text_justify{
    text-align: justify;
}
.fixedRightSideBar.active {
    right: -215px;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}
.fixedRightSideBar{
    background-color: #b6202e;
    color: white;
    display: flex;
    position: fixed;
    right: 0px;
    top: 40%;
    z-index: 11;
    transition: all .5s ease-in-out;
    overflow-x: hidden;
    
}
.fixedRightSideBar #headOne {
    writing-mode: vertical-rl;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    position: relative;
    height: 234px;
    cursor: pointer;
}
.fixedRightSideBar .sideBarClose {
    position: absolute;
    top: 5px;
    left: 12px;
    font-size: 20px;
    z-index: 11;
}
.sideBarClose .icon {
    transform: rotate(180deg);
    transition: all .8s ease-in-out;
    cursor: pointer;
}

.facilities__section{
    margin-top: 50px;
    margin-bottom: 50px;
}
.facilities__section .fac_box{
    width: 100%;
    padding: 20px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d3eefb;
    border-radius: 5px;
    margin-top: 35px;
}
.facilities__section .fac_box .txt__view{
    width: 52%;
}
.facilities__section .fac_box .txt__view h4{
    font-size: 24px;
    font-family: 'Questrial', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}
.facilities__section .fac_box .txt__view p{
    font-size: 16px;
}
.facilities__section .fac_box img{
    width: 45%;
}
.facilities__section .border__bottom{
    margin-top: 35px;
    border: 1px dashed rgba(218, 218, 218, 0.926);
}

.fixedRightSideBar .numbers {
    background-color: #ffffff;
    padding: 5px;
    /* box-shadow: -1px -1px 6px 7px #918989; */
    box-shadow: rgb(12 5 5 / 20%) 0px 2px 8px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.designat_ion{
    font-size: 16px !important;
    font-family: 'Questrial', sans-serif !important;
    font-weight: 600 !important;
    color: black !important;
}
.fixedRightSideBar .offices {
    margin: 5px 15px 10px 15px;
    /* margin-bottom: 15px; */
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 5px;
}
.offices p {
    font-size: 16px;
    font-weight: 600;
    color: black;
}
.offices i {
    font-weight: 900;
    color: #b6202e;
    font-size: 15px;
    margin-right: 10px;
}
.offices a {
    color: black;
    font-size: 15px;
}
.form_appointment{
    padding: 50px 0px;
}
.form_appointment h4{
    font-size: 26px;
    font-weight: 700;
    font-family: 'Questrial', sans-serif;
    text-align: center;
}
.form_appointment input{
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Questrial', sans-serif;
    border: 0.5px solid rgb(196, 196, 196);
    outline: none;
}
.form_appointment button{
    width: 100%;
    background-color: #0066a1;
    color: white;
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
}
.empty__appointment{
    max-width: 36%;
}
.appointments_user{
    padding: 25px 0px 50px 0px;
}
.appointments_user h4{
    text-align: center;
    font-family: 'Questrial', sans-serif;
    font-size: 20px;
    font-weight: 700;
}
.appointments_user .box{
    padding: 15px;
    border-radius: 4px;
    border: 0.6px solid rgb(199, 199, 199);
}
.appointments_user .box h6{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Questrial', sans-serif;
}
.appointments_user .box .sm_span{
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    font-family: 'Questrial', sans-serif;
}
.appointments_user .box .sm_span .bold{
    font-weight: 700;
}
.appointments_user .doctor_box{
    display: flex;
    margin-top: 25px;
    gap: 15px;
}
.appointments_user .doctor_box .txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.appointments_user .doctor_box .txt h6{ 
    margin-bottom: 7px !important;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Questrial', sans-serif;
}
.appointments_user .doctor_box .txt span{ 
    margin-bottom: 0px !important;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Questrial', sans-serif;
}
.appointments_user .doctor_box img{
    width: 85px;
    height: 79px;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
}
/* about page media query  */
@media screen and (max-width: 489px) {

    footer .container .logo_section .logo img{
        width: 60%;
    }
    footer .container h5{
        font-size: 20px;
        margin-top: 30px;
    }
    footer .container .quick_links .quick_links_flex{
        justify-content: flex-start;
        gap: 25px;
    }
    footer .container .contact_section{
        justify-content: flex-start;
    }

    footer .container .map_section{
        padding: 0px 15px;
    }

    footer .container .copy_right span{
        width: 100%;
        text-align: center;
    }


        
    .counter_section{
        padding: 50px 0px;
    }
    .counter_section .parent_icon_counter{
        flex-wrap: wrap;
        gap: 0px;
    }
    .counter_section .parent_icon_counter .box_counter{
        width: 50%;
        min-width: unset;
    }
    .counter_section .parent_icon_counter .box_counter img{
        width: 50px;
    }
    .counter_section .parent_icon_counter .box_counter h5{
        font-size: 24px;
        margin-top: 10px;
    }
    .counter_section .parent_icon_counter .box_counter p{
        font-size: 16px;
        margin-bottom: 40px;
    }



        

    .medical_treatment_section{
        position: relative;
    }
    .medical_treatment_section::after{
        content: '';
        width: 100%;
        height: 100%;
        background-color: #14467bd0;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }
    .medical_treatment_section .container{
        z-index: 11;
    }
    .medical_treatment_section h3{
        font-size: 32px;
        color: white;
    }
    .medical_treatment_section p{
        color: white;
    }
    

        
    .qualified_doctors{
        padding: 30px 0px;
    }
    .qualified_doctors .img_box img{
        margin-bottom: 25px;
    }
    .qualified_doctors .txt_box span{
        font-size: 20px;
    }
    .qualified_doctors .txt_box h5{
        font-size: 30px;
    }


    


    .tab_section .tabs {
        gap: unset;
        flex-wrap: wrap ;
        gap: 2%;
    }
    .tab_section .tabs .tab {
        width: 48%;
        margin-bottom: 10px;
    }
    .tab_section .tabs .tab .box {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }
    .tab_section .tabs .tab .box img {
        width: 25px;
    }
    .tab_section .tab_content {
        margin-top: 20px;
    }
    .tab_section .tab_content .tab_content_box .img_box {
        margin-bottom: 20px;
    }
    .tab_section .tab_content .tab_content_box .img_box img {
        height: 355px;
        object-fit: cover;
        border-radius: 8px;
        width: 97%;
    }
    .tab_section .tab_content .tab_content_box{
        display: none;
    }
    .tab_section .tab_content .tab_content_box.active{
        display: block;
    }
    .tab_section .tab_content .tab_content_box .txt_area {
        height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .tab_section .tab_content .tab_content_box .txt_area h5 {
        font-size: 24px;
        font-family: "Questrial", sans-serif;
        font-weight: 600;
        margin-bottom: 15px;
        color: #164d92;
    }
    .tab_section .tab_content .tab_content_box .txt_area p {
        font-size: 15px;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
    }
    .tab_section .tab_content .tab_content_box .txt_area button {
        font-size: 15px;
        font-family: "Questrial", sans-serif;
        padding: 9px 25px;
        border-radius: 3px;
        margin-top: 10px;
        background-color: #b6202e;
        border: 1px solid #b6202e;
        outline: none;
        color: white;
    }



        

    .facilities_section{
        margin-top: 90px;
        margin-bottom: 80px;
    }

    .facilities_section .facility_box .img_box img.icon{
        width: 45px;
    }
    .facilities_section .facility_box .txt_area{
        width: 80%;
    }
    .facilities_section p.description{
        margin-bottom: 45px;
    }



    

    .about_section .txt_section h5{
        font-size: 15px;
    }
    .about_section .txt_section h3{
        font-size: 30px;
    }



        
    .ad_banner_carousel .ad_box_button{
        font-size: 17px;
        padding: 9px 20px;
        left: 50%;
        top: unset;
        width: 65%;
    }
    .ad_banner_carousel .ad_box_button::after{
        width: 105%;
        height: 130%;
        border-width: 0.5px;
        left: -3px;
        top: -4px;
    }




        

    .home_banner{
        background: #14467b3a ;
        height: 90vh;
        background-position: bottom !important;
    }

    .hero_section_parent .slick-dots{
        bottom: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        transform: rotate(180deg);
    }
    .home_banner .container .heading_view{
        height: 32%;
        padding-top: 40px;
    }
    .home_banner .hero_description{
        width: 100%;
    }

    .home_banner .container h1{
        font-size: 32px;
        margin-top: 25px;
        font-family: "Questrial", sans-serif;
        font-weight: 600;
    }

    .home_banner form{
        width: 100%;
        display: flex;
        padding: 20px 10px;
        justify-content: center;
        background: rgba(245, 245, 245, 0.986);
        align-items: center;
    }

    .home_banner #form_view{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50%;
        flex-direction: column;
        margin-top: 0;
    }
    
    .home_banner #form_view .input-group input, .home_banner #form_view .input-group select{
        margin-bottom: 12px;
    }
    .home_banner #form_view .input-group label{
        font-size: 12px;
        display: none;
        position: absolute;
    }
    .home_banner .form-control:focus{
        color: unset !important; 
        background-color: unset transparent !important;
        border-color: none !important;
        border: 0.4px solid #164d92;
        outline: 0;
        box-shadow: unset !important;
    }
    .home_banner form button{
        background: #164d92;
        border-radius: 3px;
        color: white;
        padding: 12px 10px;
        font-size: 14px;
        width: 100%;
        border: none;
        outline: none;
    }    
}







@import url('https://fonts.googleapis.com/css2?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&family=Questrial:wght@400..800&display=swap');

body{
    font-family: "Poppins", sans-serif;
}
body, html{
    max-width: 100%;
    overflow-x: hidden;
}
.hero_carousel{
    width: 100%;
}

.autism_container{
    padding: 70px 0px;
}
.autism_container .tab__area .ta__b{
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 12;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d3eefb;
}
.autism_container .hr__line{
    margin: 20px 0px;
    border-top: 1px dashed rgb(139, 139, 139);
}
.autism_container .tab__area .ta__b span{
    color: black;
    font-family: 'Questrial', sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.autism_container .content__area h5{
    font-family: 'Questrial',sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}
.autism_container .content__area p{
    font-size: 16px;
    text-align: justify;
    margin-bottom: 27px;
}
.autism_container .img_box{
    height: 480px;
    margin-bottom: 35px;
}
.autism_container .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.autism_container .gray__shade{
    background-color: rgba(243, 243, 243, 0.815);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    margin-top: 25px;
}


.dropdown-menu-2{
    display: none;
    position: absolute;
    top: 165%;
    justify-content: space-between;
    min-width: 250px;
    left: 0;
    background-color: white;
    padding: 10px;
    box-shadow: rgb(180 180 180 / 1%) 0px 1px 2px 0px;
    z-index: 1;
    width: auto;
    padding: 12px 19px;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
}
.dropdown-menu-2 a{
    display: block;
    width: 100%;
    margin-bottom: 8px;
}
.box_____{
    padding: 50px 18px;
    cursor: pointer;
    transition: 0.5s ease;
    border: 1px solid #e6e6e6;
    position: relative;
    min-height: 250px;
    background-color: white;
    margin-bottom: 23px;
    border-radius: 9px;
}
.box_____:hover{
    background-color: #0066a1;
    color: white;
}
.box_____:hover .flex____box img {
    filter: brightness(0) invert(1);
}

.box_____:hover .flex____box h4{
    color: white;
}
.mt__minus{
    margin-top: -130px;
}
.box_____ .flex____box{
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
}
.box_____ .flex____box img{
    width: 45px;
}
.box_____ .flex____box h4{
    font-family: 'Questrial', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0a3e63;
    margin-bottom: 7px;
}
.box_____ .flex____box p{
    font-size: 15px;
}
.box_____ .arrow__box{
    width: fit-content;
    position: absolute;
    padding: 11px 25px;
    right: 0px;
    bottom: 0px;
    background: #d3eefb;
    border-top-left-radius: 10px;
}
.box_____ .arrow__box i{
    font-size: 18px;
}
.head__txt_dc{
    font-size: 32px;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 28px;
    margin-top: -60px;
    text-align: center;
    font-weight: 600;
}
.find____btn{
    margin-top: 25px;
    padding: 11px 28px;
    border: none;
    outline: none;
    border-radius: 4px;
    color: white;
    background: #b6202e;
}

.mobile__offcanvas{
    width: 93%;
}
.mobile__offcanvas .logo{
    width: 50%;
}
.mobile__offcanvas{
    padding: 13px;
}
.navbar__mobile_links .emergency{
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 93%;
    z-index: 11111;
    right: 0px;
    background: white;
    width: 93%;
    padding: 9px;
}
.navbar__mobile_links .emergency .lottie_icon{
    width: 45px;
    height: fit-content;
}
.navbar__mobile_links .emergency div{
    display: flex;
    flex-direction: column;
}
.navbar__mobile_links .emergency div span.bold{
    font-weight: 700;
}
.navbar__mobile_links .emergency div span{
    font-size: 14px;
}
.navbar__mobile_links .link_text{
    display: flex;
    align-items: center;
}
.navbar__mobile_links .link_text a{
    color: black;
    font-size: 17px;
    display: block;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 13px;
}
.navbar__mobile_links .link_text span{
    margin-left: 8px;
    margin-top: -10px;
}
.navbar__mobile_links ul li{
    list-style: none;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 4px;
}
.navbar__mobile_links ul li a{
    color: black;
    font-size: 16px;
    text-decoration: none;
}
.navbar__mobile_links .link{
    width: 100%;
    color: black;
    font-size: 17px;
    display: block;
    font-weight: 500;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 13px;
}
.navbar__mobile_links .link.active{
    color: #b6202e;
}
.navbar__mobile_links button{
    padding: 9px 15px;
    background-color: #b6202e;
    color: white;
    font-family: 'Questrial', sans-serif;
    margin-top: 5px;
    border: none;
    width:100%;
    outline: none;
    font-size: 15px;
    border-radius: 5px;
}
.navbar__mobile_links .buttons{
    display: flex;
    justify-content: space-between;
}
.navbar__mobile{
    padding: 15px 0px;
    border-bottom: 1px solid rgb(214, 214, 214);
    width: 100%;
}
.navbar_logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}
.navbar_logo .logo{
    width: 62%;
    cursor: pointer;
}
.navbar_logo .icon{
    width: 28px;
    cursor: pointer;
}

.top_header {
    background-color: white;
    padding: 4px 0px;
    font-family: "Questrial", sans-serif;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.top_header .logo .navbar_logo{
    width: 250px;
}
.top_header .links{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.top_header .links a{
    color: black;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}
.top_header .links a.active{
    color: #b6202e;
}
.top_header .links a:hover{
    color: #b6202e;
}
.top_header .emergency{
    display: flex;
    gap: 10px;
    margin-left: 35px;
}
.top_header .emergency .lottie_icon{
    width: 45px;
    height: fit-content;
}
.top_header .emergency div{
    display: flex;
    flex-direction: column;
}
.top_header .emergency div span.bold{
    font-weight: 700;
}
.top_header .emergency div span{
    font-size: 14px;
}
.bottom_navbar{
    font-family: "Questrial", sans-serif;
    padding: 17px 0px;
}
.bottom_navbar .nav_links{
    display: flex;
    gap: 33px;
}
.bottom_navbar .nav_links a{
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}
.bottom_navbar .nav_links a:hover{
    color: #b6202e;
}
.bottom_navbar .nav_links a.active{
    color: #b6202e;
}
.bottom_navbar .btns_navbar{
    display: flex;
    gap: 15px;
}
.btns_navbar .health_btn{
    border: 1px solid #b6202e;
    outline: none;
    border-radius: 3px;
    background-color: white;
    color: #b6202e;
    font-size: 14px;
    transition: 0.8s;
    padding: 3px 15px;
}
.btns_navbar .health_btn:hover{
    border: 1px solid #b6202e;
    background-color: #b6202e;
    color: white;
}
.btns_navbar .appointment_btn{
    border: 1px solid #b6202e;
    outline: none;
    border-radius: 3px;
    background-color: #b6202e;
    color: white;
    font-size: 14px;
    transition: 0.8s;
    padding: 3px 15px;
}
.btns_navbar .appointment_btn:hover{
    border: 1px solid #b6202e;
    background-color: white;
    color: #b6202e;
}




/* Dropdown menu styles */
.bottom_navbar .dropdown {
    position: relative;
    display: inline-block;
}

.bottom_navbar .dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    border-width: 5px;
    border-style: solid;
    border-color: #b6202e transparent transparent transparent;
    margin-top: 4px;
}

.bottom_navbar .dropdown-menu h6{
    font-size: 16px;
    font-weight: 700;
    color: #b6202e;
    margin-bottom: 10px;
    margin-top: 8px;
}





/* Style for the dropdown menu */
.nav_links .dropdown {
    position: relative;
    z-index: 111111;
}

.nav_links .dropdown-menu, .nav_links .dropdown-menu-2 {
    display: none;
    
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1;
    top: 100%;
    left: 0;
    border-radius: 4px;
}
.nav_links .dropdown-menu{
    display: none ;
    min-width: 400px;
}
.nav_links .dropdown-menu-2{
    display: none;
}

.nav_links .dropdown-menu a, .nav_links .dropdown-menu-2 a {
    display: block;
    padding: 4px 15px;
    text-decoration: none;
    color: #333;
}

.nav_links .dropdown-menu a:hover, .nav_links .dropdown-menu-2 a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.nav_links .dropdown:hover .dropdown-menu{
    display: grid;
    gap: 10px;
}

.nav_links .dropdown:hover .dropdown-menu-2 {
    display: block;
}

/* Extra styling */
.nav_links .dropdown-column {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
}

.nav_links .dropdown-column h6 {
    font-weight: bold;
    margin-bottom: 10px;
}

.dropdown-column a {
    display: block;
    padding: 5px 0;
}

/* Adjusting the dropdown for better visual aesthetics */
.nav_links .dropdown {
    margin-right: 20px;
}

.dropdown .fa-caret-down {
    margin-left: 5px;
}



.home_banner .hero_description{
    color: rgb(58, 58, 58);
    font-size: 15px;
    width: 92%;
    text-align: justify;
}

.home_banner .hero_button{
    background: #2f609d;
    color: white;
    border: none;
    outline: none;
    padding: 10px 30px;
    border-radius: 4px;
}

.hover__effect:hover{
    opacity: 0.7;
}
.home_banner{
    width: 100%;
    background: url('../images/Banner.jpg');
    position: relative;
    height: 87vh;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}
.home_banner .container{
    height: 100%;
}
.home_banner .container .heading_view{
    height: 85%;
}
.home_banner .container h1{
    font-size: 55px;
    font-weight: 700;
    font-family: "Questrial", sans-serif;
    color: #164d92;
}

.hero_section_parent .slick-dots{
    bottom: -36px;
    width: 100%;
    transform: unset !important;
}
.home_banner form{
    width: 100%;
    display: flex;
    padding: 15px;
    justify-content: center;
    background: rgba(245, 245, 245, 0.986);
    align-items: center;
}

.home_banner #form_view{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15%;
    flex-direction: column;
    margin-top: -6%;
}
.home_banner #form_view .input-group{
    width: 100%;
    position: relative;
}
.home_banner #form_view .input-group input, .home_banner #form_view .input-group select{
    width: 100%;
    font-size: 12px;
    border-radius: 6px;
    transition: 0.5s;
    padding: 14px 14px;
}
.home_banner #form_view .input-group label{
    font-size: 12px;
    position: absolute;
}
.home_banner .form-control:focus{
    color: unset !important; 
    background-color: unset transparent !important;
    border-color: none !important;
    border: 0.4px solid #164d92;
    outline: 0;
    box-shadow: unset !important;
}
.home_banner form button{
    background: #164d92;
    border-radius: 3px;
    color: white;
    padding: 12px 10px;
    font-size: 14px;
    width: 100%;
    border: none;
    outline: none;
}


.ad_banner_carousel{
    margin-top: 2%;
}
.ad_banner_carousel .ad_box{
    position: relative;
    margin-top: 30px;
    margin-bottom: 20px;
}
.ad_banner_carousel .ad_box_button{
    background-color: #b6202e;
    color: white;
    padding: 10px 55px;
    border: none;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: unset;
    bottom: -36px;
    transform: translate(-50% ,-50%);
    z-index: 11;
}

.slick-dots{
    bottom: -30px;
}
.slick-dots li.slick-active{
    background: #164d92;
    width: 33px;
    height: 9px;
    border-radius: 20px;
}
.slick-dots li{
    background: #164d92;
    width: 9px;
    height: 9px;
    border-radius: 20px;
    transition: 0.4s;
}
.slick-dots li button{
    display: none;
}




.team-body{
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.team-body button{
    width: fit-content !important;
    padding: 9px 28px !important;
}

/* department section css start  */
.department__section{
    margin-top: 70px;
    margin-bottom: 0px;
    padding: 0px 0px 15px 0px;
}
.department__section .row{
    margin-top: 30px;
}
.department__section .span{
    font-size: 18px;
    text-align: center;
    display: block;
}
.department__section .heading{
    font-size: 35px;
    text-align: center;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    margin-top: 2px;
}
.department__section .description{
    width: 50%;
    margin: auto;
    font-size: 14px;
    text-align: center;
}
.department__section .dep_carousel{
    margin-top: 25px;
}
.department__section .box{
    border: 1px solid rgb(238, 238, 238);
    padding: 15px 15px 35px;
    border-radius: 8px;
    margin: 10px;
}
.department__section .box .img_box{
    height: 210px;
}
.department__section .box .img_box img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.department__section .box h5{
    font-size: 23px;
    margin-top: 20px;
    font-weight: 600;
    font-family: "Questrial", sans-serif;
}
.department__section .box p{
    font-size: 14px;
}
.department__section .box a{
    text-decoration: none;
    color: black;
    position: relative;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgb(178, 178, 178);
}
.department__section .box a::after{
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 4px;
    background: url('../images/icons/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.4s;
    right: -35px;
}
.department__section .row .box a:hover::after{
    right: -50px;
}



/* department section media query */
@media screen and (max-width: 900px) {
    .department__section .description{
        width: 95%;
    }
    .department__section .heading{
        font-size: 28px;
    }
}
/* department section css end */





.about_section{
    margin-top: 20px;
    background-color: #d3eeff;
    padding: 40px 0px 40px;
}
.about_section .about_img_box{
    padding: 0px 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_section .about_img_box img{
    height: 100%;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.about_section .txt_section{
    height: 100%;
    display: flex;
    padding-bottom: 35px;
    justify-content: center;
    flex-direction: column;
}
.about_section .txt_section h5{
    font-size: 22px;
    color: #b6202e;
    font-family: "Questrial", sans-serif;
    font-weight: 500;
}
.about_section .txt_section h3{
    margin-bottom: 20px;
    font-size: 45px;
    color: #164d92;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
}
.about_section .txt_section p{
    font-size: 16px;
    font-family: 'Poppins',Arial, Helvetica, sans-serif;
}






.facilities_section{
    margin-top: 60px;
    margin-bottom: 30px;
}
.facilities_section h4.heading{
    font-size: 35px;
    text-align: center;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    margin-top: 2px;
}
.facilities_section p.description{
    width: 50%;
    margin: auto;
    margin-bottom: 28px;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}
.facilities_section .facility_box{
    display: flex;
    justify-content: space-between;
}
.facilities_section .facility_box .img_box{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 20%;
}
.facilities_section .facility_box .img_box img.icon{
    width: 55px;
}
.facilities_section .facility_box .txt_area{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.facilities_section .facility_box .txt_area h6{
    font-family: "Questrial", sans-serif;
    color: #164d92;
    font-size: 22px;
    font-weight: 600;
}
.facilities_section .facility_box .txt_area p{
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
}

/* department section media query */
@media screen and (max-width: 900px) {
    .facilities_section p.description{
        width: 95%;
    }
    .facilities_section h4.heading{
        font-size: 28px;
    }
}
/* department section css end */





.tab_section {
    margin-bottom: 0px;
}
.tab_section .tabs {
    display: flex;
    justify-content: center;
    gap: 35px;
    align-items: center;
}
.tab_section .tabs .tab .box {
    display: flex;
    justify-content: space-between;
    background-color: rgba(226, 226, 226, 0.733);
    padding: 10px 25px;
    cursor: pointer;
    gap: 10px;
    border-radius: 7px;
    align-items: center;
}
.tab_section .tabs .tab.active .box {
    background-color: #164e9248;
}
.tab_section .tabs .tab .box img {
    width: 30px;
    filter: grayscale(1);
}
.tab_section .tabs .tab.active .box img {
    filter: unset;
}
.tab_section .tabs .tab .box p {
    font-size: 14px;
    font-family: "Questrial", sans-serif;
    margin-bottom: 0px;
}
.tab_section .tab_content {
    margin-top: 50px;
}
.tab_section .tab_content .tab_content_box .img_box {
    min-height: 340px;
    width: 100%;
}
.tab_section .tab_content .tab_content_box .img_box img {
    height: 355px;
    object-fit: cover;
    border-radius: 8px;
    width: 97%;
}
.tab_section .tab_content .tab_content_box{
    display: none;
}
.tab_section .tab_content .tab_content_box.active{
    display: block;
}
.tab_section .tab_content .tab_content_box .txt_area {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.tab_section .tab_content .tab_content_box .txt_area h5 {
    font-size: 24px;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    color: #164d92;
}
.tab_section .tab_content .tab_content_box .txt_area p {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.tab_section .tab_content .tab_content_box .txt_area button {
    font-size: 15px;
    font-family: "Questrial", sans-serif;
    padding: 9px 25px;
    border-radius: 3px;
    margin-top: 10px;
    background-color: #b6202e;
    border: 1px solid #b6202e;
    outline: none;
    color: white;
}


.qualified_doctors{
    background-color: #d3eeff;
    margin-top: 55px;
    height: fit-content;
    padding: 30px 0px;
}
.qualified_doctors .img_box img{
    height: 400px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.qualified_doctors .txt_box span{
    color: #b6202e;
    font-family: "Questrial", sans-serif;
    font-size: 23px;
    font-weight: 500;
}
.qualified_doctors .txt_box h5{
    font-family: "Questrial", sans-serif;
    font-size: 36px;
    margin-top: 10px;
    margin-bottom: 32px;
    font-weight: 600;
}

.qualified_doctors .txt_box p.icon{
    position: relative;
    padding-left: 40px;
    font-size: 15px;
}
.qualified_doctors .txt_box p.icon::before{
    content: '';
    background: url('../images/icons/check-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0px;
    top: 0px;
}







.img_gallery_box{
    width: 100%;
    height: 320px;
    margin-bottom: 30px;
}
.img_gallery_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.heart_day_checkup_pages{
    padding: 50px 0px 20px 0px;
    position: relative;
}

.heart_day_checkup_pages h3.heading{
    font-size: 35px;
    font-weight: 600;
    margin: auto;
    text-align: center;
    font-family: "Questrial", sans-serif;
    margin-bottom: 7px;
}
.heart_day_checkup_pages p.description{
    width: 45%;
    margin: auto;
    font-size: 15px;
    text-align: center;
}
.heart_day_checkup_pages .checkup__box{
    width: 100%;
    border-radius: 10px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.heart_day_checkup_pages .checkup__box .book__btn {
    position: relative;
    transition: 0.5s ease;
}

.heart_day_checkup_pages .checkup__box .book__btn::after {
    content: '';  /* Initially empty */
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 0.5s ease;
    left: 0;
    top: 0;
    border: 1px solid #b6202e;
    background: #850612;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: white;
    border-radius: 6px;
    opacity: 0;  /* Hide initially */
}



.heart_day_checkup_pages .checkup__box .heading_box{
    padding: 20px;
    text-align: center;
    background-color: #b6202e;
    color: white;
    border-top-left-radius: 10px;
    height: 80px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.heart_day_checkup_pages .checkup__box h4{
    font-family: "Questrial", sans-serif;
    font-weight: 500;
    color: white;
    font-size: 26px;
}
.heart_day_checkup_pages .checkup__box .points{
    padding: 0px 15px 10px 30px;
    min-height: 294px;
    margin-top: 15px;
}
.heart_day_checkup_pages .checkup__box .book__btn{
    position: absolute;
    left: 50%;
    width: 75%;
    transform: translate(-50%, 0px);
    bottom: -14px;
    border: none;
    outline: none;
    padding: 4px 0px;
    background: #b6202e;
    border-radius: 4px;
}

.book_______now{
    padding: 7px 29px;
    margin-top: 25px;
    background: #b6202e;
    color: white;
    border: none;
    outline: none;
    border: 1px solid #b6202e;
    border-radius: 5px;
    transition: 0.6s;
}
.book_______now:hover{
    padding: 7px 29px;
    margin-top: 25px;
    background: white;
    color: #b6202e;
    border: none;
    outline: none;
    border: 1px solid #b6202e;
    border-radius: 5px;
}

.book_______now#seo {
    padding: 7px 29px;
    margin-top: 25px;
    background: #1567a3;
    color: white;
    border: none;
    outline: none;
    border: 1px solid #1567a3;
    border-radius: 5px;
    transition: 0.6s;
}
.book_______now#seo:hover{
    padding: 7px 29px;
    margin-top: 25px;
    background: white;
    color: #1567a3;
    border: none;
    outline: none;
    border: 1px solid #1567a3;
    border-radius: 5px;
}
.heart_day_checkup_pages .checkup__box .book__btn span{
    color: white;
    font-size: 16px;
    font-family: "Questrial", sans-serif;
    font-weight: 500;
}
.heart_day_checkup_pages .checkup__box .book__btn span.org_price{
    text-decoration: line-through;
}


.doctors_section{
    margin-top: 50px;
    margin-bottom: 50px;
}
.doctors_section h3.heading{
    font-size: 35px;
    font-weight: 600;
    margin: auto;
    text-align: center;
    font-family: "Questrial", sans-serif;
    margin-bottom: 10px;
}
.doctors_section p.description{
    width: 45%;
    margin: auto;
    font-size: 15px;
    text-align: center;
}
.doctors_section .box{
    background: #d2dee36e;
    border-radius: 10px;
    margin: 10px;
}
.doctors_section .box .img_box {
    height: 350px;
    display: flex;
    border: 1px solid #f2f5f6;
    justify-content: center;
    flex-direction: column;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    align-items: center;
}
.doctors_section .box .img_box img{
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 100%;
    width: 100%;
    object-position: top;
}
.doctors_section .box .inner_box{
    background: #ffffff4d;
    text-align: center;
    padding: 15px 0px;
}
.doctors_section .box .inner_box h5.name{
    margin-bottom: 0px;
    font-size: 22px;
    font-weight: 600;
    font-family: "Questrial", sans-serif;
    color: #14457b;
}
.doctors_section .box .inner_box p{
    margin-bottom: 13px !important;
    font-size: 14px;
}
.doctors_section .box .inner_box a{
    text-decoration: none;
    color: #14457b;
    font-weight: 500;
    font-size: 14px;
}
.doctors_section .doctors_btn{
    padding: 10px 35px;
    background-color: #164d92;
    color: white;
    border: none;
    outline: none;
    margin-top: 35px;
    border-radius: 5px;
}



/* doctors section media query  */
@media screen and (max-width: 900px) {
    .heart_day_checkup_pages p.description{
        width: 100%;
    }
    .heart_day_checkup_pages h3.heading{
        font-size: 28px;
    }
    .doctors_section p.description{
        width: 100%;
    }
    .doctors_section h3.heading{
        font-size: 28px;
    }
}
/* doctors section css end  */




.medical_treatment_section{
    min-height: 450px;
    background: url('../images/medical-treatment-banner.png');
    background-position: center;
    padding: 0px 0px;
    display: flex;
    margin-bottom: 0px;
    justify-content: center;
    align-items: center;
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
}
.medical_treatment_section h3{
    font-size: 42px;
    color: #14457b;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}
.medical_treatment_section p{
    font-size: 15px;
}
.medical_treatment_section button{
    padding: 10px 35px;
    border: 1px solid #14457b;
    background-color: #14457b;
    color: white;
    border-radius: 3px;
    transition: 0.6s ease;
    font-size: 15px;
    outline: none;
    margin-top: 15px;
}
.medical_treatment_section button:hover{
    color: #14457b;
    background-color: transparent;
}





/* testimonial section css  */
.testimonial_section{
    margin-top: 50px;
    padding-bottom: 50px;
    position: relative;
}
.testimonial_section::before{
    content: '';
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #c2cce74a;
    border-top-left-radius: 100%;
    z-index: 1;
}
.testimonial_section::after{
    content: '';
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #b1bceb47;
    border-top-left-radius: 100%;
}
.testimonial_section .testimonial_carousel .slick-prev{
    position: absolute;
    right: 110px;
    top: -65px;
    left: unset;
}
.testimonial_section .testimonial_carousel .slick-prev::before{
    content: "\f060";
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 10px;
    color: white;
    padding: 10px;
    font-weight: 900;
    opacity: 1;
    background: #14457b;
    font-family: 'Font Awesome 6 Free';
}
.testimonial_section .testimonial_carousel .slick-next{
    position: absolute;
    right: 50px;
    top: -65px;
    left: unset;
}
.testimonial_section .testimonial_carousel .slick-next::before{
    content: "\f061";
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    align-items: center;
    position: absolute;
    opacity: 1;
    color: white;
    padding: 10px;
    font-weight: 900;
    background: #14457b;
    font-family: 'Font Awesome 6 Free';
}
.testimonial_section .heading{
    font-size: 35px;
    font-weight: 600;
    font-family: "Questrial", sans-serif;
    text-align: center;
}
.testimonial_section .testimonial_carousel{
    margin-top: 35px;
}
.testimonial_section .description{
    width: 45%;
    text-align: center;
    margin: auto;
    margin-top: 10px;
    font-size: 15px;
}
.testimonial_section .box{
    position: relative;
    padding: 20px 15px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;  
    border-radius: 15px;
    margin: 12px;
}
.testimonial_section .box .quote{
    position: absolute;
    width: 70px;
    opacity: 0.2;
    right: 25px;
    top: 25px;
}
.testimonial_section .box .top_box{
    display: flex;
}
.testimonial_section .box .img_box img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.testimonial_section .box .top_box .txt_box{
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial_section .box .top_box .txt_box .name{
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 600;
    font-family: "Questrial", sans-serif;
    margin-bottom: 4px;
}
.testimonial_section .box .top_box .txt_box .designation{
    margin-bottom: 0px;
    font-size: 15px;
    color: #0a3e63;
}
.testimonial_section .box .rating{
    margin-top: 25px;
    margin-bottom: 15px;
}
.testimonial_section .box .rating i{
    margin-right: 5px;
    color: #ff8a00;
}
.testimonial_section .box .review{
    margin-bottom: 0px;
    font-size: 15px;
    max-height: 120px;
    text-align: justify;
    padding-right: 8px;
    overflow-y: scroll;
}






.heart_day_checkup_pages .points{
	padding-left: 10px;
	margin-bottom: 25px;
}
.heart_day_checkup_pages .points p{
    position: relative;
    padding-left: 40px;
	margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
	list-style: none;
}
.heart_day_checkup_pages .points p::before{
    content: '';
    background: url('../../images/icons/check-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0px;
    top: 0px;
}

/* WebKit browsers (Chrome, Safari, newer Edge) */
.testimonial_section .box .review::-webkit-scrollbar {
    width: 4px; /* Width of the scrollbar */
}

.testimonial_section .box .review::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
}

.testimonial_section .box .review::-webkit-scrollbar-thumb {
    background-color: #0066a1; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
    border: 2px solid #0a3e63; /* Optional: a border around the thumb */

}

.testimonial_section .box .review::-webkit-scrollbar-thumb:hover {
    background: #0a3e63; /* Change color on hover */
}






/* about page media query  */
@media screen and (max-width: 900px) {
    
    /* testimonial section  */
    .testimonial_section{
        margin-top: 80px;
    }
    .testimonial_section::before{
        width: 75px;
        height: 75px;
    }
    .testimonial_section::after{
        width: 125px;
        height: 125px;
    }
    .testimonial_section .heading{
        font-size: 28px;
    }
    .testimonial_section .testimonial_carousel{
        margin-top: 100px;
    }
    .testimonial_section .description{
        width: 100%;
    }
    .testimonial_section .box .quote{
        width: 60px;
    }
}






.counter_section{
    display: flex;
    padding: 55px 0px;
    justify-content: center;
    align-items: center;
    background-color: #164d92;
    color: white;
}
.counter_section .parent_icon_counter{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.counter_section .parent_icon_counter .box_counter{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-width: 200px;
}
.counter_section .parent_icon_counter .box_counter img{
    width: 65px;
}
.counter_section .parent_icon_counter .box_counter h5{
    font-size: 32px;
    color: white;
    font-weight: 600;
}
.counter_section .parent_icon_counter .box_counter p{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
    font-family: "Questrial", sans-serif;
}








/* blog page css start  */
.blog__section{
    margin-top: 50px;
    margin-bottom: 50px;
}
.blog__section .heading{
    font-size: 35px;
    font-weight: 600;
    font-family: "Questrial", sans-serif;
    text-align: center;
}
.blog__section .description{
    width: 45%;
    text-align: center;
    margin: auto;
    font-size: 15px;
}
.blog__section .box{
    box-shadow: rgba(0, 68, 255, 0.108) 0px 10px 50px;
}

.blog__section img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.blog__section .txt_box{
    position: relative;
    padding: 13px;
}
.blog__section .txt_box span{
    display: block;
    margin-top: 20px;
    padding-left: 25px;
    color: black;
    font-size: 14px;
    position: relative;
}
.blog__section .txt_box span::before{
    content: "\f02b";
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    color: #0a3e63;
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 16px;
}
.blog__section .txt_box .blog_head{
    font-size: 20px;
    margin-top: 15px;
    font-weight: 600;
    font-family: "Questrial", sans-serif;
}
.blog__section .txt_box .date{
    font-size: 14px;
    margin-top: 25px;
}
.blog__section .txt_box a{
    position: absolute;
    right: 55px;
    bottom: 15px;
    text-decoration: none;
    color: black;
    font-size: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgb(178, 178, 178);
}
.blog__section .txt_box a::after{
    content: '';
    width: 14px;
    height: 14px;
    margin-top: 4px;
    background: url('../images/icons/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.4s;
    right: -30px;
}
.blog__section .txt_box  a:hover::after{
    right: -40px;
}
.blog__section .img__box{
    width: 100%;
    height: 240px;
}
/* blog page css end  */



/* about page media query  */
@media screen and (max-width: 900px) {
    .blog__section .heading{
        font-size: 28px;
    }
    .blog__section .description{
        width: 100%;
    }
}




footer{
    background: url('../images/footer.jpg');
    padding: 100px 0px 20px 0px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
footer::after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    background-color: #14467bef;
    width: 100%;
    height: 100%;
    z-index: 1;
}
footer .container{
    z-index: 2;
    position: relative;
}
footer .container iframe{
    width: 100%;
    height: 180px;
    border-radius: 8px;
}
footer .container .logo_section .logo img{
    width: 75%;
    margin-bottom: 20px;
}
footer .container .logo_section p{
    color: white;
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    margin-top: 15px;
}
footer .container .logo_section .icons{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
footer .container .logo_section .icons a{
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    color: white;
    text-decoration: none;
}
footer .container h5{
    color: white;
    font-size: 22px;
    margin-bottom: 30px;
    font-family: "Questrial", sans-serif;
}
footer .container .quick_links .quick_links_flex{
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
footer .container .quick_links .quick_links_flex a{
    display: block;
    text-decoration: none;
    font-family: "Questrial", sans-serif;
    color: white;
    margin-bottom: 8px;
}
footer .container .quick_links .quick_links_flex a i{
    margin-right: 10px;
}
footer .container .contact_section{
    display: flex;
    justify-content: center;
}
footer .container .contact_section p{
    margin-bottom: 8px;
    font-family: "Questrial", sans-serif;
    color: white;
    font-size: 17px;
}
footer .container .contact_section p i{
    margin-right: 10px;
}
footer .container .map_section{
    padding: 0px 15px;
}
footer .container .copy_right{
    margin-top: 60px;
    border-top: 1px solid white;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 20px 0px 0px ;
}
footer .container .copy_right span{
    color: white;
    font-family: 'Questrial',Arial, Helvetica, sans-serif;
    font-size: 17px;
}
footer .container .copy_right span a{
    color: white;
    text-decoration: none;
}
.lottie_whatsapp{
    width: 72px;
    position: fixed;
    bottom: 30px;
    height: 72px;
    right: 20px;
}


.about_____section #showMoreBtn{
    color: #0066a1;
    border: none;
    background: white !important;
    font-size: 18px;
    font-family: 'Questrial',Arial, Helvetica, sans-serif;
    font-weight: 600;
}
.about_____section{
    padding: 80px 0px;
    position: relative;
}
.about_____section h4{
    font-family: 'Questrial',Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 20px;
}
.about_____section p{
    font-family: 'Questrial',Arial, Helvetica, sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 17px;
}
.about_____section img{
    border-radius: 10px;
}
.about_____section::after{
    width: 200px;
    content: '';
    height: 200px;
    background-color: #0066a11a;
    position: absolute;
    top: 0px;
    left: 0px;
    border-bottom-right-radius: 100%;
}
.about_____section::before{
    content: '';
    width: 300px;
    height: 300px;
    background-color: #0066a10f;
    position: absolute;
    top: 0px;
    left: 0px;
    border-bottom-right-radius: 100%;
}


.text_justify{
    text-align: justify;
}
.fixedRightSideBar.active {
    right: -215px;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}
.fixedRightSideBar{
    background-color: #b6202e;
    color: white;
    display: flex;
    position: fixed;
    right: 0px;
    top: 40%;
    z-index: 11;
    transition: all .5s ease-in-out;
    overflow-x: hidden;
    
}
.fixedRightSideBar #headOne {
    writing-mode: vertical-rl;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    position: relative;
    height: 234px;
    cursor: pointer;
}
.fixedRightSideBar .sideBarClose {
    position: absolute;
    top: 5px;
    left: 12px;
    font-size: 20px;
    z-index: 11;
}
.sideBarClose .icon {
    transform: rotate(180deg);
    transition: all .8s ease-in-out;
    cursor: pointer;
}

.facilities__section{
    margin-top: 50px;
    margin-bottom: 50px;
}
.facilities__section .fac_box{
    width: 100%;
    padding: 20px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d3eefb;
    border-radius: 5px;
    margin-top: 35px;
}
.facilities__section .fac_box .txt__view{
    width: 52%;
}
.facilities__section .fac_box .txt__view h4{
    font-size: 24px;
    font-family: 'Questrial', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}
.facilities__section .fac_box .txt__view p{
    font-size: 16px;
}
.facilities__section .fac_box img{
    width: 45%;
}
.facilities__section .border__bottom{
    margin-top: 35px;
    border: 1px dashed rgba(218, 218, 218, 0.926);
}

.fixedRightSideBar .numbers {
    background-color: #ffffff;
    padding: 5px;
    /* box-shadow: -1px -1px 6px 7px #918989; */
    box-shadow: rgb(12 5 5 / 20%) 0px 2px 8px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.designat_ion{
    font-size: 16px !important;
    font-family: 'Questrial', sans-serif !important;
    font-weight: 600 !important;
    color: black !important;
}
.fixedRightSideBar .offices {
    margin: 5px 15px 10px 15px;
    /* margin-bottom: 15px; */
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 5px;
}
.offices p {
    font-size: 16px;
    font-weight: 600;
    color: black;
}
.offices i {
    font-weight: 900;
    color: #b6202e;
    font-size: 15px;
    margin-right: 10px;
}
.offices a {
    color: black;
    font-size: 15px;
}
.form_appointment{
    padding: 50px 0px;
}
.form_appointment h4{
    font-size: 26px;
    font-weight: 700;
    font-family: 'Questrial', sans-serif;
    text-align: center;
}
.form_appointment input{
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Questrial', sans-serif;
    border: 0.5px solid rgb(196, 196, 196);
    outline: none;
}
.form_appointment button{
    width: 100%;
    background-color: #0066a1;
    color: white;
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
}
.empty__appointment{
    max-width: 36%;
}
.appointments_user{
    padding: 25px 0px 50px 0px;
}
.appointments_user h4{
    text-align: center;
    font-family: 'Questrial', sans-serif;
    font-size: 20px;
    font-weight: 700;
}
.appointments_user .box{
    padding: 15px;
    border-radius: 4px;
    border: 0.6px solid rgb(199, 199, 199);
}
.appointments_user .box h6{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Questrial', sans-serif;
}
.appointments_user .box .sm_span{
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    font-family: 'Questrial', sans-serif;
}
.appointments_user .box .sm_span .bold{
    font-weight: 700;
}
.appointments_user .doctor_box{
    display: flex;
    margin-top: 25px;
    gap: 15px;
}
.appointments_user .doctor_box .txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.appointments_user .doctor_box .txt h6{ 
    margin-bottom: 7px !important;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Questrial', sans-serif;
}
.appointments_user .doctor_box .txt span{ 
    margin-bottom: 0px !important;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Questrial', sans-serif;
}
.appointments_user .doctor_box img{
    width: 85px;
    height: 79px;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
}
#pulse_of_life{
    position: relative;
}
#pulse_of_life.heart::after{
    content: unset;
}
#pulse_of_life::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b6202e;
    position: absolute;
    right: -10px;
    top: 3px;
    animation: blink 1s infinite; /* Adding animation */
}

@keyframes blink {
    0%, 100% {
        opacity: 1; /* Fully visible */
    }
    50% {
        opacity: 0; /* Hidden */
    }
}

@media screen and (max-width: 375px){
    .home_banner{
        height: 105vh !important;
    }
    .home_banner .container h1{
        font-size: 26px !important;
        margin-top: 25px !important;
    }
}

/* about page media query  */
@media screen and (max-width: 489px) {
    .about_____section img{
        margin-top: 10px;
    }
    .book_______now{
        margin-bottom: 15px;
        margin-top: 0px;
    }
    .heart_day_checkup_pages .checkup__box .points{
        min-height: 150px;
    }
    footer .container .copy_right{
        flex-direction: column;
    }
    .tab_section .tabs .tab .box{
        min-height: 68px;
    }
    .about_____section{
        padding: 30px 0px;
    }
    .about_____section::after{
        display: none;
    }
    .about_____section::before{
        display: none;
    }
    .heart_day_checkup_pages .checkup__box{
        margin-bottom: 22px;
    }
    .heart_day_checkup_pages .checkup__box button{
        padding: 6px 0px;
        bottom: -16px;
    }
    .heart_day_checkup_pages .checkup__box .heading_box{
        height: unset;
    }

    .privacy_policy h4{
        font-size: 24px;
    }
    footer .container .logo_section .logo img{
        width: 60%;
    }
    footer .container h5{
        font-size: 20px;
        margin-top: 30px;
    }
    footer .container .quick_links .quick_links_flex{
        justify-content: flex-start;
        gap: 25px;
    }
    footer .container .contact_section{
        justify-content: flex-start;
    }

    footer .container .map_section{
        padding: 0px 15px;
    }

    footer .container .copy_right span{
        width: 100%;
        text-align: center;
    }


        
    .counter_section{
        padding: 50px 0px;
    }
    .counter_section .parent_icon_counter{
        flex-wrap: wrap;
        gap: 0px;
    }
    .counter_section .parent_icon_counter .box_counter{
        width: 50%;
        min-width: unset;
        flex-direction: column;
        gap: 0px;
        align-items: center;
        justify-content: center;
    }
    .counter_section .parent_icon_counter .box_counter img{
        width: 50px;
    }
    .counter_section .parent_icon_counter .box_counter h5{
        font-size: 24px;
        margin-top: 10px;
    }
    .counter_section .parent_icon_counter .box_counter p{
        font-size: 16px;
        margin-bottom: 40px;
    }



        

    .medical_treatment_section{
        position: relative;
    }
    .medical_treatment_section::after{
        content: '';
        width: 100%;
        height: 100%;
        background-color: #14467bd0;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }
    .medical_treatment_section .container{
        z-index: 11;
    }
    .medical_treatment_section h3{
        font-size: 32px;
        color: white;
    }
    .medical_treatment_section p{
        color: white;
    }
    

        
    .qualified_doctors{
        padding: 30px 0px;
    }
    .qualified_doctors .img_box img{
        margin-bottom: 25px;
    }
    .qualified_doctors .txt_box span{
        font-size: 20px;
    }
    .qualified_doctors .txt_box h5{
        font-size: 30px;
    }


    


    .tab_section .tabs {
        gap: unset;
        flex-wrap: wrap ;
        gap: 2%;
    }
    .tab_section .tabs .tab {
        width: 48%;
        margin-bottom: 10px;
    }
    .tab_section .tabs .tab .box {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }
    .tab_section .tabs .tab .box img {
        width: 25px;
    }
    .tab_section .tab_content {
        margin-top: 20px;
    }
    .tab_section .tab_content .tab_content_box .img_box {
        margin-bottom: 20px;
    }
    .tab_section .tab_content .tab_content_box .img_box img {
        height: 355px;
        object-fit: cover;
        border-radius: 8px;
        width: 97%;
    }
    .tab_section .tab_content .tab_content_box{
        display: none;
    }
    .tab_section .tab_content .tab_content_box.active{
        display: block;
    }
    .tab_section .tab_content .tab_content_box .txt_area {
        height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .tab_section .tab_content .tab_content_box .txt_area h5 {
        font-size: 24px;
        font-family: "Questrial", sans-serif;
        font-weight: 600;
        margin-bottom: 15px;
        color: #164d92;
    }
    .tab_section .tab_content .tab_content_box .txt_area p {
        font-size: 15px;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
    }
    .tab_section .tab_content .tab_content_box .txt_area button {
        font-size: 15px;
        font-family: "Questrial", sans-serif;
        padding: 9px 25px;
        border-radius: 3px;
        margin-top: 10px;
        background-color: #b6202e;
        border: 1px solid #b6202e;
        outline: none;
        color: white;
    }



        

    .facilities_section{
        margin-top: 90px;
        margin-bottom: 80px;
    }

    .facilities_section .facility_box .img_box img.icon{
        width: 45px;
    }
    .facilities_section .facility_box .txt_area{
        width: 80%;
    }
    .facilities_section p.description{
        margin-bottom: 45px;
    }



    

    .about_section .txt_section h5{
        font-size: 15px;
    }
    .about_section .txt_section h3{
        font-size: 30px;
    }



        
    .ad_banner_carousel .ad_box_button{
        font-size: 17px;
        padding: 9px 20px;
        left: 50%;
        top: unset;
        width: 65%;
    }
    .ad_banner_carousel .ad_box_button::after{
        width: 105%;
        height: 130%;
        border-width: 0.5px;
        left: -3px;
        top: -4px;
    }




        

    .home_banner{
        background: #14467b3a ;
        height: 90vh;
        background-position: bottom !important;
    }

    .hero_section_parent .slick-dots{
        bottom: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        transform: rotate(180deg);
    }
    .home_banner .container .heading_view{
        height: 32%;
        padding-top: 40px;
    }
    .home_banner .hero_description{
        width: 100%;
    }

    .home_banner .container h1{
        font-size: 32px;
        margin-top: 25px;
        font-family: "Questrial", sans-serif;
        font-weight: 600;
    }

    .home_banner form{
        width: 100%;
        display: flex;
        padding: 20px 10px;
        justify-content: center;
        background: rgba(245, 245, 245, 0.986);
        align-items: center;
    }

    .home_banner #form_view{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50%;
        flex-direction: column;
        margin-top: 0;
    }
    
    .home_banner #form_view .input-group input, .home_banner #form_view .input-group select{
        margin-bottom: 12px;
    }
    .home_banner #form_view .input-group label{
        font-size: 12px;
        display: none;
        position: absolute;
    }
    .home_banner .form-control:focus{
        color: unset !important; 
        background-color: unset transparent !important;
        border-color: none !important;
        border: 0.4px solid #164d92;
        outline: 0;
        box-shadow: unset !important;
    }
    .home_banner form button{
        background: #164d92;
        border-radius: 3px;
        color: white;
        padding: 12px 10px;
        font-size: 14px;
        width: 100%;
        border: none;
        outline: none;
    }    
}




/* Default (less than 12 items) - 2 columns */
.dropdown-menu .dropdown-column {
    grid-column: span 1 !important;
}

/* More than 12 items (3 rows) */
.dropdown-menu.three-rows {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, auto) !important;
}

/* More than 24 items (4 rows) */
.dropdown-menu.four-rows {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(4, auto) !important;
}




.dropd___wn {
	display : grid !important;
    margin-right: 0px !important;
}
.dropd___wn .dropdown-menu-3{
	min-width: 800px !important;
}



.hero__section_acl{
    background: url('../../images/acl.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Questrial", sans-serif;
    padding: 80px 0px;
}
.hero__section_acl form{
    background: white;
    padding: 15px;
    border-radius: 5px;
}
.hero__section_acl form span{
    font-family: "Questrial", sans-serif;
    font-size: 20px;
    font-weight: 500;
}
.hero__section_acl h1{
    font-family: "Questrial", sans-serif;
    font-size: 35px;
    font-weight: 600;
}
.why_chose_vsh_acl{
    padding: 80px 0px;
}
.why_chose_vsh_acl .left_section h3{
    font-family: "Questrial", sans-serif;
    font-size: 28px;
    font-weight: 600;
}
.why_chose_vsh_acl .left_section h5{
    font-family: "Questrial", sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 8px;
}
.why_chose_vsh_acl .left_section p{
    font-family: "Questrial", sans-serif;
    font-size: 19px;
}
.why_chose_vsh_acl .left_section ul{
    padding-left: 0px;
    list-style: none;
}
.why_chose_vsh_acl .left_section ul li{
    list-style: none;
    font-family: "Questrial", sans-serif;
    font-size: 18px;
    padding-left: 22px;
    margin-bottom: 4px;
    position: relative;
}
.why_chose_vsh_acl .left_section ul li::before{
    content: '◆';
    position: absolute;
    left: 0;

}
.why_chose_vsh_acl .right_section{
    background: #0056b3;
    padding: 5px;
    border-radius: 5px;
}
.why_chose_vsh_acl .right_section .bx_card{
    padding: 15px;
    border-bottom: 1px solid white;
}
.why_chose_vsh_acl .right_section .bx_card span{
    font-weight: 600;
    font-size: 25px;
    font-family: "Questrial", sans-serif;
    color: white;
}
.why_chose_vsh_acl .right_section .bx_card p{
    font-size: 18px;
    font-family: "Questrial", sans-serif;
    color: white;
    margin-bottom: 0px;
}
.facilities___services_section{
    padding: 70px 0px;
}
.facilities___services_section h3{
    font-size: 32px;
    font-family: "Questrial", sans-serif;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 600;
}
.facilities___services_section p{
    font-size: 18px;
    width: 70%;
    margin: auto;
    font-family: "Questrial", sans-serif;
    text-align: center;
}
.facilities___services_section .flex___box{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 25px;
    flex-wrap: wrap;
}
.facilities___services_section .flex___box .bx___icon{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.facilities___services_section .flex___box .bx___icon .img___box{
    padding: 20px;
    background: #0056b3;
    border-radius: 5px;
    display: flex;
    max-width: 235px;
    min-width: 235px;
    flex-direction: column;
    min-height: 175px ;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}
.facilities___services_section .flex___box .bx___icon .img___box img{
    width: 70px;
    margin-bottom: 15px;
}
.facilities___services_section .flex___box .bx___icon .img___box span{
    color: white;
    font-size: 16px;
    text-align: center;
}

/* General styling for the section */
.treatment_procedure_section {
    padding: 50px 0;
    background-color: #f8f9fa;
}


/* Tabs section */
.treatment_procedure_section{
    padding: 70px 0px;
}
.treatment_procedure_section .tabs_section {
    display: flex;
    flex-direction: column;
}

.treatment_procedure_section .tab_button {
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    font-family: "Questrial", sans-serif;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
}

.treatment_procedure_section .tab_button:hover {
    background-color: #0056b3;
    color: #fff;
}

.treatment_procedure_section .tab_button.active {
    background-color: #0056b3;
    color: #fff;
    border-color: #0056b3;
}

/* Tab content */
.treatment_procedure_section .tab__contents {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.treatment_procedure_section .tab__content {
    display: none;
}

.treatment_procedure_section .tab__content.active {
    display: block;
}

.treatment_procedure_section .tab__content img.tab-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    background-color: #eee; /* Placeholder for missing images */
}

.treatment_procedure_section .tab__content p {
    font-family: "Questrial", sans-serif;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.treatment_procedure_section .tab__content a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.treatment_procedure_section .tab__content a:hover {
    background-color: #0056b3;
}
.treatment_procedure_section h3{
    font-size: 32px;
    font-family: "Questrial", sans-serif;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}
.fx_bottom{
    background: #0066a1;
    position: fixed;
    bottom: 0px;
    z-index: 111;
    left: 0px;
    padding: 15px 0px 12px;
    width: 100%;
}
.fx_bottom .bott_flex{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
.fx_bottom .bott_flex button{
    background: white;
    border: none;
    outline: none;
    font-family: "Questrial", sans-serif;
    font-size: 18px;
    color: black;
    padding: 8px 29px;
    border-radius: 5px;
    min-width: 175px;
}

.cta____section{
    background: #0056b3;
    padding: 60px 0px;
}
.cta____section .cta_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cta____section .cta_content h4{
    font-size: 40px;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    color: white;
}
.cta____section .cta_content button{
    margin-top: 15px;
    padding: 10px 30px;
    background-color: white;
    color: #0056b3;
    border: 1px solid white;
    outline: none;
    border-radius: 5px;
    transition: 0.5s ease;
}
.cta____section .cta_content button:hover{
    background: transparent;
    color: white;
}


        /* FAQ Section Styling */
        .faq_____section {
            padding: 50px 0;
            background-color: #f8f9fa;
        }

        .faq_____section h2 {
            font-size: 28px;
            font-family: "Questrial", sans-serif;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
        }

        .faq_____section .faq_item {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 15px;
            font-family: "Questrial", sans-serif;
            overflow: hidden;
        }

        .faq_____section .faq_question {
            padding: 15px 20px;
            font-size: 19px;
            font-weight: 500;
            color: #333;
            font-family: "Questrial", sans-serif;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .faq_____section .faq_question:hover {
            background-color: #f1f1f1;
        }

        .faq_____section .faq_question::after {
            content: '\25BC'; /* Down arrow */
            font-size: 0.9rem;
            color: #007bff;
            transition: transform 0.3s;
        }

        .faq_____section .faq_question.active::after {
            transform: rotate(180deg); /* Up arrow when active */
        }

        .faq_____section .faq_answer {
            display: none;
            padding: 20px;
            font-family: "Questrial", sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            border-top: 1px solid #ddd;
        }

        .faq_____section .faq_answer.active {
            display: block;
        }

        .faq_____section .faq_answer ul {
            padding-left: 20px;
            margin-bottom: 0;
            margin-top: 10px;
        }

        .faq_____section .faq_answer li {
            margin-bottom: 5px;
        }

        /* Responsive Adjustments */
        @media (max-width: 767px) {
            .request_banner {
                height: unset !important;
            }
            .request_banner .container{
                padding: 20px;
            }
            .fx_bottom .bott_flex{
                gap: 10px;
            }
            .fx_bottom .bott_flex button{
                width: 100%;
                padding: 8px 10px;
                min-width: unset;
                font-size: 15px;
            }
            .fx_bottom .bott_flex a{
                width: 49%;
            }

            .why_chose_vsh_acl{
                padding: 30px 0px;
            }
            .why_chose_vsh_acl .right_section{
                margin-top: 20px;
            }
            .why_chose_vsh_acl .right_section .bx_card{
                padding: 15px;
                border-bottom: 1px solid white;
            }
            
            /* General styling for the section */
            .treatment_procedure_section {
                padding: 30px 0;
            }

            .treatment_procedure_section h3{
                font-size: 25px;
                margin-bottom: 20px;
            }


            .facilities___services_section{
                padding: 40px 0px;
            }
            .facilities___services_section h3{
                font-size: 25px;
            }
            .facilities___services_section p{
                width: 100%;
                font-size: 16px;
            }
            .facilities___services_section .flex___box{
                gap: 2%;
                justify-content: space-between;
            }
            .facilities___services_section .flex___box .bx___icon{
                width: 49%;
            }
            .facilities___services_section .flex___box .bx___icon .img___box{
                padding: 12px;
                max-width: 100%;
                min-width: 100%;
            }
            .facilities___services_section .flex___box .bx___icon .img___box img{
                width: 55px;
            }

            .cta____section{
                padding: 50px 0px;
            }
            .cta____section .cta_content h4{
                font-size: 30px;
                text-align: center;
            }
            

            .hero__section_acl{
                background: rgb(228, 228, 228);;
                padding: 40px 0px;
            }

            .hero__section_acl h1{
                font-size: 28px;
            }
            .faq_____section  h2 {
                font-size: 25px;
                margin-bottom: 15px;
            }

            .faq_____section {
                padding: 25px 15px;
            }

            .faq_____section .faq_answer {
                font-size: 0.9rem;
                padding: 15px;
            }
            .head___desc__txt{
                background: #0056b3;
                color: white;
                border: none;
                outline: none;
                border-radius: 5px;
                font-size: 17px;
                padding: 9px 25px;
            }
            .navbar_logo.acl .logo{
                width: 180px;
            }
            .navbar__mobile .emergency{
                display: flex;
                gap: 0px;
                justify-content: center;
                align-items: center;
            }
            .navbar__mobile .emergency .lottie_icon{
                width: 30px;
            }
            .navbar__mobile .emergency span{
                font-size: 15px;
                margin-top: 5px;
                display: block;
            }
        }
/* Responsive adjustments */
@media (max-width: 767px) {
    .treatment_procedure_section .tabs_section {
        margin-bottom: 20px;
    }
    .treatment_procedure_section .tab_button {
        font-size: 17px;
        padding: 12px 15px;
    }
    .treatment_procedure_section .tab__contents {
        padding: 15px;
    }
}


.offter__txt{
    background: #b6202fd2;
    padding: 8px 10px;
    color: white;
    border-radius: 5px;
    font-size: 17px !important;
    font-weight: 500;
    margin-bottom: 15px;
    width: fit-content;
    display: block;
}

.main__banner___section{
    padding: 75px 0px;
    background: url('../../images/acl.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.main__banner___section{
    padding: 75px 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.main__banner___section.gfc{
    padding: 95px 0px;
    background: url('../landing/gfc-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.main__banner___section.urology{
    background: url('../../images/urology.jpg');
    padding: 75px 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.main__banner___section h1{
    font-family: "Questrial", sans-serif;
    font-size: 35px;
    font-weight: 600;
}
.main__banner___section p{
    font-size: 17px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.main__banner___section span{
    font-size: 20px;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
}
.main__banner___section form{
    padding: 18px;
    border-radius: 5px;
    background-color: white;
    margin-top: 10px;
}
.main__banner___section input{
    width: 100%;
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 400;
    border: 1px solid rgb(218, 218, 218);
    border-radius: 5px;
    padding: 10px 15px;
    outline: none;
    background-color: unset;
}
.main__banner___section input.first{
    margin-top: 15px;
}
.main__banner___section input:focus{
    border: 1px solid #164d92;
}
.main__banner___section textarea{
    width: 100%;
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 400;
    border: 1px solid rgb(218, 218, 218);
    border-radius: 5px;
    padding: 10px 15px;
    outline: none;
    background-color: unset;
}
.main__banner___section textarea:focus{
    border: 1px solid #164d92;
}
.main__banner___section button{
    width: fit-content;
    background: #164d92;
    color: white;
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    border: 1px solid #164d92;
    transition: 0.6s ease;
    outline: none;
    border-radius: 5px;
    padding: 11px 55px;
    font-weight: 500;
}
.main__banner___section button:hover{
    color: white;
    background: #0a2342;
    border: 1px solid #0a2342;
}





.benefits__section{
    padding: 45px 0px;
    background: url('../landing/banner-second.jpg');
    background-size: cover;
    background-position: right;
    position: relative;
}

.benefits__section::after{
    background-size: cover;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #00000054;
}
.benefits__section .container{
    z-index: 111;
    color: white;
    position: relative;
}
.benefits__section .para___li{
    font-size: 16px;
}
.hair-solution-section form{
    padding: 18px;
    border-radius: 5px;
    background-color: rgba(247, 247, 247, 0.842);
    margin-top: 10px;
}

#appointmentForm input{
    width: 100%;
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 400;
    border: 1px solid rgb(218, 218, 218);
    border-radius: 5px;
    padding: 10px 15px;
    outline: none;
    background-color: unset;
}
#appointmentForm select{
    width: 100%;
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 400;
    border: 1px solid rgb(218, 218, 218);
    border-radius: 5px;
    padding: 10px 15px;
    outline: none;
    background-color: unset;
}

#appointmentForm input.first{
    margin-top: 15px;
}

#appointmentForm input:focus{
    border: 1px solid #164d92;
}
#appointmentForm textarea{
    width: 100%;
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 400;
    border: 1px solid rgb(218, 218, 218);
    border-radius: 5px;
    padding: 10px 15px;
    outline: none;
    min-height: 150px;
    background-color: unset;
}
#appointmentForm textarea:focus{
    border: 1px solid #164d92;
}
#appointmentForm button{
    width: 100%;
    background: #164d92;
    color: white;
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    border: 1px solid #164d92;
    transition: 0.6s ease;
    outline: none;
    border-radius: 5px;
    padding: 11px 15px;
    font-weight: 500;
}
#appointmentForm button:hover{
    color: white;
    background: #0a2342;
    border: 1px solid #0a2342;
}
.hair-solution-section h4{
    font-family: "Questrial", sans-serif;
    font-size: 24px;
    font-weight: 600;
}
.hair-solution-section{
    padding: 50px 0px;
}
.hair-solution-section form span{
    font-weight: 600;
    font-size: 20px;
    font-family: "Questrial", sans-serif;
}
.hair-solution-section ol{
    padding-left: 18px;
    font-size: 16px;
}
.gfc___img{
    height: 450px !important;

    object-fit: cover;
    border-radius: 5px;
}
.hair-solution-section .para___li{
    font-size: 15px;
}
.our___packages{
    padding: 40px 0px;
}
.our___packages h4.heading{
    font-size: 29px;
    font-weight: 600;
    text-align: center;
    font-family: "Questrial", sans-serif;
}
.our___packages p.description{
    width: 60%;
    margin: auto;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}
.our___packages .box{
    margin-top: 30px;
    border: 1px solid #164e92;
    padding: 20px;
    border-radius: 10px;
    height: 450px;
}
.our___packages .box h5{
    font-size: 19px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
.our___packages .box p{
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.our___packages .free__offer{
    display: flex;
    justify-content: space-between;
    width: fit-content;
    color: white;
    gap: 18px;
    padding: 8px 15px;
    border-radius: 5px;
    align-items: center;
    background: #b6202e;
}
.our___packages .free__offer span{
    font-size: 21px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
.our___packages .free__offer .price{
    font-size: 21px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
.our___packages .free__offer .price_off{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.our___packages .free__offer .price_off .old___price{
    font-size: 21px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-decoration: line-through   ;
}
.our___packages .free__offer .price_off .off___price{
    font-size: 21px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
.our___packages .free__offer p{
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 500;
    width: 240px;
    font-family: "Poppins", sans-serif;
}
.our___packages .doctor___section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
    width: fit-content;
}
.our___packages .doctor___section img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #b6202e;
    border-radius: 50%;
}
.our___packages .doctor___section .doctor____details{
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.our___packages .doctor___section .doctor____details span{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 13px;
}
.our___packages .doctor___section .doctor____details h6{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 16px;
}
.our___packages button{
    margin-top: 20px;
    width: 100%;
    background: #164d92;
    color: white;
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    border: 1px solid #164d92;
    transition: 0.6s ease;
    outline: none;
    border-radius: 5px;
    padding: 11px 15px;
    font-weight: 500;
}

.our___packages button:hover{
    color: white;
    background: #0a2342;
    border: 1px solid #0a2342;
}


@media screen and (max-width: 500px) {
    
.main__banner___section{
    padding: 45px 0px;
    background: rgb(228, 228, 228);
}
.main__banner___section h1{
    font-size: 30px;
}

.main__banner___section p{
    font-size: 16px;
}
.our___packages{
    padding: 40px 0px;
}
.our___packages h4.heading{
    font-size: 24px;
}
.our___packages p.description{
    width: 100%;
    font-size: 15px;
}
.our___packages .box{
    padding: 13px;
    height: auto !important;
}
.our___packages .box h5{
    font-size: 18px;
}
.our___packages .box p{
    font-size: 15px;
}
.our___packages .free__offer{
    flex-direction: column;
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.our___packages .free__offer span{
    font-size: 20px;
}
.our___packages .free__offer .price{
    font-size: 20px;
}
.our___packages .free__offer .price_off .old___price{
    font-size: 20px;
}
.our___packages .free__offer .price_off .off___price{
    font-size: 20px;
}
.our___packages .free__offer p{
    width: 100%;
}
.our___packages .doctor___section{
    gap: 8px;
}
.our___packages .doctor___section .doctor____details span{
    font-size: 12px;
}
.our___packages .doctor___section .doctor____details h6{
    font-size: 15px;
}
}





.notifications {
    position: fixed;
    bottom: 30px;
    z-index: 111;
    right: 20px;
  }
  
  .notifications :where(.toast, .column) {
    display: flex;
    align-items: center;
  }
  
  .notifications .toast {
    width: 400px;
    position: relative;
    overflow: hidden;
    list-style: none;
    border-radius: 4px;
    padding: 16px 17px;
    margin-bottom: 10px;
    background: white;
    justify-content: space-between;
    animation: show_toast 0.3s ease forwards;
  }
  
  @keyframes show_toast {
    0% {
        transform: translateX(100%);
    }
    40% {
        transform: translateX(-5%);
    }
    80% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-10%);
    }
  }
  
  .notifications .toast.hide {
    animation: hide_toast 0.3s ease forwards;
  }
  
  @keyframes hide_toast {
    0% {
        transform: translateX(-10%);
    }
    40% {
        transform: translateX(0%);
    }
    80% {
        transform: translateX(-5%);
    }
    100% {
        transform: translateX(calc(100% + 20px));
    }
  }
  
  .toast::before {
    position: absolute;
    content: '';
    height: 3px;
    width: 100%;
    bottom: 0;
    left: 0;
    animation: progress 5s linear forwards;
  }
  
  @keyframes progress {
    100% {
        width: 0%;
    }
  }
  
  .toast.success::before {
    background: rgb(7, 97, 7) !important;
  }
  
  .toast.error::before {
    background: rgb(104, 10, 10) !important;
  }
  
  .toast.warning::before {
    background: rgb(95, 95, 5);
  }
  
  .toast.info::before {
    background: rgb(1, 1, 90);
  }
  
  .toast .column i {
    font-size: 1.75rem;
  }
  
  .toast.success .column i {
    color: rgb(7, 97, 7) !important;
  }
  
  .toast.error .column i {
    color: rgb(104, 10, 10) !important;
  }
  
  .toast.warning .column i {
    color: rgb(95, 95, 5);
  }
  
  .toast.info .column i {
    color: rgb(1, 1, 90);
  }
  
  .toast .column span {
    font-size: 1.07rem;
    margin-left: 12px;
  }
  
  .toast i:last-child {
    color: #aeb0d7;
    cursor: pointer;
  }
  
  .toast i:last-child:hover {
    color: black;
  }


  .toast:not(.show){
    display: flex !important;
  }










  .offer-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    border-radius: 15px;
    border: 2px solid #2a5885;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 30px auto;
    position: relative;
	font-family: "Questrial", sans-serif;
}

.offer-header {
    background: linear-gradient(to right, #2a5885, #4a8fd6);
    color: white;
	font-family: "Questrial", sans-serif;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.offer-body {
    padding: 25px;
	font-family: "Questrial", sans-serif;
}

.price-original {
    text-decoration: line-through;
    color: #888;
	font-family: "Questrial", sans-serif;
    font-size: 1.2rem;
}

.price-discounted {
    color: #d32f2f;
	font-family: "Questrial", sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.savings-badge {
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
	font-family: "Questrial", sans-serif;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-left: 10px;
}

.offer-features {
    list-style-type: none;
    padding: 0;
	font-family: "Questrial", sans-serif;
}

.offer-features li {
    padding: 8px 0;
	font-family: "Questrial", sans-serif;
    border-bottom: 1px dashed #ddd;
}

.offer-features li:last-child {
    border-bottom: none;
	font-family: "Questrial", sans-serif;
}

.offer-features i {
    color: #2a5885;
    margin-right: 10px;
	font-family: "Questrial", sans-serif;
}

.countdown-timer {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
	font-family: "Questrial", sans-serif;
    margin: 20px 0;
    border: 1px dashed #2a5885;
}

.countdown-item {
    display: inline-block;
	font-family: "Questrial", sans-serif;
    margin: 0 5px;
}

.countdown-number {
    font-size: 1.5rem;
	font-family: "Questrial", sans-serif;
    font-weight: bold;
    color: #2a5885;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
	font-family: "Questrial", sans-serif;
}

.cta-button {
    background: linear-gradient(to right, #d32f2f, #f44336);
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
	font-family: "Questrial", sans-serif;
    border-radius: 50px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(210, 47, 47, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(210, 47, 47, 0.4);
	font-family: "Questrial", sans-serif;
}

.guarantee-badge {
    text-align: start;
	font-family: "Questrial", sans-serif;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}
.about________section{
    padding: 80px 0px;
    background: white;
}
.about________section h3{
    font-size: 27px;
	font-family: "Questrial", sans-serif;
    font-weight: 600;
}
.about________section p{
    font-size: 16px;
	font-family: "Questrial", sans-serif;
}
.about________section img{
    height: 350px;
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}






footer{
    background: url('../images/footer.jpg');
    padding: 100px 0px 20px 0px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
footer::after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    background-color: #14467bef;
    width: 100%;
    height: 100%;
    z-index: 1;
}
footer .container{
    z-index: 2;
    position: relative;
}
footer .container iframe{
    width: 100%;
    height: 180px;
    border-radius: 8px;
}
footer .container .logo_section .logo img{
    width: 75%;
    margin-bottom: 20px;
}
footer .container .logo_section p{
    color: white;
    font-family: 'Questrial', Arial, Helvetica, sans-serif;
    font-size: 17px;
    margin-top: 15px;
}
footer .container .logo_section .icons{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
footer .container .logo_section .icons a{
    font-family: 'Questrial', Arial, Helvetica, sans-serif;
    font-size: 17px;
    color: white;
    text-decoration: none;
}
footer .container h5{
    color: white;
    font-size: 22px;
    margin-bottom: 30px;
    font-family: 'Questrial', Arial, Helvetica, sans-serif;
}
footer .container .quick_links .quick_links_flex{
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
footer .container .quick_links .quick_links_flex a{
    display: block;
    text-decoration: none;
    font-family: 'Questrial', Arial, Helvetica, sans-serif;
    color: white;
    margin-bottom: 8px;
}
footer .container .quick_links .quick_links_flex a i{
    margin-right: 10px;
}
footer .container .contact_section{
    display: flex;
    justify-content: center;
}
footer .container .contact_section p{
    margin-bottom: 8px;
    font-family: 'Questrial', Arial, Helvetica, sans-serif;
    color: white;
    font-size: 17px;
}
footer .container .contact_section p i{
    margin-right: 10px;
}
footer .container .map_section{
    padding: 0px 15px;
}
footer .container .copy_right{
    margin-top: 60px;
    border-top: 1px solid white;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 20px 0px 0px ;
}
footer .container .copy_right span{
    color: white;
    font-family: 'Questrial',Arial, Helvetica, sans-serif;
    font-size: 17px;
}
footer .container .copy_right span a{
    color: white;
    text-decoration: none;
}



.hero_urology_section{
    background: url('../landing/urology-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 89vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: top center;
    position: relative;
}
.hero_urology_section::after{
    background: #00000033;
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.hero_urology_section .container{
    z-index: 11;
    position: relative;
}
.hero_urology_section .head h1{
    color: white;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    font-size: 44px;
}
.hero_urology_section .head p{
    color: white;
    margin-bottom: 4px;
}
.hero_urology_section .hero_sm_box{
    background: #B6212F;
    margin-top: 20px;
    color: white;
    max-width: 500px;
    border-radius: 4px;
}
.hero_urology_section .hero_sm_box h4{
    font-family: "Questrial", sans-serif;
    font-size: 22px;
    padding-top: 20px;
    margin-left: 20px;
}
.hero_urology_section .hero_sm_box .icon__boxes{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
}
.hero_urology_section .hero_sm_box .icon__boxes .icon_box{
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    flex-direction: column;
}
.hero_urology_section .hero_sm_box .icon__boxes .icon_box img{
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.txt___white{
    color: white;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}
.hero_urology_section .hero_sm_box .icon__boxes .icon_box h6{
    font-family: "Questrial", sans-serif;
    font-size: 17px;
    text-align: center;
}
.hero_urology_section a{
    display: block;
    padding: 0px 20px;
}
.hero_urology_section a button{
    width: 100%;
    background: white;
    border: none;
    margin-bottom: 15px;
    border-radius: 5px;
    color: black;
    border: 1px solid white;
    transition: 0.5s ease;
    padding: 5px 0px;
    font-family: "Questrial", sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 600;
}
.hero_urology_section a button:hover{
    background: transparent;
    color: white;
}

.urology_about{
    padding: 60px 0px;
}
.urology_about h3{
    font-size: 29px;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    color: #B6212F;
    margin-bottom: 15px;
}
.urology_about p span{
    font-weight: 600;
}
.urology_about p{
    font-size: 18px;
    margin-bottom: 15px;
}
.urology_about img{
    width: 100%;
    border-radius: 9px;
    height: 450px;
    object-fit: cover;
}

.trust_urology{
    background: #B6212F;
    color: white;
    padding: 60px 0px;
}
.trust_urology h4{
    font-size: 34px;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.trust_urology .flex_____box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.trust_urology .flex_____box .bx_sm{
    width: 24%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.trust_urology .flex_____box .bx_sm span{
    display: block;
    font-size: 17px;
}
.trust_urology .flex_____box .bx_sm img{
    width: 40px;
    height: 40px;
}
.offer_urology_section{
    padding: 50px 0px;
}
.offer_urology_section .blue_box{
    background: #164D92;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.offer_urology_section .blue_box .offer_img{
    margin-bottom: -3px;
}
.offer_urology_section .blue_box .off__txt{
    padding: 50px;
}
.offer_urology_section .blue_box .off__txt h6{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    font-family: "Questrial", sans-serif;
}
.offer_urology_section .sm_d_flex{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.offer_urology_section .sm_d_flex p.p___tag{
    color: white;
    width: 48%;
    font-size: 17px;
    font-family: "Questrial", sans-serif;
}
.offer_urology_section .sm_d_flex .rd__box{
    background: #B6212F;
    width: 48%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 4px;
}
.offer_urology_section .sm_d_flex .rd__box .first_span{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Questrial", sans-serif;
    font-size: 20px;
}
.offer_urology_section .sm_d_flex .rd__box .first_span .amount{
    color: #EAE734;
    font-size: 25px;
    margin-left: 5px;
}
.offer_urology_section .sm_d_flex .rd__box .first_span .amount_tx{
    color: #EAE734;
    font-size: 20px;
    margin-left: 5px;
}
.offer_urology_section .sm_d_flex .rd__box .second_span{
    color: white;
    font-family: "Questrial", sans-serif;
    font-size: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.offer_urology_section .second__flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
    background: #00000024;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.offer_urology_section .second__flex .fl__box{
    width: 48%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.offer_urology_section .second__flex .fl__box img{
    width: 30px;
    height: 30px;
}
.offer_urology_section .second__flex .fl__box span{
    color: white;
}
.offer_urology_section .blue_box .off__txt h6.yellow_txt{
    color: #EAE734;
    font-size: 22px;
}
.offer_urology_section .form__section{
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background: #e3e3e387;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 45px;
}
.offer_urology_section .form__section form{
    max-width: 800px;
}
.offer_urology_section .form__section h5{
    font-family: "Questrial", sans-serif;
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}
.offer_urology_section .form__section input, 
.offer_urology_section .form__section textarea{
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #c8c8c894;
    outline: none;
    margin-bottom: 10px;
}
.offer_urology_section .form__section textarea{
    min-height: 150px;
}
.offer_urology_section .form__section button{
    width: 100%;
    background: #1567a3;
    color: white;
    border: none;
    font-family: "Questrial", sans-serif;
    font-size: 20px;
    padding: 8px;
    border-radius: 5px;
}
.offer_urology_section .form__section form span{
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}
.about__bg_urology{
    margin-bottom: 80px;
    padding: 150px 0px;
    background: url('../landing/about-bg.png');
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.about__bg_urology ul{
    padding-left: 20px;
    list-style: circle;
}
.about__bg_urology h5{
    font-size: 32px;
    font-weight: 600;
    color: white;
    font-family: "Questrial", sans-serif;
    margin-bottom: 20px;
}
.about__bg_urology ul li{
    list-style: circle;
    font-size: 20px;
    font-family: "Questrial", sans-serif;
    margin-bottom: 15px;
    color: white;
}
.urology__faq_section{
    background: #0066a1;
    padding: 65px 0px;
    margin: 0px 0px 35px 0px;
}
.urology__faq_section h4{
    color: white;
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
}
.urology__faq_section .question_box{
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    min-height: 160px;
    padding: 15px;
}
.urology__faq_section .question_box .question{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.urology__faq_section .question_box .question .first{
    display: flex;
    gap: 15px;
    align-items: center;
}
.urology__faq_section .question_box .question .first img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.urology__faq_section .question_box .question .first h6{
    margin-bottom: 0px;
    font-size: 19px;
    font-family: "Questrial", sans-serif;
    font-weight: 600;
}
.urology__faq_section .question_box .question img{
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.urology__faq_section .question_box .answer{
    margin-top: 15px;
}
.urology__faq_section .question_box .answer p{
    font-size: 15px;
}


.form____section{
    border-radius: 10px;
    background: #e3e3e387;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    max-width: 800px;
    margin: 50px auto;
}

.form____section h5{
    font-family: "Questrial", sans-serif;
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}
.form____section input, 
.form____section textarea{
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #c8c8c894;
    outline: none;
    margin-bottom: 10px;
}
.form____section textarea{
    min-height: 150px;
}
.form____section button{
    width: 100%;
    background: #1567a3;
    color: white;
    border: none;
    font-family: "Questrial", sans-serif;
    font-size: 20px;
    padding: 8px;
    border-radius: 5px;
}
.form____section form span{
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

@media screen and (max-width: 500px) {
    .main__banner___section.gfc{
        background: #e3e3e3;
        padding: 45px 0px;
    }
    .gfc___img{
        height: auto !important;
        margin-bottom: 25px;
    }
    .hair-solution-section{
        padding: 30px 0px;
    }
    .benefits__section::after{
        background-color: #000000a8;
    }
    .about________section{
        padding: 35px 0px;
    }
    .about________section img{
        height: auto;
        margin-bottom: 20px;
    }





    

    .hero_urology_section::after{
        background: #00000075;
    }

    .hero_urology_section .head h1{
        font-size: 32px;
    }
    .hero_urology_section .head p{
        color: white;
    }


    .hero_urology_section .hero_sm_box .icon__boxes .icon_box h6{
        text-align: center;
    }


    .urology_about{
        padding: 40px 0px;
    }
    .urology_about h3{
        font-size: 25px;
    }

    .urology_about p{
        font-size: 16px;
    }
    .urology_about img{
        margin-bottom: 20px;
        height: unset;
    }

    .trust_urology{
        padding: 40px 0px;
    }
    .trust_urology h4{
        font-size: 25px;
        margin-bottom: 20px;
    }
    .trust_urology .flex_____box{
        flex-wrap: wrap;
    }
    .trust_urology .flex_____box .bx_sm{
        width: 49%;
        gap: 15px;
    }
    .trust_urology .flex_____box .bx_sm span{
        font-size: 16px;
    }
    .trust_urology .flex_____box .bx_sm img{
        width: 30px;
        height: 30px;
    }



    .offer_urology_section{
        padding: 40px 0px;
    }

    .offer_urology_section .blue_box .offer_img{
        margin-bottom: -3px;
    }
    .offer_urology_section .blue_box .off__txt{
        padding: 15px;
        padding-bottom: 0px !important;
    }
    .offer_urology_section .blue_box .off__txt h6{
        font-size: 24px;
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .offer_urology_section .sm_d_flex{
        flex-direction: column;
    }
    .offer_urology_section .sm_d_flex p.p___tag{
        color: white;
        width: 100%;
        font-size: 16px;
    }
    .offer_urology_section .sm_d_flex .rd__box{
        background: #B6212F;
        width: 100%;
        flex-direction: column;
    }
    .offer_urology_section .sm_d_flex .rd__box .first_span{
        font-size: 20px;
    }
    .offer_urology_section .sm_d_flex .rd__box .first_span .amount{
        font-size: 23px;
    }
    .offer_urology_section .sm_d_flex .rd__box .first_span .amount_tx{
        font-size: 20px;
    }
    


    .offer_urology_section .second__flex .fl__box img{
        width: 30px;
        height: 30px;
    }
    .offer_urology_section .second__flex .fl__box span{
        color: white;
        font-size: 13px;
    }
    .offer_urology_section .blue_box .off__txt h6.yellow_txt{
        font-size: 20px;
        font-weight: 500;
    }
    .offer_urology_section .form__section{
        padding: 30px 15px;
    }
    .offer_urology_section .form__section form{
        max-width: 100%;
    }
    .offer_urology_section .form__section h5{
        font-size: 23px;
    }
    
    .offer_urology_section .form__section form span{
        font-size: 13px;
    }
    .about__bg_urology{
        margin-bottom: 50px;
        padding: 40px 0px;
    }

    .about__bg_urology h5{
        font-size: 23px;
        margin-bottom: 15px;
    }
    .about__bg_urology ul li{
        font-size: 16px;
    }
    .urology__faq_section{
        padding:35px 0px;
    }
    .urology__faq_section h4{
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .urology__faq_section .question_box .question .first img{
        width: 25px;
        height: 25px;
    }
    .urology__faq_section .question_box .question .first h6{
        font-size: 18px;
    }
    .urology__faq_section .question_box .question img{
        width: 18px;
        height: 18px;
    }



    .form____section{
        padding: 15px;
        max-width: 100%;
        margin: 30px auto;
    }

    .form____section h5{
        font-size: 23px;
    }
    
    .form____section form span{
        font-size: 13px;
    }
    footer{
        padding: 40px 0px 20px 0px;
    }

}
 






/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
  }
  
  /* Main section styling */
  .request_banner {
    height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Container inside the banner */
  .request_banner .container {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
  }
  
  /* Heading styling */
  .request_banner .heading h1 {
    font-size: 34px;
    font-family: "Questrial", sans-serif;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    text-align: left;
  }
  
  /* Input fields and button styling */
  .text_box {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .text_box input {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
  }
  
  .text_box button {
    padding: 12px 15px;
    font-size: 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .text_box button:hover {
    background-color: #0056b3;
  }
  
  /* Slide down animation */
  @keyframes slideDown {
    from {
      transform: translateY(-50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  



