/*****************************/
@import "common.css?ver=1.0.1";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,300i,400,500');
/* Roboto Thin - 100 */
/* Roboto Light - 300 */
/* Roboto Regular - 400 */
/* Roboto Medium - 500 */
/*=====================================font-family: 'Roboto', sans-serif;====================================*/
@import url('https://fonts.googleapis.com/css?family=Abhaya+Libre:400,500,600,700,800');
/*Abhaya Libre Regular - 400*/
/*Abhaya Libre Medium - 500*/
/*Abhaya Libre Semi Bold - 600*/
/*Abhaya Libre Bold - 700*/
/*Abhaya Libre Extra Bold - 800*/
/*=====================================font-family: 'Abhaya Libre', serif;===================================*/
/*****************************/

/*****************************/
/*****************************/
/***** BEGIN CUSTOM CSS ******/
/*****************************/

/*=============================Header Area Css===========================*/
.header-area{
	position:absolute;
	width:100%;
	top:0px;
	left:0px;
	padding:25px 0px;
	z-index:999;
}
.header-logo-part{
	margin-left:-50px;
}


#nav-icon {
    width: 40px;
    height: 34px;
    overflow: hidden;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}
#nav-icon span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #d2b686;
    border-radius: 0px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(even) {
  left: 50%;
  border-radius: 0 0px 0px 0;
}

#nav-icon span:nth-child(odd) {
  left:0px;
  border-radius: 0px 0 0 0px;
}

#nav-icon span:nth-child(1), #nav-icon span:nth-child(2) {
  top: 0px;
}

#nav-icon span:nth-child(3), #nav-icon span:nth-child(4) {
  top: 10px;
}

#nav-icon span:nth-child(5), #nav-icon span:nth-child(6) {
  top: 20px;
}

#nav-icon.open span:nth-child(1),#nav-icon.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(2),#nav-icon.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(1) {
	left: -6px;
	top: 8px;
}

#nav-icon.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: -1px;
}

#nav-icon.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon.open span:nth-child(5) {
    left: -3px;
    top: 23px;
    width: 28px;
}

#nav-icon.open span:nth-child(6) {
	left: calc(50% - 5px);
	top: 23px;
	width: 29px;
}
/*========================main-navigation=============================*/
.menu-icon{
	display:inline-block;
	float:right;
	margin-right:-50px;
}
.menu-icon-text{
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 20px;
	margin: 0px 7px 0px 15px;
	letter-spacing: 3px;
	color: #fff;
	width: 84px;
	text-align: right;
	display: inline-block;
}
.main-navigation{
	background:#1e5a49;
	position:fixed;
	width:100%;
	height:100%;
	right:-100%;
	top:0px;
	padding-top:63px;
	-webkit-transition: all .5s; /* Safari */
	transition: all .5s;
	z-index:98;
	display:table;
}
.main-navigation.open{
	right:0px
}
.menu_box {
    width: 100%;
    vertical-align: top;  
    display: table-cell;
	padding-top:100px;
}
.menu_box .menu {
    width: 100%;
    padding: 0px;
    padding-left: 5%;
    /*overflow: hidden;*/
    position: relative;
	list-style: none;
}
.menu_box .menu li:first-child {
    margin-top: 0px;
}
.menu_box .menu li:last-child {
    margin-bottom: 0px;
}
.menu_box .menu li {
    margin: 15px 0px;
}
.menu_box .menu > li{
	margin: 25px 0px;
}
.menu_box .menu li a {
    color: #ffffff;
    font-size: 18px;
	font-family: 'Roboto', sans-serif;
	font-weight:400;
    text-transform: uppercase;
	letter-spacing: 2px;
}
.menu_box .menu > li > a{
	letter-spacing: 5px;
}
.menu_box .menu li a:hover{
    color: #d2b686;
	text-decoration:none;
}
.menu_box .menu .sub-menu.active {
    margin-left: 0;
}
.menu_box .menu .sub-menu {
    position: absolute;
    padding: 0px 48px;
    width: 100%;
    top: 0;
    border-left: 1px solid #fff;
    margin-left: 9999px;
    -webkit-transition: margin-left 0.5s;
    transition: margin-left 0.5s;
	list-style: none;
}
.sub-menu {
    z-index: 101;
}
.menu-primary-menu-container .menu-item-has-children > a::after {
    content: '\bb';    
    display: inline-block;
    top: -1px;
    position: relative;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-left: 15px;
}
.nav-back > a::before {
    content: '\ab';
    display: inline-block;
    top: -2px;
    position: relative;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-left: 0px;
    margin-right: 12px;
}
.nav-back a{
	font-size:30px !important;
}
.nav-back{
	margin-bottom:30px !important;
	cursor:pointer;
	text-transform:uppercase;
}
.nav-back a{
	text-transform: uppercase !important;	
	font-family: 'Roboto', sans-serif !important;
	font-weight:400;
	font-weight:400 !important;
	font-size:22px !important;
	color:#fff !important;
	letter-spacing: 5px !important;
}
.menu_box .menu li ul li{
   margin: 7px 0px;
}
.menu_box .menu li ul li ul li{
   margin: -5px 0px;
}
.menu_box .menu li ul li ul li a{
   /*font-size:16px;*/
   text-transform: unset;
   font-family: 'Roboto', sans-serif;
   font-weight:500;
   letter-spacing: 1px;
}
/*.menu-item-has-children:has(sub-menu.active){ background: red; }*/
.menu_box  .menu li ul li a{
	text-transform:inherit !important;
}

/*===============Stiky menu Css=================*/
.header-area.relative-header .header-logo-part,
.header-area.fixed .header-logo-part{
	display:none;
}
.sticky-logo{
	vertical-align:middle;
	display:none;
}
.sticky-location{
	padding-left:15px;
	display:none;
}
.sticky-location a{
	font-size:20px;
	font-family: 'Roboto', sans-serif;
	font-weight:300;
	color:#fff;
	text-transform:inherit;
	letter-spacing:normal;
}
.sticky-location a:hover{
	color:#B1D6C4;
}
.sticky-location span{
	font-size:20px;
	text-transform:uppercase;
	letter-spacing:3px;
	color:#d2b686;
	font-family: 'Roboto', sans-serif;
	font-weight:500;
}
.divider{
	color:#fff;
}
.request-consultation-button{
	display:none;
}
.request-consultation-button a{
	border:1px solid #fff;
	padding:8px 15px;
	text-transform:uppercase;
	letter-spacing:2.5px;
	font-weight:500;
	font-size:20px;
	color: #d2b686;
}
.request-consultation-button a:hover{
	background:#fff;
}
.header-area.relative-header,
.header-area.fixed{
	background-color:rgba(30,90,73,0.8);
    position: fixed;
    top: -100%;
	padding:10px 0px;
}
.header-area.relative-header{
	top:0;
}
.header-area.relative-header .sticky-logo , .header-area.relative-header .sticky-location, .header-area.relative-header .request-consultation-button,
.header-area.fixed .sticky-logo , .header-area.fixed .sticky-location, .header-area.fixed .request-consultation-button{
	display:inline-block;
}
.header-area.relative-header .request-consultation-button, .header-area.relative-header .menu-icon,
.header-area.fixed .request-consultation-button, .header-area.fixed .menu-icon{
	padding-top:17px;
}

