@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap");
* {
	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
}

body {
	overflow-x: hidden;
	font-family: "Inter", sans-serif;
}
:root {
	--white: #fff;
	--headercolor: #22252a;
	--bgcolor: #24282c;
	--paracolor: #282c30;
	--red: #be1a2d;
}
img {
	width: 100%;
	height: auto;
}

a,
ol,
ul,
li,
p {
	list-style-type: none;
	text-decoration: none;
	margin: 0px;
}
a {
	display: inline-block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px;
	padding: 0px;
}

ul {
	padding: unset;
}
/* FONT FAMILY CSS STARTS */
@font-face {
	font-family: "millerbannerroman";
	src: url("../fonts/millerbannerroman.woff2") format("woff2"),
		url("../fonts/millerbannerroman.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
/* FONT FAMILY CSS ENDS */
/* HEADER CSS STARTS */
header {
	width: 100%;
	max-width: 1557px;
	margin: 0 auto;
	position: absolute;
	background-color: var(--white);
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	left: 50%;
	transform: translateX(-50%);
	padding: 13px 53px 36px 43px;
	z-index:1;
}
header nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header nav .header_link_wrap {
	display: flex;
	flex-direction: column;
	gap: 44px;
	position: relative;
}
header nav .header_logo {
	width: 100%;
	max-width: 196px;
}
header nav .header_top_links {
	position: relative;
}
header nav .header_link_wrap:after {
	content: "";
	background-image: url(../images/header_line.png);
	width: 110%;
	position: absolute;
	height: 2px;
	left: -54px;
	top: 58%;
	transform: translateY(-50%);
}
header nav .header_top_links .header_adress {
	display: flex;
	gap: 16px;
	align-items: center;
}
header nav .header_top_links .header_adress p {
	font-size: 16px;
	color: var(--bgcolor);
	font-weight: 400;
	font-family: "millerbannerroman";
}
header nav .header_top_links .header_adress p span {
	margin: 0 22px;
}
header nav .header_top_links .header_adress a {
	color: var(--red);
	font-weight: bold;
	font-size: 13px;
}
header nav .header_top_links .header_adress a i {
	font-size: 9px;
	border: 1px solid #ecbbc0;
	border-radius: 50%;
	padding: 5px;
	margin-right: 8px;
}
header nav .header_top_links .header_adress a:nth-child(3) {
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 17px 34px;
	background-color: var(--red);
	color: var(--white);
	border-radius: 50px;
}
header nav .header_bottom_links ul {
	display: flex;
	justify-content: space-between;
}
header nav .header_bottom_links ul li a {
	font-size: 14px;
	line-height: 1.2;
	text-transform: uppercase;
	font-weight: bold;
	color: var(--bgcolor);
}
/* HEADER CSS ENDS */
.mission h2{
	text-transform: uppercase;
}
/* BANNER CSS STARTS */
section.banner {
	background-image: url(../images/home_banner_bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 1187px;
}
#home_banner {
	display: flex;
	justify-content: center;
	align-items: center;
}
#home_banner .banner_outterwrap .banner_content {
	padding-top: 210px;
}
section.banner .banner_outterwrap .banner_content {
	text-align: center;
	padding-top: 380px;
}
section.banner .banner_outterwrap .banner_content h4 {
	font-size: 21px;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 45px;
	font-weight: bold;
}
section.banner .banner_outterwrap .banner_content h4 span {
	margin: 0 40px;
}
section.banner .banner_outterwrap .banner_content h1 {
	font-size: 75px;
	line-height: 1.2;
	color: var(--white);
	margin-bottom: 45px;
	font-weight: 200;
}
/* BANNER CSS ENDS */
/* MISSION STATMENT CSS STARTS */
section.mission {
	padding: 0 35px;
	margin-top: -310px;
}
section.mission .mission_outterwrap {
	background-color: var(--bgcolor);
	border-radius: 15px;
	padding: 102px 142px 102px 170px;
}
section.mission .mission_outterwrap .mission_content_wrap {
	display: flex;
	gap: 110px;
}
section.mission
.mission_outterwrap
.mission_content_wrap
.mssion_heading_content,
section.mission .mission_outterwrap .mission_content_wrap .mssion_para_content {
	width: 50%;
}
section.mission
.mission_outterwrap
.mission_content_wrap
.mssion_heading_content
h2 {
	font-size: 37px;
	font-weight: 200;
	line-height: 54px;
	color: var(--white);
	text-transform:capitalize;
}
section.mission
.mission_outterwrap
.mission_content_wrap
.mssion_para_content
p {
	font-size: 17px;
	font-weight: 200;
	line-height: 26px;
	color: #c0c7cd;
	margin-bottom: 37px;
}
section.mission
.mission_outterwrap
.mission_content_wrap
.mssion_para_content
li {
	font-size: 17px;
	font-weight: 200;
	line-height: 34px;
	color: #c0c7cd;
	list-style-type: disc;
}
section.mission
.mission_outterwrap
.mission_content_wrap
.mssion_para_content
p:last-child {
	margin-bottom: 0;
}
/* MISSION STATMENT CSS ENDS */
/* AWARDS SEC STARTS */
section.awards {
	padding: 35px;
}
section.awards .awards_sec_outterwrap {
	position: relative;
	padding: 190px 150px 110px 170px;
	background-color: #f3f3f3;
	border-radius: 15px;
}
section.awards .awards_sec_outterwrap .awards_ribbon {
	position: absolute;
	top: 33px;
	left: -10px;
	display: flex;
	background-color: var(--red);
	align-items: center;
	gap: 23px;
	padding: 20px 30px 20px 180px;
	border-radius: 15px;
}
section.awards .awards_sec_outterwrap .awards_ribbon .award_ribbon_image {
	width: 42px;
}
section.awards .awards_sec_outterwrap .awards_ribbon .award_ribbon_Content p {
	font-size: 17px;
	font-weight: bold;
	color: var(--white);
	letter-spacing: 2.5px;
}
section.awards .awards_sec_outterwrap h2 {
	font-size: 75px;
	color: #000;
	font-weight: 200;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 30px;
}
section.awards .awards_sec_outterwrap .awrads_innerwrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
section.awards .awards_sec_outterwrap .awrads_innerwrap .wards_main_block {
	width: 47%;
}
section.awards
.awards_sec_outterwrap
.awrads_innerwrap
.wards_main_block
.awards_main_block_inner {
	margin-bottom: 0px;
}
section.awards
.awards_sec_outterwrap
.awrads_innerwrap
.wards_main_block
.awards_main_block_inner
.awards_main_block_inner_image {
	display: flex;
	gap: 20px;
	margin-bottom: 52px;
	height: 115px;
	align-items: flex-end;
}
section.awards
.awards_sec_outterwrap
.awrads_innerwrap
.wards_main_block
.awards_main_block_inner
.awards_main_block_inner_image
img {
	width: 100%;
	max-width: 260px;
	object-fit: contain;
}
.w-130 {
	width: 100% !important;
	max-width: 75px !important;
}
.mb_0 {
	margin-bottom: 0 !important;
}
section.awards
.awards_sec_outterwrap
.awrads_innerwrap
.wards_main_block
.awards_main_block_inner
.awards_main_block_inner_content
h4 {
	font-size: 21px;
	line-height: 1.2;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 45px;
	color: var(--bgcolor);
}
section.awards
.awards_sec_outterwrap
.awrads_innerwrap
.wards_main_block
.awards_main_block_inner
.awards_main_block_inner_content
p {
	font-size: 17px;
	line-height: 26px;
	font-weight: 200;
	color: var(--bgcolor);
	margin-bottom: 41px;
}
section.awards
.awards_sec_outterwrap
.awrads_innerwrap
.wards_main_block
.awards_main_block_inner
.awards_main_block_inner_content
p
span {
	font-weight: 500;
}
section.awards
.awards_sec_outterwrap
.awrads_innerwrap
.wards_main_block
.awards_main_block_inner
.awards_main_block_inner_content
p:last-child {
	margin-bottom: 0;
}
/* AWARDS SEC ENDS */
/* TESTIMONIAL SEC STARTS */
section.testimonial {
	padding: 0 35px;
	overflow: hidden;
}
section.testimonial .testimonial_outterwrap {
	background-color: var(--red);
	padding: 97px 0 112px 145px;
	border-radius: 15px;
	position: relative;
}
section.testimonial .testimonial_outterwrap .testimonial_innerwrap {
	display: flex;
	gap: 150px;
}
section.testimonial
.testimonial_outterwrap
.testimonial_innerwrap
.testimonial_heading {
	width: 100%;
	max-width: 335px;
}
section.testimonial
.testimonial_outterwrap
.testimonial_innerwrap
.testimonial_heading
h2 {
	font-size: 62px;
	line-height: 1.2;
	color: var(--white);
	font-weight: 200;
}
.testimonial_slider_main {
	width: 80%;
}
section.testimonial
.testimonial_outterwrap
.testimonial_innerwrap
.testimonial_slider_block {
	margin: 0 15px;
}
section.testimonial
.testimonial_outterwrap
.testimonial_innerwrap
.testimonial_slider_block
p {
	padding: 70px 40px 53px 53px;
	background-color: #c91b2f;
	border-radius: 15px;
	margin-bottom: 20px;
	font-size: 17px;
	color: var(--white);
	font-weight: 200;
	height: 220px;
	overflow:auto;
}
section.testimonial
.testimonial_outterwrap
.testimonial_innerwrap
.testimonial_slider_block
h4 {
	padding: 38px 57px;
	background-color: #c91b2f;
	border-radius: 15px;
	color: var(--white);
	font-size: 21px;
}
.slick-list {
	padding: 0 20% 0 0 !important;
}
section.testimonial .testimonial_outterwrap .slick-prev:before {
	content: "◀";
	color: red;
	margin-right: 5px;
}
section.testimonial .testimonial_outterwrap .slick-next:before {
	content: "▶";
	color: red;
	margin-left: 5px;
}
section.testimonial .testimonial_outterwrap .slick-prev,
section.testimonial .testimonial_outterwrap .slick-next {
	width: 40px;
	height: 40px;
	background-color: #fff !important;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}
section.testimonial .testimonial_outterwrap .slick-prev {
	left: -44%;
}
section.testimonial .testimonial_outterwrap .slick-next {
	right: 14%;
}
/* TESTIMONIAL SEC ENDS */
/* PATIENT GENERAL INFORMATION PAGE CSS STARTS */
/* BANNER CSS STARTS */
#genral_patient_info_banner {
	background-image: url(../images/general_patient_bg.png);
}
/* BANNER CSS ENDS */
/* MISSION CSS STARTS  */
#patient_information_mission {
	margin-top: -280px;
}
#patient_information_mission .mssion_heading_content {
	width: 37%;
}
#patient_information_mission .mssion_heading_content h2,
#whatbring_statement
.mission_outterwrap
.mission_content_wrap
.mssion_heading_content
h2,
#understandbill_statement
.mission_outterwrap
.mission_content_wrap
.mssion_heading_content
h2,
#priorsurgery_information
.mission_outterwrap
.mission_content_wrap
.mssion_heading_content
h2,
#pedriatic_mission
.mission_outterwrap
.mission_content_wrap
.mssion_heading_content
h2 {
	font-size: 62px;
	line-height: 1.2;
	margin-bottom: 60px;
}
section.mission .mssion_heading_content p {
	font-size: 17px;
	font-weight: 200;
	line-height: 26px;
	color: #c0c7cd;
}
#patient_information_mission .mssion_para_content {
	width: 52%;
}
#patient_information_mission p a {
	color: var(--white);
	font-weight: 400;
}
#patient_information_mission .mission_outterwrap .mission_content_wrap {
	justify-content: space-between;
}
/* MISSION CSS ENDS */
/* PATIENT GENERAL INFORMATION PAGE CSS ENDS */
/* AFTER SURGERY PAGE CSS STARTS */
/* BANNER CSS STARTS */
#after_surgery {
	background-image: url(../images/after_surgery_banner_bg.png);
}
/* BANNER CSS ENDS */
/* AFTER SURGERY PAGE CSS ENDS */
/* NERO AND PAIN page CSS STARTS */
/* BANNER CSS STARTS */
#neuroandpain_banner {
	background-image: url(../images/neuroandpain_banner_bg.png);
}
/* BANNER CSS ENDS */
/* NEUROPAIN CSS STARTS */
section.neuropain {
	padding: 0 35px;
}
section.neuropain .neuropain_outterwrap {
	padding: 70px 70px 80px 73px;
	background-color: #f3f3f3;
	border-radius: 20px;
	margin-top: -285px;
}
section.neuropain .neuropain_outterwrap .neuropain_headeing_wrap {
	margin-bottom: 112px;
}
section.neuropain .neuropain_outterwrap .neuropain_headeing_wrap h2 {
	font-size: 62px;
	color: var(--bgcolor);
	font-weight: 200;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 50px;
}
section.neuropain .neuropain_outterwrap .neuropain_headeing_wrap p {
	font-size: 17px;
	color: var(--bgcolor);
	font-weight: 200;
	line-height: 26px;
	text-align: center;
	margin-bottom: 37px;
}
section.neuropain .neuropain_outterwrap .neuropain_headeing_wrap p:last-child {
	margin-bottom: 0;
}
section.neuropain .neuropain_outterwrap .neuropain_doc_wrap_main {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	column-gap: 10px;
}
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block {
	display: flex;
	gap: 54px;
	width: 49.5%;
}
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.neuropain_doc_image
img {
	width: 169px;
	height: 169px;
	border-radius: 50%;
}
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.nuero_doc_detail
.neuropain_doc_heading {
	margin-bottom: 36px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.nuero_doc_detail
.neuropain_doc_heading
h4 {
	font-size: 22px;
	color: var(--bgcolor);
	font-weight: 200;
}
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.nuero_doc_detail
.neuropain_doc_heading
img {
	width: 90px;
	height: 20px;
	margin-left: 20px;
}
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.nuero_doc_detail
.neuropain_doc_adress {
	display: flex;
	gap: 26px;
	margin-bottom: 10px;
}
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.nuero_doc_detail
.neuropain_doc_adress
.neuro_adress_inner
P {
	font-size: 17px;
	line-height: 26px;
	color: var(--bgcolor);
	font-weight: 200;
}
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.nuero_doc_detail
.neuropain_doc_adress
.neuro_adress_inner
P
span {
	margin: 0 30px;
	font-weight:200;
}
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.neuropain_doc_contact
a {
	font-size: 17px;
	line-height: 26px;
	color: var(--bgcolor);
	font-weight: 200;
	margin-bottom: 5px;
}
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.neuropain_doc_contact
a
i {
	font-size: 12px;
	border: 1px solid var(--bgcolor);
	border-radius: 50%;
	padding: 5px;
	margin-right: 8px;
}
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.neuropain_doc_contact
span {
	margin: 0 30px;
	font-weight:200;
}
/* NEUROPAIN CSS ENDS */
/* NERO AND PAIN page CSS ENDS */
/* COLORECTAL PAGE CSS STARTS */
/* BANNER CSS STARTS */
#colorectal_banner {
	background-image: url(../images/COLORECTAL_BANNER_BG.png);
}
/* BANNER CSS ENDS */
/* COLORECTAL CSS STARTS */
#colorectal_sec .neuropain_outterwrap .neuropain_doc_wrap_main {
	justify-content: flex-start;
	width: 100%;
	max-width: 80%;
	margin: 0 auto;
}
#colorectal_sec
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block {
	width: 100%;
	max-width: 49%;
}
/* COLORECTAL CSS ENDS */
/* COLORECTAL PAGE CSS ENDS */
/* ANESTHESIA PAGE CSS STARTS */
/* BANNER CSS STARTS */
#anesthesia_banner {
	background-image: url(../images/anesthsia_banner_bg.png);
}
/* BANNER CSS ENDS */
/* ANESTHSIA CSS STARTS */
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.nuero_doc_detail
.neuropain_doc_heading
P {
	font-size: 17px;
	line-height: 26px;
	color: var(--bgcolor);
	font-weight: 200;
}
#anesthesia_sec .neuropain_outterwrap .neuropain_doc_wrap_main {
	justify-content: center;
}
/* ANESTHSIA CSS ENDS */
/* ANESTHESIA PAGE CSS ENDS */
/* ORTHOPEDIC BANNER CSS STARTS */
#orthopedic_banner {
	background-image: url(../images/orthopedic_banner_bg.png);
}
/* ORTHOPEDIC BANNER CSS ENDS */
/* Ophthalmology BANNER CSS STARTS */
#ophthalmology_banner {
	background-image: url(../images/ophthalmology_banner_bg.png);
}

