@charset "utf-8";

@font-face {
	font-family: Poppins;
	src: url(/Poppins-Regular.ttf);
	font-display: swap;
	font-weight: 400;
	font-style: normal;
}

:root {
	--theme-color: #5A595A;
	--primary-bg: #0F8276;
	--secondary-bg: #263B7D;
	--custom-blue: #263B7D;
	--custom-green: #8FB569;
	--custom-red: #E12454;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}

body {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.6;
	font-family: Poppins, sans-serif;
	color: var(--theme-color);
	font-weight: 400
}

li,
ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 18px
}

a {
	text-decoration: none;
}

header.fixednav {
	top: 0;
	z-index: 3;
	box-shadow: 0 0 10px rgba(0, 0, 0, .15);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .15);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, .15);
	position: fixed;
	animation: slide-down .7s;
	-moz-animation: slide-down .7s;
	-webkit-animation: slide-down .7s;
	-o-animation: slide-down .7s;
	-ms-animation: slide-down 0.7s;
	width: 100%;
}

header.fixednav .top_header {
	display: none
}

header.fixednav nav.navbar {
	background: #fff;
	padding: 10px 0
}

.main_nav.fixednav .main-logo {
	max-width: 120px
}

@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%)
	}

	100% {
		opacity: .9;
		transform: translateY(0)
	}
}


footer,
header,
section {
	float: left;
	width: 100%;
	overflow: hidden;
	padding: 60px 0
}

.theme-color {
	color: var(--theme-color)
}


.top_header {
	background: var(--custom-green);
	padding: 5px 0px;
}

.top_header li {
	font-size: 16px;
	margin-right: 16px
}

.top_header li:last-child {
	margin-right: 0
}

.top_header a {
	color: #fff;
	transition: 0.3s ease-in-out;
}

.top_header a:hover {
	color: var(--custom-blue)
}

header {
	-webkit-box-shadow: -8px 7px 0 0 rgba(0, 0, 0, .02);
	-moz-box-shadow: -8px 7px 0 0 rgba(0, 0, 0, .02);
	box-shadow: -8px 7px 0 0 rgba(0, 0, 0, .02);
	z-index: 3;
	position: relative;
	background-color: #fff;
}

header .navbar {
	padding: 12px 0
}

header .navbar .readmore {
	line-height: 44px;
	padding: 0 24px
}

header .navbar .navbar-brand {
	padding: 0px;
}

header .navbar ul li {
	font-weight: 600;
	margin-right: 7px;
	font-size: 17px
}

header .navbar ul li a {
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out
}

header .navbar .navbar-nav .nav-link {
	position: relative;
}

header .navbar .navbar-nav .nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--custom-red));
	border-radius: 0;
	transition: all 0.5s ease-in-out;
}

header .navbar .navbar-nav .nav-link:hover::before {
	width: 100%;
	border-radius: 50%;
}

header .dropdown .dropdown-menu {
	background: #fff;
	box-shadow: 0 0 50px 3px rgba(232, 232, 232, .5);
	border: none;
	border-radius: 0;
	padding: 0;
	width: 220px
}

header .dropdown .dropdown-menu li {
	margin: 0;
	font-size: 16px
}

header .dropdown .dropdown-menu a {
	padding: 9px 15px
}

header .dropdown .dropdown-menu a:hover,
header .dropdown .dropdown-menu a.active {
	background: #edf1f7;
	color: inherit
}

.dropdown-toggle:after {
	border: none;
	content: '\F282';
	font-family: var(--bootstrap-icon);
	position: absolute;
	font-size: 14px
}

.navbar.navbar-light ul li a.nav-link {
	color: rgba(0, 0, 0, .9);
	padding: 0 15px;
	line-height: 40px;
	position: relative;
	z-index: 1;
}

