/*************** Import Css **************/

@import "common.css";
@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/*font-family: 'Montserrat', sans-serif;*/


/********************* Header Css ******************/

.header-area {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 99;
	width: 100%;
}

.top-header {
	background: #2C3C4B;
}

.top-header-left ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: flex;
}

.top-header-left ul li a {
	font-size: 13px;
	line-height: 24px;
	color: #fff;
	font-weight: 400;
	padding: 3px 25px;
	border-right: 1px solid #707070;
	display: inline-block;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.top-header-left ul li a:hover {
	background: #546270;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.top-header-right ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: flex;
	justify-content: end;
}

.top-header-right ul li a {
	font-size: 13px;
	line-height: 24px;
	color: #fff;
	font-weight: 400;
	border-right: 1px solid #707070;
	padding: 3px 15px;
	display: inline-block;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.top-header-right ul li a:hover {
	color: #9DE5F5;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.top-header-right ul li:last-child a {
	font-weight: 700;
	color: #9DE5F5
}

.phone-number-and-book-now ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: flex;
	align-items: center;
	gap:55px
}

.phone-number-and-book-now ul li {
	/*margin-left: 35px;*/
	position:relative
}
.phone-number-and-book-now ul li:after{
	height:30px;
	width:2px;
	background-color: #BCBCBC;
	position: absolute;
	content:'';
	top:-2px;
	right:-27px;
}
.phone-number-and-book-now ul li:last-child:after {
	margin-left: 0px;
	display:none;
}
.phone-number-and-book-now ul li a strong{
	margin-right: 5px;;
}
.phone-number-and-book-now ul li a {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.phone-number-and-book-now ul li a:hover {
	color: #5CA9BA !important;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.phone-number-and-book-now ul li.book-now-button a {
	color: #fff;
	background: #5CA9BA;
	border: 1px solid #5CA9BA;
	padding: 7px 20px 7px 20px;
}

.phone-number-and-book-now ul li.book-now-button a:hover {
	color: #fff;
	background: #0B0B0B;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.book-now-button a{
	color:#fff;
	border-color:#fff;
}
.book-now-button a:hover{
	border-color:#000;
}
.search-box {
	width: 45px;
	height: 45px;
	border: 1px solid #fff;
	border-radius: 23px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.search-box:hover {
	background-color: #5CA9BA;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.menu-icon img {
	cursor: pointer;
}

.search-box>img {
	filter: invert(1) brightness(100);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.header-right>div {
	margin-left: 40px;
}

.header-right>div:first-child {
	margin-left: 0px;
}

.main-header {
	padding: 20px;
}

.header-area.fixed_header {
	top: -100%;
	width: 100%;
	background: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-webkit-box-shadow: 0px 0px 29px -3px rgb(0 0 0 / 30%);
	-moz-box-shadow: 0px 0px 29px -3px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 29px -3px rgb(0 0 0 / 30%);
}

.header-area.fixed_header.stky {
	position: fixed;
	top: 0px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.header-area.fixed_header .main-header {
	padding: 12px 0px;
}

.header-area.fixed_header .phone-number-and-book-now ul li a, .header-navigation-wrapper.header-area.active .phone-number-and-book-now ul li a {
	color: #0B0B0B;
}

.header-area.fixed_header .phone-number-and-book-now ul li.book-now-button a , .header-navigation-wrapper.header-area.active .phone-number-and-book-now ul li.book-now-button a {
	color: #fff;
}

.header-area.fixed_header .search-box, .header-navigation-wrapper.header-area.active .search-box {
	border: 1px solid #0B0B0B
}

.header-area.fixed_header .search-box>img, .header-navigation-wrapper.header-area.active .search-box>img {
	filter: invert(0) brightness(00);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.header-area.fixed_header .menu-icon img, .header-navigation-wrapper.header-area.active .menu-icon img{
	filter: invert(1) brightness(00);
}

.header-area.fixed_header .header-logo, .header-navigation-wrapper.header-area.active .header-logo {
	display: block !important
}
.header-area.fixed_header .book-now-button a{
	background:#2A5262;
	border:#2A5262;
	color:#fff
}
.header-area.fixed_header .top-header {
	display: none;
}
.mob-logo {
	display: none;
}
/************************* Menu Css *********************/

.header-navigation-wrapper.header-area {
	pointer-events: none;
	z-index: -100;
	opacity: 0;
	transition: transform .35s,opacity .35s;
	position: absolute;
	padding: 0px;
}
.header-navigation-wrapper.header-area.active {
	position:fixed;
	width:100%;
	height:100%;
	background-color:#fff;
	pointer-events: all;
	z-index: 99999;
	transform: translateY(0);
	opacity: 1;
	top:0px;
	left:0px;
}
.header-navigation-wrapper.header-area .menu-wrapper{
	transition: all .35s;
	opacity:0
}
.header-navigation-wrapper.header-area.active .menu-wrapper{
	transform: scale(1);
	opacity: 1;
}
.dextop-menu{
	padding:0px;
	list-style:none;
	margin:0px;
	border-right:1px solid #636363;
	float:left;
}
.menu-wrapper .container-fluid {
	display: table;
	height: calc(100vh - 84px);
}
.menu-wrapper .container-fluid > div {
	display: table-cell;
	vertical-align: middle;
	padding-top: 0px;
	padding-left:60px;
	padding-right:60px;
}
.header-navigation-wrapper.header-area .dextop-menu{
	transform: translateY(-9rem);
	transition: all .35s .35s;
}
.header-navigation-wrapper.header-area.active .dextop-menu{
	transform: translateY(-.9rem);
	padding:0px 0px;
}
.header-navigation-wrapper.header-area.active .book-now-button a{
	color:#000;
	background-color: transparent;
	border:1px solid #000;
}
.header-navigation-wrapper.header-area.active .book-now-button a:hover{
	color:#fff;
	background-color: #000;
	border-color:#000
}
.dextop-menu > li > ul{
	position: absolute;
	width: 100%;
	list-style: none;
	padding: 20px 0px 0px 0px;
	margin: 0px;
	top: 0px;
	transform: translateX(-2rem);
	transition: opacity .45s .35s,transform .485s .45s;
	/*display: none;*/
	opacity: 0;
	z-index: -1;
}
.dextop-menu > li.active > ul{
	transform: translateX(0);
	box-sizing: border-box;
	opacity: 1;
	z-index: 1;
}
.menu-wrapper .container{
	display:table;
	height:calc(100vh - 84px);
}
.menu-wrapper .container > div{
	display:table-cell;
	vertical-align:middle;
	padding-top:0px;
}
.menu-wrapper .container > div > nav{
	position:relative;
}
.dextop-menu > li{
	padding:16px 0px;
}
.dextop-menu > li > a{
	font-size:24px;
	line-height:26px;
	font-weight:500;
	color:#0B0B0B;
	padding: 10px 60px 10px 0px;
	display:block;
	width: 100%;
	transition: all .5s;
	position:relative;
	font-family: "ivyora-display",serif;

}
.dextop-menu > li.active > a:after{
	width: 100vh;
	height: 100%;
	background: #608696;
	top: 50%;
	transform: translateY(-50%);
	right: -33px;
	content: '';
	position: absolute;
	border-radius: 25px;
	z-index: -1;
}
.dextop-menu > li.active > a{
	color:#fff;
}
.dextop-menu > li > ul > li{
	display:block;
	padding-left:70px;
	width: 100%;
	/*white-space: nowrap;*/
	vertical-align: top;
}
.dextop-menu > li > ul > li > a{
	color: #546270;
	font-size:21px;
	line-height:35px;
	text-transform:uppercase;
	font-weight:500;
	display:inline-block;
	font-family: "ivyora-display", serif;
	margin-bottom: 20px;
}
.dextop-menu > li > ul > li > a:hover{
	color: #323D90;
}
.dextop-menu > li > ul > li > ul{
	list-style:none;
	padding:0px;
	margin:0px;
}
.dextop-menu > li > ul > li > ul > li > a{
	color:#0B0B0B;
	font-size:16px;
	font-weight:400;
	line-height:32px;
}
.dextop-menu > li.active > ul.big-menu{
	display:block;
}
.dextop-menu > li.big-menu > ul > li{
	display:inline-block;
	width:100%;
	position: relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	margin-bottom:30px;
}
.sub-menu-toggle{
	display:none;
}
.dextop-menu > li.with-image > ul{
	display:table
}
.dextop-menu > li.with-image > ul > li{
	display:table-cell;
	width:auto;
}
.menu-image-title-after.menu-image-title{
	display:none;
}
.dextop-menu > li.with-image > ul > li.image-block {
	padding-left:50px;
	width:291px;
	position:relative;
}
.menu-image-title-after.menu-image-not-hovered img{
	padding-right:0px !important;
}
.image-block > a{
	display:block;
	position:relative;
	border-radius:10px;
	overflow:hidden;
	-webkit-box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.42);
	-moz-box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.42);
	box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.42);
}
.image-block > a:after{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	content:'';
	background:url('https://psagrdlm.wpengine.com/wp-content/uploads/2022/02/Rectangle-73.png') no-repeat center center /cover;
}
.image-block > ul{
	position: absolute;
	bottom: 10px;
	left: 50px;
	padding: 20px 30px !important;
	white-space: normal;
}
.image-block > ul > li > a{
	font-weight:300 !important;
	color:#fff !important;
	font-size:20px !important;
	text-transform: uppercase;
}
/******************* End Menu Css *****************/
/****************** Banner Css *********************/

.banner-area {
	position: relative;
	overflow: hidden;
	width: 100%;
	min-height: 100vh;
	background-color: #4B4B4B;
}

.banner-area:after{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: url('/wp-content/uploads/2025/08/OVERLAY.png') no-repeat center center / cover;
}

video {
	min-width: 100%;
	min-height: 100vh;
	z-index: 1;
	position: relative;
}

.banner-area video:after {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient(45deg, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .7) 50%);
	background-size: 3px 3px;
	z-index: 2;
	content: '';
}

.banner-content {
	position: absolute;
	bottom: 30px;
	width: 100%;
	z-index: 9;
}

.banner-content-left {
	padding-bottom: 30px;
	position: relative;
	margin-bottom: 50px;
}

.banner-content-left:after {
	width: calc(100% + 50px);
	height: 1px;
	background: #FFFFFF;
	content: '';
	position: absolute;
	bottom: 0px;
	left: -25px;
}

.banner-content-left img {
	margin-bottom: 30px;
	margin-left: -75px;
}

.banner-content-left p {
	color: #fff;
	letter-spacing: -0.5px;
	margin: 0px;
}

.banner-content-right h1 {
	font-size: 50px;
	line-height: 50px;
	max-width: 467px;
	margin-left: auto;
	margin-bottom: 27px;
}

.mobile-banner-image {
	display: none;
}


/************ Testimonial Area *************/

.testimonial-area {
	padding: 110px 0px 140px;
}

.testimonial-left {
	position: relative;
}

.testimonial-left h2 {
	margin-bottom: 0px;
}

.testimonial-left:before {
	width: 146px;
	height: 154px;
	content: '';
	position: absolute;
	background: url('../images/Group 345.png');
	top: -65px;
	left: -80px;
}

.testimonial-left p {
	font-family: 'Adobe Garamond Pro';
	color: #0B0B0B;
	font-size: 32px;
	line-height: 42px;
	font-style: italic;
	padding-left: 15px;
}

.testimonial-left .common-button span {
	margin-right: 10px;
}

.testimonial-image {
	width: 375px;
	height: 375px;
	border-radius: 100%;
	margin-left: auto;
	margin-right: 0px;
	position: relative;
	-webkit-box-shadow: 0px 0px 26px -9px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 0px 26px -9px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 0px 26px -9px rgba(0, 0, 0, 0.75);
}

.testimonial-image:after {
	content: '';
	width: 708px;
	height: 670px;
	background: url('../images/Group 13.png') no-repeat center center;
	top: 50%;
	left: 50%;
	transform: translate(-47%, -50%);
	position: absolute;
}

.testimonial-image>img {
	object-fit: cover;
}

.animation-round-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-47%, -50%);
}