/* Ophthalmology BANNER CSS ENDS */
/* otolaryngology BANNER CSS ENDS */
#otolaryngology_banner {
	background-image: url(../images/otolaryngology_banner_bg.png);
}
/* otolaryngology BANNER CSS ENDS */
/* otolaryngology pain CSS STARTS */
#otolaryngology_pain .neuropain_outterwrap .neuropain_doc_wrap_main {
	flex-direction: column;
	align-items: center;
}
#otolaryngology_pain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block {
	display: flex;
	gap: 54px;
	width: 70%;
}
#otolaryngology_pain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.nuero_doc_detail
.neuropain_doc_adress {
	gap: 106px;
}
section.neuropain
.neuropain_outterwrap
.neuropain_doc_wrap_main
.neuropain_doc_block
.nuero_doc_detail
.neuropain_doc_adress
.neuro_adress_inner
h6 {
	font-size: 16px;
	line-height: 1.2;
	text-transform: capitalize;
	margin-bottom: 2px;
}
/* otolaryngology pain CSS ENDS */
/* WHAT TO BRING BANNER STARTS */
#whatbring_banner {
	background-image: url(../images/whatbring_banner_bg.png);
}
/* WHAT TO BRING BANNER ENDS */
/* WHAT TO BRING MISSION STARTS */
#whatbring_statement
.mission_outterwrap
.mission_content_wrap
.mssion_heading_content
h2 {
	font-size: 62px;
	line-height: 1.2;
}
/* WHAT TO BRING MISSION ENDS */
/* UNDERSTAND YOUR BILL BANNER STARTS */
#understadnbill_banner {
	background-image: url(../images/UNDERSTANDBILL_BANNER_BG.png);
}
/* UNDERSTAND YOUR BILL BANNER ENDS */
/* UNDERSTAND YOUR BILL  STARTS */
#understandbill_statement .mssion_heading_content h6 {
	font-size: 21px;
	line-height: 31px;
	color: var(--white);
	letter-spacing: 1.5px;
	font-weight: bold;
	margin-bottom: 30px;
	text-transform:uppercase;
}
#understandbill_statement .mssion_heading_content li {
	font-size: 15px;
	line-height: 31px;
	color: var(--white);
	letter-spacing: 1.5px;
	font-weight: bold;
	text-transform:uppercase;
}
/* UNDERSTAND YOUR BILL  ENDS */
/* PRIOR SURGERY BANNER CSS STARTS */
#priorsurgery_banner {
	background-image: url(../images/priorsurgery_banner_bg.png);
}
/* PRIOR SURGERY BANNER CSS ENDS */
/* PRIOR SURGERY CSS STARTS */
#priorsurgery_information .mssion_heading_content p span,
#priorsurgery_information .mssion_para_content p span {
	font-weight: 400;
	color: var(--white);
	text-transform: uppercase;
}
#priorsurgery_information .mssion_heading_content {
	width: 40%;
}
#priorsurgery_information .mssion_para_content {
	width: 53%;
}
/* PRIOR SURGERY CSS ENDS */
/* UROLOGY BANNER CSS STARTS */
#urology_banner {
	background-image: url(../images/urology_banner_bg.png);
}
/* UROLOGY BANNER CSS ENDS */
/* PATIENT RIGHT PAGE STARTS */
/* PATIENT RIGHT BANNER STARTS */
#patientright_banner {
	background-image: url(../images/patient_right_banner_bg.png);
	height: 100vh;
}
/* PATIENT RIGHT BANNER STARTS */
/* PATIENT SEC CSS STARTS */
section.patient_right {
}
section.patient_right .patient_right_outterwrap {
	padding: 127px 220px 162px 230px;
	background-color: #ffffff;
}
section.patient_right .patient_right_outterwrap h2 {
	font-size: 62px;
	line-height: 1.2;
	color: #000000;
	font-weight: 200;
}
section.patient_right .patient_right_outterwrap h3 {
	font-size: 19px;
	line-height: 1.2;
	color: var(--bgcolor);
	font-weight: bold;
	margin: 50px 0;
	text-transform: uppercase;
}
section.patient_right .patient_right_outterwrap .patient_right_innerwrap h4 {
	font-size: 17px;
	line-height: 26px;
	font-weight: bold;
	color: var(--bgcolor);
	margin-bottom: 40px;
	text-transform: uppercase;
}
section.patient_right .patient_right_outterwrap .patient_right_innerwrap {
	padding-left: 35px;
}
section.patient_right .patient_right_outterwrap .patient_right_innerwrap ul {
	padding-left: 17px;
}
section.patient_right .patient_right_outterwrap .patient_right_innerwrap ul li {
	font-size: 17px;
	line-height: 26px;
	font-weight: 200;
	color: var(--bgcolor);
	list-style-type: disc;
	margin-bottom: 40px;
}
section.patient_right .patient_right_outterwrap .patient_right_innerwrap p,
section.patient_right .patient_right_outterwrap .patient_right_innerwrap p a {
	font-size: 17px;
	line-height: 26px;
	font-weight: 200;
	color: var(--bgcolor);
	margin-bottom: 40px;
}