.dark-blue-button {
	color: #fff;
	display: inline-block;
	font-size: 17px;
	text-transform: capitalize;
	font-weight: 600;
	background: var(--custom-blue);
	border-radius: 12px;
	padding: 10px 30px;
	border: none;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: 0.3s ease-in-out;
	border: 1px solid #fff;
}

.dark-blue-button:hover {
	color: #fff;
	background-color: var(--custom-red);
}

.red-button {
	color: #fff;
	display: inline-block;
	font-size: 17px;
	text-transform: capitalize;
	font-weight: 600;
	background: var(--custom-red);
	border-radius: 12px;
	padding: 10px 30px;
	border: none;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: 0.3s ease-in-out;
	border: 1px solid var(--custom-red);

}

.red-button:hover {
	color: #fff;
	background-color: var(--custom-blue);
	border: 1px solid #fff;

}

.green-button {
	color: #fff;
	display: inline-block;
	font-size: 17px;
	text-transform: capitalize;
	font-weight: 600;
	background: var(--custom-green);
	border-radius: 12px;
	padding: 10px 30px;
	border: none;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: 0.3s ease-in-out;
	border: 1px solid var(--custom-green);
}

.green-button:hover {
	color: #fff;
	background-color: var(--custom-red);
	border: 1px solid var(--custom-red);
}


footer {
	background: var(--custom-blue);
	position: relative;
	z-index: 1
}

footer:after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: no-repeat right top;
	content: '';
	z-index: -1
}

footer .white-logo {
	background-color: #fff;
	padding: 10px;
	border-radius: 10px;
}

footer .social-icons {
	color: #fff;
	font-size: 20px;
}

footer h4 {
	color: #fff;
	font-size: 22px;
	margin-bottom: 16px
}

footer .aboutinfo figure {
	margin-bottom: 20px
}

footer .aboutinfo p {
	color: #fff;
	opacity: .7
}

footer .menus li {
	padding: 3px 0
}

footer .menus li:first-child {
	padding-top: 0
}

footer .menus li:last-child {
	padding-bottom: 0
}

footer .menus li a {
	color: #fff;
	display: inline-block;
	opacity: .7;
	position: relative;
	padding: 4px 0
}

footer .menus li a:after {
	left: 0;
	bottom: 0;
	height: 1px;
	width: 0;
	background: #fff;
	content: '';
	position: absolute
}

footer .menus li a:hover:after {
	width: 100%
}

footer .menus li a:hover {
	opacity: 1
}

footer .cntinfo li {
	position: relative;
	padding-left: 45px;
	margin-bottom: 10px
}

footer .cntinfo li a {
	display: inline-block;
	color: #fff;
	opacity: .7;
	padding: 4px 0
}

footer .cntinfo li a:hover {
	opacity: 1
}

footer .cntinfo li i.bi-geo-alt {
	top: 7px
}

footer .cntinfo li i {
	position: absolute;
	left: 0;
	width: 30px;
	height: 30px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	top: 0
}

.copyright {
	background: rgba(0, 0, 0, .15);
	margin-top: 40px
}

.copyright p {
	color: #fff;
	font-size: 15px;
	margin: 0
}

.copyright a {
	color: #fff;
	padding: 0 7px;
	font-size: 13px
}

.scroll-top-wrapper {
	position: fixed;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	text-align: center;
	z-index: 999;
	color: #111;
	right: 20px;
	line-height: 48px;
	width: 48px;
	bottom: 20px;
	border-radius: 50%;
	overflow: hidden
}

.scroll-top-wrapper .scroll-top-inner {
	background: var(--primary-bg);
	color: #fff;
	display: block
}

.scroll-top-wrapper .scroll-top-inner i {
	font-size: 26px;
	display: block;
	line-height: 48px
}

.scroll-top-wrapper:hover .scroll-top-inner {
	background: var(--secondary-bg)
}

.scroll-top-wrapper.show {
	visibility: visible;
	cursor: pointer;
	opacity: 1
}