.header-area.fixed.stiky {
    top: 0px;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.stiky-contact{
	display:none;
}
#inline2{
	width:500px;
	height:300px;
}
.map_area{
	width:100%;
	height:100%;
}
.fancybox-close {
    background: url(../images/close.png)no-repeat center center !important;
    top: -6px !important;
	right: -8px !important;
}
.contact-button.stiky-contact a{
	padding:15px 25px;
	border:1px solid #b1d6c4;
	font-weight: 500;
    text-transform: uppercase;
}

/*=============================Header Area Css End===========================*/

/*=========================Footer-Section Css================================*/
.footer-section{
	padding:50px 0px 0px;
}
.phone{
	margin-top:15px;
}
.social-icon-area{
	margin-top:40px;
}
.social-icon-area ul{
	list-style:none;
	font-size:0px;
	margin:0;
	padding:0;
}
.social-icon-area ul li{
	display:inline-block;
	padding-right:25px;
	vertical-align:bottom;
}
.social-icon-area ul li a{
	font-size:40px;
	transition: all 0.5s;
}
.social-icon-area ul li a:hover{
	color:#1e5a49;
	transition: all 0.5s;
}
.footer-logo{
	text-align:center;
}
.review-area p{
	font-size:12px;
	line-height:18px;
	font-family: 'Roboto', sans-serif;
	font-weight:400;
}
.review-area p a{
	font-size:16px;
	color:#1e5a49;
	text-transform:inherit;
	letter-spacing:0px;
}
.policy-links ul{
	list-style:none;
	text-align:right;
	margin-top:20px;
	padding:0;
}
.policy-links ul li{
	display:inline-block;
	border-right:1px solid #1e5a49;
	padding:0px 15px;
	line-height:15px;
}
.policy-links ul li a{
	font-family: 'Roboto', sans-serif;
	font-weight:400;
	color:#8e8e8e;
	letter-spacing:0px;
	text-transform:inherit;
}
.policy-links ul li a:hover{
	color:#1E5A49;
}
.policy-links ul li:last-child{
	border-right:0px;
	padding-right:0px;
}
.contact-button{
	margin-top:30px;
}
.border-bottom{
	width:100%;
	position:relative;
	height:37px;
	background:#d2b686;
	margin-top:80px;
}
.border-bottom:after{
	position:absolute;
	top:2px;
	width:100%;
	height:3px;
	background:#fff;
	left:0px;
	content:'';
}
.footer-heading h6 a{
	font-size:inherit;
	color:#8e8e8e;
}
.footer-heading a:hover, .footer-heading a:hover p{
	color: #D2B686 !important;
}
/*=========================Footer-Section Css End================================*/

/*=============================Header Banner Css===========================*/
.banner-content {
	height:100vh;
	width:100%;
}
.banner-content-interial-page{
	max-height:500px;
	max-width:580px;

}
.banner-content-text{
	vertical-align:middle;
	padding-top:170px;
	padding-left:30px;
}
.banner-content-text h1{
	line-height:55px;
}
.banner-content .common-button-style{
	margin-top:30px;
}
.header-image-section .container{
	position:relative;
}
.banner-bottom-part{
	position:absolute;
	width:100%;
	bottom:50px;
	right:-35px;
}
.location-area a{
	font-family: 'Roboto', sans-serif;
	font-weight:300;
	color:#fff;
	text-transform:inherit;
	letter-spacing:0px;
}
.location-area a:hover{
	color:#B1D6C4;
}
.location-area span{
	font-family: 'Roboto', sans-serif;
	font-weight:500;
	color:#d2b686;
	letter-spacing:4px;
	text-transform:uppercase;
}
.responshive-button{
		display:none;
		margin-top:30px;
	}
.responshive-button .anchor-button span {
	background: #b1d6c4;
	width: 46px;
	height: 32px;
}
.responshive-button  .anchor-button::after {
    width: calc(100% - 68px);

}
.responshive-button .anchor-button:hover {
	color: #b1d6c4;
}
.anchor-button{
	text-transform:uppercase;
	letter-spacing:2.5px;
	font-weight:500;
	font-size:20px;
	color: #d2b686;
}
/*=============================Header Banner Css End===========================*/

/*======================Gallery content Css===============================*/
.gallery-section{
	padding:135px 0px;
}
.gallery-content {
	padding-right:15px;
}
.gallery-content h1, .gallery-content h2{
	font-size:90px;
	font-family: 'Abhaya Libre', serif;
	color:#1e5a49;
	text-transform:uppercase;
	letter-spacing:8px;
	margin-bottom:20px;
	display:block;
	position:relative;
	font-weight:400;
	letter-spacing:18px;
}
.gallery-content h1:hover, .gallery-content h2:hover{
	color:#D2B686;
}
.gallery-content h2 strong, .gallery-content h1 strong{
	font-family: 'Roboto', sans-serif;
    font-weight: 500;
	letter-spacing: 8px;
}
.gallery-content h1:after, .gallery-content h2:after{
	content:url(../images/arrow.png);
	position:absolute;
	right:-30px;
	bottom:0px;
}