section.patient_right .patient_right_outterwrap .patient_right_innerwrap p a {
	margin-bottom: 0;
}
section.patient_right .patient_right_outterwrap .patient_right_innerwrap p b {
	font-weight: bold;
}
section.patient_right
.patient_right_outterwrap
.patient_right_innerwrap
p
span {
	margin: 0 25px;
}
section.patient_right
.patient_right_outterwrap
.patient_right_innerwrap
.disclosure_list {
	columns: 5;
	padding: 0;
	margin-bottom: 60px;
}
section.patient_right
.patient_right_outterwrap
.patient_right_innerwrap
.disclosure_list
li {
	list-style-type: none;
	margin-bottom: 0px;
}
/* PATIENT SEC CSS ENDS */
/* PATIENT RIGHT PAGE ENDS */
/* Pediatric PAGE CSS STARTS */
/* Pediatric BANNER CSS STARTS */
#pedriatic_banner {
	background-image: url(../images/pedriatic_banner_bg.png);
}
#pedriatic_mission .mission_outterwrap {
	padding: 106px 150px 106px 195px;
}
#pedriatic_mission {
	margin-top: -150px;
}
#pedriatic_mission
.mission_outterwrap
.mission_content_wrap
.mssion_heading_content
h2 {
	margin-bottom: 0;
}
/* Pediatric BANNER CSS ENDS */
/* PEDRIATIC ANESTHESIA CSS STARTS */
section.pedriatic_anesthesia {
}
section.pedriatic_anesthesia .pedriatic_anesthesia_outterwrap {
	padding: 130px 155px 140px 225px;
}
section.pedriatic_anesthesia .pedriatic_anesthesia_outterwrap p {
	font-size: 17px;
	line-height: 26px;
	color: var(--bgcolor);
	font-weight: 200;
}
section.pedriatic_anesthesia
.pedriatic_anesthesia_outterwrap
.pedriatic_anesthesia_innerwrap {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}
section.pedriatic_anesthesia
.pedriatic_anesthesia_outterwrap
.pedriatic_anesthesia_innerwrap
.pedriatic_anesthesia_content {
	width: 100%;
	max-width: 75%;
}
section.pedriatic_anesthesia
.pedriatic_anesthesia_outterwrap
.pedriatic_anesthesia_innerwrap
.pedriatic_anesthesia_content
h2 {
	font-size: 62px;
	line-height: 1.2;
	color: var(--bgcolor);
	font-weight: 200;
	margin-bottom: 55px;
}
section.pedriatic_anesthesia
.pedriatic_anesthesia_outterwrap
.pedriatic_anesthesia_innerwrap
.pedriatic_anesthesia_image {
	width: 100%;
	max-width: 25%;
}
/* PEDRIATIC ANESTHESIA CSS ENDS */
/* SURGERY CSS STARTS */
section.surgery {
}
section.surgery .surgery_outterwrap {
	display: flex;
}
section.surgery .surgery_outterwrap .surgery_block_image,
section.surgery .surgery_outterwrap .surgery_block_content_main {
	width: 100%;
	max-width: 50%;
}
section.surgery .surgery_outterwrap .surgery_block_image img {
	height: 100%;
}
section.surgery .surgery_outterwrap .surgery_block_content_main {
	padding: 120px 125px;
	padding-bottom: 0;
}
section.surgery
.surgery_outterwrap
.surgery_block_content_main
.surgery_block_content {
	height: 660px;
	overflow: auto;
	padding-right: 10px;
}
section.surgery
.surgery_outterwrap
.surgery_block_content_main
.surgery_block_content
h3 {
	font-size: 62px;
	line-height: 1.2;
	text-transform: capitalize;
	color: #ffffff;
	font-weight: 200;
	margin-bottom: 50px;
}
section.surgery
.surgery_outterwrap
.surgery_block_content_main
.surgery_block_content
p {
	font-size: 17px;
	line-height: 26px;
	color: #cad4de;
	font-weight: 200;
	margin-bottom: 35px;
}
section.surgery
.surgery_outterwrap
.surgery_block_content_main
.surgery_block_content
h4 {
	font-size: 21px;
	line-height: 1.2;
	color: #ffffff;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 45px;
}
section.surgery
.surgery_outterwrap
.surgery_block_content_main
.surgery_block_content
h5 {
	font-size: 15px;
	line-height: 1.2;
	color: var(--bgcolor);
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 45px;
}
section.surgery
.surgery_outterwrap
.surgery_block_content_main
.surgery_block_content
ul {
	margin-bottom: 45px;
	padding-left: 20px;
}
section.surgery
.surgery_outterwrap
.surgery_block_content_main
.surgery_block_content
ul
li {
	font-size: 17px;
	line-height: 26px;
	color: #cad4de;
	font-weight: 200;
	list-style-type: disc;
}
.surgery_color_1 {
	background-color: #f1f5f7;
}
.surgery_color_1 h3,
.surgery_color_1 p,
.surgery_color_1 li,
.surgery_color_1 h4 {
	color: var(--bgcolor) !important;
}
.surgery_color_2 {
	background-color: #273441;
}
.surgery_color_3 {
	background-color: var(--red);
}
/* SCROLL BAR CSS */
/* width */
.surgery_block_content::-webkit-scrollbar {
	width: 5px;
}