@media screen and (min-width:992px) {
	header .dropdown .dropdown-menu {
		display: block;
		visibility: hidden;
		-webkit-transition: all .5s ease-in-out;
		-moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		-o-transition: all .5s ease-in-out;
		transition: all .5s ease-in-out;
		opacity: 0;
		transform: translateY(100px)
	}

	header .dropdown:hover>.dropdown-menu {
		visibility: visible;
		opacity: 1;
		transform: translateY(0)
	}
}

@media screen and (min-width:1400px) {
	.container {
		max-width: 1300px
	}
}

@media screen and (max-width:1399px) {
	.container {
		max-width: 1240px
	}

	.slider figure:before {
		width: 470px;
		height: 470px
	}

	.about-me-img:after {
		right: -32px
	}
}

@media screen and (max-width:1250px) {
	.container {
		max-width: 1170px
	}

	.section-title h2 {
		font-size: 31px
	}

	.slider:after {
		max-width: 705px
	}

	.slider figure:before {
		width: 440px;
		height: 440px
	}

	.research-bx {
		padding-left: 72px
	}

	.about-me-img:after {
		right: -34px
	}

	.appointment-bx {
		padding: 40px
	}

	.appointment-bx .emer a {
		font-size: 28px
	}
}

@media screen and (max-width:1199px) {
	.container {
		max-width: 975px
	}

	footer,
	header,
	section {
		padding: 45px 0
	}

	h3,
	.research-bx .title {
		font-size: 20px
	}

	.sub {
		font-size: 19px
	}

	.section-title h2 {
		font-size: 26px
	}

	.slider-info h1 {
		font-size: 42px
	}

	.navbar-brand {
		max-width: 260px
	}

	.slider:after {
		width: 64%
	}

	.form-control {
		height: 50px
	}

	button.readmore {
		line-height: 50px;
		padding: 0 48px
	}

	header .navbar ul li {
		font-size: 16px
	}

	header .dropdown .dropdown-menu li,
	.appointment-bx li,
	header .navbar ul li {
		font-size: 15px
	}

	.appointment-form,
	.speciality-cnt,
	.testimonial-bx {
		padding: 30px
	}

	.slider-info .readmore {
		line-height: 50px
	}

	.appointment-info p,
	.slider-info p {
		font-size: 17px
	}

	.appointment-form h3 {
		font-size: 26px;
		margin: 10px 0 0
	}

	.appointment-info h2,
	.slider.inr_ h1 {
		font-size: 34px
	}

	.slider::before {
		width: 250px;
		height: 250px;
		left: -140px
	}

	.testimonial-bx figure {
		width: 60px;
		height: 60px
	}

	.slider figure {
		margin-bottom: -48px
	}

	.slider figure:before {
		width: 390px;
		height: 390px;
		left: 0
	}

	.specialisty-tabs .nav-tabs .nav-item {
		margin-right: 5px
	}

	.specialisty-tabs .nav-tabs .nav-link {
		padding: 12px 24px;
		font-size: 16px
	}

	.specialisty-tabs .tab-info figure {
		width: 400px
	}

	.specialisty-tabs .tab-info .info {
		width: calc(100% - 400px);
		padding-left: 40px
	}

	.video-bx {
		height: 290px
	}

	.cnt_bx {
		text-align: center;
		flex-direction: column
	}

	.cnt_bx figure {
		margin: 0 auto
	}

	.cnt_bx .info {
		width: 100%;
		padding: 0;
		margin-top: 24px
	}

	.appointment-bx,
	.calculator-bx {
		padding: 30px
	}

	.appointment-bx .emer .info {
		padding-left: 20px
	}

	.appointment-bx .emer a {
		font-size: 25px
	}

	.navbar.navbar-light ul li a.nav-link {
		padding: 0 11px
	}

	.gallery_bx h2 {
		font-size: 20px
	}

	.speciality-btns a {
		padding: 14px 18px
	}
}