.animation-round-image img {
	max-width: none;
}

.testimonial-services-links ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.testimonial-services-links ul li {
	display: inline-block;
	margin-right: 80px;
}

.testimonial-services-links ul li a {
	padding-left: 30px;
	display: inline-block;
	position: relative;
}

.testimonial-services-links ul li a:before {
	width: 70px;
	height: 70px;
	background: #F2F2F2;
	border-radius: 100%;
	content: '';
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	z-index: -1;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.testimonial-services-links ul li a h3 {
	font-size: 26px;
	color: #546270;
	line-height: 26px;
	margin: 0px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.testimonial-services-links ul li a p {
	font-size: 18px;
	font-weight: 500;
	color: #546270;
	margin: 0px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.testimonial-services-links ul li a:hover:before {
	width: 122px;
	height: 122px;
	left: -30px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.testimonial-services-links {
	margin-top: 70px;
}

.testimonial-services-links ul li a:hover h3,
.testimonial-services-links ul li a:hover p {
	opacity: 0.5;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.mobile-testimonial-services {
	display: none;
	padding-top: 50px;
}

.mobile-testimonial-services ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.mobile-testimonial-services ul li {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #000;
}

.mobile-service-image {
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 100%;
}

.mobile-service-content h3 {
	font-size: 21px;
	margin: 0px;
	line-height: 25px;
}

.mobile-service-content p {
	font-weight: 700;
	margin: 0px;
	color: #546270;
}

.mobile-service-content {
	padding-left: 25px;
}


/******************* Home Services *****************/
.service-text-blog{
	max-width: 300px;;
}
.service-text-blog h2 {
	margin-bottom: 10px;
	font-family: "ivyora-display",serif;
	color:#7D7D7D;
}
.service-text-blog p{
	line-height:30px;
	font-weight:300;
	color:#1D1D1D;
	font-size:16px;
}
.item-image {
	position: relative;
	-webkit-box-shadow: 0px 0px 29px -3px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 29px -3px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 29px -3px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	overflow: hidden;
}

.item-image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	top: 0px;
	left: 0px;
	background:url('/wp-content/uploads/2025/08/Rectangle-61.png') no-repeat center center / cover;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	z-index: 1;
}


.item-text {
	position: absolute;
	width: 100%;
	bottom: 0px;
	left: 0px;
	padding: 50px 25px 25px;
	z-index: 2;
}

.item-text h3 {
	color: #fff;
	padding-left: 15px;
	margin-bottom: 18px;
	font-size: 28px;
	line-height: 30px;
	font-weight: 400;
	text-transform: uppercase;
}

.hover-procedure>a {
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	display: inline-block;
	margin-bottom: 18px;
	padding-left: 15px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.hover-procedure {
	max-height: 0px;
	overflow: hidden;
	transition: all 1s;
	-webkit-transition: all 1s;
}

.hover-procedure ul {
	padding-top: 18px;
	border-top: 1px solid #fff;
	padding-left: 15px;
	list-style: none;
	margin: 0px;
}

.hover-procedure ul li a {
	color: #fff;
	font-size: 16px;
	line-height: 40px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.item-image:hover .hover-procedure {
	max-height: 1000px;
}

.more-procedure {
	text-align: center;
	margin-top: 70px;
}

.procedure-gallery {
	margin: 30px 0px 100px 0px;
}

.procedure-gallery .procedure-item {
	padding: 0px 20px;
}

.procedure-service-wrapper {
	margin: 0px -20px;
}

.service-text-blog {
	padding-right: 5px;
}

.home-procedure {
	padding: 20px 0px 0px;
}

.hover-procedure a:hover {
	color: #5CA9BA;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}


/************************* Non Surgicale Area *****************/

.non-surgical-area {
	padding: 155px 0px 40px;
	margin-bottom: 150px;
	height: 670px;
	background-position: top center;
}

.non-surgical-content {
	position: relative;
}

.non-surgical-content h2 {
	color: #fff;
	margin-bottom: 9px;
}

.non-surgical-content p {
	color: #fff;
	margin-bottom: 35px;
}

.non-surgical-content ul {
	margin: 0px;
	padding: 0px;
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin-left: -55px;
	margin-top: 60px;
}

.non-surgical-content ul li {
	vertical-align: middle;
}

.non-surgical-content:before {
	/*width: 146px;
	height: 154px;
	content: '';
	position: absolute;
	background: url('../images/Group 364.png');
	top: -90px;
	left: -55px;*/
}


/********************* Our Specialist Section ******************/

.specialist-section {
	margin-top: 100px;
	margin-bottom: 100px;
}

.specialist-content-part {
	max-width: 950px;
	position: relative;
}

.specialist-content-part h2 {
	margin-bottom: 25px;
}

.specialist-content-part p{
	font-size: 16px;
	line-height: 30px;
	color: #000;
	font-weight: 300;
	margin-bottom: 22px;
}
.team-member-image {
	width: 225px;
	height: 225px;
	border-radius: 100%;
	overflow: hidden;
	margin-bottom: 15px;
	box-shadow: 0 0 7.5px 0 rgba(0, 0, 0, 0.18);
}

.each-team-member h4 {
	font-weight: 700;
	font-size: 16px;
	line-height: 30px;
	color: #000;
	margin-bottom: 0px;
}
.each-team-member h4 a{
	font-weight: 700;
	font-size: 16px;
	color: #000 !important;
	line-height: 30px;
}
.each-team-member h5{
	color: #000;
	line-height: 30px;
	font-size: 16px;
}
.each-team-member p {
	font-size: 15px;
}

.team-member-wrapper {
	margin-top: 40px;
}


/**************** Surgical Facility Area *****************/

.surgical-facility-area {
	padding: 70px 0px;
}

.surgical-facility-left {
	display: inline-block;
	border-radius: 10px;
	overflow: hidden;
}

.surgical-area-right {
	margin-left: 45px;
	max-width: 398px;
	width: 100%;
}

.surgical-area-right>img {
	margin-bottom: 15px;
}

.surgical-area-right h2 {
	margin-bottom: 10px;
}

.surgical-area-right p {
	margin-bottom: 50px;
}


/******************* Instragram Area *****************/

.instragram-area {
	padding: 70px 0px;
}

.instragram-left {
	padding-left: 40px;
	position: relative;
	padding-right: 15px;
}

.instragram-left:after {
	width: 94px;
	height: 94px;
	content: '';
	position: absolute;
	background: url('/wp-content/uploads/2025/08/Heart-like.png');
	top: -55px;
	left: -18px;
	z-index: -1;
}

.instragram-left h2 {
	margin-bottom: 18px;
}

.instragram-left p {
	margin-bottom: 40px;
	font-size:16px;
}


/***************** Footer Area ***************/

.dlm-cred {
	text-align: center;
	margin: auto;
	padding-top: 12px;
	display: block;
}
.dlm-cred p {
	font-size: 12px;
	float: right;
}
.newletter-area {
	background: #E6E6E6;
	padding: 60px 0px;
}

.newsletter-wrapper {
	max-width: 548px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.newsletter-wrapper h2 {
	margin-bottom: 5px;
}
footer{
	background-color:rgba(42,82,99,0.5);
	position:relative;
	z-index: 1;
}
footer:after{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	content:'';
	background:url('../images/gradient.png') no-repeat center center / cover;
	z-index: -1;

}
.footer-top-area {
	/*background: #2C3C4B;*/
	padding: 45px 0px 60px;
}

.footer-nav-area {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 28px 0px;
}

.footer-nav-area ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	text-align: center
}

.footer-nav-area ul li {
	display: inline-block;
	padding: 0px 25px;
}

.footer-nav-area ul li a {
	font-size: 16px;
	line-height: 24px;
	font-weight: 300;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 1px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.footer-nav-area ul li a:hover {
	color: #5CA9BA;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.footer-logo {
	margin-bottom: 50px;
	padding: 0 180px 0 180px
}

.footer-content {
	padding: 45px 0px 0px;
}

.each-footer-content h4 {
	color: #fff;
	font-weight:400;
	font-size: 18px;
	line-height: 36px;
}

.each-footer-content ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
}
.footer-phone-number {
	margin-bottom: 25px;
}
.footer-phone-number a{
	font-weight: 400;
	font-size: 30px;
	line-height: 36px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color:#fff;
	transition:all 0.5s;
}
.footer-phone-number a:hover{
	color:#9DE5F5;
	transition:all 0.5s;
}
.each-footer-content p:last-child{
	margin-bottom: 0px;
}

.each-footer-content ul li a {
	font-size: 30px;
	color: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.each-footer-content ul li a:hover {
	color: #9DE5F5;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.each-footer-content p a {
	color: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.each-footer-content p a:hover {
	color: #9DE5F5;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.each-footer-content p a strong {
	color: #9DE5F5;
}

.each-footer-content p {
	color: #fff;
	line-height: 30px;
	margin-top:0px;
	margin-bottom: 10px;
}

.parking-content {
	max-width: 249px;
}

.hours-content {
	margin-left: -20px;
}

.footer-bottom-left p {
	margin: 0px;
}

.footer-bottom-right {
	text-align: right;
}

.footer-bottom-right ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.footer-bottom-right ul li {
	display: inline-block;
	border-left: 1px solid #BCBCBC;
	padding: 0px 8px;
}

.footer-bottom-right ul li:last-child {
	padding-right: 0px;
}

.footer-bottom-right ul li:first-child {
	border: 0px;
}

.footer-bottom-right ul li a {
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
	color: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.footer-bottom-left p {
	font-size: 14px;
	color:#fff;
}
.footer-bottom-right ul li a:hover {
	color: #9DE5F5;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.footer-bottom {
	padding: 10px 0px 30px;
}


/* %%%%%%%%%%%%%%%%%%% non-surgical-slider %%%%%%%%%%%% */

.non-surgical-slider {
	display: none;
}


/****************** Procedure Page Css *****************/

.inner-banner {
	padding: 210px 0px;
}

.page-content {
	padding: 0px 0px 0px 0px;
}

.page-content-wrapper {
	max-width: 890px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.page-content-wrapper ul {
	padding-left: 25px;
	list-style: none;
}

.page-content-wrapper ul li:before {
	content: '-'
}

.review-section {
	background-color: #2C3C4B;
	padding: 120px 0px 70px 0px;
	margin-top: 70px;
	margin-bottom: 70px;
}

.reviw-content-wrpper h2 {
	color: #fff;
	margin-bottom: 0px;
}

.reviw-content-wrpper h4 {
	margin-bottom: 25px;
}

.reviw-content-wrpper p {
	color: #fff;
	font-family: 'Adobe Garamond Pro';
	font-size: 32px;
	line-height: 42px;
	font-style: italic;
	margin-bottom: 35px;
}

.reviw-content-wrpper {
	position: relative;
	z-index: 1;
}

.reviw-content-wrpper:after {
	width: 146px;
	height: 154px;
	content: '';
	position: absolute;
	background: url('../images/Group 364.png');
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0.3;
	z-index: -1;
}

.meet-specialist-content-part h2 {
	margin-bottom: 10px;
}

.meet-specialist-content-part ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
}

.meet-specialist-content-part ul li {
	display: inline-block;
	margin-right: 20px;
}

.meet-specialist-content-part ul li:before {
	display: none;
}

.meet-specialist-doc .team-member-image {
	margin-bottom: 0px;
	box-shadow: none;
}

.meet-specialist-doc a.common-button.blue-button {
	position: relative;
	top: -40px;
}

.meet-specialist-doc a.common-button.blue-button span {
	margin-right: 10px;
}

.meet-specialist-doc.each-team-member h4 {
	margin-top: 10px;
}

.meet-specialist-content-part {
	padding-right: 40px;
	position: relative;
}

/* .meet-specialist-content-part:after {
width: 146px;
height: 154px;
content: '';
position: absolute;
background: url('../images/Group 345.png');
top: -50px;
left: -50px;
} */

.meet-specialist-inject {
	padding: 80px 0px 80px;
}

.real-patient-content:after {
	display: none;
}

.real-patient-content {
	padding: 0px 30px;
}

.real-patient-content:before {
	position: absolute;
	width: 100vw;
	right: -25%;
	height: calc(100% + 60px);
	background: #2C3C4B;
	content: '';
	border-radius: 10px;
	top: -30px;
	z-index: -9
}

.real-patient-content h2,
.real-patient-content p {
	color: #fff;
}

.real-patients {
	margin-top: 100px;
	margin-bottom: 100px;
}


/* ******************* FAQ *************** */

.faq-area {
	margin-bottom: 35px;
	margin-top: 45px;
}

.accordion {
	list-style: none;
	padding: 2px;
}

.accordion>li {
	display: block;
	list-style: none;
}

.accordion>li>span {
	display: block;
	margin: 4px 0 13px;
	padding: 13px 30px;
	background: url(../images/+.png) no-repeat 97% center;
	cursor: pointer;
	font-size: 21px;
	line-height: 26px;
	color: #546270;
	font-weight: 500;
	border: 2px solid #546270;
	border-radius: 30px;
}

.accordion>li>div {
	font-size: 16px;
	line-height: 24px;
	color: #0B0B0B;
	font-weight: 400;
	list-style: none;
	padding: 6px 40px;
	display: none;
	overflow: auto;
	margin-bottom: 15px;
}

.accordion li>span.active {
	background: url(../images/-.png) no-repeat 97% center;
	background-size: 20px;
}

.page-content-wrapper .faq-area ul li:before {
	display: none;
}

.page-content-wrapper .faq-area ul {
	padding-left: 0px;
}


/* %%%%%%%%%%%%%%%%%%%%%%% Blog Page %%%%%%%%%%%%%%%% */

.blog-wrapper {
	padding-top: 5px;
	padding-bottom: 60px;
}

.blog-wrapper h1 {
	line-height: 60px;
	color: #546270;
	margin-bottom: 32px;
}

.blog-wrapper h2 {
	padding-top: 16px;
}

.blog-wrapper h3 {
	padding-top: 10px;
	margin-bottom: 10px;
}

.blog-wrapper h4 {
	padding-top: 30px;
}

.our-blog-wrapper {
	padding-top: 10px;
	padding-bottom: 50px;
}

.our-blog-wrapper h2 {
	margin-bottom: 17px;
}

.our-blog-each {
	margin-bottom: 75px;
}

.consul-wrapper {
	padding: 150px 100px 100px 100px;
	text-align: center;
	position: relative;
}

.consul-wrapper h2 {
	color: #fff;
	margin-bottom: 33px;
}

.consul-wrapper p {
	color: #fff;
	margin-bottom: 33px;
}

.consul-area {
	position: relative;
	margin-top: 50px;
	margin-bottom: 0px;
}

.consul-area:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: #000000;
	opacity: 0.55;
}

.consul-wrapper .common-button {
	color: #fff;
	border: 1px solid #fff;
}

.consul-area:after {
	width: 146px;
	height: 146px;
	background: url(../images/Group\ 3640.png) no-repeat center center /cover;
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translatex(-50%);
	content: '';
}


/* %%%%%%%%%%%%%%%%%%%%%%% Gallery %%%%%%%%%%%%%% */

.gallery-wrapper .row {
	margin-right: -30px;
	margin-left: -30px;
}

.gallery-wrapper .row .col-lg-6, .gallery-wrapper .row .col-lg-4, .gallery-wrapper .row .col-lg-8 {
	padding-right: 30px;
	padding-left: 30px;
}

.gallery-wrapper h1 {
	color: #546270;
	margin-bottom: 53px;
	line-height: 60px;
}

.gallery-each {
	text-align: center;
	margin-bottom: 70px;
}

.gallery-each .common-button {
	margin-top: 30px;
}

.gallery-case-wrapper {
	margin-bottom: 160px;
}

.gallery-case-wrapper h1 {
	color: #546270;
	margin-bottom: 30px;
	line-height: 60px;
}

.gallery-case-wrapper .common-button {
	margin: 0 auto;
	margin-top: 50px;
	display: table;
}

.gallery-case-image {
	margin-bottom: 16px;
}

.gallery-case-image-area {
	padding-top: 6px;
}


/* %%%%%%%%%%%%%%%%%%%% Template %%%%%%%%%%% */

.template-wrapper {
	padding-top: 10px;
	padding-bottom: 70px;
	max-width: 900px;
	margin: 0 auto;
}

.template-image-vidio {
	text-align: center;
	margin-right: 50px;
	margin-bottom: 35px;
	margin-top: 30px;
	float: left;
}

.tem-image {
	width: 325px;
	height: 325px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: -20px;
}

.template-image-vidio .common-button span {
	margin-right: 10px;
}

.template-best {
	padding-top: 28px;
}

.creden-wrapper {
	background-color: #546270;
	padding-top: 65px;
	padding-bottom: 40px;
}

.creden-each ul {
	padding: 0px;
	margin: 0px;
	margin-left: 30px;
}

.creden-each ul li {
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 17px;
}

.creden-each {
	margin-left: 15px;
	margin-right: 60px;
}


/* %%%%%%%%%%%%%%%%%%%%%%% NEW %%%%%%%%%%%%%%%%% */

.site-bread-area {
	margin-top: 40px;
	margin-bottom: 40px;
}

.template-banner-area {
	padding: 25px 0px;
	background-color: #2C3C4B;
}

.template-banner {
	position: relative;
}

.template-banner:after {
	width: 75px;
	height: 75px;
	background: url(../images/Group\ 440.png) no-repeat center center /cover;
	position: absolute;
	top: -35%;
	left: -46px;
	content: '';
}

.interiors-wrapper {
	max-width: 950px;
	margin: 0 auto;
}
.service-intro-area{
	margin-top: 60px;
}
.service-intro-area p{
	font-size: 16px;
	font-weight: 300;
	color: #000;
	line-height: 30px;
}
.contact-right {
	background-color: #2C3C4B;
	padding: 40px 50px;
	padding-bottom: 25px;
	border-radius: 10px;
}

.contact-phone {
	margin-bottom: 60px;
}

.contact-phone h4 {
	color: #fff;
}

.contact-phone p a {
	color: #fff;
}

.contact-phone p a:hover {
	color: #9DE5F5;
}

.contact-social {
	margin-bottom: 50px;
}

.contact-address {
	margin-bottom: 60px;
}

/************** Contact Form Css *************/

body .gform_wrapper .ginput_container input, 
body .gform_wrapper .ginput_container select,
body .gform_wrapper .ginput_container textarea{
	width: 100%;
	border-radius:24px;
	border:1px solid #D9D9D9 ;
	background-color:#fff;
	font-size:16px;
	color:#000 !important;
	padding: 10px 25px !important;
	appearance: none;
	-webkit-appearance: none;
	resize:none;
	font-weight:400;
	font-style:italic;
	margin-top:0px !important;
}
body .gform_wrapper .ginput_container select{
	background: url('/wp-content/uploads/2022/02/Icon-ionic-ios-arrow-down.png') #fff no-repeat 97% center;
}
body .gform_wrapper .ginput_container input::-webkit-input-placeholder { /* Edge */
	color: #000;
}
body .gform_wrapper .ginput_container input:-ms-input-placeholder { /* Internet Explorer */
	color: #000;
}

body .gform_wrapper .ginput_container input::placeholder {
	color: #000;
}
body .gform_wrapper .ginput_container textarea::-webkit-input-placeholder { /* Edge */
	color: #000;
}
body .gform_wrapper ul li.gfield {
	margin-top: 15px !important;
	padding-top: 0;
}
body .gform_wrapper .ginput_container textarea {
	height: 170px !important;
}
body .gform-footer  .gform_button{
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	color: #000;
	text-transform: uppercase;
	border: 1px solid #999 !important;
	border-radius: 23px !important;
	background-color: transparent !important;
	padding: 7px 30px 7px 30px !important;
	display: inline-block;
	min-width: 160px;
	text-align: center;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
body .gform-footer  .gform_button:hover{
	background-color: #2A5262 !important;
	color: #fff;
	border-radius: 44px !important;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.request-consultation .gform_legacy_markup_wrapper .gform_footer {
	text-align: center;
}
.contact-form .gform_legacy_markup_wrapper .gform_footer {
	margin-top: 6px;
}
.contact-us-area{
	margin-top: 45px;
	margin-bottom: 160px;
}
.contact-form p {
	font-size: 16px;
	line-height: 30px;
	font-weight: 300;
	color: #000;
	padding-right: 16px;
	margin-top: 0px !important;
}
/********** Search Area **********/
.search-area {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	background-color: #4B4B4B;
}
.search-area.active {
	opacity: 1;
	visibility: visible;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.search-area form {
	display: flex;
	align-items: center;
	max-width: 900px;
	margin: 0px auto;
}
.input-feild {
	width: 100%;
}
.input-feild input {
	width: 100%;
	border: 0px;
	border-radius: 0px;
	font-size: 18px;
	font-weight: 600;
	padding: 12px 20px;
}
.search-area .search-button {
	padding: 11px 18px;
	border: 1px solid #fff;
	background: #fff;
}
.search-area .search-button button {
	background: none;
	border: none;
	padding: 0px;
}
.search-area .search-close {
	position: absolute;
	top: 35px;
	right: 35px;
}
.advance-search-wrapper input{
	width: 100%;
	padding: 10px 25px;
}
.search-form-wrapper button{
	padding: 10px 10px;
	border: 0px;
	background: #5CA9BA;
}
.newsletter-wrapper .gform_wrapper form {
	display:table;
	width:100%;
}
.newsletter-wrapper .gform_wrapper form > div{
	display:table-cell;
}
.newsletter-wrapper .gform_wrapper form .ginput_container input {
	width:100%;
}

body .newsletter-wrapper .gform_wrapper ul li.gfield {
	margin-top: 0px !important;
	padding-top: 0;
}
body .newsletter-wrapper .gform_wrapper .top_label div.ginput_container {
	margin-top: 0px;
}
.newsletter-wrapper .gform_wrapper .gform_footer {
	padding: 0px 0 0px;
	margin: 0px 0 0;
}
body .newsletter-wrapper .gravity-from-submit button {
	padding: 11px 40px 9px 40px;
}

/*=============== Quick Link ==================*/
.quick-links-area{
	position: fixed;
	top:25vh;
	right: 0px;
	z-index:9;
	color:#FFFFFF;
	transform: translateX( calc( 100% - 240px ) );
	transition: transform 500ms ease;
}
.quick-links-area.active{
	transform: translateX(0);
	z-index: 99;
}
.quick-links-rotate{
	height:auto;
	width:240px;
	transform: rotate(-90deg) translate(-100%, calc( 240px - 100% ));
	transform-origin: 0 0;
	margin:0px 0px 0px 0px;
	padding-top: 5px;
	float:left;
	/*background:rgba(5, 28, 119, 0.5);*/
	background: #2A5262;
	/* 	font-family: 'Quicksand bold'; */
	border-radius: 5px 5px 0 0;
	text-align:center;
	color:inherit;
	cursor:pointer;
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}
.quick-links-arrow{
	float:right;
	margin:0px 15px 0px 0px;
}
.quick-links-area h3 span{
	font-weight:400;
}
.quick-links-rotate h3{
	color:inherit;
	font-size: 21px;
	line-height: 32px;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-family: "ivyepic-variable", sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
}
.quick-links-arrow svg{
	transform: rotate( -180deg ); 
	transition: all 150ms ease;
	margin-bottom:0px;
}
.quick-links-arrow img{
	transform: rotate( -90deg ); 
	transition: all 150ms ease;
	margin-bottom:0px;
}
.quick-links-area.active .quick-links-arrow svg{
	transform: rotate( 0deg );
	margin-bottom:-5px;
}
.quick-links-area.active .quick-links-arrow img{
	transform: rotate( 90deg );
	margin-bottom:-5px;
}
.quick-link-list{
	float:left;
	width:340px;
	/*background:#303E92;*/
	background: #2A5262;
	/*font-family: 'Montserrat';*/
	line-height:18px;
	text-transform:uppercase;
	padding:30px;
	max-height:75vh;
	min-height: 240px;
	overflow:auto;
	font-weight:700;
}
.quick-link-list ol{
	padding-left: 22px;
}
.quick-link-list ul{
	list-style:none;
	padding-left: 0px;
}
.quick-link-list ol li, .quick-link-list ul li{
	color: #fff;
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 25px;
	/* 	font-family: 'FuturaBT light'; */
	font-weight:300;
}
.quick-link-list ol li:last-child, .quick-link-list ul li:last-child{
	margin-bottom:0px;
}
.quick-link-list li a{
	color:inherit;
	text-decoration:none;
	/* 	font-family: 'Montserrat'; */
	text-transform: none;
	font-weight: 500;
}
.quick-link-list li a:hover{
	color: #999;
}
.home-body-content{
	padding-top:100px;
}
@media(max-width:767px){
	.quick-links-area{
		top: 22vh;
		transform: translateX( calc( 275px - 100% ) );
	}
	.quick-links-rotate{
		position: absolute;
		/*right: 275px;*/
		right:307px;
		padding:10px;
		/*width: 150px;*/
		width:118px;
		transform: rotate(
			-90deg) translate(-100%, calc( 150px - 100% ));
	}
	.quick-link-list{
		width:275px;
		position: absolute;
		right: 0px;
	}
	.quick-links-rotate h3 {
		font-size: 20px;
		line-height: 24px;
		display:none;
	}
}

/* ================== ./Quick Link ============ */

.request-consultation-form .gform_body ul{
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
	margin-right: -15px !important;
	margin-left: -15px !important;
}
.request-consultation-form .gform_footer {
	padding-left:15px !important;
}

.mobile-screen-button{
	background: #5CA9BA;
	position: fixed;
	width: 100%;
	bottom: 0px;
	z-index: 99999;
	left: 0px;
	transition: all .5s;
	display: none;
	-webkit-box-shadow: 0px 0px 19px -5px rgb(0 0 0 / 45%);
	-moz-box-shadow: 0px 0px 19px -5px rgba(0,0,0,0.45);
	box-shadow: 0px 0px 19px -5px rgb(0 0 0 / 45%);
}
.mobile-screen-button ul{
	margin:0px;
	padding:0px;
	font-size:0px;
	display:table;
	width:100%;
}
.mobile-screen-button ul li{
	display:table-cell;
	width:50%;
	text-align:center;
}
.mobile-screen-button ul li a{
	font-weight: 500;
	font-size: 15px;
	line-height:24px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	color: #fff;
	text-align:center;
	padding: 8px 0px;
	display:block;
	text-transform:uppercase;
}
.mobile-screen-button ul li:first-child{
	background:#151515;
}

/* ================ :: Menu Custom Style :: ======================= */
.mobile-header{
	display:none;
}
.mobile-header .menu-icon {
	position: relative;
	top: 15px;
	width: auto;
	display:inline-block;
}
#menu-custom-style{
	left:-100%;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
	overflow-y: auto;
	width: 100%;
	height: 100vh;
	z-index: 97;
	top: 0;
	position: fixed;
	background: #ffffff;
	padding: 60px 15px 0px 15px;
}
#menu-custom-style.active{
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
	left:0;
}
#menu-custom-style .MainMobleMenu{
	margin-top:10px;
	margin-bottom:10px;
}
#menu-custom-style ul li{
	list-style:none;
	margin-left:5px;
	padding-top:10px;
	padding-bottom:10px;
}
#menu-custom-style ul li a{
	color: #0B0B0B;
	font-family: 'Montserrat', sans-serif;
	font-size: 21px;
	display: inline-block;
	margin: 0px 0px;
	line-height: 45px;
	font-weight:500;
}
#menu-custom-style ul li ul li a{
	font-weight:400;
	color:#0B0B0B;
}
#menu-custom-style ul li ul li ul, #menu-custom-style ul li ul li ul li{
	margin-left:0px;
}
#menu-custom-style ul li ul li ul li{
	padding:0px;
}
#menu-custom-style ul li ul li ul li a{
	font-size:16px;
	text-transform:capitalize;
	line-height:30px;
	color:#0B0B0B;
}
#menu-custom-style ul{
	background-image: none !important;
	margin-left: 10px;
	padding: 40px 0px 0px;
}
#menu-custom-style ul li.page_item_has_children{
	position:relative;
}
#menu-custom-style ul li.page_item_has_children.link-none > a{
	pointer-events: all !important;
}
#menu-custom-style ul li.page_item_has_children > a{
	/*display:block;*/
	margin-right:30px;
	margin-left:0;
}
#menu-custom-style ul li.page_item_has_children > a::after{
	content: url('../images/ionic-ios-arrow-down.png');
	top:4;
	right:0;
	padding:0 24px 4px 16px;
	color:#DD988F;
	position:absolute;
	font-size: 25px;
	line-height: 35px;
	webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-o-transition-duration: 0.8s;
	transition-duration: 0.8s;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	transition-property: transform;
	z-index:999;
	width:15px;
	text-align:right;
	background-color:#fff;
	font-weight:300;

}
#menu-custom-style ul li.page_item_has_children > a.arrow-down::after {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);

	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-o-transition-duration: 0.8s;
	transition-duration: 0.8s;

	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	transition-property: transform;
}
#menu-custom-style ul li.page_item_has_children.position-static{
	position:relative !important;
}
#menu-custom-style .children{
	display:none;
}
/*#menu-custom-style .sub-menu li a::after{
display:none;
}*/
#menu-custom-style li.m-open > ul{ /* add > */
	display:block;
}
#menu-custom-style ul ul{
	padding:0px;
}
.MainMobleMenu li.second-level-menu  > ul > li > a{
	display:none;
}  
.cross-menu-img {
	display: none;
	position: relative;
}
.menu-for-mobile.active .cross-menu-img {
	display: block;
}
.mobile-menu-wrapper.active #mobile-menu-icon-custom img{
	display:none;
}
.mobile-menu-wrapper.active .cross-menu-img{
	display:block;
	margin-right:-15px;
}
.mobile-menu-icon-custom{
	display:none;
}
.mobile-view-address{
	padding:30px 10px;
	border-top:1px solid #707070;
}
.mobile-view-address a{
	font-weight:500;
	font-size:18px;
	display:block;
	color:#2F2F2F;
}
a.valet-address{
	font-weight:800;
	font-size:18px;
	display:block;
	color:#5CA9BA;
}
.header-area.open-menu-box .menu-icon-mobile{
	display:none;
}
.header-area.open-menu-box .cross-menu-img{
	display:block;
}
.blog-page h1{
	color:#546270;
	margin-bottom: 30px;
	text-align: left;
}
.blog-page .site-breadcrumb{
	margin-bottom: 20px;
}
.page-content-wrapper ul li:before{
	content:none;
}
.page-content-wrapper ul li{
	list-style:disc;
	margin-bottom: 7px;
}
.procedure-area .non-surgical-area {
	margin-bottom: 0px;
}
.blog-wrapper {
	padding-top: 40px;
}
.side-search-area {
	background: #e6e6e6;
	padding: 50px;
	border-radius: 10px;
	margin-bottom: 45px;
	position:relative;
}
.side-search-area form{
	position:relative;
}
.side-search-area [type=search]{
	width:100%;
	border-radius:25px;
	padding:10px;
}
.side-search-area button{
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
	background: none;
	border: none;
}
.category-list h4{
	color:#000;
}
.category-list p{
	line-height:30px;
}
.view-all-post-link{
	text-align: center;
	position: absolute;
	width: 100%;
	left: 50%;
	transform: translate(-50%);
	bottom: -15px;
}
.view-all-post-link a{
	width: 230px;
	color: #fff;
	background: #608696;
	border: 1px solid #608696;
	padding: 7px 20px 7px 20px;
	margin:auto;
}
.extra-button-links{
	text-align:center;
}
.extra-button-links a{
	display:block;
	width:90%;
	margin:auto auto 15px;
}
.follow-on-social{
	text-align:center;
}
.follow-on-social h4{
	color:#000;
}
.follow-on-social ul{
	margin: 0px;
	padding: 0px;
	list-style: none;
	margin-top: 10px;
	display: inline-block;
}
.follow-on-social ul li{
	display: inline-block;
	margin:auto 7px;
}
.follow-on-social ul li a {
	font-size: 35px;
	color: #000;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.follow-on-social ul li a:hover{
	color: #608696;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;	
}
.search-close a img{
	filter: brightness(0) invert(1);
}
.fof{
	padding:150px 0px;
}
.mobile-view-address{
	padding: 30px 10px 50px;
}
/* ======= - End::Menu Custom Style - ===========*/
@media(max-width:1199px){
	/*.desk-menu{
	display:none;
}*/
	.menu-icon-mobile img {
		filter: invert(1) brightness(0);
	}
	.menu-icon-mobile{
		margin-left:40px;
	}
	.image-block{
		display:none !important;
	}
}
.sidebar-filter{
	border-radius: 10px;
	background: rgba(235, 235, 235, 0.93);
	padding:50px;
	margin-bottom:30px;
}
.sidebar-filter-wrap{
	margin-bottom:0px !important;
}
.sidebar-filter-button-wrap {
	text-align: center;
	margin-bottom: -45px;
}
.sidebar-button-wrap{
	padding:0px 30px;
}
.sidebar-social-media-wrap{
	text-align:center;
	margin-bottom:30px;
}
.sidebar-social-media-wrap h4{
	color:#000000
}
.sidebar-social-media-wrap ul{
	margin:0px;
	padding:0px;
}
.sidebar-social-media-wrap ul li {
	display: inline-block;
	margin: 0px 10px;
}
.sidebar-social-media-wrap ul li a{
	font-size:27px;
	color:#000000;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.sidebar-social-media-wrap ul li a:hover{
	color:#5CA9BA;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.sidebar-button-wrap .common-button {
	text-align: center;
}
@media(max-width:991px){
	.sidebar-button-wrap, .sidebar-social-media-wrap{
		display:none;
	}
	.sidebar-filter{
		margin-bottom:70px;
	}
}
.banner-wrapper-image{
	min-height: 100vh;
}
.banner-content-holder{
	position: absolute;
	left:0px;
	width:100%;
	padding-bottom:60px;
	z-index: 1;
	bottom: 0px;
}
.home-banner-content p{
	color:#fff;
	margin:0px;
	padding-bottom: 20px;
	border-bottom:1px solid #BCBCBC;
	font-size:16px;
}
.banner-logo {
	margin-bottom: 45px;;
}
.home-banner-heading h1{
	font-family: "ivyora-display",serif;
	font-size: 37px;
	line-height: 40px;;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 300;
}
.home-banner-heading h1 em{
	display: block;
}
.home-banner-heading{
	padding-left: 15px;
}
.featured-area{
	min-height:598px;
	padding:50px 0px;
}
.featured-area-content-wrapper{
	max-width:670px;
}
.featured-area-content-wrapper h6{
	font-size:14px;
	font-weight:700;
	color:#D9F0FA;
}
.featured-area-content-wrapper h2{
	margin-top:0px;
	color:#fff
}
.featured-area-content-wrapper p{
	color:#fff;
	font-size:15px;
	line-height:26px;
}
.featured-area-content-wrapper a.common-button{
	color:#fff;
	border-color:#fff;
}
.featured-area-content-wrapper a.common-button:hover{
	border-color:#999
}
.site-operation-area{
	padding:160px 0px 250px
}
.site-operation-content h6{
	font-size:14px;
	font-weight:700;
	color:#608696;
}
.site-operation-content h2{
	margin-top:0px;
}
.site-operation-content p{
	font-size:16px !important
}
.site-operation-video-area iframe{
	height:280px;
	display:block;
	border-radius:10px;
	position: relative;
	z-index: 1;
}
.site-operation-video-area:after{
	width:calc(100% + 20px);
	height:calc(100% + 20px);;
	border-radius:10px;
	background:#EFEFEF;
	content:'';
	position: absolute;
	top:30px;
	left:55px;
	z-index: 0;
}
.non-surgical-content ul{
	display: flex;
	align-items: center;
	gap:35px
}
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% New New Csss %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%  */
.extra-button-links .common-button{
	width: 230px;
	font-weight: 400;
}
.view-all-post-link .common-button{
	width: 230px;
	font-weight: 400;
}
.follow-on-social h4{
	font-size: 22px;
	line-height: 36px;
	margin-bottom: 0px;
	font-weight: 300;
	padding-top: 10px;
}