/* Track */
.surgery_block_content::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey;
	border-radius: 10px;
}

/* Handle */
.surgery_block_content::-webkit-scrollbar-thumb {
	background: #777b82;
	border-radius: 10px;
}

/* Handle on hover */
.surgery_block_content::-webkit-scrollbar-thumb:hover {
	background: #b30000;
}
/* SCROLL BAR CSS */
/* SURGERY CSS ENDS */
/* QUESTION CSS STARTS */
section.questions {
	padding: 140px 190px 140px 220px;
}
section.questions .question_outterwrap {
}
section.questions .question_outterwrap h2 {
	font-size: 62px;
	line-height: 1.2;
	text-transform: capitalize;
	font-weight: 200;
	color: var(--bgcolor);
	margin-bottom: 70px;
}
/*-------------------------------------*/

section.questions .accordion__item {
	margin-bottom: 40px;
	border-bottom: 1px solid #e0e4e8;
	padding-bottom: 30px;
}
section.questions .accordion__item .accordion__title {
	position: relative;
	font-size: 28px;
	text-decoration: none;
	border-radius: 3px;
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
	cursor: pointer;
	padding: 0;
}
section.questions .accordion__item .accordion__title .accordion__title-text h3 {
	font-size: 30px;
	line-height: 1.2;
	color: var(--bgcolor);
	font-weight: 200;
}
section.questions .accordion__item .accordion__title:hover {
	transition: all 0.5s ease-out;
}
section.questions .accordion__item .accordion__title {
	display: flex;
	justify-content: space-between;
}
section.questions .accordion__item .accordion__title .accordion__arrow {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 20px;
	font-weight: 700;
	margin-right: 5px;
	background-color: #f1f5f7;
	border-radius: 50%;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	margin: 0;
	padding: 0;
}
section.questions
.accordion__item
.accordion__title
.accordion__arrow.accordion__rotate {
	background-color: var(--bgcolor);
}
section.questions .accordion__item .accordion__content {
	margin-bottom: 2px;
	display: none;
	padding: 30px 0 0 0;
}
section.questions .accordion__item .accordion__content p,
section.questions .accordion__item .accordion__content ul li{
	font-size: 17px;
	line-height: 26px;
	color: var(--bgcolor);
	font-weight: 200;
}
section.questions .accordion__item .accordion__title .accordion__arrow {
	position: relative;
}
section.questions .accordion__item .accordion__title .accordion__arrow::before {
	content: "";
	border: 1px solid var(--bgcolor);
	display: block;
	width: 11px;
	height: 2px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}