@media screen and (max-width:991px) {
	.container {
		max-width: 750px
	}

	footer,
	header,
	section {
		padding: 40px 0
	}

	.section-title h2 {
		font-size: 24px
	}

	.readmore {
		font-size: 16px
	}

	.top_header .kidney-btn {
		padding: 8px 10px
	}

	.navbar-toggler {
		border: none;
		padding: 0;
		box-shadow: none;
		margin-left: 10px
	}

	.navbar-toggler:active,
	.navbar-toggler:focus {
		box-shadow: none
	}

	header .navbar-collapse {
		position: absolute;
		left: 0;
		top: calc(100% + 12px);
		width: 100%;
		background: #fff;
		box-shadow: 0 0 50px 3px rgba(232, 232, 232, .5);
		border-radius: 0 0 20px 20px
	}

	header .navbar-collapse ul {
		position: relative;
		z-index: 1
	}

	header .navbar .container {
		position: relative
	}

	header .navbar ul li {
		margin: 0
	}

	.slider-info h1 {
		font-size: 36px;
		margin-bottom: 0
	}

	.slider-info h1~span {
		margin-bottom: 10px
	}

	.navbar.navbar-light ul li a.nav-link.active:before,
	.navbar.navbar-light ul li a.nav-link:before {
		content: none
	}

	.navbar.navbar-light ul li a.nav-link.active,
	.navbar.navbar-light ul li a.nav-link:active,
	.navbar.navbar-light ul li a.nav-link:focus,
	.navbar.navbar-light ul li a.nav-link:hover {
		color: rgba(0, 0, 0, .9);
		background: #fafcff
	}

	.navbar.navbar-light ul li a.nav-link,
	header .dropdown .dropdown-menu li a {
		border-bottom: 1px solid #eee
	}

	.navbar.navbar-light ul li:last-child a.nav-link,
	header .dropdown .dropdown-menu li:last-child a {
		border-bottom: none
	}

	header .dropdown .dropdown-menu {
		width: 100%;
		box-shadow: none;
		background: #fbfbfb;
		margin: 0
	}

	.dropdown-toggle:after {
		right: 12px
	}



	.slider:after {
		max-width: 615px;
		width: 71%
	}

	.slider-info .readmore {
		line-height: 48px
	}

	.appointment-form,
	.speciality-cnt {
		padding: 25px
	}

	.appointment-info h2 {
		font-size: 30px;
		margin-bottom: 12px
	}

	.section-title h2 span {
		display: inline
	}

	.slider::before {
		width: 200px;
		height: 200px;
		left: -120px
	}

	.slider-info p {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		line-clamp: 3;
		-webkit-box-orient: vertical
	}

	.slider figure {
		margin-bottom: -45px
	}

	.slider figure:before {
		width: 300px;
		height: 300px
	}

	.research-bx {
		padding: 62px 0 0
	}

	.research-bx:before {
		width: 100%;
		height: 1px;
		left: 0;
		top: 24px
	}

	.research-bx .icon {
		top: 0
	}

	.research-bx span {
		position: absolute;
		left: 62px;
		top: 9px;
		margin: 0
	}

	.research-bx .title {
		font-size: 19px
	}

	.slider.inr_ {
		padding: 32px 0
	}

	.slider.inr_ h1 {
		font-size: 30px
	}

	.slider.inr_:after,
	.slider.inr_:before {
		width: 90px;
		height: 90px
	}

	.specialisty-tabs .tab-info figure {
		display: none
	}

	.specialisty-tabs .tab-info .info {
		width: 100%;
		padding-left: 0
	}

	.video-bx {
		height: 270px
	}

	.cnt_bx {
		padding: 24px
	}

	.cnt_bx .info h2 {
		font-size: 20px
	}

	.cnt_bx .info p {
		font-size: 15px
	}

	.cnt_bx figure {
		width: 54px;
		height: 54px
	}

	.map iframe {
		height: 400px
	}

	.news-section iframe {
		height: 260px
	}

	header.fixednav .top_header {
		display: block
	}

	.specialisty-tabs .tab-accord>div {
		display: block;
		opacity: 1;
		margin-bottom: 7px
	}

	.specialisty-tabs .tab-accord>div:last-child {
		margin-bottom: 0
	}

	.gallery_bx h2 {
		font-size: 18px;
		padding: 10px 0 14px
	}

	.speciality-btns a {
		display: inline-block;
		margin: 5px;
	}
}