.gallery-content p {
	/*padding-right:15px;*/
	display:inline-block;
	width:50%;
}
.gallery-content a{
	padding-top:6px;
	display:inline-block;
	transition:all 0.2s;
	font-weight: 500;
    color: #d2b686;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}
.gallery-content a:hover{
	color:#1e5a49;
}
/*======================Gallery content Css End===============================*/
/*======================About us content Css===============================*/
.about-us-section{
	padding:50px 0px 0px;
	position:relative;
}
.about-us-section:after{
	position:absolute;
	content:'';
	height:36px;
	background:#d2b686;
	bottom:-36px;
	right:0px;
	width:40.5%;
}
.about-us-section:before{
	position:absolute;
	content:'';
	height:5px;
	background:#fff;
	bottom:-34px;
	right:0px;
	width:40.5%;
	z-index:1
}
.about-us-content-text{
	/*padding-left:50px;*/
}
.about-us-content-text h2{
	font-family: 'Roboto', sans-serif;
	font-weight:100;
	color:#fff;
	font-size:68.5px;
	line-height:70px;
	letter-spacing: 6px;
}
.about-us-content-text h3{
	font-family: 'Abhaya Libre', serif;
	font-weight:400;
	color:#fff;
	font-size:50px;
	letter-spacing:10px;
	margin-top:15px;
	font-style: normal;
}
.about-us-content-text-details{
	position:relative;
	margin-top:75px;
	background:#fff;
	padding-top:80px;		
    margin-bottom: -5px;
}
.about-us-content-text-details:after{
	background:#fff;
	width:100vw;
	position:absolute;
	content:'';
	top:0px;
	right:100%;
	height:100%;
}
.content-button{
	margin-top:30px;
	margin-left:40px;
	position:relative;
	top:20px;
}
.about-us-content-mobile{
	display:none;
}
/*======================About us content Css End===============================*/

/*===================Testimonial content Css====================================*/
.testimonial-section{
	padding:215px 0px 30px;
}
.testimonail-text{
	padding-left:125px;
	text-align:right;
	position:relative;
}
.testimonail-text:before{
	content:'';
	position:absolute;
	top:0px;
	left:0px;
	background:url("../images/inverted-coma.png") no-repeat center center/cover;
	width:94px;
	height:82px;
}
.testimonail-text p{
	font-style:italic;
	font-size:27px;
	line-height:55px;
	color:#8e8e8e;
	letter-spacing:normal;
}
.testimonial-author{
	padding-top:12px;
}
.testimonial-author h4{
	font-family: 'Roboto', sans-serif;
	font-weight:500;
	font-size:27px;
	color:#1e5a49;
}
/*===================Testimonial content Css End====================================*/

/*==================== Procedure content Css========================================*/
.procedure-section{
	position:relative;
	padding-top:250px;
	padding-bottom:250px;
	overflow:hidden;
}
.procedure-slider-wrapper:after{
	position:absolute;
	content:'';
	height:36px;
	background:#d2b686;
	top:-36px;
	left:0px;
	width:40.5%;
}
.procedure-slider-wrapper:before{
	position:absolute;
	content:'';
	height:5px;
	background:#fff;
	top:-34px;
	left:0px;
	width:40.5%;
	z-index:1
}
.category-text{
	padding-top:100px;
}
.category-text p{
	font-size:22px;
	color:#8e8e8e;
	line-height:40px;
}
.procedure-section-image{
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	z-index: 1;
}
.category-button{
	margin-top:110px;
	padding-bottom:6px;
}
.procedure-section .carousel-indicators {
    position: absolute;
    bottom: -80px;
    left: 0%;
    z-index: 15;
    width: 100%;
    margin-left: 0%;
    text-align: left;
	padding-left:50px;
	font-size:0px;
}
.procedure-section .carousel-indicators-numbers li {
  text-indent: 0;
  width: auto;
  height: auto;
  border: none;
  border-radius:0%;
  line-height: 19px;
  background-color: transparent;;
  transition: all 0.25s ease;
  font-family: 'Roboto', sans-serif;
  font-weight:400;
  color:#d2b686;
  font-size:20px;
  text-transform:uppercase;
  letter-spacing:2px;
  margin:0px 20px;
  position:relative;
}
.procedure-section .carousel-indicators-numbers li:after{
	position:absolute;
	content:'';
	width:2px;
	height:20px;
	background:#1e5a49;
	top:0px;
	right:-20px;
}
.procedure-section .carousel-indicators-numbers li:last-child:after{
	display:none;
}
.procedure-section .carousel-indicators-numbers li.active{
  margin: 0 20px;
  width: auto;
  height: auto;
  color:#9a8269;
  font-family: 'Roboto', sans-serif;
  font-weight:500;
  position:relative;
}
.procedure-section .carousel-indicators-numbers li:before{
	position:absolute;
	bottom:-25px;
	width:0%;
	height:7px;
	background:#d2b686;
	content:'';
	left:0px;
	transition:all 0.5s
}
.procedure-section .carousel-indicators-numbers li:first-child{
	margin-left:0px;
}
.procedure-section .carousel-indicators-numbers li:hover:before, .procedure-section .carousel-indicators-numbers li.active:before{
	width:100%;
	transition:all 0.5s
}
.procedure-section-image img{
	width:100%;
}
.bg-logo-image{
	position: absolute;
	top: 0px;
	right: -28%;
	z-index: -1;
	opacity: 0.8;
}
.category-text  h3{
	direction: rtl;
}
.mobile-procedure-image{
	display:none;
}
/*==================== Procedure content Css End========================================*/

/*==================Doctor Content Css==========================*/
.doctor-section{
	padding:50px 0px 0px;
}
.doctor-section-content{
	padding-top:50px;
} 
.doctor-section-content-text-details{
	background:transparent;
	margin-top:0px;
	padding-top:0px;
}
.doctor-section-content-text-details:after{
	display:none;
}
.doctor-section-content-text-details  p::first-letter{
	font-size:135px;
}
.doctor-section-credential-logos ul{
	text-align:right;
	font-size:0px;
	margin-right:-50px;
	padding:0;
}
.doctor-section-credential-logos ul li{
	display:inline-block;
	padding-left:30px;
}
.doctor-section .container{
	position:relative;
}
.doctor-image{
	position:absolute;
	right:-50px;
	bottom:0px;
	max-width:60%;
}
.doctor-image img{
	vertical-align:bottom;
}
.doctor-section .content-button{
	top:0px;
	margin-bottom:100px;
	margin-top:45px;
}
.doctor-section-content h3 {
    text-transform: uppercase;
    line-height: 55px;
    margin-bottom: 35px;
	font-family: 'Abhaya Libre', serif;
    font-weight: 400;
    letter-spacing: 10px;
    font-size: 60px;
	font-style: normal;
}
.doctor-section-content h3 strong {
    font-size: 50px;
	letter-spacing: 6px;
	font-family: 'Roboto', sans-serif;
    font-weight: 500;
}
/*==================Doctor Content Css End==========================*/

/*==================Special / Review Css============================*/
.image-box-height{
	height:285px;
	width:100%;
}
.image-content{
	vertical-align:middle;
	padding-left:50px;
}
.image-content h2, .image-content h3{
	color:#d2b686;
	line-height:45px;
	transition: all 0.5s;
	font-style: normal;
}
.image-content h2, .image-content h3{
	font-family: 'Abhaya Libre', serif;
	font-size:50px;
	letter-spacing:10px;
	font-style: normal;
}
.image-content h2 strong, .image-content h3 strong{
	font-size: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
	letter-spacing:4px;
}
.image-content:hover h2, .image-content:hover h3{
	color:#fff;
	transition: all 0.5s;
	font-style: normal;
}
/*==================Special / Review Css ENd============================*/
.consultation-section{
	padding: 90px 0px;
}
.consultation-section p{
	padding-bottom:0;
}
.consultation-section h2{
	line-height:85px;
}
.inner-shadow{
    box-shadow: inset 0px 15px 8px -10px rgba(0, 0, 0, 0.35), inset 0px -15px 8px -10px rgba(0, 0, 0, 0.35);
}
.each-special-images{
	text-transform:uppercase;
}
/* =================== Default Page ============================== */
.default-page-content{
	padding-top:40px;
	padding-bottom:40px;
}
.cost-n-recovery{
	width:95%;
	margin:0 auto;
	padding-bottom:20px;
}
.cost-n-recovery h2{
	color:#d2b686;
	font-size:30px;
	text-transform:uppercase;
	letter-spacing:1px;
}
.cost-n-recovery h2 span{
	color:#1e5a49;
	font-size:35px;
	font-family: 'Abhaya Libre', serif;
	letter-spacing:4px;
}
.cost-n-recovery .recovery{
	text-align:right;
}
.page-sidebar, .service-button-sidebar{
	padding: 0px 15px 30px 40px;
    float: right;
    max-width: 33%;
    display: inline-block;
	position: relative;
    z-index: 9;
}
.breadcrumb{
	display:inline-block;
	padding:0;
	margin:0;
	background-color:transparent;
}
.breadcrumb{
	color:#1e5a49;
	font-family: 'Roboto', serif;
	padding:7px 15px 15px 0;
	position:relative;
	font-size: 20px;
}
.breadcrumb:after{
	position:absolute;
	content:'';
	bottom:0px;
	left:0px;
	width:45%;
	border-bottom:2px solid #d2b686;
	min-width: 200px;
}
.breadcrumb a{
	color:#1e5a49;
	text-transform:unset;
	font-weight:400;
	letter-spacing:0;
}
.breadcrumb strong, .breadcrumb strong a{
	font-weight:700;
}
.breadcrumb strong:hover, .breadcrumb a:hover{
	color:#D2B686;
}
.intro-content h2{
	font-family: 'Roboto', serif;
	font-weight:500;
	font-size:40px;
	text-transform: uppercase;
	letter-spacing:4px;
}
.intro-content h3{
	font-family: 'Abhaya Libre', serif;
	font-size:35px;
	text-transform: uppercase;
	letter-spacing:7px;
	margin-bottom:15px;
	line-height:40px;
	color: #1E5A49;
	font-weight:500;
	font-style:normal;
}
.intro-content p{
	color: #8e8e8e;
	padding-bottom:0;
	font-size:22px;
	font-weight:300;
	line-height:40px;
}
.page-sidebar .gform_wrapper {
	padding-bottom:55px;
}
.meet-our-doctors-button{
	padding-bottom:55px;
}
.meet-our-doctors-button figure{
	position:relative;
}
.meet-our-doctors-button figure img{
	width:100%;
	display:block;
}
.meet-our-doctors-button figure figcaption{
	position:absolute;
	width:100%;
	left:0;
	bottom:0;
	padding:20px 30px;
}
.meet-our-doctors-button figure figcaption h2{
	font-family: 'Abhaya Libre', serif;
	color:#d2b686;
	font-size:50px;
	letter-spacing:7px;
	text-transform: uppercase;
	line-height:50px;
	transition: all 0.5s;
}
.meet-our-doctors-button figure:hover figcaption h2{
	color: #fff;
    transition: all 0.5s;
}
.meet-our-doctors-button figure figcaption h2 strong{
	font-family: 'Roboto', serif;
	font-weight:500;
	font-size:35px;
	letter-spacing:2px;
}
.the-content-procedure{
	padding-top:50px;
}
.the-content > p:first-child:first-letter{
	font-size:150px;
	font-family: 'Abhaya Libre', serif;
	font-weight:400;
	color:#1e5a49;
	float: left;
	padding-top: 7px;
	padding-right: 8px;
	padding-left: 3px;
	line-height:107px;
}
.the-content p + ul{
	margin-top: -35px;
}
.quick_reference{
	margin-bottom:30px;
}
.quick_reference h2{
	text-transform:uppercase;
	font-size:40px;
}
.quick_reference ul{
	margin:0;
	padding:0;
	list-style:none;
}
.quick_reference ul li{
	text-transform:uppercase;
	font-weight:500;
	line-height: 40px;
}
.quick_reference ul li a{
	letter-spacing:2px;
}
.inject-gallery-section{
	position:relative;
	margin-top: 15px;
    margin-bottom: 15px;
}
.inject-gallery-section:after {
    content: '';
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 0px;
    width: 100vw;
    margin-left: -50vw;
    top: 0px;
	box-shadow: inset 0px 15px 8px -10px rgba(0, 0, 0, 0.35), inset 0px -15px 8px -10px rgba(0, 0, 0, 0.35);
}
.inject-gallery-section p{
	padding-bottom:0;
}
.the-content{
	position:relative;
}
.main-content{
	position:relative;
}
.main-content:after{
	content: '';
    height: 100%;
    position: absolute;
    z-index: -9;
    left: 50%;
    right: 0px;
    width: 100vw;
    margin-left: -50vw;
    bottom: 100px;
	background-image:url(../images/the-content-bg.png);
	background-repeat:no-repeat;
	background-position:right bottom;
}
.service-button{
	padding-top:0px;
	padding-bottom:30px;
}
.testimonail-text p{
	padding-bottom:0px;
}
.inject-testimonial{
	padding-bottom:40px;
}
.testimonial-author a{
	font-family: 'Roboto', sans-serif;
	font-weight:500;
	font-size:20px;
	color: #d2b686;
	text-transform:uppercase;
	letter-spacing:2.5px;
}
.testimonial-content-wrapper {
	padding-top:20px;
	padding-bottom:20px;
}
/* =================== ./Default Page ============================== */
/* =================== Doctor Overview ============================== */
.intro-content-section{
	padding-top:70px;
}
.intro-content-into-mid{
	border-bottom: 2px solid #d2b686;
}
.intro-content-into-mid .intro-content-wrapper{
	max-width:780px;
	margin:0 auto;
	text-align:center;
}
.intro-content-into-mid .breadcrumb:after{
	content:unset;
}
.meet-doctor-image{
	width:100%;
	height:550px;
	display:table;
	border-bottom: 2px solid #d2b686;
	position:relative;
}
.meet-doctor-image::before{
	content:'';
	border-bottom: 2px solid #d2b686;
	position:absolute;
	bottom:-2px;
	left:-15px;
	width:15px;
}
.meet-doctor-image::after{
	content:'';
	border-bottom: 2px solid #d2b686;
	position:absolute;
	bottom:-2px;
	right:-15px;
	width:15px;
}
.meet-doctor-col:nth-child(3n+1) .meet-doctor-image::before, .meet-doctor-col:nth-child(3n+3) .meet-doctor-image::after{
	content:none;
}
.meet-doctor-image-cell{
	display:table-cell;
	width:100%;
	height:100%;
	vertical-align:bottom;
	text-align:center;
}
.meet-doctor-col:nth-child(3n+1) .meet-doctor-image .meet-doctor-image-cell{
	text-align:left;
}
.meet-doctor-col:nth-child(3n+3) .meet-doctor-image .meet-doctor-image-cell{
	text-align:right;
}
.meet-doctor-image img{
	display:block;
}
.link-list-area{
	padding-top:20px;
}
.link-list-area h2{
	color:#1e5a49;
	font-size:40px;
	text-transform:uppercase;
	letter-spacing:3px;
	white-space: nowrap;
}
.link-list-area h2 small{
	font-size:20px;
	color:#1e5a49;
	font-weight:500;
}
.link-list-area ul{
	padding-left:20px;
	line-height: 1.5;
}
.link-list-area ul li a{
	font-weight:500;
	text-transform:uppercase;
	letter-spacing:2px;
}
.link-list-area h4{
	font-size:22px;
	font-weight:300;
}
.doctors-section{
	padding-bottom:80px;
}
.service-button-wrapper{
	padding-bottom:15px;
}
.related-pages{
	padding-bottom:40px;
}
.doctor-overview-content{
	padding-bottom:20px;
}
.doctor-intro-n-img .breadcrumb:after{
	content:none;
}
.dr-img img{
	display:block;
	margin:0 auto;
}
.doctor-intro-n-img .row{
	position:relative;
}
.doctor-intro-n-img .row:after{
	content:'';
	position:absolute;
	bottom:-2px;
	left:0px;
	width:calc(100% - 45px);
	border-bottom: 2px solid #d2b686;
	margin-left:15px;
	margin-right:15px;
}
.dr-logo img{
	display:inline-block;
	margin-right:10px;
	max-width:125px;
}
.doctor-intro-n-img{
	padding-top:60px;
	padding-bottom:60px;
}
/* =================== ./Doctor Overview ============================== */

/* =================== Procedure Overview ============================== */
.starting-content{
	padding-top:60px;
}
.procedure-list{
	text-align:left;
}
.procedure-list hr{
	width:200px;
	display: inline-block;
}
.procedure-list hr::after{
	clear:both;
}
.procedure-list hr:last-child{
	display:none;
}
.procedure-list.link-list-area{
	padding-top:0;
	padding-bottom:30px;
}
/* ====================== Contact ====================*/
.contact-content{
	width:65%;
}
.contact-address-phone{
	padding-top:40px;
}
.contact-address-phone p a{
	color:inherit;
	font-weight:inherit;
	text-transform: inherit;
}
.contact-address-phone .d-table{
	width:100%;
}
.contact-address-phone .d-table-cell{
	width:50%;
}
.contact-google-map{
	padding-top:0px;
	padding-bottom:40px;
}
.contact-google-map-iframe{
	padding-top:15px;
}
.contact-google-map-iframe iframe{
	width:100%;
	height:400px;
}
/* ====================== Gallery ====================*/
.case-img .d-table{
	width:100%;
}
.case-img .d-table .d-table-cell{
	width:50%;
}
.case-img .d-table .d-table-cell:first-child{
	padding-right:5px;
}
.case-img .d-table .d-table-cell:last-child{
	padding-left:5px;
}
.case-img .d-table .d-table-cell img{
	width:100%;
	display:block;
}
.case-img{
	padding-bottom:25px;
}
.case-wrapper{
	padding-bottom:80px;
}
.gallery-intro-content-section .intro-content-into-mid .intro-content-wrapper{
	max-width:100%;
}
.details_wrapper p span{
	font-family: 'Roboto', serif;
	font-weight:bold;
}
.details_wrapper .dropdown-btn{
    text-align: left;
	color: #999999;
    line-height: 26px;
	box-shadow: none !important;
	background:#e5e5e5 !important;
}
.details_wrapper .dropdown-btn img{
    float: right;
	margin-top:12px;
}
.details_wrapper .dropdown-menu{
    width: 100%;
    /*background: #edf0f2;*/
	font-size:20px;
}
.details_wrapper .dropdown-menu>li>a {
	font-family: 'Roboto', serif;
	font-weight:500;
	color: #93969a;
    line-height: 26px;
}
.details_wrapper .dropdown-menu>li>a:focus, .details_wrapper .dropdown-menu>li>a:hover {
	background: #8db198;
	transition:.20s all;
	color:#ffffff
}
.details_wrapper .dropdown-btn {
    text-align: left;
    color: #93969a;
    line-height: 26px;
    box-shadow: none !important;
}
.frm_styl {
    background: #edf0f2;
    border: 0px;
    border-radius: 0px;
    box-shadow: none;
    font-family: 'Roboto', serif;
    font-weight: 500;
    font-size: 18px;
    color: #93969a;
    padding: 10px 20px;
    height: auto;
    resize: none;
}
.dropdown-menu {
    margin: 0px 0 0;
    border-radius: 0px;
    z-index: 99;
}
.dmain {
    padding: 7px 20px;
    background: #769981;
    color: #fff;
}
.gallery-serach-area{
	padding-top:30px;
	padding-bottom:30px;
}
.gallery-case-area{
	padding-top:40px;
}
.gallery-category-content{
	padding-top:40px;
	padding-bottom:40px;
}
.gallery-image-slider-section{
	padding-top: 20px;
    padding-bottom: 125px;
}
.gallery-image-slider-section .carousel-indicators{
	padding:0;
	text-align:center;
}
.gallery-image-slider-prev, .gallery-image-slider-next{
	position:absolute;
	top:50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.gallery-image-slider-prev{
	left:0px;
}
.gallery-image-slider-next{
	right:0px;
}
.gallery-image-wrapper{
	width: 85%;
    margin: 0 auto;
}
.gallery-image-wrapper img{
	width:100%;
}
.previous_next_gallery{
	font-family: 'Abhaya Libre', serif;
	letter-spacing:7px;
	font-weight:400;
	color:#1e5a49;
	font-size:30px;
	text-transform:uppercase;
} 
.previous_next_gallery a{
	font-family:inherit;
	letter-spacing:inherit;
	font-weight:inherit;
	color:inherit;
	font-size:inherit;
}
.previous_next_gallery img, .previous_next_gallery span{
	display:inline-block;
	vertical-align:middle;
}
.previous_next_gallery_wrapper{
	padding-top:20px;
	padding-bottom:50px;
}
.previous_next_gallery .disable{
	opacity:.5;
	cursor: not-allowed;
}
/*==================blog listing css=================*/
.blog_listing_sec {
	padding: 60px 0px
}
.blog_listing_left{
	
}
.listing_img img {
	width: 100%;
    height: auto;
}
.listing_heading{
	padding-bottom:10px;
	padding-top: 20px;
}

.listing_heading h4 {
	font-size: 27px;
	color: #1E5A49;
	font-family: 'Roboto', serif;
	margin-top: 0px;
	line-height: 30px;
	font-weight:500;
}
.listing_dtls p {
	line-height: 37px
}
.blog-item hr{
	border-top: 2px solid #e5e5e5;
	margin-top: 40px;
    margin-bottom: 40px;
}
.read_more {
	font-size: 17px;
	color: #282828;
	font-family: 'Roboto', serif;
	display: inline-block
}
.read_more:hover {
	color: #ad9a6b;
}
.read_more a {
	color: inherit
}
.each_blog {
	margin-bottom: 70px;
}
.right_blog_slidebar {
	padding-left: 30px
}
.blog_slider_heading h3 {
	font-size: 27px;
    line-height: 27px;
	font-weight:500;
	font-style: normal;
}
.right_blog_slidebar ul {
	list-style: none;
	padding:0;
	margin:0;
}
.right_blog_slidebar ul li {
	font-size: 18px;
	padding-top: 10px;
	font-weight:300;
}
.right_blog_slidebar ul li:hover {
	color: #ad9a6b;
}
.right_blog_slidebar ul li a {
	color: inherit
}
.listing_dtls p{
	padding-bottom:0px;
}
.posted-on .updated{
	display:none;
}
.posted_on {
	margin-bottom:10px;
}
.posted_on h5{
	font-weight:300;
	font-size:22px;
}
.posted_on h5 a{
	font-weight:500;
	font-size: inherit;
}
.blog-details{
	margin-top:40px;
}
/*==================blog listing css end=================*/
/*==================blog listing details css=================*/
.listing_details_heading{ padding-bottom:50px}
.listing_details_heading h3 {
	font-family: 'Roboto', serif;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	 margin:0px;
	 color: #ad9a6b;
	 font-style: normal;
}
.bolg_post_thumbnail {
	width: 50%;
	float: left;
	margin: .5em 2.5em 1.5em 0;
}
.bolg_post_thumbnail img {
	width: 100%;
	height:auto;
}
.blog_listing_details_left h4{ margin-top:20px}
.blog_listing_details_left p{ line-height: 30px;}
.blog-content-area{
	padding-top:80px;
	padding-bottom:80px;
}
.blog-content-area .entry-header h2{
	font-family: 'Abhaya Libre', serif;
	font-size: 35px;
    
}
/*==================blog listing details css end=================*/
.gallery-content h2:hover{
	color:#D2B686;
}
.add-line-border{
	text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    font-size: 17px;
    color: #d2b686;
    border: 2px solid #a7c3af;
    padding: 16px 15px;
    white-space: nowrap;
}
#responsive-menu-container li.responsive-menu-item a {
    text-transform: uppercase !important;
	font-weight:500 !important;
	letter-spacing: 4px;
}
body::before{
	position:fixed;
	width:100%;
	left:0px;
	top:0px;
	height:100%;
	background:#000;
	z-index:-111;
	content:'';
	opacity:0;
}
.responsive-menu-open body::before{	
	z-index:1;
	content:'';
	opacity:0.5;
}
/*a:empty {
   display: none;
}*/
.consultation-section p br{
	display: none;
}

.nextpatient-widget-section .intro-content{
	display:none;
}
.nextpatient-widget-section .page-sidebar{
	display:none;
}
h3#patients-choose-the-chin-implant-when-they-are-unhappy-with-one-of-the-following-concerns span {
    font-size: 30px;
}
button.slick-prev.slick-arrow {
    display: none !important;
}
button.slick-next.slick-arrow {
    display: none !important;
}