section.questions .accordion__item .accordion__title .accordion__arrow::after {
	content: "";
	border: 1px solid var(--bgcolor);
	display: block;
	width: 2px;
	height: 11px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(0);
	transition: all 0.4s ease;
	position: absolute;
}
section.questions .accordion__item .accordion__arrow.accordion__rotate::after {
	border: 1px solid var(--white);
	transform: translate(-50%, -50%) rotate(90deg);
}
/*-------------------------------------*/
/* QUESTION CSS ENDS */
/* Pediatric PAGE CSS ENDS */
/* CONTACT CSS STARTS */
section.contact {
}
section.contact .contact_sec_outterwrap {
	display: flex;
	background-color: var(--bgcolor);
}
section.contact .contact_sec_outterwrap .contact_map_block iframe {
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 973px;
}
section.contact .contact_sec_outterwrap .contact_map_block,
section.contact .contact_sec_outterwrap .contact_adress_block_main {
	width: 100%;
	max-width: 50%;
}
section.contact .contact_sec_outterwrap .contact_adress_block_main {
	padding: 280px 225px 0 156px;
}
section.contact .contact_sec_outterwrap .contact_adress_block_main h2 {
	font-size: 53px;
	line-height: 1.2;
	text-transform: capitalize;
	font-weight: 200;
	color: var(--white);
	margin-bottom: 55px;
}
section.contact
.contact_sec_outterwrap
.contact_adress_block_main
.contact_adress_block {
	border-bottom: 1px solid #636668;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
section.contact
.contact_sec_outterwrap
.contact_adress_block_main
.contact_adress_block
ul
li {
	display: flex;
	justify-content: space-between;
}
section.contact
.contact_sec_outterwrap
.contact_adress_block_main
.contact_adress_block
ul
li {
	line-height: 36px;
	color: var(--white);
}
section.contact
.contact_sec_outterwrap
.contact_adress_block_main
.contact_adress_block
ul
li
p {
	font-size: 21px;
	font-family: "millerbannerroman";
	width:340px;
}
section.contact
.contact_sec_outterwrap
.contact_adress_block_main
.contact_adress_block:nth-child(3)
ul
li
p {
	font-family: "Inter", sans-serif;
}
section.contact
.contact_sec_outterwrap
.contact_adress_block_main
.contact_adress_block:nth-child(3) {
	border: unset;
}
section.contact
.contact_sec_outterwrap
.contact_adress_block_main
.contact_adress_block
ul
li
a {
	font-size: 20px;
	font-weight: bold;
	color: var(--white);
	display: flex;
	align-items: center;
	line-height: 48px;
	gap: 10px;
}
section.contact
.contact_sec_outterwrap
.contact_adress_block_main
.contact_adress_block
ul
li
a
i {
	border: 1px solid var(--white);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
}
section.contact .contact_sec_outterwrap .contact_adress_block_main .contact_adress_block ul li a span {
	width: 163px;
}
/* CONTACT CSS ENDS */
/* WHY PAGE CSS STARTS */
#why_banner {
	background-image: url(../images/why_banner_bg.png);
	height: auto;
	background-position: top;
}
#why_banner .banner_outterwrap .banner_content {
	padding-top: 550px;
	padding-bottom: 110px;
}
section.benefits {
	padding: 100px 0;
	background-color: #f3f3f3;
}
section.benefits .benefits_sec_outterwrap {
	width: 100%;
	max-width: 1485px;
	margin: 0 auto;
}
section.benefits .benefits_sec_outterwrap h2 {
	font-size: 51px;
	line-height: 63px;
	font-weight: 200;
	color: var(--bgcolor);
	margin-bottom: 126px;
	text-align: center;
}
section.benefits .benefits_sec_outterwrap .benefits_block_main_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	row-gap: 75px;
	justify-content: center;
}
section.benefits
.benefits_sec_outterwrap
.benefits_block_main_wrap
.benefits_block {
	width: 22.7%;
	text-align: center;
}
section.benefits
.benefits_sec_outterwrap
.benefits_block_main_wrap
.benefits_block
.benefits_block_image {
	margin-bottom: -50px;
}
section.benefits
.benefits_sec_outterwrap
.benefits_block_main_wrap
.benefits_block
.benefits_block_image
img {
	border-radius: 50%;
	width: 230px;
	height: 230px;
	margin: 0 auto;
}
section.benefits
.benefits_sec_outterwrap
.benefits_block_main_wrap
.benefits_block
.benefits_block_content
h4 {
	font-size: 21px;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--bgcolor);
	font-weight: bold;
	margin-bottom: 25px;
}
section.benefits
.benefits_sec_outterwrap
.benefits_block_main_wrap
.benefits_block
.benefits_block_content
p {
	font-size: 17px;
	line-height: 26px;
	font-weight: 200;
	color: var(--bgcolor);
}
/* WHY PAGE CSS ENDS */
/* FOOTER CSS STARTS */
footer {
	padding: 35px;
}
footer .footer_outterwrap {
	background-color: var(--bgcolor);
	border-radius: 15px;
	padding: 80px 90px 33px 90px;
}
footer nav {
	display: flex;
	justify-content: space-between;
	margin-bottom: 17px;
}
footer nav .footer_logo {
	width: 100%;
	max-width: 156px;
}
footer .footer_outterwrap nav .footer_links_main_wrap {
	display: flex;
	width: 1060px;
	gap: 40px;
}
footer .footer_outterwrap nav .footer_links_main_wrap .footer_links {
	width: 119px;
}
footer .footer_outterwrap nav .footer_links_main_wrap .footer_links ul li a {
	font-size: 14px;
	color: var(--white);
	font-weight: bold;
	margin-bottom: 20px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
footer
.footer_outterwrap
nav
.footer_links_main_wrap
.footer_links
ul
li:last-child
a {
	margin-bottom: 0;
}
footer
.footer_outterwrap
nav
.footer_links_main_wrap
.patient_information_wrap {
	display: flex;
	width: 900px;
	gap: 30px;
}
footer
.footer_outterwrap
nav
.footer_links_main_wrap
.patient_information_wrap
.patient_information_block {
	width: 355px;
}
footer
.footer_outterwrap
nav
.footer_links_main_wrap
.patient_information_wrap
.patient_information_block
span
a {
	font-size: 14px;
	color: var(--white);
	font-weight: bold;
	margin-bottom: 16px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
footer
.footer_outterwrap
nav
.footer_links_main_wrap
.patient_information_wrap
.patient_information_block
ul {
	columns: 2;
}
footer
.footer_outterwrap
nav
.footer_links_main_wrap
.patient_information_wrap
.patient_information_block
ul
li
a {
	font-size: 13px;
	color: #aab1b8;
	font-weight: 300;
	margin-bottom: 6px;
}
footer .footer_outterwrap nav .footer_adress_wrap {
	width: 260px;
}
footer .footer_outterwrap nav .footer_adress_wrap .footer_adress {
	margin-bottom: 35px;
}
footer .footer_outterwrap nav .footer_adress_wrap .footer_adress p {
	font-size: 16px;
	line-height: 29px;
	font-weight: 400;
	color: var(--white);
	font-family: "millerbannerroman";
}
footer .footer_outterwrap nav .footer_adress_wrap .footer_adress_num a {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
	align-items: center;
	font-size: 14px;
	color: var(--white);
	font-weight: bold;
	letter-spacing: 1.5px;
}
footer .footer_outterwrap nav .footer_adress_wrap .footer_adress_num a img {
	width: 24px;
	height: 24px;
}
footer .copy-right p,
footer .copy-right p a {
	font-size: 14px;
	line-height: 1.2;
	color: #777b82;
	font-weight: 400;
}
/* FOOTER CSS ENDS */

/* MOBILE HEADER STARTS */
.mobile_header {
	display: none;
	padding: 10px 20px;
}
.mobile_header_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.mobile_header .mobile_header_logo {
	width: 100%;
	max-width: 150px;
}
.mobile_links_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 100px 0;
}
.mobile_header_links .menu {
	columns: 2;
}
.mobile_header_links .menu > li {
	margin-bottom: 20px;
}
.mobile_header_links .menu .menu_link a{
	font-size: 17px;
	line-height: 1.2;
	text-transform: uppercase;
	font-weight: bold;
	color: var(--bgcolor);
}
.mobile_header_links .menu .submenu_link a{
	font-size: 13px;
	color: var(--bgcolor);
	font-weight: 300;
}
.mobile_adress_links {
	background-color: var(--bgcolor);
	text-align: center;
	padding: 50px 0;
	width: 100%;
}
.mobile_adress_links .mobile_adress_btn {
	display: flex;
	gap: 20px;
	justify-content: center;
}
.mobile_adress_links p {
	font-size: 18px;
	line-height: 32px;
	font-weight: 400;
	color: var(--white);
	font-family: "millerbannerroman";
}
.mobile_adress_links a {
	font-size: 20px;
	font-weight: bold;
	color: var(--white);
	display: flex;
	align-items: center;
	line-height: 48px;
	gap: 10px;
	justify-content: center;
}
.mobile_adress_links a i {
	border: 1px solid var(--white);
	border-radius: 50%;
	width: 35px;
	height: 35px;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.mobile_header_link_wrap_main {
	position: fixed;
	top: 0;
	z-index: 9;
	width: 100%;
	height: 100%;
	left: -100%;
	background-color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	transition: all 0.4s ease;
}
.mobile_header_link_wrap_main .mobile_header_logo {
	padding-top: 90px;
}
.mobile_header_link_wrap_main.open {
	left: 0;
}
.hamburger_btn .line {
	background-color: red;
	width: 25px;
	display: inline-block;
	height: 1px;
	display: flex;
	flex-direction: column;
	margin: 5px 0;
	transition: all 0.4s ease;
	position: relative;
	z-index: 10;
}

.hamburger_btn.open .line {
	margin: -0.5px 0;
}
.hamburger_btn.open .line:nth-child(1) {
	transform: rotate(45deg);
	transition-duration: 0.6s;
}
.hamburger_btn.open .line:nth-child(2) {
	opacity: 0;
	visibility: hidden;
}
.hamburger_btn.open .line:nth-child(3) {
	transform: rotate(-45deg);
	transition-duration: 0.6s;
}
/* MOBILE HEADER ENDS */