@media screen and (max-width:767px) {
	.container {
		max-width: 560px
	}

	footer,
	header,
	section {
		padding: 30px 0
	}

	.scroll-top-wrapper {
		width: 44px;
		height: 44px;
		line-height: 44px
	}

	.scroll-top-wrapper .scroll-top-inner i {
		line-height: 44px;
		font-size: 22px
	}

	.sub,
	.research-bx .title {
		font-size: 18px
	}

	.appointment-form h3,
	.section-title h2 {
		font-size: 22px
	}

	.form-control {
		height: 48px
	}

	.icon-input i {
		top: 14px
	}

	button.readmore {
		line-height: 48px;
		padding: 0 42px;
		font-size: 17px
	}

	.readmore {
		line-height: 44px;
		padding: 0 25px
	}

	.slider-info h1 {
		font-size: 30px
	}

	.slider-info p {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		-webkit-box-orient: vertical;
		font-size: 16px
	}

	.slider-info .readmore {
		line-height: 44px;
		padding: 0 38px
	}


	.slider figure {
		margin-bottom: -60px
	}

	.top_header .col-md-7 {
		border-bottom: 1px solid rgba(0, 0, 0, .1);
		padding: 8px 0
	}

	header .navbar {
		padding: 8px 0
	}

	.navbar-brand {
		width: 220px
	}

	.speciality-cnt {
		padding: 20px
	}

	.appointment-form {
		margin: 0;
		padding: 20px
	}

	header .navbar-collapse {
		top: calc(100% + 8px)
	}

	.slider figure:before {
		content: none
	}

	.slider.inr_ {
		padding: 24px 0
	}

	.slider.inr_ h1 {
		font-size: 28px
	}

	.about-me-img>div,
	.about-me-img>div img {
		width: 100%
	}

	.about-me-img:after {
		right: -40px
	}

	.about-me-img>div:before {
		right: -15px
	}

	.about-me-img>div:after {
		left: -15px
	}

	.quote {
		margin-top: 35px;
	}

	.map iframe {
		height: 360px
	}

	.news-section iframe {
		height: 230px
	}

	.navbar-light .navbar-toggler-icon {
		width: 1.3em;
		height: 1.3em
	}

	.thankyou .info h2 {
		font-size: 22px
	}

	.gallery_bx h2 {
		font-size: 16px
	}

	.speciality-btns a {
		padding: 10px 12px
	}

	.blog_bx .info p {
		display: none;
	}
}