.search-filter form {
	display: flex;
	width: 100%;
	background-color: #F5F5F5;
	padding: 7px 18px;
	border-radius: 100px;
}
.search-filter input {
	background-color: transparent;
	padding: 0px;
	border: none;
	font-weight: 300;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 1px;
	text-transform: capitalize;
	color: #000000;
	border-radius: 100px;
	width: 100%;
}
.search-filter input:focus{
	outline: none;
}
.search-filter button {
	position: absolute;
	right: 17px;
	top: 20px;
	border: none;
	background-color: transparent;
	padding: 0;
}
.advance-search-loading{
	display: none;
}
.advance-search-close {
	display: none;
	position: absolute;
	top: 7px;
	right: 44px;
	width: 20px;
	height: 20px;
}
.advance-search-close img{
	width: 16px;
}
.advance-search-close + button img{
	width: 17px;
}
#advance-search-blog-display ul{
	padding: 0px;
	margin: 0px;
	list-style: none;
}
#advance-search-blog-display ul li{
	margin-top: 20px;
}
#advance-search-blog-display h4{
	font-size:16px;
	line-height: 26px;
	padding: 0px;
	margin-bottom:0px;
	margin-left: 10px;
}
.search-thumb img{
	width: 120px;
}
.category-list h4{
	padding-top: 23px;
}
.search-result-area{
	margin-bottom: 100px;
}
.search-result-area hr {
	margin-top: 40px;
	margin-bottom: 60px;
	border: 0;
	border-top: 1px solid #545B54;
	display: none;
}
.each-search-post{
	padding-bottom:40px;
	padding-left: 70px;
	padding-right: 70px;
	margin-bottom: 60px;
	border-bottom: 1px solid #545B54;
}
.each-search-post h2{
	font-size: 42px;
	line-height: 46px;
	color: #231F20;
	font-weight: 400;
	font-family: "ivyora-display",serif;
}
.each-search-post p{
	font-size: 16px;
	line-height: 30px;
	font-weight: 300;
	color: #000000;
}
.interiors-area{
	margin-top: 40px;
}
.interiors-area .item-text {
	padding: 50px 25px 15px;
}
.request-consultation{
	margin-top: 40px;
}
.consultation-wrapper{
	margin-top: 60px;
}
.consultation-wrapper p{
	font-size: 16px;
	line-height: 30px;
	font-weight: 300;
	color: #000;
}
.search-result-heading{
	margin-top: 60px;
	margin-bottom: 60px;
}
.search-result-heading h2{
	font-size: 22px;
	font-weight: 500;
	line-height: 36px;
	letter-spacing: 0.44px;
	color: #000;
	margin: 0px;
	font-family: "ivyepic-variable",sans-serif;
}
.search-result-heading h3{
	font-size: 16px;
	line-height: 30px;
	font-weight: 300;
	color: #000;
}
.newsletter-area-content .gform-footer .gform_button{
	color: #fff;
	border: 1px solid #BCBCBC !important;
}
.single-blog-content .common-button{
	margin-top: 30px;
}
.after-before-slider .row{
	margin-right: 0px;
	margin-left: 0px;
}
/*.clear-button.clear-filter{
display: none;
}*/
.gallery-filter-area .sidebar-filter-wrap select{
	margin-bottom: 0px;
	font-size: 16px;
	line-height: 30px;
	font-weight: 300 ;
	color: #000 !important;
	border: 1px solid #fff !important;
	padding: 5px 25px !important;
}
.gallery-filter-area .sidebar-filter-wrap button.common-button {
	background: #608696;
	border: 1px solid #608696;
}
.gallery-filter-area .sidebar-filter-wrap button.common-button:hover{
	background-color: #999;
	border: 1px solid  #999;
}
.after-before-slider .row{
	margin-left: -5px;
	margin-right: -5px;
}
.after-before-slider .row .col-6{
	padding-left: 5px;
	padding-right: 5px;
}
.gallery-case-image-area .row{
	margin-left: -25px;
	margin-right: -25px;
}
.gallery-case-image-area .row .col-lg-6{
	padding-left: 25px;
	padding-right: 25px;
}
.gallery-case-image .row{
	margin-left: -5px;
	margin-right: -5px;
}
.gallery-case-image .row .col-6{
	padding-left: 5px;
	padding-right: 5px;
}
.gallery-case-area h1{
	color: #000;
	font-family: "ivyora-display",serif;
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	letter-spacing: 0.9px;
	text-transform: capitalize;
}
.gallery-case-area{
	margin-top: 60px;
}
.gallery-case-area .gallery-case-description {
	margin-top: 60px;
}
.payment-plans-content p{
	font-size:16px;
}
.difference-we-make-wrapper p{
	line-height:36px !important
}
.procedure-featured-image{
	max-width:336px;
	float:left;
	display:inline-block;
	margin-right:30px;
	margin-bottom:30px;
}
.procedure-area.page-content{
	padding-top:35px;
}
.page-content-wrapper{
	padding-top:50px;
}
#headline-two-h2{
	margin-top:0px;
}
.contact-form{
	padding-right: 25px;
}
.contact-us-wrapper{
	max-width: 990px;
	margin: 0 auto;
	margin-top: 48px;
}
.each-footer-content.footer-address a p:hover{
	color: #9DE5F5;
	transition: all 0.5s;
}
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% New Css %%%%%%%%%%%%%%%%%%%%%%%%%  */
.contact-right {
	background-image: url('/wp-content/uploads/2025/08/contact-us-bg-1.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-color: transparent;
	padding-bottom: 70px;
}
.contact-right .each-footer-content ul{
	justify-content: left;
}
.contact-right .each-footer-content p{
	font-weight: 300;
}
.contact-right .each-footer-content p strong{
	font-weight: 700;
}
.contact-right .each-footer-content h4 {
	font-weight: 500;
	font-size: 20px;
	line-height: 36px;
	margin-bottom: 0px;
}
.contact-right .each-footer-content p a {
	font-weight: 300;
	line-height: 30px;
	margin-bottom: 0px;
}
.each-footer-content p a strong {
	color: #D9F0FA;
}
.contact-social ul li a{
	font-size: 32px;
}
.contact-phone p a:hover {
	color: #D9F0FA;
}
.contact-right .each-footer-content ul li a:hover {
	color: #D9F0FA;
}
.contact-right .each-footer-content p a:hover {
	color: #D9F0FA;
}
.contact-address {
	margin-bottom: 40px;
}
.contact-phone {
	margin-bottom: 40px;
}
.inner-banner-content h1{
	font-size: 45px;
	line-height: 50px;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.2px;	
	font-family: "ivyora-display",serif;
}
.inner-banner-content h1 a{
	color: #fff;
}
.inner-banner {
	padding: 90px 0px;
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
}
.inner-banner:after{
	position: absolute;
	content: '';
	left: 0px;
	top:0px;
	width: 100%;
	height: 100%;
	background: url('/wp-content/uploads/2025/08/inner-banner-OVERLAY.png') no-repeat;
	background-size: cover;
	z-index: 1;
}
.inner-banner-content{
	position: relative;
	z-index:2;
}
.our-blog-each{
	box-shadow: 0px 0px 10px 0px #00000040;
	border-radius: 10px;
	margin-bottom: 65px;
}
.blog-each-text h2{
	font-weight: 500;
	font-size: 18px !important;
	line-height: 23px !important;
	margin-bottom: 25px;
	margin-top: 0px;
	font-family: "ivyepic-variable",sans-serif;
}
.blog-each-text h2 a{
	color: #000;
}
.blog-each-text p{
	margin-bottom: 25px;
}
.blog-each-text {
	padding: 26px 30px 38px 30px !important;
	background-color: #fff;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
.our-blog-each img {
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}
.each-footer-content p em{
	font-style: italic;
}
.loader-img img {
	width: 80px;
}
.blog-wrapper h2{
	color: #000;
}
.blog-wrapper h3{
	color: #000;
}
.blog-wrapper h4{
	color: #000;
}
.blog-wrapper p{
	color: #000;
	line-height: 30px;
	font-weight: 300;
}
.blog-area{
	margin-top: 40px;
}
.category-list ul{
	list-style:none;
	padding: 0px;
	margin: 0px;
}
.category-list ul li a{
	color: #000;
}
.newsletter-area{
	padding-top: 113px;
	padding-bottom: 95px;
	position: relative;
}
.newsletter-area:after {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: url(/wp-content/uploads/2025/08/gradient.png) no-repeat;
	background-size: cover;
	z-index: 1;
}
.newsletter-area-content{
	position: relative;
	z-index: 2;
}
.newsletter-area-content h2{
	color: #fff;
	margin-top: 0px;
}
.newsletter-area-content p{
	color: #fff;
	font-weight: 300;
	font-size: 16px;
	margin-bottom: 25px;
}
/*========================= home-page-css =========================*/
.non-surgical-logo-area{
	margin-top: 36px;
}
.non-surgical-logo-area ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	column-gap: 38px;
	align-items: center;
}
.setting-standard-sec{
	margin-top: 100px;
	margin-bottom: 154px;
}
.setting-standard-content h2{
	margin-top: 0;
	margin-bottom: 53px;
}
.setting-standard-content{
	padding-right: 37px;
}
.setting-standard-content ul{
	margin: 0;
	padding: 0 0 0 69px;
	list-style: none;
}
.setting-standard-content li{
	margin-bottom: 32px;
	position: relative;
}
.setting-standard-content li:last-child{
	margin-bottom: 0;
}
.setting-standard-content h6{
	color: #000;
	font-size: 16px;
	font-weight: 600;
	line-height: 30px; 
}
.setting-standard-content p{
	color: #000;
	font-size: 16px;
	font-weight: 300;
	margin: 0;
}
.setting-standard-content img{
	position: absolute;
	left: -44px;
	top: -19px;
	pointer-events: none;
	z-index: -1;
}
.setting-standard-img img{
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}
.payment-plans-sec{
	margin-bottom: 98px;
}
.payment-plans-img img{
	width: 100%;
	border-radius: 10px;
}
.payment-plans-content{
	padding-left: 23px;
}
.payment-plans-content h5{
	color: #608696;
	font-size: 14px;	
	font-weight: 700;
	line-height: 26px; 
}
.payment-plans-content h2{
	margin-top: 0;
	margin-bottom: 26px;
}
.payment-plans-content p{
	margin-top: 0;
	margin-bottom: 17px;
	font-weight: 300;
}
.payment-plans-content .common-button{
	margin-right: 30px;
}
.difference-we-make-sec{
	margin-bottom: 98px;
	padding: 121px;
	padding-bottom: 98px;
}
.difference-we-make-wrapper{
	overflow-x: clip;
	max-width: 946px;
	width: 100%;
	margin: 0px auto;
}
.difference-we-make-wrapper h2{
	color: #2A5263;
	margin: 0 0 15px;
}
.difference-we-make-wrapper h3{
	color: #000;
	font-size: 30px;
	font-style: italic;
	font-weight: 600;
	line-height: 36px;
	margin: 0 0 15px;
	letter-spacing: 0.6px;
}
.difference-we-make-wrapper p{
	color: #000;
	font-size: 22px !important;;
	font-style: italic;
	font-weight: 300;
	line-height: 36px;
	margin: 0 0 15px;
}
.difference-we-make-wrapper .common-button{
	background-color: #2A5263;
	font-weight: 400;
	border-color: #2A5263;
	color: #FFFFFF;
}
.difference-we-make-wrapper .common-button:hover{
	background-color:#999;
	color:#fff;
	border-color: #999;
}
.meet-the-team-area{
	margin-top: 40px;
}
.team-intro-content{
	max-width: 950px;
	margin: 0 auto;
	margin-top: 60px;
}
.team-intro-content p{
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 30px; 	
}
.each-team-member .common-button{
	margin-top: 22px;
}
.meet-the-team-area .specialist-section {
	margin-top: 60px;
	margin-bottom: 153px;
}
.gallery-case-area .fancybox{
	display: block;
	margin-bottom: 70px;
}
.gallery-case-description{
	max-width: 950px;
	margin: 0 auto;
	margin-bottom: 28px;
}
.gallery-case-description p{
	color: #000;
	font-size: 16px;
	font-weight: 300;
	line-height: 30px; 	
}
/********* Neo 10 Css **********/
.site-bread-area a{
	color:rgba(0, 0, 0, 1)
}
.site-bread-area a:hover{
	color:rgba(42, 82, 99, 1)
}
.meet-specialist-content-part a{
	border-color:rgba(96, 134, 150, 1)
}
.meet-specialist-content-part:after {
	width: 216px;
	height: 208px;
	content: '';
	position: absolute;
	background: url('/wp-content/uploads/2025/08/rect2.png');
	top: -50px;
	left: -50px;
}
.meet-specialist-content-part h2 {
	margin-bottom: 25px;
}
.meet-specialist-inject  .each-team-member p {
	margin-top:0px;
	margin-bottom:0px;
}
.real-patient-content:before {
	background:url('/wp-content/uploads/2025/08/Gallery-inject-bg-image.png') no-repeat center center / cover;
}
.testimonial-left:before {
	display:none
}
.testimonial-image picture img{
	width:375px;
	height:375px;
	border-radius:100%;
	object-fit:cover;
}
.testimonial-left h2{
	margin-bottom:20px;
}
.testimonial-left h4{
	font-size:22px;
	line-height:27px;
	font-weight:700;
	color:#000;
	font-style:italic;
}
.testimonial-left p {
	font-family: "ivyepic-variable", sans-serif;
	font-weight:300;
	color: #0B0B0B;
	font-size: 20px;
	line-height: 30px;
	font-style: italic;
	padding-left: 0px;
}
.testimonial-left .common-button span{
	margin-right:0px;
}
.testimonial-left .common-button span img{
	filter:invert(1);
	margin-right:10px;
}
.accordion>li>span {
	display: block;
	margin: 4px 0 13px;
	padding: 7px 0px;
	background: url(/wp-content/uploads/2025/08/plus.png) no-repeat right center;
	cursor: pointer;
	font-size: 22px;
	line-height: 26px;
	color: #000000;
	font-weight: 500;
	border:0px;
	border-bottom: 1px solid #BCBCBC;
	border-radius: 0px;
	background-size:normal
}
.accordion li>span.active {
	background: url(/wp-content/uploads/2025/08/minus.png) no-repeat right center;
	background-size:normal
}
.faq-area h2{
	margin-bottom:40px;
}
.accordion>li>div{
	font-size:16px;
	line-height:30px;
	padding-left:0px;
	padding-right:0px;
}
.special-await-inject-wrapper {
	padding:40px 0px 55px;
}
.special-await-inject-wrapper h2{
	color:#fff
}
.special-await-inject-wrapper p{
	color:#fff
}
.special-await-inject-wrapper  h3{
	color:#fff;
	font-size:36px;
	line-height:36px;
	font-weight:900;
	margin-bottom:40px;
	text-transform:uppercase;
}
.special-await-inject-wrapper em{
	color:#fff;
	font-size:16px;
	line-height:36px;
	transform:skew(10deg)
}
.page-content-wrapper p{
	font-size:16px;
	line-height:30px;
}
.testimonial-image:after{
	content: '';
	width: 575px;
	height: 575px;
	background: url(/wp-content/uploads/2025/08/Group-4281.png) no-repeat center center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	z-index: -1
}

.gallery-area h1{
	color: #000;
	font-family: "ivyora-display", serif;
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	letter-spacing: 0.9px;
	text-transform: capitalize;
	margin-bottom: 35px;
}
.gallery-filter-area{
	margin-top: 70px;
}
.gallery-area{
	margin-top: 60px;
	margin-bottom: 60px;
}
.gallery-filter-area .blog-filter select {
	margin-bottom: 0px;
	font-size: 16px;
	line-height: 30px;
	font-weight: 300;
	color: #000 !important;
	border: 1px solid #fff !important;
	padding: 0px 25px !important;
	width: 100%;
	border-radius: 24px;
	background: url(/wp-content/uploads/2022/02/Icon-ionic-ios-arrow-down.png) #fff no-repeat 97% center;
	appearance: none;
	-webkit-appearance: none;
	line-height: 45px;
	height: 45px;
}
.gallery-filter-area .blog-filter {
	border-radius: 10px;
	background: rgba(235, 235, 235, 0.93);
	padding: 30px;
	margin-bottom: 30px;
}
.common-link.clear-filter{
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	border: 1px solid #2A5262;
	border-radius: 23px;
	background-color: #2A5262;
	padding: 7px 30px 7px 30px;
	display: inline-block;
	min-width: 190px;
	text-align: center;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	margin-top: 10px;
}
.common-link.clear-filter:hover{
	background-color: #999;
	border: 1px solid #999;
	border-radius: 4px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.single-team-area{
	margin-top: 40px;
}
.achievements-area-wrapper{
	padding-top: 40px;
	padding-bottom: 80px;
}
.creden-each ul {
	margin-left: 18px;
}
.creden-each ul li {
	font-weight: 300;
}
.template-best ul{
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.template-wrapper {
	max-width: 950px;
}
.template-wrapper p{
	font-weight: 300;
	font-size: 16px;
	line-height: 30px;
}
.tem-image {
	width: 375px;
	height: 375px;
}
.newsletter-area-content .ginput_container_email input:focus{
	outline:none;
}
.newsletter-wrapper {
	max-width: 554px;
}
.our-blog-area{
	margin-top: 45px;
}

.item-image img{
	width: 100%;
}
.error404 .inner-banner .row{
	justify-content:center;
	text-align:center;
}
.phone-number-and-book-now ul{
	gap: 45px;
}
.blog-overview-wrapper{
	margin-top: 60px;
}
.gallery-overview-sec{
	margin-top: 60px;
	margin-bottom: 90px;
}
.gal-overview-wrapper{
	margin-top: 60px;
}
.each-gal-overview{
	margin-bottom: 60px;
}
.gal-overview-content{
	padding-left: 30px;
}
.gal-overview-list ul{
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: flex;
	flex-wrap: wrap;
}
.gal-overview-list ul li{
	width: 50%;
	margin-bottom: 10px;
}
.gal-overview-list ul li a{
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #000;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.gal-overview-list ul li a:hover{
	color: #999;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.gal-overview-list{
	margin-top: 40px;
}
.gal-overview-content a h2:hover{
	color: #2A5262;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;	
}
.site-operation-area{
	position:relative;
}
.site-operation-area:after{
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url(/wp-content/uploads/2025/08/Layer_1.png);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.home .site-operation-area:after{
	display: none;
}
.single-team .instragram-area{
	padding-top: 20px;
}
.single-team-area + .site-operation-area {
	padding: 160px 0px 180px;
}
.procedure-area {
	margin-top: 0px;
}
.specialist-section {
	margin-top: 100px;
}
.procedure-area .site-operation-area {
	padding: 160px 0px 150px;
}
.gallery-filter-area .sidebar-filter-wrap select:focus{
	outline: none;
}
.pagination .number-area{
	margin: 0px 20px;
}
.pagination .number-area ul li{
	margin: 0px 8px;
}
.inner-banner .site-breadcrumb{
	display: none;
}
.single-post .blog-wrapper p{
	font-size:16px;
}
.gallery-overview-sec .gallery-filter-area .sidebar-filter-wrap form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}
.gallery-overview-sec .gallery-filter-area select {
	margin-bottom: 0px;
	font-size: 16px;
	line-height: 30px;
	font-weight: 300;
	color: #000 !important;
	border: 1px solid #fff !important;
	padding: 5px 25px !important;
	border-radius:24px;
	width:25%;
}
.gallery-overview-sec .sidebar-filter-button-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.gallery-filter-area .sidebar-filter-wrap button.common-button{
	color:#fff;
}
.gallery-overview-sec h1 {
	color: #000;
	font-family: "ivyora-display", serif;
	font-size: 45px;
	font-weight: 400;
	line-height: 50px;
	letter-spacing: 0.9px;
	text-transform: capitalize;
	margin-bottom: 35px;
}
.gallery-overview-sec .gallery-each .row{
	margin:0 7px;
}
.gallery-overview-sec .gallery-each .row .col-6{
	padding: 0 5px;
}
.gallery-overview-sec .gallery-each img {
	height: 244px;
	width: 244px;
}
@media(max-width:991px){
	.gallery-overview-sec .gallery-filter-area select{
		width:100%;
	}
}
.header-area.fixed_header .book-now-button:hover a{
	background:transparent !important;
	color:#000 !important;
	border:1px solid #000;
}
.header-area .book-now-button:hover a{
	background:#2A5262 !important;
	color:#fff !important;
	border:1px solid #2A5262;
}
.header-navigation-wrapper.header-area.active .book-now-button a:hover{
	background-color:#2A5262;
}
.team-member-image img {
	height: 100%;
	object-fit: cover;
}
.each-footer-content p{
	font-size: 15px;
}
.each-footer-content.footer-address.text-center a {
	color: #FFFFFF;
}
.footer-phone-number a{
	font-size:22px;
}
@media(min-width:992px){
	.footer-content .col-lg-2 {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}
.blog-each-text p{
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}