/*************** Import Css **************/
@import "common.css";
@import "fonts.css";
/* font-family: 'Loretta';
font-family: "Montserrat", sans-serif; */
/********************* Header Css ******************/
.top-header > ul{
/* 	background: rgba(0, 0, 0, 0.5); */
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	list-style:none;
	margin:0px;
	padding:0px;
}
.top-header > ul > li > a{
	font-size:16px;
	font-weight:700;
	color:#fff;
	display:inline-block;
	padding:5px 20px;
}
.top-header > ul > li > a:hover, .top-header > ul > li:last-child a{
	background-color:#1E1E1E
}
.main-header{
	padding:16px 0px;
	-webkit-transition: all 0.5s;
	backdrop-filter: blur(8px) brightness(.4);
	background-color: rgba(28, 28, 28, .8);
}
.header-area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	transition: all 0.5s;
}
.header-social ul{
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	column-gap: 20px;
}
.header-social a{
	color: #FFFFFF;
	font-size: 19px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.header-social a:hover{
	color: #45ACE5;
}
.heder-right ul{
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.heder-right li{
	padding: 0px 15px;
	position: relative;
}
.heder-right li:first-child::after{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	content: "";
	height: 60%;
	width: 2px;
	background-color: #45ACE5;
}
.heder-right li a:not(.common-button){
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
	font-weight: 700;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.heder-right li a:not(.common-button):hover{
	color: #45ACE5;
}
.header-area.fixed_header{
	position: fixed;
	top: -100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.header-area.fixed_header.stky{
	top: 0;
}
/******************************** banner-area ********************************/
.banner-area{
	min-height: 100vh;
	position: relative;
	padding: 50px 0;
}
.banner-area::after{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	background-color: rgba(0, 0, 0, .6);
	width: 100%;
	height: 100%;
}
.banner-logo{
	margin-bottom: 36px;
}
.banner-content{
	position: relative;
	z-index: 1;
}
.banner-content ul{
	list-style: none;
	display: flex;
	column-gap: 25px;
	margin: 0;
	padding: 0;
	justify-content: center;
}
.banner-content .common-button{
	min-width: 160px;
}
.banner-content .common-button:hover{
	color: #fff;
}
.sticky-btn{
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99;
}
.scroll-down{
	position: absolute;
	bottom: 60px;
	animation: MoveUpDown 2s linear infinite;
	z-index: 3;
	left: 50%;
	transform: translate(-50%);
}
@keyframes MoveUpDown {
	0%, 100% {
		bottom: 80px;
	}
	50% {
		bottom: 30px;
	}
}
/****** home-intro ******/
.home-intro-sec{
	margin-top: 167px;
	margin-bottom: 97px;
}
.home-intro-wrapper{
	max-width: 737px;
	width: 100%;
	margin: 0px auto;
}
.home-intro-wrapper h2{
	margin-bottom: 28px;
}
/*********** sevice-sec ***********/
.sevice-sec{
	min-height: 521px;
	background-color: rgba(28, 28, 28, .5);
	backdrop-filter: brightness(.5) blur(4px);
}
.sevice-sec.active::after{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(28, 28, 28, .5);
	backdrop-filter: brightness(.5) blur(4px);
}
.service-img{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 44%;
}
.service-img img{
	height: 100%;
	object-fit: cover;
}
.service-wapper{
	max-width: 1086px;
	width: 100%;
	margin: 0px auto;
	position: relative;
	z-index: 1;
}
.service-list h2{
	margin-bottom: 15px;
	color: #fff;
}
.service-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.service-list a{
	padding: 11px 0;
	border-bottom: 1px solid #FFFFFF;
	display: block;
	font-family: 'Loretta';
	font-size: 24px;
	font-weight: 600;
	font-style: italic;
	color: #FFFFFF;
	letter-spacing: 1px;
	background-image: url("../images/right-arrow-circle.svg");
	background-position: 100%;
	background-size: 26px;
	background-repeat: no-repeat;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.service-list a.active,
.service-list a:hover{
	background-color: #45ACE5;
	padding-left: 20px;
	background-position: 96%;
	border-color: transparent;
}
.service-content h3{
	font-family: 'Loretta';
	font-size: 24px;
	font-weight: 600;
	font-style: italic;
	color: #FFFFFF;
	margin-bottom: 16px;
}
.service-content ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.service-content li{
	margin-bottom: 10px;
}
.service-content a{
	font-size: 16px;
	line-height: 28px;
	color: #fff;
	font-weight: 600;
}
.service-content{
	display: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.service-content.active{
	display: block;
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
/*=================== madical-insurance ===================*/
.madical-insurance-sec{
	margin-top: 166px;
	margin-bottom: 170px;
}
.madical-insurance-heading{
	max-width: 550px;
	margin: 0px auto 62px;
}
.each-madical-insurance{
	height: 100%;
	padding: 36px 40px;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, .16) 0px 0px 30px;
}
.madical-insurance-wrapper .row{
	margin: 0px -30px;
}
.madical-insurance-wrapper .col-lg-6{
	padding: 0px 30px;
}
.madical-insurance-icon{
	position: absolute;
	top: 46%;
	left: 15px;
}
.each-madical-insurance h3{
	font-family: 'Loretta';
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
	font-style: italic;
	color: #1C1C1C;
	margin-bottom: 20px;
}
/*=================== about-dr-logo ===================*/
.about-dr-logo-sec{
	margin-bottom: 170px;
}
.about-dr-logo .swiper-wrapper {
	transition-timing-function: linear !important;
}
.about-dr-logo{
	margin-top: 70px;
}
/*=========== testimonial ===========*/
.testimonial-area{
	padding: 74px 0;
}
.testimonial-wrapper{
	background-color: rgba(28, 28, 28, .7);
	backdrop-filter: brightness(.5) blur(4px);
	padding: 146px 70px;
}
.testimonial-star{
	width: 197px;
	position: relative;
	margin-bottom: 30px;
}
.testimonial-star img{
	width: 197px;
	max-width: initial;
}
.testimonial-star-width{
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.testimonial-heading h2{
	color: #FFFFFF;
}
.each-testimonial p{
	color: #FFFFFF;
	margin-bottom: 14px;
}
.each-testimonial h6{
	font-size: 14px;
	line-height: 40px;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	color: #FFFFFF;
}
.each-testimonial h6 img{
	margin-right: 8px;
}
.testimonial-nav .common-arrow{
	position: initial;
}
.testimonial-nav{
	max-width: 74px;
	width: 100%;
	margin-left: auto;
	display: flex;
	justify-content: space-between;
}
/*==================== footer-form-sec ====================*/
.footer-form-sec{
	position: relative;
	padding: 100px 0;
}
.footer-form-sec::after{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	background: linear-gradient(90deg, rgba(28,28,28,1) 0%, rgba(28,28,28,0.5) 100%);
	width: 100%;
	height: 100%;
}
.footer-form-wrapper{
	position: relative;
	z-index: 1;
	padding-left: 70px;
}
.footer-form-content{
	max-width: 520px;
	width: 100%;
}
.footer-form-content h2 {
	color: #FFFFFF;
	margin-bottom: 20px;
	font-family: 'Loretta';
	font-weight: 700;
	font-style: italic;
}
.footer-form-content p{
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 25px;
	color: #FFFFFF;
}
.footer-form-content p a{
	font-family: 'Loretta';
	color:#fff;
}
.footer-form-area{
	background-color: rgba(28, 28, 28, .2);
	backdrop-filter: blur(12px) brightness(.6);
	padding: 60px 50px;
}
/*================ footer ================*/
.footer-area{
	padding: 49px 0 80px;
}
.footer-top{
	display: flex;
	column-gap: 20px;
	justify-content: space-between;
	padding: 60px 0 48px;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	margin-bottom: 50px;
}
.footer-top h2{
	color: #fff;
	margin-bottom: 0;
}
.each-footer-location{
	max-width: 264px;
}
.each-footer-location p{
	margin: 0;
	color: #fff;
}
.each-footer-location h6{
	font-size: 20px;
	line-height: 24px;
	color: #FFFFFF;
	font-weight: 700;
	margin-bottom: 19px;
}
.each-footer-location a{
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	color: #FFFFFF;
	display: inline-block;
	margin-bottom: 12px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-footer-location a:hover{
	color: #45ACE5;
}
.footer-center{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-center .header-social{
	margin-top: 42px;
}
.footer-center .header-social ul{
	justify-content: center;
}
.footer-center .header-social a{
	width: 36px;
	height: 36px;
	background-color: #45ACE5;
	border: 1px solid #45ACE5;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
	color: #fff;
}
.footer-center .header-social a:hover{
	background-color: transparent;
}
.footer-btm{
	display: flex;
	justify-content: space-between;
	margin-top: 41px;
	padding-top: 32px;
	border-top: 1px solid #FFFFFF;
}
.footer-copywrite p{
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 28px;
	color: #FFFFFF;
	font-weight: 400;
}
.footer-privicy ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}
.footer-privicy li{
	padding: 0px 12px;
	position: relative;
}
.footer-privicy li:not(:last-child):after{
	position: absolute;
	content: "";
	width: 1px;
	height: 50%;
	background-color: #fff;
	right: 0;
	top: 8px;
}
.footer-privicy li a{
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 28px;
	color: #FFFFFF;
}
.footer-privicy li a:hover{
	color: #45ACE5;
}
.footer-website-by p{
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
}

/*===== footer form =====*/
.footer-form-area .gform_wrapper.gravity-theme .gfield textarea.small,
.footer-form-area .gform_wrapper.gravity-theme .gfield input.large, .footer-form-area .gform_wrapper.gravity-theme .gfield select.large{
	background-color:transparent;
	border:none;
	border-bottom:1px solid #FFFFFF;
	color:#FFFFFF;
	font-size:14px;
	padding:13px 0;
}
.footer-form-area .gform_wrapper.gravity-theme .gfield textarea.small::placeholder,
.footer-form-area .gform_wrapper.gravity-theme .gfield input.large::placeholder{
	color:#FFFFFF;
}
.footer-form-area .gform_wrapper.gravity-theme .gfield textarea.small{
	resize:none;
	height:84px;
}
.footer-form-area .gform_wrapper.gravity-theme .gform_footer input {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	line-height: normal;
	font-weight: 700;
	color: #fff;
	border: 3px solid #45ACE5;
	background-color: #45ACE5;
	padding: 8px;
	display: inline-block;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	text-transform: uppercase;
	min-width: 134px;
	text-align: center;
}
.footer-form-area .gform_wrapper.gravity-theme .gform_footer input:hover{
	background-color:transparent;
}
select#input_1_6 {
	background-color: rgba(28, 28, 28, .2);
}
.service-content.active p {
	color: #fff;
}
.service-content {
	padding-right: 100px;
}




@media(max-width:991px){
	.heder-right .common-button {
		display: none !important;
	}
	.mobile-screen-button li a {
		font-weight: 700 !important;
	}
	.service-content {
		padding-right: 0px;
	}
	.madical-insurance-icon{
		top: 26%;
	}
	.medical-doctor-image img {
		margin-bottom: 20px !important;
	}
}


/*********************** Concern Area start ********************/
.concern-area-left{
	max-width:525px;
}
.concern-area-left h2{
	font-size:44px;
	line-height:53px;
}
.concern-area-left p{
	margin-bottom:25px;
}
.concerns-list ul{
	display:block;
}
.concerns-list ul li a{
	padding:0px;
	display:inline-block;
	width:100%;
	font-size:24px;
	line-height:32px;
	color:#fff !important;
	font-family: "loretta",serif; 
	font-weight: 600;
	font-style: italic;
	height:60px;
	line-height:60px;
	border-radius:0px !important;
	border:0px !important;
	position:relative;
	transition:all 0.2s;
	-webkit-transition:all 0.2s;
	background: url(/wp-content/uploads/2024/10/arrow-right-circle.webp) no-repeat 98% 15px;
}
.concerns-list ul li a.active{
	background-color:#45ACE5 !important;
	border-bottom:1px solid #45ACE5 !important;
	background: url(/wp-content/uploads/2024/10/arrow-right-circle.webp) no-repeat 95% 11px #45ACE5;
	padding-left:30px;
	transition:all 0.2s;
	-webkit-transition:all 0.2s;
}
.concerns-list ul li a:hover{
	background-color:#45ACE5 !important;
	border-bottom:1px solid #45ACE5 !important;
	background: url(/wp-content/uploads/2024/10/arrow-right-circle.webp) no-repeat 95% 11px #45ACE5;
	padding-left:30px;
	transition:all 0.2s;
	-webkit-transition:all 0.2s;
}
.each-content-image-wrapper{
	min-height:540px;
	height:100%;
}
.each-content-image-wrapper:before{
	width:100%;
	height:100%;
	position:absolute;
	top:0px;
	left:0px;
	content:'';
	background-color:rgba(0,0,0,0.7)
}
.each-concert-content{
	position:relative;
	z-index:1;
}
.each-concert-content h3{
	margin-bottom:10px;
	color: #fff;
	text-transform: capitalize;
}
.each-concert-content ul{
	margin:0px;
	padding:0px;
	list-style:none;
}
.each-concert-content ul li:not(:last-child){
	margin-bottom:13px;
}
.each-concert-content ul li a{
	font-family: "montserrat",sans-serif;	
	font-size:16px;
	line-height:28px;
	font-weight:600;
	color:#fff;
	letter-spacing:.5px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-concert-content ul li a:hover{
	color:#45ACE5;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.concert-right-area{
	padding-right:80px;
	position:relative
}
.concern-area-left h2{
	font-family: "montserrat",sans-serif;	
	font-size: 38px;
	line-height: 47px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 17px;	
}
.concern-area-left{
	padding-top: 56px;
}
.concerns-list-mobile{
	padding-top: 30px;
}
.concerns-list-mobile{
	display: none;
}
.nav-tabs .nav-item ul{
	display: none;
}
.concert-right-before-listing img{
	height: 540px;
	object-fit:cover;
}
.our-service-area{
	position:relative;
}
.our-service-area:after{
	background-color: #1C1C1C;
	opacity: .8;
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;	
}
.our-vision-area.our-team-logo-inject{
	margin-top: 100px;
	margin-bottom: 100px;
}
.our-vision-area.our-team-logo-inject .icon-slider-area{
	margin-top: 150px;
	margin-bottom: 0px;
}
.each-concert-content p {
	color: #fff;
}
.each-concert-content {
	padding: 50px;
}
.nav-tabs .nav-item p {
	display: none;
}
section.our-service-area .row.no-gutters {
	align-items: center;
}
@media(max-width:991px){
	.concert-right-area {
		margin-bottom: 28px;
		padding-right: 0px;
	}
	.concern-area-left {
		padding: 33px 25px 29px;
	}
	.concern-area-left {
		max-width: 100%;
	}
	.concerns-list-mobile{
		display: block;
	}
	.nav-tabs .nav-item .nav-link.active + p{
		display: block;
	}
	.each-content-image-wrapper:before{
		display: none;
	}
	.each-content-image-wrapper {
		min-height: 380px;
		height: 100%;
	}
	.concert-right-before-listing img {
		height: 380px;
		object-fit:cover;
	}
	.each-concert-content {
		display: none;
	}
	.nav-tabs .nav-item > ul{
		list-style: none;
		margin: 0px;
		margin-top: 11px;
		padding-left: 22px;
	}
	.nav-tabs .nav-item > ul > li{
		height: 100%;
		line-height: 100%;
		border-bottom: 0px;
		margin-bottom: 15px;
	}
	.nav-tabs .nav-item > ul > li a{
		font-family: "montserrat", sans-serif;
		font-size: 16px;
		line-height: 28px;
		font-weight: 600;
		height: 100%;
		border-bottom: 0px !important;
		color: #fff;
		background-image: none;
		letter-spacing: .5px;
		font-style: normal;
		text-transform: capitalize;
		transition: all 0.5s;
		-webkit-transition: all 0.5s;
	} 
	.concerns-list ul li a{
		font-size: 20px;
		line-height: 56px;
		height: 56px;
		padding-left: 0px !important;
	}
	.concerns-list ul li .nav-link.active{
		padding-left: 22px !important;
		background: url(/wp-content/uploads/2024/10/down-arrow.png) no-repeat 95% 20px #45ACE5;
		background-size:20px;
	}
	.nav-tabs .nav-item p{
		color:#1c1c1c;
	}
	.concerns-list > ul > li > ul > li a{
		padding-left: 0px !important;
	}
	.concern-area-left h2 {
		font-size: 26px;
		line-height: 32px;
	}
	.our-vision-area.our-team-logo-inject {
		margin-top: 75px;
		margin-bottom: 75px;
	}
	.our-vision-area.our-team-logo-inject .icon-slider-area {
		margin-top: 50px;
	}
	.concerns-list p {
		color: #fff;
		padding-top: 20px;
	}
	li.nav-item:last-child a {
		padding-bottom: 75px;
		line-height: 31px;
		padding-top: 16px;
	}
}

.footer-form-content p {
	font-family: 'Loretta';
	font-weight: 700;
	font-style: italic;
}
.footer-form-content h2 {
	color: #FFFFFF;
	margin-bottom: 20px;
	font-weight: 700;
	font-style: normal;
	font-family: "Montserrat", sans-serif;
}

.concerns-list .nav-tabs .nav-item {
	border-bottom: 1px solid #FFFFFF !important;
}
.concerns-list li a {
	padding-right: 20px !important;
	border-bottom: none !important;
}
.sticky-btn .common-button:hover{
	background-color: #45ACE5 !important;
}
.single-page-area {
	padding: 100px 0;
}

.heder-right .new_patient_forms.common-button.border-button {
	margin-right: 15px;
}
.mobile-screen-button {
	background: #45ace500;
	padding: 0;
}
.mobile-screen-button ul li {
	padding: 8px 0 !important;
}
.mobile-screen-button ul li a {
	font-size: 14px;
}

.mobile-screen-button ul li:first-child {
	background-color: #000;
	padding: 4px;
	border: none;
}
.mobile-screen-button ul li:last-child {
	background-color: #45ace5;
	border: none;
}
.mobile-screen-button ul {
	display: flex;
}
.mobile-screen-button ul li:first-child a {
	font-size: 14px;
	margin-left: -15px;
}
.medical-doctor-image img {
	border: 4px solid #45ACE5;
	margin-bottom: 60px;
}
/* booking-popup */
.booking-popup-sec{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100vh;
	background-color:rgba(0 0 0 / .5);
	z-index:999;
	display:flex;
	align-items:center;
	justify-content:center;
}
.booking-popup-area{
	max-width:410px;
	width:100%;
	padding:10px;
	background-color: #FFF;
	position:relative;
}
.booking-popup-inner{
	border-radius:20px;
	overflow:hidden;
	border: 3px solid #45ACE5;
	position:relative;
	height:100%;
	min-height:410px;
	display:flex;
	justify-content:end;
	flex-direction:column;
	padding: 20px;
}
.booking-popup-inner > *{
	position:relative;
	z-index:1;
}
.booking-popup-inner::after{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	content:"";
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.50) 0%, #FFF 72.56%);
}
.booking-popup-close {
	position: absolute;
	right: 23px;
	top: 20px;
	z-index: 2;
}
.booking-popup-inner h2 {
	color: #1C1C1C;
	font-size: 32px;
	font-weight: 700;
	line-height: normal;
	text-transform: initial;
	margin: 0 0 8px;
}
.booking-popup-inner p{
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	margin:0 0 20px;
}
.booking-popup-area .common-button:hover{
	color:#45ACE5;
}
.concerns-list ul li a{
	color:#1C1C1C !important;
	background: url(/wp-content/uploads/2026/03/Group-1-1.svg) no-repeat 98% 15px;
	border-bottom: 1px solid #1C1C1C !important;
}
.concerns-list ul li a.active,
.concerns-list ul li a:hover{
	color:#fff !important;
	background: url(/wp-content/uploads/2026/03/arrow-left-circle2.png) no-repeat 95% 20px #45ACE5;
	background-size:20px;
}
.concern-area-left h2{
	color:#1C1C1C;
}
.our-service-area:after{
	background-color:transparent;
}
@media(min-width:991px){
	.concerns-list ul li a.active{
		background: url(/wp-content/uploads/2026/03/arrow-left-circle2.png) no-repeat 95% 20px #45ACE5;
		background-size:20px;
	}
}