@media screen and (max-width:575px) {
	body {
		font-size: 15px
	}

	.container {
		max-width: 100%
	}

	.readmore,
	header .navbar .readmore {
		line-height: 40px
	}

	.sub {
		font-size: 17px
	}

	.section-title h2,
	.appointment-form h3,
	footer h4 {
		font-size: 20px
	}

	footer,
	header,
	section {
		padding: 25px 0
	}

	.top_header .hdr_cnt li:first-child {
		display: none
	}

	.slider:before {
		width: 150px;
		height: 150px;
		left: -90px
	}

	.slider-info h1,
	.appointment-info h2,
	.slider.inr_ h1 {
		font-size: 24px
	}

	.slider {
		padding-top: 100px;
	}

	.slider figure {
		margin-bottom: -24px
	}

	.slider-info .readmore {
		line-height: 40px;
		padding: 0 30px
	}

	.slider:after {
		content: none
	}

	.slider-info p {
		font-size: 15px;
		display: contents;
	}

	.research-bx {
		padding: 0 0 0 70px
	}

	.research-bx:before {
		width: 1px;
		height: 100%;
		left: 24px;
		top: 0
	}

	.research-bx span {
		position: static;
		margin-bottom: 12px
	}

	.research-bx .title {
		margin-bottom: 8px
	}

	.slider.inr_:after {
		content: '';
		width: 80px;
		height: 80px
	}

	.cnt_bx {
		flex-direction: inherit;
		text-align: left
	}

	.cnt_bx .info {
		width: calc(100% - 54px);
		padding-left: 25px;
		margin: 0
	}

	.news-section iframe {
		height: 200px
	}

	.mob-ftr {
		left: 0;
		bottom: 0;
		background: #fff;
		z-index: 1;
		box-shadow: 0 -7px 10px rgba(0, 0, 0, .1);
		padding: 10px;
		text-align: center
	}

	.mob-ftr .readmore {
		border-radius: 5px;
		background: #d95703;
	}

	.copyright {
		margin-top: 30px
	}

	.thankyou .info h2 {
		font-size: 20px
	}

	.gallery_bx h2 {
		font-size: 15px
	}

	.slider .col-5 figure {
		margin-bottom: -15px
	}

	.kidney-float-btn {
		display: none
	}

	.kidney-float-btn-circle {
		display: none
	}
}

@media screen and (max-width:479px) {



	.news-section .video,
	.mob-ftr .readmore,
	.gallery_bxs .col {
		width: 100%
	}

	.appointment-info p,
	.quote p {
		font-size: 16px
	}

	.navbar-brand {
		width: 200px
	}

	.readmore,
	header .navbar .readmore {
		font-size: 15px;
		line-height: 38px
	}

	.navbar-red-button {
		padding: 0 15px;
		font-size: 12px;
	}

	.research-bx .title {
		font-size: 17px
	}

	#bloodModal .modal-body,
	#bloodantiModal .modal-body {
		padding: 0
	}

	.calc_output .modal-body {
		padding: 40px 30px
	}

	.calculator-bx {
		padding: 24px
	}

	.slider.inr_ h1,
	.slider-info h1 {
		font-size: 22px
	}

	.copyright {
		margin-top: 20px
	}

	.scroll-top-wrapper {
		bottom: 70px
	}

	.gallery_bx h2,
	.sub {
		font-size: 16px
	}

	.slider-info h1 span {
		font-size: 14px;
		margin-bottom: 5px;
	}

	.slider-info p {
		margin-bottom: 0px;
		display: contents;
	}

	.speciality-btns a {
		width: calc(50% - 7px);
		padding: 10px 0;
		text-align: center
	}

	.speciality-btns a:nth-child(2n+1) {
		margin-left: 0
	}

	.speciality-btns a:nth-child(2n+2) {
		margin-right: 0
	}
}

@media screen and (max-width:400px) {

	.appointment-form h3,
	.section-title h2,
	footer h4 {
		font-size: 18px
	}

	.navbar-brand {
		width: 130px
	}

	header .navbar .readmore {
		padding: 0 20px
	}

	.copyright p,
	footer .menus {
		width: 100%
	}

	footer .menus li a {
		padding: 2px 0
	}
}

@media screen and (max-width:360px) {
	header .navbar .readmore {
		padding: 0 15px;
		font-size: 14px
	}

	.scroll-top-wrapper {
		width: 40px;
		height: 40px;
		line-height: 40px
	}

	.scroll-top-wrapper .scroll-top-inner i {
		line-height: 40px;
		font-size: 20px
	}

	.slider-info h1 {
		font-size: 22px
	}
}

/* Breadcum */
.breadcrumb-bg {
	background-color: #dbeeff;
	padding-top: 110px;
}

.breadcrumb-wrapper {
	padding-top: 10px;
	padding-bottom: 10px;
}

