@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body {
	font-family: "Inter", sans-serif;
	line-height: 1.6;
	color: hsl(165 20% 40%);
}
a {
	text-decoration: none;
	transition: all 0.5s ease-in-out;
}
p{
	font-size: 16px;
	line-height: 26px;
}
:hover {
	transition: all 0.5s ease-in-out;
}
ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
img {
	max-width: 100%;
	max-height: 100%;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Playfair Display", serif;
    color: hsl(165 50% 28%);
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
/* Header */
header {
	background-color: color-mix(in oklab, hsl(40 20% 98%) 70%, transparent);
	backdrop-filter: blur(8px);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 15px 0;
	border-bottom: hsl(165 20% 85%) solid 1px;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo a {
	height: 45px;
	display: inline-block;
	line-height: 0;
	vertical-align: top;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 30px;
}

nav a {
	text-decoration: none;
	color: #333;
	font-size: 16px;
	transition: color 0.3s;
}

nav a:hover {
	color: #1a5f4f;
}

.header-buttons {
	display: flex;
	gap: 15px;
}

.btn {
	padding: 8px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: #1a5f4f;
	color: white;
}

.btn-primary:hover {
	background: #145042;
}

.btn-secondary {
	background: #fff;
	color: #1a5f4f;
	border: 2px solid #1a5f4f;
}

/* Hero Section */
.hero {
	background-size: cover !important;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.hero::after {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	content: '';
	background: linear-gradient(to right, #ffffffe0 40%, #ffffff4a 60%);
}

.hero-content {
	position: relative;
	z-index: 9;
}

.hero-text {
	max-width: 55%;
}

.hero-text small {
	display: inline-block;
	color: hsl(165 40% 10%);
	background-color: color-mix(in oklab, hsl(42 45% 60%) 20%, transparent);
	border: color-mix(in oklab, hsl(42 45% 60%) 30%, transparent) solid 1px;
	border-radius: 30px;
	padding: 4px 20px;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}

.hero-text h1 {
	font-size: 66px;
	color: #1a5f4f;
	margin-bottom: 40px;
	line-height: 1.2;
}

.hero-text h1 em {
	font-style: italic;
	color: #000;
}

.hero-text p {
	color: hsl(165 20% 40%);
	margin-bottom: 30px;
	font-size: 24px;

}

.hero-buttons {
	display: flex;
	gap: 15px;
}

.hero-buttons a {
	font-size: 18px;
	padding: 10px 30px;
	border: solid 1px;
	border-radius: 6px;
}

.consultBtns {
	background: hsl(165 50% 28%);
	border-color: hsl(165 50% 28%);
	color: #fff;
}

.consultBtns:hover {
	background: #000;
	border-color: #000;
}

.treatmentBtns {
	border-color: hsl(0, 0%, 0%);
	color: #000000;
}

.treatmentBtns:hover {
	background: hsl(0, 0%, 100%);
	color: hsl(165 50% 28%);
}
.hero-stats {
	display: flex;
	gap: 40px;
	margin-top: 55px;
}
.stat {
	text-align: center;
}

.stat-number {
	font-size: 36px;
	font-weight: bold;
	color: #1a5f4f;
}

.stat-label {
	font-size: 14px;
	color: hsl(165 20% 40%);
}
/* Features Section */
.home_features {
	background: hsl(165 50% 28%);
	padding: 80px 0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.feature-card {
    text-align: center;
    color: white;
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: #ffffff3b solid 1px;
}
.feature-card i {
    width: 56px;
    height: 56px;
    background-color: color-mix(in oklab, hsl(42 45% 60%) 20%, transparent);
    border-radius: 50%;
    color: hsl(42 45% 60%);
    font-size: 26px;
    line-height: 56px;
    margin-bottom: 12px;
    text-align: center;
}
.feature-card h4{
    color: hsl(42 45% 60%);
    font-size: 24px;
}
.feature-card h4 {
    color: hsl(42 45% 60%);
    font-size: 38px;
    padding-bottom: 10px;
}
.feature-card strong {
    display: block;
    font-weight: 500;
    font-size: 19px;
}
.feature-card span {
    font-size: 15px;
    display: block;
    padding-top: 5px;
}
.feature-card:hover{
    background: rgba(255, 255, 255, 0.10);
}

/* Information Section */
.info-section {
	padding: 80px 0;
	background: #fff;
}

.info-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.info-image {
    border-radius: 10px;
    position: relative;
}

.info-image img {
	width: 100%;
    height: 400px;
	object-fit: cover;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px;
}
.info-image span {
    box-shadow: rgb(0 0 0 / 14%) 0 15px 20px -4px;
    background: #fff;
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 320px;
    padding: 20px;
    border-radius: 10px;
    color: #1a5f4f;
    font-size: 14px;
}
.info-image span h6 {
    font-size: 20px;
    padding-bottom: 5px;
}
.info-text h2 {
	font-size: 42px;
	color: #1a5f4f;
	margin-bottom: 20px;
}
.info-text h2 span{
    color: #000;
}
.info-text {
    color: hsl(165 20% 40%);
}
.info-text p{
    padding-bottom: 15px;
    font-size: 16px;
    line-height: 26px;
}

.info-text strong {
	color: #1a5f4f;
}

.info-boxes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding-top: 20px;
    border-top: hsl(165deg 19.35% 84.56%) solid 1px;
    margin-top: 10px;
}
.info-box h4 {
	color: #1a5f4f;
	margin-bottom: 5px;
    font-size: 17px;
}

.info-box p {
	font-size: 14px;
	color: #666;
}

/* Services Section */
.services {
	background: #f9f9f9;
	padding: 80px 0;
}

.section-title {
	text-align: center;
	font-size: 36px;
	color: #1a5f4f;
	margin-bottom: 50px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.service-card {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-icon {
	font-size: 40px;
	margin-bottom: 15px;
}

.service-card h3 {
	color: #1a5f4f;
	margin-bottom: 10px;
	font-size: 20px;
}

.service-card p {
	color: #666;
	font-size: 14px;
}

.trusted_Outer {
    background: hsl(40deg 13.04% 95.49%);
    padding: 80px 0;
    border-top: hsl(165 20% 85%) solid 1px;
    border-bottom: hsl(165 20% 85%) solid 2px;
}
.mainHd {
    text-align: center;
    padding-bottom: 30px;
}
.mainHd small {
    color: hsl(42 45% 60%);
    display: block;
    font-size: 20px;
}
.mainHd h2 {
    font-size: 40px;
    padding-bottom: 10px;
}
.clinicsList{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.clinic-item {
    background: #fff;
    padding: 20px;
    border: hsl(165 20% 85%) solid 1px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px -1px;
    position: relative;
}
.clinic_Locat {
    position: relative;
    padding-left: 50px;
    padding-bottom: 10px;
}
.clinic_Locat i{
    position: absolute;
    left: 0;
    top: 0;
    background: hsl(42deg 45% 60% / 18%);
    width: 36px;
    height: 36px;
    border-radius: 7px;
    text-align: center;
    line-height: 36px;
    color: hsl(165 50% 28%);
}
.clinic_Locat h6 {
    font-size: 18px;
    line-height: 25px;
}
.clinic_Locat span{
    font-size: 13px;
    text-transform: uppercase;
}
.clinic-item p {
    font-size: 14px;
    padding-bottom: 15px;
}
.clinic-item small {
    display: block;
}
.clinic-item em {
    font-size: 12px;
    line-height: 18px;
    display: block;
    padding-bottom: 20px;
}
.clinic-item a {
    font-size: 14px;
    color: #000;
    font-weight: 700;
}
.clinic-item a:hover{
    color: hsl(165 50% 28%);
    text-decoration: underline;
}

.clinic-item:hover .clinic_Locat i{
    background: hsl(165 50% 28%);
    color: #fff;
}

/* Awards Section */
.awards_winning_outer {
	padding: 80px 0;
	background: #fff;
	text-align: center;
}
.awards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 20px;
}
.award-card {
    text-align: center;
    border: hsl(165 20% 85%) solid 1px;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    top:0;
}
.award-card:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px;
    position: relative;
    top:-5px;
}
.award-card i{
    display: block;
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    font-size: 36px;
}
.award-card small {
    display: inline-block;
    background: #e5e5e5;
    padding: 2px 15px;
    border-radius: 25px;
    font-size: 12px;
    color: hsl(165 20% 40%);
    margin-bottom: 10px;
}
.award-card h4 {
    font-size: 18px;
	color: #1a5f4f;
	margin-bottom: 10px;
}
.award-card p {
	font-size: 14px;
}
.yellowBgclr{
    background:oklch(0.8 0.18 86.05 / 0.15);
    color: oklch(79.5% 0.184 86.047);
}
.darkyellowBgclr{
    background:oklch(66.6% 0.179 58.318 / 0.15);
    color: oklch(66.6% 0.179 58.318);
}
.orangeBgclr{
    background:oklch(70.5% 0.213 47.604 / 0.15);
    color: oklch(70.5% 0.213 47.604);
}
.greenBgclr{
    background:hsl(165 50% 28% / 0.15);
    color: hsl(165 50% 28%);
}

/* Treatments Section */
.treatments_outer {
	background: #f9f9f9;
	padding: 80px 0;
}

.treatments-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.treatment-card {
	background: white;
	padding: 20px 20px 20px 85px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}
.treatment-card i{
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 20px;
    background: hsl(25 60% 92%);
    color: #1a5f4f;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    text-align: center;
    line-height: 48px;
}
.treatment-card h4 {
    font-size: 18px;
    padding-bottom: 10px;
}
.treatment-card p {
	font-size: 14px;
}
.whyethical_Outer {
    padding: 80px 0;
    background: hsl(30deg 44.44% 96.47%);
}
.ethical_Inner{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.ethical_Left h2 {
    font-size: 36px;
    padding-bottom: 10px;
}
.ethical_Left p {
    padding-bottom: 20px;
}
.ethical_Left ul li{
	font-size: 16px;
	line-height: 35px;
}
.ethical_Left ul li i{
	display: inline-block;
	margin-right: 5px;
}
.ethical_Right {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.15) 0 10px 15px -3px;
}
.ethical_Right ul li{
	background: hsl(40 20% 98%);
	padding: 15px;
	border: hsl(165 20% 85%) solid 1px;
	border-radius: 10px;
	margin-bottom: 20px;
}
.ethical_Right ul li:last-child{
	margin-bottom: 0;
}
.ethical_Right ul li h6 {
    font-size: 18px;
}
.ethical_Right ul li span {
    font-size: 14px;
    line-height: 22px;
    display: block;
}
.expert_Outer {
    padding: 80px 0;
    background: linear-gradient(to bottom, rgb(249 249 249) 0%, rgb(229 219 213) 100%);
}
.expertList{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.expert_Bx {
    background: #fff;
    padding: 20px 20px 20px 170px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10px -3px;
    position: relative;
}
.expert_Bx i{
	position: absolute;
	left: 20px;
	top: 20px;
}
.expert_Bx i img{
	width: 128px;
	height: 128px;
	border: #ccc solid 4px;
	border-radius: 50%;
}
.expert_Bx h3 {
    font-size: 26px;
}
.expert_Bx span {
    display: block;
    color: #333;
}
.expert_Bx small {
    display: block;
    font-size: 14px;
    padding: 5px 0 10px 0;
}
.expert_Bx p {
    font-size: 15px;
    padding-bottom: 10px;
}
/* CTA Section */
.cta_Outer {
	padding: 80px 0;
	color: white;
	position: relative;
}
.cta_Outer:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background: #1a5f4ff2;
}
.cta-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 9;
}
.cta-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 50px;
}
.cta-text p {
    margin-bottom: 20px;
    color: hsl(40 20% 98%);
    font-size: 18px;
    line-height: 30px;
}
.cta-text ul {
    list-style: disc;
    margin-left: 20px;
}
.cta-text ul li {
    color: #fff;
    font-size: 18px;
    line-height: 38px;
}
.cta-form {
	background: white;
	padding: 25px 40px;
	border-radius: 10px;
}
.cta-form h3 {
    color: #1a5f4f;
    margin-bottom: 15px;
    font-size: 42px;
    text-align: center;
}
.form-group {
	margin-bottom: 20px;
}
.form-group label {
	display: block;
	color: #333;
	margin-bottom: 5px;
	font-size: 14px;
}
.form-group input {
	width: 100%;
	padding: 0 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	height: 45px;
}
.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	resize: none;
	height: 120px;
	font-family: "Inter", sans-serif;
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.btn-submit {
	width: 100%;
	padding: 15px;
	background: #1a5f4f;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background 0.3s;
}

.btn-submit:hover {
	background: #145042;
}

/* Footer */
footer {
	background: hsl(120deg 7.14% 94.51%);
	padding: 80px 0 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-Left {
	width: 32%;

}
.footLogo a {
    display: inline-block;
    line-height: 0;
	padding-bottom: 10px;
}
.footLogo a img {
    display: inline-block;
    max-width: 200px;
}
.footer-Left p {
	font-size: 15px;
	margin-bottom: 20px;
	line-height: 28px;
}
.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	width: 35px;
	height: 35px;
	background: #1a5f4f;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	transition: background 0.3s;
}
.social-links a:hover {
	background: #145042;
}
.footer-Right {
    width: 65%;
}
.footer-Right h4 {
    font-size: 22px;
    padding-bottom: 10px;
}
.footer_Location{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.foot_Item {
    background: #fff;
    padding: 15px 15px 15px 40px;
    border-radius: 10px;
	position: relative;
	color: hsl(165 50% 28%);
	border: #e5e5e5 solid 1px;
}
.foot_Item:hover{
	border: hsl(165 20% 40%) solid 1px;
	box-shadow: #7f918ca6 0 3px 6px -1px;
}
.foot_Item i{
	position: absolute;
	left: 15px;
	top: 20px;
}
.foot_Item h5{
	font-size: 16px;
	padding-bottom: 5px;
}
.foot_Item span {
    display: block;
    font-size: 13px;
    color: #333;
    padding-bottom: 10px;
}
.foot_Item small {
    display: block;
	font-size: 12px;
	padding-bottom: 10px;
}
.foot_Item > a{
	color: #333;
}
.foot_Item > a:hover{
	color: #1a5f4f;
	text-decoration: underline;
}
.footer-bottom {
	border-top: 1px solid #ddd;
	padding-top: 20px;
	text-align: center;
	color: #666;
	font-size: 14px;
	margin-top: 30px;
}


/*success popup*/
.overlay {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 999;
}
.sucess_overlay {
    background: rgba(0, 0, 0, 0.9);
}
.popupInn {
    max-width: 500px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}
.sucesspopInn {
    text-align: center;
    min-height: 360px;
    padding: 50px 20px;
}
.sucesspopInn i {
    display: block;
    max-width: 100px;
    margin: 0 auto 15px auto;
}
.popupInn h2 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
}
.sucesspopInn h2 {
    color: #11891b;
    font-size: 34px;
    padding-bottom: 10px;
}
.sucesspopInn p {
    font-size: 18px;
    padding-bottom: 20px;
}
.popClose {
    position: absolute;
    right: 10px;
    top: 10px;
}
.popClose.sucessClose {
    position: relative;
    left: 0;
    top: 0;
}
.sucesspopInn a {
    padding: 10px 20px;
    background: #0c7d2b;
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    width: auto;
    line-height: normal;
    height: auto;
    text-align: center;
}

a.closeModal {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    background: #e7e7e7;
    font-size: 20px;
    font-weight: 900;
    color: #000;
}

/*----------------Inner Pages----------------*/
.innerBannerBg:after{
	background: rgba(0, 0, 0, 0.5);
	content: '';
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}
.InnBan-content{
	text-align: center;
	position: relative;
	z-index: 9;
	color: #fff;
}
.subtitle {
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    background: #246b59cc;
    display: inline-block;
    padding: 0 10px;
    border-radius: 15px;
    line-height: 28px;
    border: #3b8f7acc solid 1px;
}
.InnBan-content h1{
	font-size: 60px;
	color: #fff;
	padding-bottom: 10px;
}
.InnBan-content p {
	font-size: 20px;
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.InnerBanBtns{
	text-align: center;
	display: block;
}
.InnerBanBtns a.consultBtns {
    background: #c7ab6b;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border: #fff solid 1px;
	margin-right: 10px;
}
.InnerBanBtns a.treatmentBtns{
	background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: #fff solid 1px;
	margin-right: 10px;
}
.InnerBanBtns a.treatmentBtns:hover{
	background: #fff;
	color: #000;
}
.innerLocation_Outer{
	padding: 80px 0;
}
.InnerLocatInn{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.location-content h2{
	font-size: 32px;
	padding-bottom: 10px;
}
.location-content > p{
	color: #527a70;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 30px;
}
.addInfo_Outer{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.info-box {
    background:#e8e6e34d;
    padding: 20px 20px 20px 80px;
    border-radius: 8px;
    margin-bottom: 30px;
	border: #d1e0dd80 solid 1px;
	position: relative;
}
.info-box > i{
	width: 48px;
	height: 48px;
	border-radius: 6px;
	background: #c7ab6b1a;
	font-size: 20px;
	color: #246b59;
	position: absolute;
    left: 20px;
    top: 20px;
	text-align: center;
	line-height: 48px;
}

.info-box h4 {
    color: #2d6b5f;
    margin-bottom: 0;
    font-size: 20px;
}
.info-box small {
	display: block;
    color: #333;
    font-size: 14px;
	padding-top: 10px;
}
.location-content p a {
    color: #333;
}
.InnerLocatMap{
	border-radius: 10px;
	border: #d1e0dd solid 1px;
}
.InnerLocatMap iframe {
    border-radius: 10px;
}
.about-section {
    background: #f7e9de29;
	padding: 80px 0;
	border-top:#d1e0dd solid 1px;
}
.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
	align-items: flex-start;
}
.innAbout_Left small {
    display: block;
    font-size: 16px;
    font-weight: 600;
	color: #c7ab6b;
}
.innAbout_Left h2 {
    font-size: 38px;
    line-height: 48px;
    padding-bottom: 20px;
}
.innAbout_Left p {
    font-size: 18px;
    line-height: 30px;
    padding-bottom: 20px;
}
.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0px 0 0px 30px;
    position: relative;
    color: #333;
	font-size: 18px;
	line-height: 40px;
}

.feature-list li i {
    position: absolute;
    left: 0;
	top: 0;
    color: #c7ab6b;
    font-weight: bold;
	line-height: 40px;
}
.innAbout_Right {
    box-shadow: #0000001a 0 20px 25px -5px;
    border: #246b591a solid 1px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
}
.innAbout_Right h3{
	font-size: 26px;
	text-align: center;
	padding-bottom: 20px;
}
.treatment-box {
    background: #246b590d;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
	border: #246b591a solid 1px;
}

.treatment-box h4 {
    color: #2d6b5f;
	font-size: 18px;
}

.treatment-box p {
    font-size: 14px;
}
a.consultSpecBtn {
    display: block;
    background: #246B58;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    padding: 10px 0px;
    border-radius: 6px;
    color: #fff;
}
a.consultSpecBtn:hover {
    background: #000;
}


