@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root{
	--primary-color:#12ac8e;
	--primary-color-dark:#0d846c;
	--primary-color-light:#e9f7f7;
	--secondry-color:#fb923c;
	--tex-dark:#333333;
	--test-light:#767268;
	--white:#ffff;
	--max-width:1200px;

}


.{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
.section_container{
	max-width:var(--max-width);
	margin:auto;
	padding:5rem 1rem;


}

.section_header{
	margin-bottom:0.5rem;
	font-size: 2rem;
	font-weight: 600;
	color:var(--tex-dark);

}

.btn{
	padding: .75rem 2rem;
	outline: none;
	border: none;
	font-size:1rem;
	white-space: nowrap;
	color:var(--white);
	background-color:var(--secondry-color);
	border-radius: 5px;
	cursor: pointer;

}
img{
	width:100%;
	display: flex;

}

a{
	text-decoration: none;
}


body{
	font-family: "Poppins", sans-serif;
}
header{

	background-image: linear-gradient(to right,rgba(18,172,142,0.9),rgba(18,172,142,0.7)),
	url("image/cover\ pic.webp");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.form-captcha-block {
  display: block;
  margin: 0 auto;
  width: 270px;
}

.form-captcha-block .form-control {
  width: 17.7% !important;
  float: left;
  margin-right: 5px !important;
  padding: 4px 0 !important;
  text-align: center;
  max-width: 50px;
}

.banner-from .form-captcha-block {
  display: block;
  margin: 0 auto;
  width: 270px;
}

.banner-from .form-captcha-block .form-control {
  width: 17.7% !important;
  float: left;
  margin-right: 5px !important;
  padding: 4px 0 !important;
  text-align: center;
  max-width: 50px;
}

.contact-wrap-1 .form-captcha-block {
  margin: 0;
}
.nav_container{

padding: 2rem 1rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav_logo{

font-size: 1.5rem;
font-weight: 600;
color:var(--white);

}
.nav_logo span{
color:var(--secondry-color)

}
.nav_link{
list-style: none;
display: flex;
align-items: center;
justify-content: center;
gap:2rem;

}
.link a{

	padding: 0,5rem;
	color:var(--primary-color-light)
}
.link a:hover{

	color:var(--white)
}
.header_container{
	align-items:center;
	gap:5rem;
	display: flex;

}
.header_container h1{
	margin-bottom: 1rem;
	max-width: 800px;
	font-size:3.5rem;
	line-height: 4rem;
	color: var(--white);


}
.header_container p{
	margin-bottom: 2rem;
	max-width: 600px;
	color: var(--primary-color-light);

}
.header_form{
	width:100%;
	max-width: 350px;
	
}
.header_form form{
	display: grid;
	gap: 1rem;
	padding: 2rem;
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
.header_form input{
	padding: 1rem;
	outline:none;
	border: none;
	font-size: 1rem;
	color: var(--primary-color);
	background-color: var(--primary-color-light);
	border-radius: 5px;

}

.header_form input::placeholder{
	color: var(--primary-color);

}
.form_btn{
	background-color: var(--primary-color);
	transition: .3s;
}

.form_btn:hover{
	background-color: var(--primary-color-dark);
}
.header_form h4{
	font-size: 1.5rem;
	font-weight: 700px;
	color: var(--primary-color);
	text-align: center;

}
.header_content{
	position: relative;
}

.service_header{
	display:flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.service_header_content p{
	max-width: 600px;
	color: var(--test-light);
}
.service_btn{
	padding: .75rem;
	outline: none;
	font-size: 1rem;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	background-color: transparent;
	border-radius: 5px;
	white-space: nowrap;
	cursor: pointer;
	transition: 0.3s;
}

.service_btn:hover{
	color: var(--white);
	background-color: var(--primary-color);
}
.service_grid{
	margin-top: 4rem;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 2rem;

}
.service_card{
	padding: 2rem;
text-align: center;
border-radius: 10px;
box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
cursor: pointer;
}
.service_card span{
	display: inline-block;
	margin-bottom: 1rem;
	padding: 10px 20px;
	font-size: 2.5rem;
	color: var(--primary-color);
	background-color: var(--primary-color-light);
	border-radius: 100%;
	transition: 0.3s;
}

.service_card h4{
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--tex-dark);

}
.service__card p{
	margin-bottom: 1rem;
	color: var(--test-light);
}
.service__card a{
	color: var(--primary-color);
}
.service__card a:hover{
	color: var(--primary-color-dark);
}

.service__card:hover span{
	color: var(--primary-color);
}

.About_container{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 2rem;
	align-items: center;

}
.about_content p{
	margin-bottom: 1rem;
	color: var(--test-light);

}
.about_image img{
	max-width: 400px;
	margin: auto;
}

.why_container{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 2rem;
	align-items: center;
}
.why_imge img{
	max-width: 400px;
	margin: auto;
	border-radius: 10px;

}
.why_content p{
	color: var(--test-light);
}
.why_grid{
	margin-top: 4rem;
	display: grid;
	grid-template-columns: 80px auto;
	gap: 2rem;

}
.why_grid span{
	display:inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: var(--primary-color);
	border-radius: 10px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);

}
.why_grid h4{
	margin: 0.5rem;
	font-size: 1.2rem;
	font-weight: 600px;
	color: var(--tex-dark);

}
.why_grid p{
	color: var(--test-light);

}
.doctor_header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;

}
.doctor_header_content_ p {
	max-width: 600px;
	color: var(--test-light);
}
.doctors_nav{
	display: flex;
	align-items: center;
	gap: 1rem;

}
.doctors_nav span{
	padding: 5px 15px;
	font-size: 1.5rem;
	color: var(--primary-color);
	background-color: var(--primary-color-light);
	cursor: pointer;
}
.docder_grid{
	margin-top: 4rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.doctor_card{
	text-align: center;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	cursor: pointer;
	overflow: hidden;

}
.doctor_card_imge{
	position: relative;
	overflow: hidden;
}
.tharapist_social{
	position: absolute;
	left: 0;
	bottom: -4rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	transition: 0.5s;
}
.tharapist_social span{
	display: inline-block;
	padding: 6px 12px;
	font-size: 1.5rem;
	color: var(--tex-dark);
	background-color: var(--white);
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;

}
.tharapist_social span:hover{
	color: var(--primary-color);
}
.doctor_card h4 {
	margin-top: 1rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--tex-dark);
}
.doctor_card:hover .tharapist_social{
	bottom: 2rem;
}
.doctor_card p{
	margin-bottom: 1rem;
	color: var(--test-light);
	
}
.footer{
	background-color: var(--primary-color-light)}
.footer_container{
	display: grid;
	grid-template-columns: 400px repeat(3,1fr);
	gap: 2rem;
	

}

.footer_col h3{
margin-bottom: 1rem;
font-size: 1.5rem;
font-weight: 600;
color: var(--primary-color);
}
.footer_col h3 span{
	color: var(--secondry-color);

}
.footer_col h4{
	margin-bottom: 1rem;
	font-size: 1.2rem;
	font-weight:600;
	color: var(--primary-color);
}
.footer_col p{
	margin-bottom: 1rem;
	color: var(--tex-dark);
	cursor: pointer;
	transition: 0.3s;
}
.footer_col p:hover{
	color: var(--primary-color);
}
.footer_col i{
	color: var(--primary-color);
	
	
}
.footer_bar{
	background-color: var(--primary-color);
	
	
}

.footer_bar_content{
	max-width: var(--max-width);
	margin: auto;
	padding:0.5rem 1rem;
	display: flex;
	align-content: center;
	justify-content: space-between;
	gap: 2rem;
}
.footer_bar_content p{
	font-size: 0.8rem;
	color: var(--white);
}
.footer_socials{
	display: flex;
	align-items:center;
	gap: 1rem;
	font-size: 1rem;
	color: var(--white);
	cursor: pointer;
	
}




@media (width<900px){
	.service_grid{grid-template-columns: repeat(2,1fr);
	gap: 1rem;}



	.About_container{grid-template-columns: repeat(1,1fr);}
	
	
	.about_image{
		grid-area: 1/1/2/2;
	}
	
	
	.about_content{
		text-align: center;
	}
	
	
	.why_container{grid-template-columns: repeat(1,1fr);}
	


	.why_content{
		text-align: center;
	}
	.why_grid{
		text-align: left;
	}
	.docder_grid{
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	.footer_container{
		grid-template-columns: repeat(2,1fr);
	}

}

	
@media (width<780px){

	.nav_link{
		display: none;
	}
	.header_container{
		flex-direction: column;
	}
}

@media(width<600px){
	.service_header{
		flex-direction: column;
		text-align: center;
	}
	.service_grid{
		grid-template-columns: repeat(1,1fr);
	}
	.why_grid{
		column-gap: 1rem;
	}
	.doctor_header{
		flex-direction: column;
		text-align: center;
	}
	.doctor_header{
		flex-direction: column;
		text-align: center;

	}
	.docder_grid{
		grid-template-columns: repeat(1 ,1fr);

	}
	.footer_bar_content{
		flex-direction: column;
		gap: 1rem;
	}
}