#reviewstream-pager{
	display:none;
}

#reviewstream-footer{
	display:none;
}

.common-section-heading h3{
	font-size:34px;
	text-transform:uppercase;
	letter-spacing:4px;
	line-height:55px;
	margin-bottom:35px;
	font-style:normal;
	font-weight:500;
	color: #1e5a49 !important
}
.common-section-heading h3 span{
	font-family: 'Abhaya Libre', serif;
	font-weight:400;
	letter-spacing:10px;
	font-size:45px;
	color: #1e5a49 !important
}
.intro-content-section .nextpatient-widget-section{
	max-height:550px !important;
	overflow-y:auto;
}
.nextpatient-widget-section h2{
	    margin: 10px 0px 20px;
    font-size: 30px !important;
    letter-spacing: 2px !important;
}
.intro-content-section .intro-content{
	margin-bottom:25px;
}
.fancybox-iframe{
	display:inline-block;
}
/*=======================New Video Gallery===================================*/
.video-gallery-page{
	text-align: center;
	max-width: 65%;
	margin: 0px auto;
}
.view-gallery-wrapper .breadcrumb{
	width:100% !important;
	text-align:center !important;
}
#accordion {
	list-style: none;
	padding: 2px;
}
#accordion > li {
	display: block;
	list-style: none;
}
#accordion > li > span {
	display: block;
	color: #fff;
	margin: 4px 0;
	padding: 6px 0px;
	background: url(../images/plus.png) no-repeat 99.5% 15px;
	background-size: 15px;
	font-weight: normal;
	cursor: pointer; font-size:16px
}
#accordion > li > div {
	list-style: none;
	padding: 6px;
	display: none; overflow:auto
}
#accordion > ul li {
	font-weight: normal;
	cursor: auto;
	padding: 0 0 0 7px;
}
#accordion a {
	text-decoration: none;
}
#accordion li > span:hover {
}
#accordion li > span.active {
	background: url(../images/minus.png) no-repeat 99.5% 15px;
	background-size: 15px
}
#accordion > li > span{
font-size:27px;
color:#1e5a49;
font-family: 'Roboto', sans-serif;
font-weight:600;
}
p.new-video-heading{
color:#d2b686;
font-size:18px;
font-family: 'Roboto', sans-serif;
font-weight:800;
}
#accordion > li{
border-bottom:1px solid #e4e4e4;
}
.video-gallery-accodion-wrapper{
padding:20px 0px;
}
.video-gallery-accodion-wrapper .row{
margin:0px;
}