.breadcrumb {
	margin-bottom: 0px !important;
	font-size: 14px;
}

.breadcrumb .breadcrumb-item {
	color: #3d3d3d;
	text-decoration: none;
	font-size: 15px !important;
}

.breadcrumb a {
	color: #3d3d3d;
	text-decoration: none;
	font-size: 14px !important;
}

.breadcrumb-item.active {
	color: var(--custom-blue) !important;
	font-weight: 600;
	font-size: 15px !important;

}

@media (max-width: 999px) {
	.breadcrumb-bg {
		padding-top: 85px;
		/* Adjust for mobile nav height */
	}
}

.appointment-form {
	background: #fff;
	padding: 45px;
	border-radius: 25px;
	margin: 0;
	box-shadow: 0 0 35px #d0d0d04d
}

.appointment-form .form-control {
	border-color: #eee
}

.appointment-info h2 {
	color: var(--custom-blue);
	margin-bottom: 20px;
	font-weight: 600;
}

.appointment-info p {
	color: #fff;
	font-size: 18px
}

.appointment-form .appointment-form-title {
	font-size: 30px;
	margin: 0 0 8px;
	color: var(--custom-blue);
}

.form-control {
	border-color: transparent;
	border-radius: 10px !important;
	height: 56px;
	padding: 0 45px 0 20px;
	font-size: 16px;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	color: rgba(0, 0, 0, .9)
}

.form-control:focus {
	border-color: var(--secondary-bg)
}

.icon-input {
	position: relative
}

.icon-input i {
	position: absolute;
	right: 15px;
	top: 16px;
	font-size: 20px;
	line-height: 1;
	color: var(--secondary-bg)
}

textarea.form-control {
	height: 120px;
	padding-top: 20px;
	resize: none
}

.faq-section .cstm-accordion .accordion-button {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	color: #fff;
	border-radius: 10px !important;
	background: var(--custom-green);
	padding: 18px 18px;
	font-size: 17px
}

.faq-section .cstm-accordion .accordion-body {
	padding: 14px 18px;
	font-size: 17px
}

.faq-section .cstm-accordion .accordion-button.collapsed {
	background: #fff;
	color: var(--text-color)
}

.faq-section .cstm-accordion>div {
	margin-bottom: 20px;
	border: none;
	background: #fff0
}

.appointment_new_form .custom-checkbox input:checked~.checkmark,
.ftr_info span {
	background: #fff
}

.custom-modal-loading {
	background-color: #00000078;
}

.custom-modal-loading .spinner-color {
	color: #fff;
}

.custom-modal-loading .spinner-text {
	color: #fff;
}

.blogs-section {
	background-color: #F4F9FC;
}

.blogs-section-index {
	background-color: #F4F9FC;
	padding-top: 125px
}

.blogs-section .sub-heading {
	color: var(--custom-red);
	font-weight: 600;
	text-align: center;
}

.blogs-section .heading {
	color: var(--custom-blue);
	font-weight: 800;
	text-align: center;
}

.blogs-section .para {
	text-align: center;
	color: #647589;
	margin: auto;
	width: 80%;
	font-size: 18px;
}


.blog-card {
	background-color: #fff;
	border-radius: 12px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	position: relative;
}

.blog-card-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	object-position: top;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.blog-card-contnet {
	padding: 20px;
}

.blog-card .blog-card-contnet .read-more {
	color: var(--custom-red);
	text-decoration: underline;
}

.blog-card-heading {
	color: var(--custom-blue);
	line-height: 1.4;
	min-height: calc(1.4em * 2);
	max-height: calc(1.4em * 2);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.blog-card-para {
	color: #647589;
	line-height: 1.4;
	min-height: calc(1.4em * 2);
	max-height: calc(1.2em * 2);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.right-side-sticky {
	position: sticky;
	/* top: 100px; */
}

.right-side-sticky .right-side-form .appointment-form {
	padding: 15px;
}