/* ppc */
.page-id-3595 .footer-section,
.page-id-3595 .special-section,
.page-id-3595 .gallery-section,
.page-id-3595 .header-image-section,
.page-id-3595 .header-area{
    display: none;
}
.header-sec{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: rgba(0 0 0 / 25%) 0px 0px 15px;
    -webkit-box-shadow: rgba(0 0 0 / 25%) 0px 0px 15px;
    z-index: 999;
}
.header_wrapper{
    padding: 2px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_right ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    column-gap: 40px;
    align-items: center;
}
.header_right li{
    line-height: normal;
}
.header_right li a{
    font-family: "Montserrat", serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0.01em;
    color: #000;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    text-transform: uppercase;
    display: inline-block;
}
.header_right li a:hover{
    color: #F6511D;
}
.header_right li a.header_btn{
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1px;
}
.header_right li a.header_btn:hover{
    background-color: transparent;
    color: #F6511D;
}
.header_btn{
    display: inline-block;
    min-width: 170px;
    padding: 16px;
    background-color: #F6511D;
    border-radius: 5px;
    overflow: hidden;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border: 1px solid #F6511D;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1px;
}
.header_btn:hover{
    background-color: transparent;
    color: #F6511D;
}
.header_right li a img{
    margin-bottom: -5px;
    margin-right: 3px;
}
.banner_area{
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 140px 0 110px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.banner_area::after{
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}
.banner_content h1{
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 49px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 9px;
}
.banner_content h3{
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 22.27px;
    color: #D1B686;
    font-style: normal;
    margin-bottom: 19px;
}
.banner_content p{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}
.banner_form{
    background-color: rgba(29, 90, 73, 0.7);
    padding: 35px 30px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 505px;
    width: 100%;
    margin-left: auto;
}
.banner_wrapper .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.banner_wrapper{
    position: relative;
    z-index: 1;
}
.special-inject-sec{
    margin-bottom: 78px;
}
.special-inject-wrapper{
    padding: 61px 84px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    background-color: #F4F4F4;
    margin-top: -46px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}
.special-inject-wrapper .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.schedule_consultation_content h2,
.doctor_inject_content h2,
.faq_inject_heading h2,
.contact_us_wrapper h2,
.testimonial-wrapper h2,
.standard-wrapper h2,
.special-inject-content h2{
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    color: #1D5A49;
    margin-bottom: 4px;
}
.special-inject-content h3{
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 33px;
    color: #1D5A49;
    margin-bottom: 10px;
    font-style: normal;
}
.special-inject-content p{
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 18px;
    color: #000000;
    padding: 0;
}
.special-inject-btn{
    text-align: center;
}
.special-inject-btn .header_btn{
    min-width: 226px;
}
.special-inject-btn p{
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
    margin-top: 9px;
    padding: 0;
}
.special-inject-btn p a{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1px;
    color: #000000;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    font-style: normal;
}
.special-inject-btn p a:hover{
    color: #F6511D;
}
.logos-inject-sec{
    margin-top: 78px;
    margin-bottom: 95px;
}
.logos-inject-wrapper .swiper-wrapper {
    transition-timing-function: linear !important;
}
.standard-sec{
    margin-top: 95px;
    margin-bottom: 117px;
}
.standard-desciption{
    max-width: 800px;
    margin: 133px auto 0;
}
.standard-wrapper .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.each-standard-img{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.col-50{
    max-width: 50%;
    width: 100%;
}
.col-100{
    max-width: 100%;
    width: 100%;
}
.each-standard-img img{
    width: 100%;
    display: block;
}
.standard-wrapper h2{
    margin-bottom: 15px;
}
.schedule_consultation_content p,
.doctor_inject_content p,
.faq_inject_accordion .accordion>li>div p,
.contact_us_wrapper p,
.standard-wrapper p{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000000;
    padding: 0;
    margin-bottom: 10px;
}
.standard-content{
    padding-left: 18px;
}
.doctor_inject_content a,
.faq_inject_heading a,
.testimonial-wrapper a,
.standard-content a{
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1px;
    text-align: center;
    color: #1D5A49;
    padding: 16px 18px;
    border: 1px solid #1D5A49;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    display: inline-block;
    margin-top: 22px;
}
.doctor_inject_content a:hover,
.faq_inject_heading a:hover,
.testimonial-wrapper a:hover,
.standard-content a:hover{
    background-color: #1D5A49;
    color: #FFFFFF;
}
.standard-content ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.standard-content li{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    color: #000000;
    position: relative;
}
.standard-content li::before{
    display: inline-block;
    content: "";
    width: 18px;
    height: 18px;
    background: url("/wp-content/uploads/2024/11/Done.png") no-repeat 0%;
    background-size: 16px;
    margin-right: 10px;
}
.benefits-sec .standard-wrapper .row{
    flex-direction: row-reverse;
}
.benefits-sec .standard-content{
    padding-left: 0;
    padding-right: 18px;
}
.get-started-inject-sec{
    margin-top: 100px;
    margin-bottom: 100px;
}
.testimonial-wrapper{
    text-align: center;
    background-color: #F4F4F4;
    box-shadow: 0px 0px 15px 0px #00000026;
    -webkit-box-shadow: 0px 0px 15px 0px #00000026;
    padding: 78px 0 61px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: -80px;
    position: relative;
    z-index: 1;
}
.testimonial-wrapper h2{
    margin-bottom: 24px;
}
.each-testimonial p{
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 400;
    line-height: 40px;
    color: #1D5A49;
}
.each-testimonial{
    margin-bottom: 17px;
}
.testimonial-slider{
    max-width: 812px;
    width: 100%;
    margin: 0px auto;
}
.contact_us_area{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 574px;
    padding-top: 171px;
    padding-bottom: 72px;
    position: relative;
}
.contact_us_area::after {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}
.contact_us_wrapper{
    max-width: 840px;
    width: 100%;
    margin: 0px auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.contact_us_wrapper h2{
    color: #FFFFFF;
    margin-bottom: 20px;
}
.contact_us_wrapper p a,
.contact_us_wrapper p{
    color: #FFFFFF;
}
.contact_us_wrapper p a{
    text-decoration: underline;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    text-transform: initial;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.contact_us_wrapper p a:hover{
    color: #F6511D;
}
.contact_us_wrapper h6{
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 24px;
    color: #FFFFFF;
}
.contact_us_wrapper h6 a{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1px;
    color: #FFFFFF;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
	font-style:normal;
}
.contact_us_wrapper h6 a:hover{
    color: #F6511D;
}
.faq_inject_heading h2{
    max-width: 542px;
    width: 100%;
}
.faq_inject_heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.faq_inject_accordion .accordion {
    list-style: none;
    padding: 0px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    orphans: 1;
    widows: 1;
}
.faq_inject_accordion .accordion>li {
    display: inline-block;
    width: 100%;
    list-style: none;
    margin-bottom: 20px;
    position: relative;
    display: -ms-flexbox;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
}
.faq_inject_accordion .accordion>li>span {
    display: block;
    padding: 23px 31px;
    background: url("/wp-content/uploads/2024/11/Back.png") no-repeat 95% #F4F4F4;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    background-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 22px;
    color: #1D5A49;
}
.faq_inject_accordion .accordion>li>div{
    list-style: none;
    padding: 0px;
    display: none;
    overflow: auto;
    padding: 20px 0 0;
}
.faq_inject_accordion .accordion li>span.active {
    background: url("/wp-content/uploads/2024/11/Back-1.png") no-repeat 95% #F4F4F4;
    background-size: 15px;
}
.doctor_inject_sec{
    margin-top: 100px;
    margin-bottom: 100px;
}
.doctor_inject_wrapper{
    background-color: #F4F4F4;
    padding: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 15px 0px #00000026;
    -webkit-box-shadow: 0px 0px 15px 0px #00000026;
}
.doctor_inject_wrapper .row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.doctor_inject_content{
    padding-left: 52px;
}
.doctor_inject_content ul{
    margin: 74px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    column-gap: 61px;
}
.doctor_inject_img{
    padding-left: 35px;
}
.doctor_inject_img img{
    width: 100%;
    display: block;
}
.schedule_consultation_sec{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 748px;
    display: flex;
    align-items: center;
    position: relative;
}
.schedule_consultation_sec::after{
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}
.schedule_consultation_wrapper{
    position: relative;
    z-index: 1;
}
.schedule_consultation_wrapper .row{
    display: flex;
    align-items: end;
    flex-wrap: wrap;
}
.schedule_consultation_content h2{
    color: #FFFFFF;
    margin-bottom: 10px;
}
.schedule_consultation_content h4{
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 22px;
    color: #D1B686;
    font-style: normal;
}
.schedule_consultation_content h4 a{
    color: #D1B686;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.schedule_consultation_content h4 a:hover{
    color: #FFFFFF;
}
.schedule_consultation_content p{
    color: #FFFFFF;
    margin-top: 13px;
}
.footer_area{
    padding-top: 73px;
    padding-bottom: 27px;
    background-color: #F4F4F4;
}
.footer_wrapper{
    display: flex;
    column-gap: 70px;
    padding-bottom: 65px;
    border-bottom: 1px solid #000000;
    margin-bottom: 23px;
}
.footer_logo{
    max-width: 342px;
    width: 100%;
}
.footer_contatc_info{
    max-width: 231px;
    width: 100%;
}
.footer_contatc_info > a{
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 22px;
    color: #D1B686;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.footer_contatc_info > a:hover{
    color: #000000;
}
.footer_contatc_info h6{
    line-height: normal;
    margin-top: 4px;
}
.footer_contatc_info h6 a{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: 'Roboto', sans-serif;
    color:#000000;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.footer_contatc_info h6 a:hover{
    color: #D1B686;
}
.footer_content p{
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #000000;
    padding: 0;
}
.footer_btm ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    column-gap: 20px;
}
.footer_btm li{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000000;
    position: relative;
}
.footer_btm li:not(:last-child)::after{
    position: absolute;
    content: "";
    right: -10px;
    width: 1px;
    height: 60%;
    top: 5px;
    background-color: #000;
}
.footer_btm li a{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    text-decoration-line: underline;
    color: #D1B686;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.footer_btm li a:hover{
    color: #000000;
}
@media(max-width:1199px){
    .schedule_consultation_content h2, .doctor_inject_content h2, .faq_inject_heading h2, .contact_us_wrapper h2, .testimonial-wrapper h2, .standard-wrapper h2, .special-inject-content h2{
        font-size: 34px;
        line-height: 34px;
    }
    .special-inject-wrapper{
        padding: 30px;
    }
    .each-testimonial p{
        font-size: 27px;
        line-height: 40px;
    }
    .footer_wrapper{
        column-gap: 30px;
    }
}
@media(max-width:991px){
    .header_right ul{
        column-gap: 15px;
    }
    .banner_form{
        margin-right: auto;
        background-color: transparent;
    }
    .banner_form_area{
        background-color: #1D5A49;
    }
    .special-inject-wrapper{
        margin-top: 0;
    }
    .testimonial-wrapper,
    .special-inject-wrapper {
        padding: 80px 0;
        background-color: transparent;
        box-shadow: none;
        -webkit-box-shadow: none;
    }
    .testimonial-area,
    .special-inject-sec{
        box-shadow: 0px 0px 15px 0px #00000026;
        -webkit-box-shadow: 0px 0px 15px 0px #00000026;
        background-color: #F4F4F4;
    }
    .special-inject-content {
        margin-bottom: 49px;
    }
    .special-inject-sec {
        margin-bottom: 53px;
    }
    .special-inject-wrapper .row,
    .standard-wrapper .row{
        display: block;
    }
    .special-inject-btn {
        text-align: left;
    }
    .logos-inject-sec {
        margin-top: 53px;
        margin-bottom: 48px;
    }
    .each-standard-img{
        margin-bottom: 10px;
    }
    .standard-desciption{
        margin-top: 76px;
    }
    .standard-sec {
        margin-top: 48px;
        margin-bottom: 61px;
    }
    .testimonial-wrapper{
        margin-bottom: 0;
        text-align: left;
    }
    .contact_us_wrapper{
        text-align: left;
    }
    .contact_us_area{
        text-align: left;
        padding: 86px 0;
    }
    .contact_us_wrapper p{
        margin-bottom: 37px;
    }
    .contact_us_wrapper h6{
        margin-top: 16px;
    }
    .get-started-inject-sec {
        margin-top: 93px;
        margin-bottom: 82px;
    }
    .standard-img-area{
        margin-bottom: 50px;
    }
    .faq_inject_heading{
        display: block;
    }
    .faq_inject_accordion .accordion{
        webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
    .doctor_inject_sec {
        margin-top: 90px;
        margin-bottom: 0;
        padding: 21px 0 87px;
        background-color: #F4F4F4;
        box-shadow: 0px 0px 15px 0px #00000026;
        -webkit-box-shadow: 0px 0px 15px 0px #00000026;
    }
    .doctor_inject_content {
        padding-left: 0;
    }
    .doctor_inject_img {
        padding-left: 0px;
        margin-bottom: 45px;
    }
    .doctor_inject_wrapper .row{
        flex-direction: column-reverse;
    }
    .doctor_inject_wrapper{
        box-shadow: none;
        -webkit-box-shadow: none;
        padding: 0;
    }
    .doctor_inject_wrapper .col-md-6{
        width: 100%;
    }
    .doctor_inject_content ul{
        margin-top: 58px;
    }
    .schedule_consultation_sec{
        align-items: end;
        padding-bottom: 68px;
    }
    .schedule_consultation_wrapper .row{
        display: block;
    }
    .footer_wrapper{
        display: block;
    }
    .footer_logo{
        margin-bottom: 42px;
    }
    .footer_contatc_info{
        margin-bottom: 30px;
    }
    .footer_wrapper{
        padding-bottom: 53px;
    }
}
@media(max-width:767px){
    .header_right a.website-visit,
    .header_right a.header_btn{
        display: none;
    }
    .banner_area{
        padding-bottom: 50px;
        align-items: end;
    }
    .banner_content h3{
        font-size: 20px;
        line-height: 30px;
    }
    .special-inject-content h2 {
        margin-bottom: 13px;
    }
    .footer_btm ul{
        display: block;
    }
    .footer_btm li:not(:last-child)::after{
        display: none;
    }
}